/*
Theme Name: Octovia Promo
Theme URI: https://promo.octovianexus.com
Description: Modern promotional products e-commerce theme for Octovia Nexus. Light & clean design built for WooCommerce.
Author: Octovia Nexus
Author URI: https://octovianexus.com
Template: hello-elementor
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: octovia-promo
*/

/* ===== DESIGN TOKENS ===== */
:root {
  /* Brand Colors */
  --op-primary: #0891B2;        /* Teal - primary actions */
  --op-primary-dark: #0E7490;   /* Teal dark - hover states */
  --op-primary-light: #E0F7FA;  /* Teal tint - backgrounds */
  --op-accent: #F59E0B;         /* Amber - highlights, badges */
  --op-accent-dark: #D97706;    /* Amber dark - hover */
  --op-danger: #EF4444;         /* Red - clearance, errors */
  --op-success: #10B981;        /* Green - in stock, success */

  /* Neutrals */
  --op-white: #FFFFFF;
  --op-bg: #F8FAFC;             /* Page background */
  --op-card: #FFFFFF;           /* Card background */
  --op-border: #E2E8F0;        /* Borders */
  --op-border-light: #F1F5F9;  /* Subtle borders */
  --op-text: #1E293B;          /* Primary text */
  --op-text-secondary: #64748B; /* Secondary text */
  --op-text-muted: #94A3B8;    /* Muted text */

  /* Typography */
  --op-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --op-font-display: 'Plus Jakarta Sans', var(--op-font);
  --op-text-xs: 0.75rem;
  --op-text-sm: 0.875rem;
  --op-text-base: 1rem;
  --op-text-lg: 1.125rem;
  --op-text-xl: 1.25rem;
  --op-text-2xl: 1.5rem;
  --op-text-3xl: 1.875rem;
  --op-text-4xl: 2.25rem;

  /* Spacing */
  --op-space-xs: 0.25rem;
  --op-space-sm: 0.5rem;
  --op-space-md: 1rem;
  --op-space-lg: 1.5rem;
  --op-space-xl: 2rem;
  --op-space-2xl: 3rem;
  --op-space-3xl: 4rem;

  /* Layout */
  --op-container: 1280px;
  --op-radius: 8px;
  --op-radius-lg: 12px;
  --op-radius-full: 9999px;
  --op-shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --op-shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --op-shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
  --op-shadow-lg: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
  --op-transition: 0.2s ease;
}

/* ===== BASE RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--op-font);
  font-size: var(--op-text-base);
  line-height: 1.6;
  color: var(--op-text);
  background: var(--op-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--op-primary); text-decoration: none; transition: color var(--op-transition); }
a:hover { color: var(--op-primary-dark); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--op-font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--op-text);
}

h1 { font-size: var(--op-text-4xl); }
h2 { font-size: var(--op-text-3xl); }
h3 { font-size: var(--op-text-2xl); }
h4 { font-size: var(--op-text-xl); }

/* ===== UTILITY CLASSES ===== */
.op-container {
  width: 100%;
  max-width: var(--op-container);
  margin: 0 auto;
  padding: 0 var(--op-space-md);
}

.op-section {
  padding: var(--op-space-3xl) 0;
}

.op-section-header {
  text-align: center;
  margin-bottom: var(--op-space-2xl);
}

.op-section-header h2 {
  margin-bottom: var(--op-space-sm);
}

.op-section-header p {
  color: var(--op-text-secondary);
  font-size: var(--op-text-lg);
}

.op-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--op-space-sm);
  padding: 0.75rem 1.5rem;
  font-family: var(--op-font);
  font-size: var(--op-text-sm);
  font-weight: 600;
  border-radius: var(--op-radius);
  border: none;
  cursor: pointer;
  transition: all var(--op-transition);
  text-decoration: none;
  line-height: 1;
}

.op-btn-primary {
  background: var(--op-primary);
  color: var(--op-white);
}
.op-btn-primary:hover {
  background: var(--op-primary-dark);
  color: var(--op-white);
}

.op-btn-accent {
  background: var(--op-accent);
  color: var(--op-white);
}
.op-btn-accent:hover {
  background: var(--op-accent-dark);
  color: var(--op-white);
}

.op-btn-outline {
  background: transparent;
  color: var(--op-primary);
  border: 2px solid var(--op-primary);
}
.op-btn-outline:hover {
  background: var(--op-primary);
  color: var(--op-white);
}

.op-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: var(--op-text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--op-radius-full);
}

.op-badge-new { background: var(--op-primary-light); color: var(--op-primary); }
.op-badge-sale { background: #FEF2F2; color: var(--op-danger); }

/* ===== GRID SYSTEM ===== */
.op-grid {
  display: grid;
  gap: var(--op-space-lg);
}
.op-grid-2 { grid-template-columns: repeat(2, 1fr); }
.op-grid-3 { grid-template-columns: repeat(3, 1fr); }
.op-grid-4 { grid-template-columns: repeat(4, 1fr); }
.op-grid-6 { grid-template-columns: repeat(6, 1fr); }

@media (max-width: 1024px) {
  .op-grid-4 { grid-template-columns: repeat(3, 1fr); }
  .op-grid-6 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .op-grid-2, .op-grid-3, .op-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .op-grid-6 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .op-grid-2, .op-grid-3, .op-grid-4, .op-grid-6 { grid-template-columns: 1fr; }
}
