/*
Theme Name: College N Greek
Theme URI: https://collegengreekwear.com
Author: InverGo Design
Author URI: https://invergodesign.com
Description: Custom WooCommerce theme for College N Greek premium apparel store. Dark luxury design with gold accents.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
WC requires at least: 8.0
WC tested up to: 9.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: college-n-greek
Tags: woocommerce, ecommerce, dark, luxury, apparel
*/

/* =====================================================================
   BASE RESET & GLOBAL STYLES
   ===================================================================== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #050816;
  color: #ffffff;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img, video, canvas, svg { max-width: 100%; height: auto; }

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

/* =====================================================================
   HEADER & NAVIGATION
   ===================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 8, 22, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.22);
}
.nav-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.logo-box {
  width: 56px; height: 56px; border-radius: 18px;
  display: grid; place-items: center; color: #050816;
  background: linear-gradient(135deg, #d4af37, #fff3a2);
  font-weight: 900; letter-spacing: -1px;
}
.logo-image-box {
  background: transparent; border-radius: 0;
  width: 92px; height: 64px; overflow: hidden; position: relative;
}
.logo-image-box img { width: 100%; height: 100%; object-fit: contain; display: block; }
.logo-image-box::after {
  content: "CNG"; display: none; width: 56px; height: 56px;
  border-radius: 18px; place-items: center; color: #050816;
  background: linear-gradient(135deg, #d4af37, #fff3a2); font-weight: 900;
}
.logo-image-box.show-logo-fallback::after { display: grid; }
.brand h1 { margin: 0; font-size: 24px; color: #f6c84f; }
.brand p { margin: 4px 0 0; color: #c8cedb; font-size: 14px; }
.nav-links { display: flex; gap: 24px; color: #d7dbea; font-weight: 700; }
.nav-links a:hover { color: #f6c84f; }
.nav-links a.nav-active { color: #f6c84f; position: relative; }
.nav-links a.nav-active::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: #d4af37; border-radius: 2px;
}
.nav-cart-badge {
  display: inline-flex; align-items: center; justify-content: center;
  background: #d4af37; color: #050816; font-size: 10px; font-weight: 900;
  width: 18px; height: 18px; border-radius: 50%; margin-left: 4px; vertical-align: middle;
}
#mobileMenuToggle { display: none !important; }
.nav-design-btn { position: relative; overflow: hidden; }
.nav-design-btn::after {
  content: ""; position: absolute; inset: 0; transform: translateX(-120%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
  animation: shine 2.8s infinite;
}
@keyframes shine {
  0% { transform: translateX(-120%); }
  55%, 100% { transform: translateX(120%); }
}

/* =====================================================================
   BUTTONS
   ===================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border: 0; border-radius: 999px; padding: 14px 24px;
  font-weight: 800; transition: 0.25s ease;
}
.btn-gold {
  background: linear-gradient(135deg, #d4af37, #ffe08a);
  color: #050816; box-shadow: 0 14px 30px rgba(212,175,55,0.2);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(212,175,55,0.3); }
.btn-outline { background: transparent; border: 1px solid rgba(212,175,55,0.75); color: #f6c84f; }
.btn-outline:hover { background: rgba(212,175,55,0.1); }

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative; min-height: 88vh; display: flex; align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 30%, rgba(212,175,55,0.3), transparent 90%),
    linear-gradient(135deg, rgba(5,8,22,0.85), rgba(8,16,31,0.9)),
    url("https://images.unsplash.com/photo-1523398002811-999ca8dec234?auto=format&fit=crop&w=1800&q=80") center/cover;
}
.transparent-cover-hero {
  background:
    radial-gradient(circle at 75% 30%, rgba(212,175,55,0.26), transparent 10%),
    linear-gradient(135deg, rgba(5,8,22,1), rgba(8,16,31,1));
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, #050816 0%, rgba(5,8,22,0.74) 48%, rgba(5,8,22,0.45) 100%);
}
.transparent-cover-hero .hero-overlay {
  background:
    linear-gradient(90deg, #050816 0%, rgba(5,8,22,0.82) 42%, rgba(5,8,22,0.54) 100%),
    radial-gradient(circle at 78% 38%, rgba(212,175,55,0.22), transparent 10%);
}
.hero-cover-image {
  position: absolute; inset: 0; z-index: 0; opacity: 0.34;
  mix-blend-mode: screen; transform: scale(1.02);
}
.hero-cover-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(0.95) contrast(1.05); }
.hero-content { position: relative; z-index: 1; animation: heroFadeUp 0.9s ease both; }
.page-hero-content { position: relative; z-index: 1; max-width: 880px; animation: heroFadeUp 0.9s ease both; }
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}
.eyebrow {
  display: inline-block; color: #f6c84f; font-weight: 900;
  letter-spacing: 0.12em; text-transform: uppercase; font-size: 12px; margin-bottom: 16px;
}
.hero h2 {
  max-width: 760px; margin: 0;
  font-size: clamp(48px, 8vw, 92px); line-height: 0.95; letter-spacing: -4px; font-weight: 950;
}
.hero h2 span { display: block; color: #f6c84f; }
.hero p { max-width: 620px; color: #d4d9e8; font-size: 20px; line-height: 1.6; margin: 28px 0 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 40px; }

/* =====================================================================
   SECTIONS
   ===================================================================== */
.section { padding: 96px 0; }
.products-section { background: #08101f; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 46px; }
.section-head h2, .customize-grid h2, .quote-box h2 {
  margin: 0; font-size: clamp(36px, 5vw, 58px); line-height: 1; letter-spacing: -2px;
}
.section-intro { color: #c8cedb; line-height: 1.7; max-width: 760px; }

/* =====================================================================
   PRODUCTS GRID
   ===================================================================== */
.quote-cart {
  background: #050816; border: 1px solid rgba(212,175,55,0.24);
  color: #dfe4f2; border-radius: 22px; padding: 18px 24px;
}
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-card {
  overflow: hidden; border-radius: 30px; background: #050816;
  border: 1px solid rgba(212,175,55,0.14);
  box-shadow: 0 24px 70px rgba(0,0,0,0.25);
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.product-card.show { opacity: 1; transform: translateY(0); }
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,175,55,0.42);
  box-shadow: 0 30px 90px rgba(212,175,55,0.12), 0 24px 70px rgba(0,0,0,0.28);
}
.product-image-slot {
  width: 100%; min-height: 330px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(212,175,55,0.18), rgba(255,255,255,0.06));
}
.product-image-slot img { width: 100%; height: 330px; display: block; object-fit: cover; object-position: center top; }
.image-placeholder {
  min-height: 330px; display: grid; place-items: center; align-content: center;
  text-align: center; gap: 10px; padding: 24px;
  border: 1px dashed rgba(212,175,55,0.55); color: #f6c84f;
  background:
    linear-gradient(135deg, rgba(5,8,22,0.55), rgba(8,16,31,0.7)),
    repeating-linear-gradient(45deg, rgba(212,175,55,0.08) 0 10px, rgba(255,255,255,0.02) 10px 20px);
}
.product-body { padding: 24px; }
.product-body h3 { margin: 0 0 12px; font-size: 24px; }
.product-body p { margin: 0 0 20px; color: #aeb6c8; line-height: 1.5; }
.product-body .btn { width: 100%; margin-top: 10px; }

/* =====================================================================
   CUSTOMIZE & QUOTE SECTIONS
   ===================================================================== */
.customize-section { background: #050816; }
.customize-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
.customize-grid p, .quote-box p { color: #c8cedb; line-height: 1.7; font-size: 18px; }
.feature-list { display: grid; gap: 14px; }
.feature-list div {
  padding: 22px; border-radius: 22px; background: #08101f;
  border: 1px solid rgba(212,175,55,0.16); color: #f3f6ff; font-weight: 800;
}
.quote-section {
  background: radial-gradient(circle at center, rgba(212,175,55,0.16), transparent 45%), #08101f;
}
.quote-box { text-align: center; max-width: 760px; }

/* =====================================================================
   PRODUCT MODAL
   ===================================================================== */
.modal {
  position: fixed; inset: 0; z-index: 100; display: none;
  align-items: center; justify-content: center; padding: 20px;
  background: rgba(0,0,0,0.82);
}
.modal.active { display: flex; }
.modal-card {
  position: relative; width: min(960px, 100%); overflow: hidden;
  border-radius: 30px; display: grid; grid-template-columns: 1fr 1fr;
  background: #08101f; border: 1px solid rgba(212,175,55,0.2);
}
.modal-close {
  position: absolute; top: 16px; right: 18px; width: 42px; height: 42px;
  border-radius: 50%; border: 0; background: #fff; color: #050816; font-size: 28px; line-height: 1;
}
.modal-content { padding: 50px 36px; }
.modal-content h2 { margin: 0; font-size: 42px; }
.modal-content p, .modal-content li { color: #cbd3e5; line-height: 1.7; }
.modal-image .product-image-slot, .modal-image .image-placeholder { min-height: 340px; height: 100%; }
.modal-image img { width: 100%; height: 100%; min-height: 340px; object-fit: cover; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.premium-footer {
  background:
    radial-gradient(circle at top left, rgba(231,194,111,0.14), transparent 34%),
    linear-gradient(135deg, #090806 0%, #14110d 45%, #070605 100%);
  border-top: 1px solid rgba(231,194,111,0.24);
  padding: 70px 0 0; color: #f8f0df;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.8fr 0.8fr 0.8fr; gap: 38px; align-items: flex-start; }
.footer-logo-brand { display: inline-flex; align-items: center; gap: 14px; text-decoration: none; color: inherit; margin-bottom: 20px; }
.footer-logo-brand h2 { font-size: 28px; line-height: 1; margin: 0; color: #fff4d7; }
.footer-logo-brand p { margin: 5px 0 0; color: #d9bd78; font-size: 13px; letter-spacing: 1.8px; text-transform: uppercase; }
.footer-description { max-width: 420px; color: rgba(248,240,223,0.74); line-height: 1.75; margin: 0 0 24px; }
.footer-cta { display: inline-flex; width: fit-content; }
.footer-column h3 { color: #f1d28a; font-size: 16px; margin: 0 0 18px; letter-spacing: 1.5px; text-transform: uppercase; }
.footer-column a { display: block; color: rgba(248,240,223,0.72); text-decoration: none; margin-bottom: 12px; font-size: 15px; transition: 0.25s ease; }
.footer-column a:hover { color: #f1d28a; transform: translateX(5px); }
.footer-bottom {
  margin-top: 55px; padding: 22px 0;
  border-top: 1px solid rgba(231,194,111,0.18);
  display: flex; justify-content: space-between; gap: 20px;
  color: rgba(248,240,223,0.58); font-size: 14px;
}
.footer-bottom p { margin: 0; }
.footer-socials { display: flex; align-items: center; gap: 12px; margin-top: 22px; flex-wrap: wrap; }
.footer-socials a {
  width: 46px; height: 46px; border-radius: 50%; display: inline-flex;
  align-items: center; justify-content: center; color: #f8f0df;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(231,194,111,0.36);
  box-shadow: 0 12px 30px rgba(0,0,0,0.28); transition: 0.25s ease;
}
.footer-socials a svg { width: 20px; height: 20px; fill: currentColor; }
.footer-socials a:hover { transform: translateY(-4px); background: linear-gradient(135deg, #d7a84f, #fff0b8, #a87824); color: #120d06; border-color: rgba(255,232,170,0.8); }

/* =====================================================================
   PAGE HERO (inner pages)
   ===================================================================== */
.page-hero {
  position: relative; min-height: 72vh; display: flex; align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(212,175,55,0.22), transparent 30%),
    radial-gradient(circle at 85% 40%, rgba(246,200,79,0.18), transparent 34%),
    linear-gradient(135deg, #050816 0%, #08101f 52%, #101827 100%);
}
.page-hero h2 { margin: 0; font-size: clamp(44px,7vw,84px); line-height: 0.98; letter-spacing: -4px; font-weight: 950; }
.page-hero p { color: #c8cedb; line-height: 1.7; font-size: 19px; max-width: 780px; }

/* =====================================================================
   PRODUCTS PAGE
   ===================================================================== */
.products-hero {
  background:
    radial-gradient(circle at 22% 25%, rgba(212,175,55,0.22), transparent 32%),
    radial-gradient(circle at 86% 30%, rgba(246,200,79,0.14), transparent 30%),
    linear-gradient(135deg, #050816 0%, #08101f 55%, #121b2b 100%);
}
.product-page-section { background: #08101f; }
.product-page-cards { grid-template-columns: repeat(3, 1fr); }
.product-tools { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: center; margin: -10px 0 34px; }
.filter-tabs { display: flex; flex-wrap: wrap; gap: 12px; }
.filter-btn {
  border: 1px solid rgba(212,175,55,0.26); background: #050816; color: #dfe4f2;
  border-radius: 999px; padding: 12px 18px; font-weight: 800;
}
.filter-btn.active, .filter-btn:hover { background: linear-gradient(135deg, #d4af37, #ffe08a); color: #050816; }
.quick-estimator { background: #050816; border: 1px solid rgba(212,175,55,0.16); border-radius: 24px; padding: 18px; }
.quick-estimator label { display: block; color: #f6c84f; font-weight: 900; margin-bottom: 10px; }
.quick-estimator div { display: flex; gap: 12px; align-items: center; }
.quick-estimator input { max-width: 120px; }
.quick-estimator input, .studio-control input, .studio-control select {
  width: 100%; border: 1px solid rgba(212,175,55,0.26); background: #08101f;
  color: #ffffff; border-radius: 16px; padding: 14px 16px; outline: none;
}

/* =====================================================================
   CUSTOM APPAREL PAGE
   ===================================================================== */
.custom-page-section { background: #08101f; }
.centered-head { align-items: center; justify-content: center; text-align: center; }
.custom-category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.custom-category-card, .step-card, .request-card {
  background: #050816; border: 1px solid rgba(212,175,55,0.16);
  border-radius: 30px; padding: 28px; box-shadow: 0 24px 70px rgba(0,0,0,0.22);
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.custom-category-card.show, .step-card.show, .request-card.show { opacity: 1; transform: translateY(0); }
.custom-category-card:hover, .step-card:hover { transform: translateY(-6px); border-color: rgba(212,175,55,0.42); }
.custom-category-card h3, .step-card h3, .request-card h3 { margin: 18px 0 10px; font-size: 25px; }
.custom-category-card p, .step-card p, .request-card li { color: #c8cedb; line-height: 1.65; }
.category-icon {
  width: 62px; height: 62px; border-radius: 20px; display: grid; place-items: center;
  background: linear-gradient(135deg, #d4af37, #fff3a2); color: #050816; font-weight: 950; letter-spacing: -1px;
}
.wide-card { grid-column: span 4; }
.process-section { background: #050816; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step-card span {
  display: inline-grid; place-items: center; width: 48px; height: 48px;
  border-radius: 16px; background: rgba(212,175,55,0.12); color: #f6c84f; font-weight: 950;
}
.contact-custom-section { background: radial-gradient(circle at center, rgba(212,175,55,0.14), transparent 45%), #08101f; }
.contact-custom-box { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 34px; align-items: center; }
.contact-custom-box h2 { margin: 0; font-size: clamp(36px,5vw,58px); line-height: 1; letter-spacing: -2px; }
.contact-custom-box p { color: #c8cedb; line-height: 1.75; font-size: 18px; }
.request-card .btn { width: 100%; margin-top: 22px; }

/* =====================================================================
   DESIGN STUDIO
   ===================================================================== */
.design-hero {
  background:
    radial-gradient(circle at 78% 28%, rgba(212,175,55,0.24), transparent 32%),
    linear-gradient(135deg, #050816 0%, #08101f 52%, #101827 100%);
}
.design-studio-section { background: #08101f; }
.studio-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 34px; align-items: stretch; }
.studio-panel, .mockup-card {
  background: #050816; border: 1px solid rgba(212,175,55,0.16);
  border-radius: 34px; padding: 30px; box-shadow: 0 24px 70px rgba(0,0,0,0.24);
}
.studio-panel h2 { margin: 0; font-size: clamp(34px,5vw,54px); line-height: 1; letter-spacing: -2px; }
.studio-panel p { color: #c8cedb; line-height: 1.7; }
.studio-control { margin: 18px 0; }
.studio-control label { display: block; margin-bottom: 8px; color: #f6c84f; font-weight: 900; }
.color-options { display: flex; flex-wrap: wrap; gap: 12px; }
.color-dot { width: 42px; height: 42px; border-radius: 999px; border: 3px solid rgba(255,255,255,0.25); background: var(--dot); }
.color-dot.active { outline: 3px solid #f6c84f; outline-offset: 3px; }
.mockup-card { display: grid; align-content: center; gap: 24px; }
.mockup-product {
  min-height: 520px; width: min(430px, 100%); margin: 0 auto;
  border-radius: 44px 44px 34px 34px; position: relative; display: grid;
  place-items: center; color: #050816;
  box-shadow: inset 0 0 0 12px rgba(255,255,255,0.08), 0 30px 80px rgba(0,0,0,0.35);
  transition: background 0.25s ease, border-radius 0.25s ease;
}
.mockup-product.hat { min-height: 260px; border-radius: 180px 180px 60px 60px; }
.mockup-product.jacket { border-radius: 60px 60px 24px 24px; }
.mockup-neck { position: absolute; top: 24px; width: 110px; height: 54px; border-radius: 0 0 80px 80px; background: rgba(5,8,22,0.35); }
.mockup-text { width: 80%; text-align: center; font-weight: 950; font-size: clamp(24px,4vw,42px); letter-spacing: -1px; color: #050816; text-shadow: 0 1px 0 rgba(255,255,255,0.35); }
.mockup-placement { position: absolute; bottom: 34px; color: rgba(5,8,22,0.72); font-weight: 900; font-size: 14px; text-transform: uppercase; letter-spacing: 0.12em; }
.mockup-summary { text-align: center; }
.mockup-summary h3 { margin: 0 0 8px; font-size: 28px; }
.mockup-summary p { color: #c8cedb; margin: 0; }

/* =====================================================================
   PRODUCT CATEGORY ROWS (Products Page)
   ===================================================================== */
.product-category-list { display: grid; gap: 32px; }
.product-category-row {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 30px; align-items: stretch;
  padding: 22px; border-radius: 34px; background: #050816;
  border: 1px solid rgba(212,175,55,0.16); box-shadow: 0 24px 70px rgba(0,0,0,0.22);
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.product-category-row.show { opacity: 1; transform: translateY(0); }
.product-category-row:hover { transform: translateY(-6px); border-color: rgba(212,175,55,0.42); }
.reverse-row .product-category-visual { order: 2; }
.product-category-visual {
  min-height: 360px; display: grid; place-items: center; text-align: center;
  border-radius: 28px; padding: 24px; font-size: clamp(34px,5vw,62px); font-weight: 950; letter-spacing: -2px;
}
.jacket-visual { color: #ffffff; background: linear-gradient(135deg, rgba(5,8,22,0.15), rgba(5,8,22,0.52)), linear-gradient(135deg, #111827, #d4af37); }
.tshirt-visual { color: #050816; background: linear-gradient(135deg, #ffffff, #d4af37); }
.hoodie-visual { color: #050816; background: linear-gradient(135deg, #d4af37, #fff3a2); }
.product-category-content { padding: 24px 18px; display: flex; flex-direction: column; justify-content: center; }
.product-category-content h3 { margin: 0 0 16px; font-size: clamp(34px,5vw,56px); line-height: 1; letter-spacing: -2px; }
.product-category-content p, .product-category-content li { color: #c8cedb; line-height: 1.7; font-size: 17px; }
.product-category-content ul { padding-left: 20px; margin: 8px 0 24px; }
.product-category-content .btn { width: fit-content; }

/* =====================================================================
   WOOCOMMERCE OVERRIDES
   ===================================================================== */
/* Make WooCommerce match our dark theme */
.woocommerce-page body,
.woocommerce body { background: #050816 !important; color: #fff !important; }

/* WooCommerce shop page */
.woocommerce ul.products li.product { background: #050816 !important; border: 1px solid rgba(212,175,55,0.14) !important; border-radius: 30px !important; overflow: hidden !important; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { color: #ffffff !important; font-size: 20px !important; font-weight: 800 !important; }
.woocommerce ul.products li.product .price { color: #f6c84f !important; font-weight: 900 !important; }
.woocommerce ul.products li.product a.button,
.woocommerce ul.products li.product button.button {
  background: linear-gradient(135deg, #d4af37, #ffe08a) !important;
  color: #050816 !important; border: none !important; border-radius: 999px !important;
  font-weight: 800 !important; padding: 12px 20px !important;
}

/* WooCommerce single product */
.woocommerce div.product .product_title { color: #ffffff !important; font-size: clamp(32px,5vw,52px) !important; letter-spacing: -2px !important; }
.woocommerce div.product p.price, .woocommerce div.product span.price { color: #f6c84f !important; font-size: 28px !important; font-weight: 900 !important; }
.woocommerce div.product .woocommerce-product-details__short-description p { color: #c8cedb !important; font-size: 17px !important; line-height: 1.7 !important; }
.woocommerce .single_add_to_cart_button {
  background: linear-gradient(135deg, #d4af37, #ffe08a) !important;
  color: #050816 !important; border: none !important; border-radius: 999px !important;
  font-weight: 800 !important; font-size: 16px !important; padding: 16px 32px !important;
}
.woocommerce .single_add_to_cart_button:hover { transform: translateY(-2px) !important; box-shadow: 0 18px 40px rgba(212,175,55,0.3) !important; }

/* WooCommerce tabs */
.woocommerce div.product .woocommerce-tabs ul.tabs li { background: #08101f !important; border-color: rgba(212,175,55,0.2) !important; }
.woocommerce div.product .woocommerce-tabs ul.tabs li a { color: #d7dbea !important; }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active { background: #050816 !important; border-bottom-color: #050816 !important; }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a { color: #f6c84f !important; }
.woocommerce div.product .woocommerce-tabs .panel { background: #050816 !important; border-color: rgba(212,175,55,0.2) !important; color: #c8cedb !important; }

/* Cart */
.woocommerce table.cart { background: #08101f !important; }
.woocommerce table.cart td, .woocommerce table.cart th { border-color: rgba(212,175,55,0.16) !important; color: #fff !important; }
.woocommerce table.cart .product-name a { color: #f6c84f !important; }
.woocommerce-cart .wc-proceed-to-checkout .checkout-button {
  background: linear-gradient(135deg, #d4af37, #ffe08a) !important;
  color: #050816 !important; border-radius: 999px !important; border: none !important; font-weight: 800 !important;
}

/* Checkout */
.woocommerce-checkout { background: #050816 !important; }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  background: #08101f !important; color: #fff !important;
  border: 1px solid rgba(212,175,55,0.26) !important; border-radius: 16px !important;
  padding: 14px 16px !important;
}
.woocommerce form .form-row label { color: #f6c84f !important; font-weight: 700 !important; }
.woocommerce #payment { background: #08101f !important; border-radius: 24px !important; }
.woocommerce #payment ul.payment_methods { background: transparent !important; border-bottom-color: rgba(212,175,55,0.16) !important; }
.woocommerce #payment ul.payment_methods li { color: #fff !important; }
.woocommerce #place_order {
  background: linear-gradient(135deg, #d4af37, #ffe08a) !important;
  color: #050816 !important; border: none !important; border-radius: 999px !important;
  font-weight: 800 !important; font-size: 18px !important; padding: 18px 40px !important;
  width: 100% !important;
}
#order_review_heading, .woocommerce h3 { color: #f6c84f !important; }
.woocommerce-checkout-review-order-table { background: #08101f !important; border-radius: 16px !important; }
.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td { border-color: rgba(212,175,55,0.16) !important; color: #fff !important; }

/* Order received */
.woocommerce-order-received .woocommerce-thankyou-order-details li { color: #fff !important; }

/* Notices */
.woocommerce-info, .woocommerce-message {
  background: #08101f !important; border-top-color: #d4af37 !important; color: #fff !important;
}

/* =====================================================================
   ANIMATIONS (Reveal)
   ===================================================================== */
.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.show { opacity: 1; transform: translateY(0); }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1050px) {
  .custom-category-grid, .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .wide-card { grid-column: span 2; }
  .product-page-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 980px) {
  .products-grid, .product-page-cards { grid-template-columns: repeat(2, 1fr) !important; }
  .customize-grid, .modal-card, .studio-grid, .contact-custom-box { grid-template-columns: 1fr !important; }
  .product-category-row { grid-template-columns: 1fr !important; }
  .reverse-row .product-category-visual { order: 0 !important; }
  .product-tools { grid-template-columns: 1fr !important; }
  #mobileMenuToggle { display: flex !important; order: 10; }
  .nav-links {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(5,8,22,0.98); backdrop-filter: blur(20px);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 0; z-index: 55; padding: 80px 24px 40px; overflow-y: auto;
  }
  .nav-links.mobile-open { display: flex !important; }
  .nav-links a { font-size: 22px !important; padding: 16px 0 !important; width: 100%; text-align: center; border-bottom: 1px solid rgba(212,175,55,0.1); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; text-align: left; }
}
@media (max-width: 720px) {
  .custom-category-grid, .steps-grid, .contact-custom-box { grid-template-columns: 1fr !important; }
  .wide-card { grid-column: span 1 !important; }
  .product-category-row { grid-template-columns: 1fr !important; }
  .product-category-content .btn { width: 100% !important; }
  .hero h2, .page-hero h2 { font-size: clamp(34px,13vw,52px) !important; letter-spacing: -1.5px !important; }
  .hero p, .page-hero p { font-size: 16px !important; }
  .product-page-cards { grid-template-columns: 1fr !important; }
}
@media (max-width: 640px) {
  .products-grid { grid-template-columns: 1fr !important; }
  .footer-grid { grid-template-columns: 1fr !important; gap: 32px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .section { padding: 60px 0 !important; }
  .section-head { flex-direction: column !important; align-items: flex-start !important; }
}
@media (max-width: 620px) {
  .premium-footer { padding-top: 52px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .mockup-product { min-height: 340px !important; }
}
