:root {
      --emerald-950: #01140f;
      --emerald-900: #03241b;
      --emerald-800: #053b2e;
      --gold: #d4af37;
      --gold-light: #f8ecbf;
      --gold-dark: #aa8c2c;
      --gold-gradient: linear-gradient(135deg, #bf953f 0%, #fcf6ba 25%, #b38728 50%, #fbf5b7 75%, #aa771c 100%);
      --cream: #fdfbf7;
      --white: #ffffff;
      --text-main: #131c19;
      --text-muted: #62726d;
      --border: rgba(212, 175, 55, 0.25);
      
      --shadow-soft: 0 15px 35px rgba(1, 20, 15, 0.06);
      --shadow-hover: 0 25px 50px rgba(1, 20, 15, 0.15);
      --transition-slow: cubic-bezier(0.16, 1, 0.3, 1);

      /* Unified Modern Typography */
      --font-main: "Vazirmatn", sans-serif;

      /* Variables for Custom Section */
      --green: #053f34;
      --green-dark: #022c25;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    
    body {
      font-family: var(--font-main);
      color: var(--text-main);
      background-color: var(--cream);
      overflow-x: hidden;
      direction: rtl;
      
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      text-rendering: optimizeLegibility;
      font-feature-settings: "ss01", "ss02";
    }
    
    img, video { display: block; width: 100%; height: 100%; object-fit: cover; }
    a { text-decoration: none; color: inherit; }
    button { font: inherit; cursor: pointer; border: none; background: none; }
    
    .container { width: min(1280px, 92%); margin: auto; }
    .center { text-align: center; }

    /* Modern Vazirmatn Typography System */
    h1, h2, h3, blockquote { 
      font-family: var(--font-main); 
      font-weight: 800; 
      letter-spacing: -0.03em;
    }
    
    p {
      line-height: 1.9;
      font-weight: 300;
      letter-spacing: -0.01em;
    }
    
    .gold-text-gradient {
      background: var(--gold-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      filter: drop-shadow(0 2px 10px rgba(212, 175, 55, 0.15));
    }
    
    .eyebrow {
      font-size: 0.8rem;
      letter-spacing: 0.25em;
      font-weight: 700;
      text-transform: uppercase;
      color: var(--gold-dark);
      margin-bottom: 12px;
      display: inline-block;
    }
    
    .section-title {
      font-size: clamp(2.2rem, 4.2vw, 3.5rem);
      color: var(--emerald-950);
      line-height: 1.3;
      font-weight: 800;
      position: relative;
      padding-bottom: 20px;
    }
    
    .section-title::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 50px;
      height: 3px;
      background: var(--gold-gradient);
      border-radius: 2px;
    }

    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      min-height: 56px;
      padding: 0 36px;
      border: 1px solid var(--gold);
      background: transparent;
      color: var(--emerald-950);
      font-size: 0.88rem;
      font-weight: 700;
      letter-spacing: 0.02em;
      position: relative;
      overflow: hidden;
      z-index: 1;
      transition: all 0.4s var(--transition-slow);
    }
    
    .btn::before {
      content: "";
      position: absolute;
      inset: 0;
      background: var(--emerald-950);
      z-index: -1;
      transform: scaleY(0);
      transform-origin: bottom;
      transition: transform 0.4s var(--transition-slow);
    }
    
    .btn:hover { color: #F8ECBF; border-color: var(--emerald-950); }
    .btn:hover::before { transform: scaleY(1); }
    
    .btn.filled {
      background: var(--emerald-950);
      color: var(--gold-light);
      border-color: var(--emerald-950);
    }
    .btn.filled::before { background: var(--gold-gradient); }
    .btn.filled:hover { color: var(--emerald-950); }

    /* Top Bar */
    .topbar { background: var(--emerald-800); color: var(--gold-light); font-size: 0.78rem; border-bottom: 1px solid rgba(212,175,55,0.15); }
    .topbar .container { min-height: 42px; display: flex; justify-content: space-between; align-items: center; }
    .topbar-links { display: flex; gap: 24px; }
    .topbar span, .topbar a { display: flex; align-items: center; gap: 8px; opacity: 0.85; transition: 0.3s; font-weight: 300; }
    .topbar a:hover { opacity: 1; color: var(--gold); }

    /* Header Glassmorphism */
    .header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(253, 251, 247, 0.85);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      transition: 0.4s;
    }
    .header.scrolled { box-shadow: var(--shadow-soft); background: rgba(253, 251, 247, 0.95); }
    .navbar { min-height: 85px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 40px; }
    
    .logo { display: flex; align-items: center; gap: 14px; }
    .logo-mark {
      width: 46px; height: 46px;
      border: 1px solid var(--gold);
      border-radius: 50%;
      display: grid; place-items: center;
      color: var(--gold);
      position: relative;
    }
    .logo-mark::before {
      content: ""; position: absolute;
      inset: 3px; border: 1px dashed var(--gold-dark); border-radius: 50%;
      animation: spin 25s linear infinite;
    }
    @keyframes spin { 100% { transform: rotate(360deg); } }
    .logo strong { font-size: 1.8rem; line-height: 1; color: var(--emerald-950); font-weight: 900; letter-spacing: -0.04em; }
    .logo small { display: block; font-size: 0.55rem; letter-spacing: 0.35em; color: var(--gold-dark); margin-top: 3px; font-weight: 600; }
    
    .nav-links { display: flex; justify-content: center; gap: 36px; font-size: 0.9rem; font-weight: 600; }
    .nav-links a { position: relative; padding: 8px 0; color: var(--text-main); transition: 0.3s; }
    .nav-links a::after {
      content: ""; position: absolute; bottom: 0; right: 0; width: 0; height: 2px;
      background: var(--gold-gradient); transition: 0.4s var(--transition-slow);
    }
    .nav-links a:hover::after { width: 100%; left: 0; }
    .nav-links a:hover { color: var(--gold-dark); }
    
    .nav-actions { display: flex; gap: 12px; }
    .icon-btn {
      width: 42px; height: 42px; border-radius: 50%;
      display: grid; place-items: center; color: var(--emerald-950);
      transition: 0.3s; position: relative;
      border: 1px solid transparent;
    }
    .icon-btn:hover { background: rgba(212, 175, 55, 0.1); border-color: var(--border); color: var(--gold-dark); }
    .cart-dot {
      position: absolute; top: 2px; right: 2px; width: 18px; height: 18px;
      border-radius: 50%; background: var(--emerald-950); color: var(--gold-light);
      display: grid; place-items: center; font-size: 0.65rem; font-weight: 800;
      border: 1px solid var(--gold);
    }
    .menu-toggle { display: none; }

    /* Hero Section */
    .hero {
      position: relative;
      min-height: 88vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: var(--emerald-800);
    }
    #heroCanvas {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 2;
      pointer-events: none;
    }
    .hero-bg {
      position: absolute; inset: 0; z-index: 0;
      background: url("https://zargongold.ir/wp-content/uploads/2026/08/zargon-main-header-hero.png") center/cover no-repeat;
      opacity: 0.45;
      filter: contrast(1.1);
      transform: scale(1.08);
      animation: heroZoom 15s ease-out forwards;
    }
    @keyframes heroZoom { 100% { transform: scale(1); } }
    
    .hero-content { 
      position: relative; 
      z-index: 3; 
      max-width: 680px; 
    }
    .hero .eyebrow { color: var(--gold-light); }
    .hero h1 {
      font-size: clamp(2.8rem, 5.2vw, 4.8rem);
      color: var(--white);
      line-height: 1.25;
      font-weight: 900;
      margin: 15px 0 25px;
    }
    .hero p { color: rgba(255,255,255,0.85); font-size: 1.15rem; line-height: 2; margin-bottom: 40px; font-weight: 300; }

    /* Scroll Reveal Animation */
    .reveal { opacity: 0; transform: translateY(40px); transition: 0.8s var(--transition-slow); }
    .reveal.active { opacity: 1; transform: translateY(0); }

    /* Benefits Badge Bar */
    .benefits { 
      background: var(--white); 
      border-bottom: 1px solid var(--border); 
      padding: 10px 0; 
    }
    .benefit-grid { 
      display: grid; 
      grid-template-columns: repeat(4, 1fr); 
    }
    .benefit {
      display: flex; 
      align-items: center; 
      justify-content: center; 
      gap: 15px; 
      padding: 25px 15px;
      position: relative;
      transition: transform 0.4s var(--transition-slow), background-color 0.3s ease;
    }

    .benefit:not(:last-child)::after {
      content: "";
      position: absolute;
      left: 0;
      top: 20%;
      height: 60%;
      width: 1px;
      background: var(--border);
      transition: background-color 0.3s;
    }

    .benefit:hover {
      transform: translateY(-4px);
      background-color: rgba(212, 175, 55, 0.03);
    }

    .benefit svg { 
      color: var(--gold-dark); 
      stroke-width: 1.5; 
      width: 36px; 
      height: 36px; 
      flex-shrink: 0; 
      transition: transform 0.4s var(--transition-slow), color 0.3s ease;
    }

    .benefit:hover svg {
      transform: scale(1.15) rotate(-6deg);
      color: var(--gold);
    }

    .benefit h4 { 
      font-size: 0.95rem; 
      font-weight: 700; 
      color: var(--emerald-950); 
      transition: color 0.3s;
    }

    .benefit:hover h4 {
      color: var(--gold-dark);
    }

    .benefit p { 
      font-size: 0.8rem; 
      color: var(--text-muted); 
      margin-top: 2px; 
    }

    /* Sections Spacer */
    section { padding: 110px 0; }

    /* Luxury Categories Layout */
    .category-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-top: 50px; }
    .category-card { text-align: center; cursor: pointer; }
    
    .square-wrapper {
      position: relative; 
      overflow: hidden;
      aspect-ratio: 1 / 1;
      margin-bottom: 18px;
      background: var(--emerald-800);
      box-shadow: var(--shadow-soft);
      border: 1px solid var(--border);
      transition: 0.5s var(--transition-slow);
    }
    .square-wrapper::after {
      content: ""; position: absolute; inset: 12px; 
      border: 1px solid var(--gold);
      z-index: 2; pointer-events: none; opacity: 0; 
      transition: 0.5s var(--transition-slow);
      transform: scale(0.9);
    }
    
    .category-card img { height: 100%; transition: 0.7s var(--transition-slow); opacity: 0.9; }
    .category-card:hover .square-wrapper { box-shadow: var(--shadow-hover); border-color: var(--gold); }
    .category-card:hover .square-wrapper::after { opacity: 1; transform: scale(1); }
    .category-card:hover img { transform: scale(1.1); opacity: 1; }
    
    .category-card h3 { font-size: 1.25rem; font-weight: 800; color: var(--emerald-950); margin-bottom: 4px; transition: 0.3s; }
    .category-card span { font-size: 0.78rem; color: var(--gold-dark); font-weight: 600; display: inline-block; transition: 0.3s; }
    .category-card:hover h3 { color: var(--gold-dark); }

    /* Products Cards */
    .product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 60px; }
    .product-card {
      background: var(--white);
      padding: 16px;
      border: 1px solid var(--border);
      box-shadow: var(--shadow-soft);
      transition: 0.5s var(--transition-slow);
      position: relative;
    }
    .product-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); border-color: var(--gold); }
    .product-image { position: relative; overflow: hidden; aspect-ratio: 1/1; background: var(--cream); }
    .product-image img { transition: 0.7s var(--transition-slow); }
    .product-card:hover img { transform: scale(1.08); }
    
    .badge {
      position: absolute; top: 12px; right: 12px; z-index: 2;
      background: var(--emerald-800); color: var(--gold-light);
      padding: 4px 12px; font-size: 0.7rem; font-weight: 700;
      border: 1px solid var(--gold);
    }

    .product-actions {
      position: absolute;
      bottom: -50px;
      left: 0; right: 0;
      display: flex; justify-content: center; gap: 10px;
      padding: 15px;
      background: linear-gradient(to top, rgba(5, 59, 46, 0.8), transparent);
      transition: 0.4s var(--transition-slow);
      z-index: 10;
    }
    .product-card:hover .product-actions { bottom: 0; }
    
    .action-btn {
      width: 40px; height: 40px;
      border-radius: 50%;
      background: var(--white);
      color: var(--emerald-950);
      display: grid; place-items: center;
      box-shadow: 0 4px 10px rgba(0,0,0,0.15);
      transition: 0.3s;
    }
    .action-btn:hover { background: var(--gold); color: var(--white); transform: scale(1.1); }

    .product-info { padding: 20px 8px 8px; text-align: center; }
    .product-info h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 8px; color: var(--emerald-950); }
    .price { color: var(--gold-dark); font-weight: 800; font-size: 1.1rem; }

    /* Discount Banner */
    .discount-banner {
      width: 100%;
      position: relative;
      background: linear-gradient(rgba(5, 59, 46, 0.88), rgba(5, 59, 46, 0.88)), url('https://zargongold.ir/wp-content/uploads/2026/07/z02l7w.png') center/cover fixed;
      padding: 120px 0;
      text-align: center;
      color: var(--white);
      border-top: 1px solid var(--gold);
      border-bottom: 1px solid var(--gold);
    }
    .discount-banner h2 { font-size: clamp(2.5rem, 5vw, 4.2rem); font-weight: 900; margin-bottom: 20px; }
    .discount-banner p { font-size: 1.2rem; color: rgba(255, 255, 255, 0.85); max-width: 620px; margin: 0 auto 40px; }

    /* ===== NEW CUSTOM JEWELRY SECTION STYLES ===== */
    .custom-jewelry {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 80px 40px;
      position: relative;
      overflow: hidden;
    }

    .bg-word {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      font-size: clamp(130px, 18vw, 320px);
      font-weight: 900;
      color: #f3f3f3;
      white-space: nowrap;
      letter-spacing: -12px;
      z-index: 0;
      pointer-events: none;
    }

    .circle-decoration {
      position: absolute;
      width: 480px;
      height: 480px;
      border: 1px solid rgba(216, 180, 91, .18);
      border-radius: 50%;
      right: -200px;
      top: 50%;
      transform: translateY(-50%);
    }

    .circle-decoration:before {
      content: "";
      position: absolute;
      width: 330px;
      height: 330px;
      border: 1px solid rgba(216, 180, 91, .1);
      border-radius: 50%;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
    }

    .jewelry-box {
      width: 100%;
      max-width: 1450px;
      min-height: 720px;
      display: grid;
      grid-template-columns: 1.12fr .88fr;
      position: relative;
      z-index: 2;
      direction: rtl;
      box-shadow: 0 35px 90px rgba(0, 0, 0, .08);
    }

    .custom-jewelry .content {
      background:
        radial-gradient(circle at 20% 20%, rgba(216, 180, 91, .08), transparent 30%),
        linear-gradient(135deg, #064c3e, #03372e);
      padding: 90px 80px;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
    }

    .custom-jewelry .content:before {
      content: "";
      position: absolute;
      width: 500px;
      height: 500px;
      border: 1px solid rgba(255, 255, 255, .035);
      border-radius: 50%;
      left: -250px;
      bottom: -250px;
    }

    .content-inner {
      max-width: 600px;
      margin: auto;
      width: 100%;
      position: relative;
      z-index: 3;
    }

    .custom-jewelry .eyebrow {
      display: flex;
      align-items: center;
      gap: 15px;
      color: var(--gold-light);
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 25px;
      text-transform: none;
      letter-spacing: normal;
    }

    .eyebrow-line {
      width: 45px;
      height: 1px;
      background: var(--gold);
    }

    .title {
      font-size: clamp(38px, 4vw, 64px);
      line-height: 1.35;
      font-weight: 900;
      color: white;
      margin-bottom: 28px;
    }

    .title-gold {
      color: var(--gold-light);
      position: relative;
      display: inline-block;
    }

    .title-gold:after {
      content: "";
      position: absolute;
      width: 65px;
      height: 3px;
      right: 2px;
      bottom: -9px;
      background: linear-gradient(90deg, var(--gold), transparent);
    }

    .description {
      color: rgba(255, 255, 255, .68);
      font-size: 16px;
      line-height: 2.2;
      font-weight: 300;
      margin: 40px 0;
    }

    .features {
      display: flex;
      flex-wrap: wrap;
      gap: 25px;
      margin-bottom: 45px;
    }

    .feature {
      display: flex;
      align-items: center;
      gap: 10px;
      color: rgba(255, 255, 255, .85);
      font-size: 13px;
    }

    .feature-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--gold);
      box-shadow: 0 0 12px rgba(216, 180, 91, .7);
    }

    .actions {
      display: flex;
      align-items: center;
      gap: 30px;
    }

    .consult-btn {
      height: 62px;
      padding: 0 28px;
      display: flex;
      align-items: center;
      gap: 22px;
      border: 1px solid var(--gold);
      text-decoration: none;
      color: #fff;
      font-weight: 700;
      font-size: 14px;
      position: relative;
      overflow: hidden;
      transition: .4s;
    }

    .consult-btn:before {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      left: 100%;
      top: 0;
      background: var(--gold);
      transition: .45s cubic-bezier(.7, 0, .2, 1);
    }

    .consult-btn:hover:before {
      left: 0;
    }

    .consult-btn span,
    .consult-btn svg {
      position: relative;
      z-index: 2;
    }

    .consult-btn svg {
      width: 20px;
      transition: .35s;
    }

    .consult-btn:hover {
      color: var(--green-dark);
    }

    .consult-btn:hover svg {
      transform: translateX(-6px);
    }

    .more-link {
      color: rgba(255, 255, 255, .55);
      text-decoration: none;
      font-size: 13px;
      transition: .3s;
    }

    .more-link:hover {
      color: var(--gold-light);
    }

    .image-area {
      position: relative;
      overflow: hidden;
      min-height: 720px;
    }

    .image-area img {
      width: 100%;
      height: 100%;
      position: absolute;
      inset: 0;
      object-fit: cover;
      transition: transform 1.2s cubic-bezier(.2, .8, .2, 1);
    }

    .jewelry-box:hover .image-area img {
      transform: scale(1.055);
    }

    .image-area:after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(3, 55, 46, .22), transparent 35%);
    }

    .section-number {
      position: absolute;
      left: 32px;
      top: 28px;
      color: #fff;
      z-index: 5;
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 12px;
      letter-spacing: 2px;
    }

    .section-number span {
      display: block;
      width: 30px;
      height: 1px;
      background: var(--gold);
    }

    .section-number strong {
      color: var(--gold-light);
      font-size: 18px;
    }

    .diamond {
      position: absolute;
      right: -14px;
      top: 50%;
      transform: translateY(-50%) rotate(45deg);
      width: 28px;
      height: 28px;
      background: var(--gold);
      z-index: 8;
    }

    .diamond:after {
      content: "";
      position: absolute;
      inset: 6px;
      border: 1px solid var(--green-dark);
    }

    /* Story Section */
    .story-section {
      position: relative;
      background-color: var(--cream);
      overflow: hidden;
    }

    .story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
    .story-media { position: relative; padding: 15px; }
    .story-media::before {
      content: ""; position: absolute; inset: 0;
      border: 1px solid var(--gold); transform: translate(15px, 15px); z-index: 0; transition: 0.5s;
    }
    .story-media:hover::before { transform: translate(8px, 8px); }
    .story-media video { position: relative; z-index: 1; height: 520px; box-shadow: var(--shadow-hover); border: 1px solid var(--border); }
    
    .story-copy h2 { font-size: clamp(2.2rem, 3.8vw, 3.5rem); font-weight: 900; line-height: 1.3; color: var(--emerald-950); margin-bottom: 25px; }
    .story-copy p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 35px; }

    .feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; margin-bottom: 40px; }
    .feature-item { display: flex; gap: 15px; align-items: flex-start; }
    .feature-item svg { color: var(--gold-dark); width: 28px; height: 28px; flex-shrink: 0; }
    .feature-item h4 { font-size: 1rem; font-weight: 800; margin-bottom: 4px; color: var(--emerald-950); }
    .feature-item p { font-size: 0.8rem; line-height: 1.7; color: var(--text-muted); }

    /* ===== ULTRA CREATIVE TESTIMONIAL ===== */
    .testimonial {
      position: relative;
      min-height: 720px;
      padding: 110px 24px;
      display: flex;
      justify-content: center;
      align-items: center;
      overflow: hidden;
      background: #04140e;
      color: var(--cream);
      isolation: isolate;
    }

    .testimonial .testimonial-glow-1,
    .testimonial .testimonial-glow-2 {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      z-index: 0;
    }

    .testimonial .testimonial-glow-1 {
      width: min(40vw, 650px);
      height: min(40vw, 650px);
      top: -18%;
      left: -12%;
      background: radial-gradient(circle, rgba(15, 87, 61, 0.62) 0%, rgba(0, 0, 0, 0) 70%);
      filter: blur(60px);
      animation: testimonialFloatOrb 12s infinite alternate ease-in-out;
    }

    .testimonial .testimonial-glow-2 {
      width: min(32vw, 500px);
      height: min(32vw, 500px);
      right: -10%;
      bottom: -18%;
      background: radial-gradient(circle, rgba(220, 179, 72, 0.16) 0%, rgba(0, 0, 0, 0) 70%);
      filter: blur(55px);
      animation: testimonialFloatOrb 10s infinite alternate-reverse ease-in-out;
    }

    .testimonial .testimonial-watermark {
      position: absolute;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(10rem, 25vw, 35rem);
      font-weight: 900;
      color: transparent;
      -webkit-text-stroke: 2px rgba(255, 255, 255, 0.05);
      white-space: nowrap;
      z-index: 0;
      pointer-events: none;
      user-select: none;
      direction: ltr;
      animation: testimonialMarquee 40s linear infinite;
    }

    .testimonial .testimonial-card {
      position: relative;
      z-index: 2;
      width: min(900px, 100%);
      padding: clamp(2.4rem, 5vw, 4rem);
      background: rgba(255, 255, 255, 0.025);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.07);
      border-radius: 30px;
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.1);
      text-align: center;
      animation: testimonialFloatCard 6s infinite alternate ease-in-out;
    }

    .testimonial .quote-text {
      margin: 0 0 2.5rem;
      font-size: clamp(1.4rem, 3.5vw, 2.2rem);
      font-weight: 800;
      line-height: 1.9;
      letter-spacing: -0.03em;
      background: linear-gradient(to right, #dcb348 20%, #fff 40%, #fff 60%, #dcb348 80%);
      background-size: 200% auto;
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: testimonialShine 5s linear infinite;
      text-shadow: 0 10px 20px rgba(220, 179, 72, 0.1);
    }

    .testimonial .quote-author {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 15px;
      color: #dcb348;
      font-size: clamp(0.95rem, 1.5vw, 1.15rem);
      font-weight: 500;
      opacity: 0.88;
      letter-spacing: 0;
      line-height: 1.8;
    }

    .testimonial .quote-author::before,
    .testimonial .quote-author::after {
      content: "";
      display: block;
      width: 40px;
      height: 1px;
      background: linear-gradient(90deg, transparent, #dcb348, transparent);
      flex-shrink: 0;
    }

    @keyframes testimonialFloatOrb {
      0% { transform: translate(0, 0) scale(1); }
      100% { transform: translate(30px, 40px) scale(1.1); }
    }

    @keyframes testimonialMarquee {
      0% { transform: translate(0%, -50%); }
      100% { transform: translate(-50%, -50%); }
    }

    @keyframes testimonialFloatCard {
      0% { transform: translateY(0) rotateX(0deg); }
      100% { transform: translateY(-15px) rotateX(2deg); }
    }

    @keyframes testimonialShine {
      to { background-position: 200% center; }
    }

    /* Newsletter */
    .newsletter-wrapper {
      margin: 0 auto;
      max-width: 760px;
      position: relative;
      z-index: 1;
      background: transparent;
      box-shadow: none;
      padding: 85px 0 100px;
      text-align: center;
      border: none;
    }

    .newsletter-wrapper h3 {
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 900;
      line-height: 1.4;
      color: var(--emerald-950);
      margin-bottom: 18px;
    }

    .newsletter-wrapper p {
      max-width: 620px;
      margin: 0 auto 38px;
      color: var(--text-muted);
      font-size: 1rem;
      line-height: 2;
    }

    .newsletter-form {
      display: flex;
      align-items: center;
      max-width: 540px;
      margin: 0 auto;
      border-bottom: 1px solid rgba(5, 59, 46, 0.45);
      padding-bottom: 7px;
    }

    .newsletter-form input {
      flex: 1;
      min-width: 0;
      border: none;
      padding: 14px 4px;
      background: transparent;
      outline: none;
      font-family: inherit;
      font-size: 0.95rem;
      color: var(--emerald-950);
    }

    .newsletter-form button {
      color: var(--gold-dark);
      font-weight: 800;
      padding: 12px 18px;
      transition: 0.3s;
    }

    .newsletter-form button:hover { color: var(--emerald-800); }

    /* ===== FOOTER ===== */
    footer { 
      background: var(--emerald-800);
      color: rgba(255,255,255,0.7); 
      padding: 90px 0 40px; 
    }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 60px; }
    .footer-brand .logo strong { color: var(--white); }
    .footer-brand p { margin-top: 25px; font-size: 0.9rem; max-width: 320px; color: rgba(255, 255, 255, 0.75); }
    footer h4 { color: var(--gold); font-size: 1.1rem; font-weight: 800; margin-bottom: 25px; }
    footer ul { display: flex; flex-direction: column; gap: 14px; font-weight: 300; font-size: 0.9rem; }
    footer a { transition: 0.3s; }
    footer a:hover { color: var(--gold); transform: translateX(-5px); display: inline-block; }
    .copyright { display: flex; justify-content: space-between; align-items: center; padding-top: 35px; font-size: 0.8rem; font-weight: 300; }

    /* Responsive Design */
    @media(max-width: 1024px) {
      .category-grid { grid-template-columns: repeat(3, 1fr); }
      .product-grid { grid-template-columns: repeat(2, 1fr); }
      .story-grid { grid-template-columns: 1fr; gap: 40px; }
      .benefit-grid { grid-template-columns: repeat(2, 1fr); }
      .benefit:not(:last-child)::after { display: none; }
      .benefit { border-bottom: 1px solid var(--border); }
      .benefit:nth-child(odd) { border-left: 1px solid var(--border); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }

    @media(max-width: 1000px) {
      .jewelry-box { grid-template-columns: 1fr 1fr; }
      .custom-jewelry .content { padding: 60px 40px; }
      .title { font-size: 42px; }
    }

    @media(max-width: 800px) {
      .custom-jewelry { padding: 25px 15px; }
      .bg-word { display: none; }
      .jewelry-box { display: flex; flex-direction: column; }
      .image-area { min-height: 520px; order: 1; }
      .custom-jewelry .content { order: 2; padding: 60px 35px; }
      .diamond { display: none; }
    }

    @media(max-width: 768px) {
      .topbar { display: none; }
      .navbar { grid-template-columns: auto auto; justify-content: space-between; }
      .nav-links {
        position: absolute; top: 85px; left: 0; right: 0; background: var(--white);
        flex-direction: column; padding: 30px; box-shadow: var(--shadow-soft);
        display: none; border-top: 1px solid var(--border); text-align: center;
      }
      .nav-links.open { display: flex; }
      .menu-toggle { display: grid; }
      .nav-actions .icon-btn:not(.menu-toggle):not(:last-child) { display: none; }
      .category-grid { grid-template-columns: repeat(2, 1fr); }
      .feature-list { grid-template-columns: 1fr; }
      .newsletter-wrapper { padding: 65px 0 80px; width: 92%; }
      .copyright { flex-direction: column; gap: 15px; text-align: center; }
    }

    @media(max-width: 550px) {
      .image-area { min-height: 420px; }
      .section-number { left: 18px; top: 18px; }
      .custom-jewelry .content { padding: 45px 25px; }
      .title { font-size: 34px; }
      .description { font-size: 14px; }
      .features { gap: 15px; flex-direction: column; }
      .actions { flex-direction: column; align-items: flex-start; }
      .newsletter-form { flex-direction: column; align-items: stretch; gap: 8px; border-bottom: none; }
      .newsletter-form input { width: 100%; padding: 14px; border: 1px solid rgba(5, 59, 46, 0.2); text-align: right; }
      .newsletter-form button { min-height: 48px; background: var(--emerald-800); color: var(--gold-light); }
    }

    @media(max-width: 480px) {
      .hero h1 { font-size: 2.3rem; }
      .category-grid, .product-grid, .benefit-grid, .footer-grid { grid-template-columns: 1fr; }
      .benefit { border-left: none !important; }
    }

/* Interactive jewel shape selector */
.jewel-shape-banner, .jewel-shape-banner * { box-sizing: border-box; }

.jewel-shape-banner {
    --green: #053b2e;

    position: relative;
    width: 100%;
    height: 440px;
    overflow: hidden;

    background: var(--green);

    font-family: Tahoma, Arial, sans-serif;

    direction: rtl;
    text-align: right;

    cursor: grab;
    isolation: isolate;
}

.jewel-shape-banner.is-dragging {
    cursor: grabbing;
}


/* =====================================================
   متن فارسی سمت راست
===================================================== */

.jewel-copy {
    position: absolute;

    right: 7%;
    top: 50%;

    transform: translateY(-50%);

    width: 390px;

    z-index: 20;

    color: #ffffff;

    direction: rtl;
    text-align: right;
}


.jewel-copy .eyebrow {
    margin-bottom: 18px;

    font-size: 12px;
    font-weight: 400;

    line-height: 1.8;

    color: rgba(255,255,255,.72);
}


.jewel-copy h2 {
    margin: 0 0 20px;

    font-size: 46px;
    font-weight: 500;

    line-height: 1.55;

    color: #ffffff;
}


.jewel-copy p {
    margin: 0;

    max-width: 350px;

    font-size: 14px;

    line-height: 2.25;

    color: rgba(255,255,255,.80);
}


/* =====================================================
   محیط حلقه

   ارتفاع = 720
   bottom = -360

   بنابراین خط وسط دایره دقیقاً
   روی پایین سکشن قرار می‌گیرد.
===================================================== */

.ring-stage {
    position: absolute;

    width: 720px;
    height: 720px;

    left: 4%;
    right: auto;

    top: auto;

    /*
       نصف ارتفاع دایره زیر سکشن
    */
    bottom: -360px;

    transform: none;

    z-index: 2;
}


/* =====================================================
   نیم حلقه سفید

   فقط نیمه بالایی نمایش داده می‌شود
===================================================== */

.white-ring {
    position: absolute;

    width: 720px;
    height: 720px;

    left: 0;
    top: 0;

    border-radius: 50%;

    border: 110px solid #ffffff;

    /*
       حذف نیمه پایینی
    */
    clip-path: inset(0 0 50% 0);

    z-index: 1;
}


/* =====================================================
   قسمت طلایی حلقه

   فقط روی قسمت سفید بالا قرار می‌گیرد
===================================================== */

.gold-band {
    position: absolute;

    width: 46px;
    height: 125px;

    left: 50%;
    top: -5px;

    transform: translateX(-50%);

    border-radius: 24px;

    background:
        linear-gradient(
            90deg,
            #92691e 0%,
            #b9862e 12%,
            #d7a848 27%,
            #edc968 40%,
            #ffe28c 50%,
            #e0b353 65%,
            #b98730 84%,
            #92691e 100%
        );

    box-shadow:
        inset 5px 0 7px rgba(255,255,255,.30),
        inset -5px 0 7px rgba(75,45,0,.22),
        0 3px 7px rgba(0,0,0,.10);

    z-index: 9;
}


/* =====================================================
   چرخنده سنگ‌ها
===================================================== */

.diamonds-spinner {
    position: absolute;

    inset: 0;

    width: 720px;
    height: 720px;

    border-radius: 50%;

    z-index: 6;

    transform: rotate(0deg);

    transition:
        transform .5s cubic-bezier(.22,.8,.25,1);
}


/* =====================================================
   هر سنگ
===================================================== */

.diamond-item {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 125px;
    height: 125px;

    display: flex;
    align-items: center;
    justify-content: center;

    /*
       قرار گرفتن سنگ روی مرکز ضخامت حلقه سفید
    */
    transform:
        translate(-50%, -50%)
        rotate(var(--angle))
        translateY(-305px)
        rotate(calc(var(--angle) * -1));
}


.diamond-item img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;

    user-select: none;
    pointer-events: none;

    filter:
        drop-shadow(0 5px 8px rgba(0,0,0,.12))
        drop-shadow(0 0 2px rgba(255,255,255,.8));

    transition: transform .3s ease;
}


.diamond-item.active img {
    transform: scale(1.15);
}


/* =====================================================
   نوشته بالای حلقه
===================================================== */

.top-question {
    position: absolute;

    left: calc(50% + 58px);
    top: 18px;

    z-index: 12;

    color: #ffffff;

    font-size: 13px;
    font-weight: 400;

    line-height: 1.8;

    writing-mode: vertical-rl;

    direction: rtl;
}


/* =====================================================
   نوشته سنگ
===================================================== */

.stone-word {
    position: absolute;

    left: calc(50% - 84px);
    top: 15px;

    z-index: 12;

    color: #ffffff;

    font-size: 34px;
    font-weight: 400;

    writing-mode: vertical-rl;

    direction: rtl;

    transform: rotate(180deg);
}


/* =====================================================
   نوشته فرم
===================================================== */

.shape-word {
    position: absolute;

    left: calc(50% - 35px);
    top: 480px;

    z-index: 12;

    color: #ffffff;

    font-size: 19px;

    writing-mode: vertical-rl;

    direction: rtl;
}


/* =====================================================
   نوشته کناری
===================================================== */

.side-label {
    position: absolute;

    left: 2%;
    top: 50%;

    transform: translateY(-50%);

    z-index: 15;

    color: rgba(255,255,255,.68);

    font-size: 25px;

    writing-mode: vertical-rl;

    direction: rtl;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {

    .jewel-shape-banner {
        height: 400px;
    }


    .jewel-copy {
        right: 5%;

        width: 330px;
    }


    .jewel-copy h2 {
        font-size: 38px;
    }


    .ring-stage {
        width: 620px;
        height: 620px;

        left: -50px;

        /*
           نصف 620
        */
        bottom: -310px;
    }


    .white-ring {
        width: 620px;
        height: 620px;

        border-width: 95px;
    }


    .diamonds-spinner {
        width: 620px;
        height: 620px;
    }


    .diamond-item {
        width: 105px;
        height: 105px;

        transform:
            translate(-50%, -50%)
            rotate(var(--angle))
            translateY(-262px)
            rotate(calc(var(--angle) * -1));
    }


    .gold-band {
        width: 42px;
        height: 108px;

        top: -4px;
    }


    .side-label {
        display: none;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

    .jewel-shape-banner {
        height: 650px;
    }


    .jewel-copy {
        right: 25px;
        left: 25px;

        top: 40px;

        width: auto;

        transform: none;

        text-align: right;
    }


    .jewel-copy .eyebrow {
        margin-bottom: 10px;

        font-size: 11px;
    }


    .jewel-copy h2 {
        margin-bottom: 14px;

        font-size: 34px;

        line-height: 1.5;
    }


    .jewel-copy p {
        max-width: 320px;

        font-size: 13px;

        line-height: 2;
    }


    .ring-stage {
        width: 520px;
        height: 520px;

        left: 50%;
        right: auto;

        /*
           نصف 520
        */
        bottom: -260px;

        transform: translateX(-50%);
    }


    .white-ring {
        width: 520px;
        height: 520px;

        border-width: 80px;
    }


    .diamonds-spinner {
        width: 520px;
        height: 520px;
    }


    .diamond-item {
        width: 88px;
        height: 88px;

        transform:
            translate(-50%, -50%)
            rotate(var(--angle))
            translateY(-220px)
            rotate(calc(var(--angle) * -1));
    }


    .gold-band {
        width: 36px;
        height: 90px;

        top: -3px;
    }


    .stone-word,
    .top-question,
    .shape-word,
    .side-label {
        display: none;
    }
}


.jewel-shape-banner { margin-top: 80px; }
.jewel-shape-banner .gold-band { display: none !important; }
.jewel-shape-banner .diamond-item img {
  width: 125px !important;
  height: auto !important;
  max-width: none !important;
  max-height: 125px !important;
  object-fit: contain !important;
  transform: none !important;
  transform-origin: center center;
}
.jewel-shape-banner .diamond-item.active img { transform: none !important; }
@media (max-width: 1100px) {
  .jewel-shape-banner .diamond-item img { width: 105px !important; max-height: 105px !important; }
}
@media (max-width: 768px) {
  .jewel-shape-banner { margin-top: 48px; }
  .jewel-shape-banner .diamond-item img { width: 88px !important; max-height: 88px !important; }
}


/* WordPress and Elementor integration */
#masthead, .site-header, #colophon, .site-footer { display: none !important; }
.header button.menu-toggle {
  width: 42px !important; min-width: 42px !important; max-width: 42px !important;
  height: 42px !important; min-height: 42px !important; max-height: 42px !important;
  margin: 0 !important; padding: 0 !important; border: 1px solid transparent !important;
  border-radius: 50% !important; background: transparent !important; background-image: none !important;
  color: #053b2e !important; box-shadow: none !important; line-height: 1 !important;
  appearance: none; -webkit-appearance: none;
}
.header button.menu-toggle:hover,
.header button.menu-toggle:focus-visible { background: #f8ecbf !important; border-color: #e4d29a !important; color: #053b2e !important; }
.header button.menu-toggle svg { width: 24px !important; height: 24px !important; stroke: currentColor !important; }
.custom-jewelry .jewelry-box { align-items: stretch; }
.custom-jewelry .image-area { height: auto; align-self: stretch; background: #031c17; }
.custom-jewelry .image-area > img {
  display: block; width: 100% !important; height: 100% !important; min-height: 100% !important;
  max-width: none !important; max-height: none !important; position: absolute !important; inset: 0 !important;
  object-fit: cover !important; object-position: center center !important;
}
.site-content .ast-container, .site-content > .ast-container { max-width: none !important; padding: 0 !important; display: block !important; }
.elementor-widget-html, .elementor-widget-html .elementor-widget-container { width: 100%; }
body.elementor-page .site-content { margin: 0; }
.woocommerce-page .site-content { padding: 60px 0; }
.woocommerce-page .site-content > .ast-container { width: min(1280px, 92%) !important; margin: auto; }
.post-type-archive-product .site-content { padding-top: 0 !important; }
.post-type-archive-product #primary { margin-top: 0 !important; padding-top: 0 !important; }
.post-type-archive-product .woocommerce-breadcrumb { display: none !important; }
.post-type-archive-product .woocommerce-products-header {
  min-height: 360px; margin: 0 0 52px; padding: 58px clamp(28px, 6vw, 78px); position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  background: linear-gradient(90deg, rgba(1,20,15,.94) 0%, rgba(5,59,46,.82) 48%, rgba(5,59,46,.26) 100%), url('https://zargongold.ir/wp-content/uploads/2026/07/z02l7w.png') center/cover no-repeat;
  border: 1px solid rgba(212,175,55,.35); box-shadow: 0 28px 70px rgba(1,20,15,.18); isolation: isolate;
}
.post-type-archive-product .woocommerce-products-header::before {
  content: ''; position: absolute; inset: 16px; border: 1px solid rgba(248,236,191,.22); pointer-events: none; z-index: -1;
}
.post-type-archive-product .woocommerce-products-header::after {
  content: 'ZARGON'; position: absolute; left: 34px; bottom: -34px; color: rgba(248,236,191,.07); font: 900 clamp(5rem, 13vw, 11rem)/1 var(--font-main); letter-spacing: .08em; z-index: -1;
}
.post-type-archive-product .woocommerce-products-header .page-title {
  margin: 0 0 18px; color: #fff; font: 900 clamp(2.5rem, 5vw, 4.8rem)/1.2 var(--font-main); letter-spacing: -.04em;
}
.zargon-shop-hero-copy { max-width: 590px; color: rgba(255,255,255,.82); position: relative; z-index: 1; }
.zargon-shop-hero-eyebrow { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 12px; color: #f8ecbf; font-size: .78rem; font-weight: 700; letter-spacing: .15em; }
.zargon-shop-hero-eyebrow::before { content: ''; width: 42px; height: 1px; background: #d4af37; }
.zargon-shop-hero-copy p { margin: 0; font-size: 1rem; line-height: 2; font-weight: 300; }
.testimonial .zargon-video-card { width: min(900px, 100%); height: 520px; padding: 0; overflow: hidden; background: #01140f; animation: testimonialFloatCard 6s infinite alternate ease-in-out; }
.testimonial .zargon-testimonial-video { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; border-radius: 29px; background: #01140f; }
@media (max-width: 768px) { .testimonial .zargon-video-card { height: 440px; } }
@media (max-width: 480px) { .testimonial .zargon-video-card { height: 360px; } }
.zargon-about { background: #fdfbf7; color: #131c19; }
.zargon-about-hero { min-height: 620px; position: relative; display: flex; align-items: center; overflow: hidden; background: linear-gradient(90deg, rgba(1,20,15,.96) 0%, rgba(3,36,27,.82) 52%, rgba(3,36,27,.18) 100%), url('https://zargongold.ir/wp-content/uploads/2026/07/z5m58y.jpg') center/cover no-repeat; color: #fff; }
.zargon-about-hero::after { content: 'ZARGON'; position: absolute; left: -20px; bottom: -38px; font-size: clamp(7rem, 20vw, 18rem); font-weight: 900; line-height: 1; color: rgba(248,236,191,.06); letter-spacing: .08em; }
.zargon-about-hero .container { position: relative; z-index: 2; }
.zargon-about-orbit { position: absolute; border: 1px solid rgba(212,175,55,.22); border-radius: 50%; pointer-events: none; }
.zargon-about-orbit.one { width: 440px; height: 440px; right: -120px; top: -130px; animation: spin 28s linear infinite; }
.zargon-about-orbit.two { width: 230px; height: 230px; right: 14%; bottom: -110px; border-style: dashed; animation: spin 20s linear infinite reverse; }
.zargon-about-orbit::after { content: ''; position: absolute; width: 12px; height: 12px; border-radius: 50%; background: #d4af37; box-shadow: 0 0 24px #f8ecbf; top: 12%; left: 12%; }
.zargon-about-sideword { position: absolute; left: 24px; top: 50%; transform: translateY(-50%) rotate(-90deg); color: rgba(248,236,191,.45); letter-spacing: .5em; font-size: .68rem; z-index: 2; }
.zargon-about-scroll { display: inline-flex; align-items: center; gap: 12px; margin-top: 34px; color: rgba(255,255,255,.58); font-size: .75rem; }
.zargon-about-scroll i { display: block; width: 38px; height: 1px; background: #d4af37; }
.zargon-about-hero-copy { max-width: 680px; }
.zargon-about-kicker { display: inline-flex; align-items: center; gap: 14px; margin-bottom: 20px; color: #f8ecbf; font-weight: 700; letter-spacing: .12em; }
.zargon-about-kicker::before { content: ''; width: 48px; height: 1px; background: #d4af37; }
.zargon-about-hero h1 { margin: 0 0 24px; font-size: clamp(3.4rem, 7vw, 6.8rem); line-height: 1.08; color: #fff; }
.zargon-about-hero p { max-width: 620px; font-size: 1.08rem; color: rgba(255,255,255,.78); }
.zargon-about-story { padding: 110px 0; }
.zargon-about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.zargon-about-image { height: 650px; position: relative; padding: 14px; }
.zargon-about-image::before { content: ''; position: absolute; inset: 0; border: 1px solid #d4af37; transform: translate(16px,16px); }
.zargon-about-image img { position: relative; z-index: 1; box-shadow: 0 25px 60px rgba(1,20,15,.18); }
.zargon-about-copy h2 { margin: 8px 0 24px; font-size: clamp(2.4rem, 4.5vw, 4rem); color: #01140f; }
.zargon-about-copy p { color: #62726d; margin-bottom: 18px; }
.zargon-about-signature { margin-top: 28px; color: #aa8c2c; font-size: 1.15rem; font-weight: 800; }
.zargon-about-stamp { width: 120px; height: 120px; margin-top: 34px; border: 1px solid #d4af37; border-radius: 50%; display: grid; place-items: center; text-align: center; color: #053b2e; font-size: .7rem; font-weight: 800; line-height: 1.7; transform: rotate(-9deg); position: relative; }
.zargon-about-stamp::before { content: ''; position: absolute; inset: 7px; border: 1px dashed #aa8c2c; border-radius: 50%; }
.zargon-about-marquee { overflow: hidden; padding: 22px 0; background: #d4af37; color: #01140f; direction: ltr; }
.zargon-about-marquee-track { width: max-content; display: flex; gap: 42px; font-size: 1rem; font-weight: 900; letter-spacing: .18em; animation: zargonAboutMarquee 24s linear infinite; }
.zargon-about-marquee-track span::after { content: '✦'; margin-left: 42px; }
@keyframes zargonAboutMarquee { to { transform: translateX(-50%); } }
.zargon-about-process { padding: 120px 0; background: #f4f0e7; position: relative; overflow: hidden; }
.zargon-about-process::before { content: 'ATELIER'; position: absolute; right: -25px; top: 20px; font-size: clamp(7rem,18vw,17rem); font-weight: 900; color: rgba(5,59,46,.045); line-height: 1; }
.zargon-process-head { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; position: relative; }
.zargon-process-head h2 { margin: 0; color: #01140f; font-size: clamp(2.7rem,5vw,5rem); }
.zargon-process-head p { color: #62726d; }
.zargon-process-line { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 70px; border-top: 1px solid rgba(5,59,46,.22); position: relative; }
.zargon-process-step { padding: 38px 24px 0; position: relative; }
.zargon-process-step::before { content: ''; position: absolute; width: 13px; height: 13px; border: 3px solid #f4f0e7; border-radius: 50%; background: #d4af37; top: -7px; right: 24px; box-shadow: 0 0 0 1px #d4af37; }
.zargon-process-step b { display: block; color: #aa8c2c; font-size: .75rem; letter-spacing: .15em; }
.zargon-process-step h3 { margin: 14px 0 10px; color: #053b2e; font-size: 1.35rem; }
.zargon-process-step p { color: #62726d; font-size: .86rem; }
.zargon-about-values { padding: 100px 0; background: #03241b; color: #fff; }
.zargon-about-values .section-title { color: #fff; }
.zargon-value-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 55px; }
.zargon-value-card { padding: 38px 30px; border: 1px solid rgba(212,175,55,.25); background: rgba(255,255,255,.025); transition: .35s; }
.zargon-value-card:hover { transform: translateY(-8px); border-color: #d4af37; background: rgba(212,175,55,.07); }
.zargon-value-number { display: block; margin-bottom: 28px; color: #d4af37; font-size: .82rem; letter-spacing: .2em; }
.zargon-value-card h3 { margin-bottom: 14px; color: #f8ecbf; font-size: 1.45rem; }
.zargon-value-card p { color: rgba(255,255,255,.65); font-size: .92rem; }
.zargon-about-stats { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid rgba(212,175,55,.25); margin-top: 70px; }
.zargon-stat { padding: 32px 18px; text-align: center; border-left: 1px solid rgba(212,175,55,.2); }
.zargon-stat:last-child { border-left: 0; }
.zargon-stat strong { display: block; color: #f8ecbf; font-size: 2.4rem; }
.zargon-stat span { color: rgba(255,255,255,.58); font-size: .82rem; }
.zargon-about-cta { padding: 110px 20px; text-align: center; background: #fdfbf7; }
.zargon-about-cta h2 { margin: 0 auto 18px; max-width: 780px; color: #01140f; font-size: clamp(2.3rem,5vw,4.3rem); }
.zargon-about-cta p { margin: 0 auto 34px; max-width: 620px; color: #62726d; }
@media(max-width: 900px) { .zargon-about-story-grid { grid-template-columns: 1fr; gap: 55px; } .zargon-value-grid { grid-template-columns: 1fr; } .zargon-about-stats { grid-template-columns: repeat(2,1fr); } }
@media(max-width: 900px) { .zargon-process-head { grid-template-columns: 1fr; } .zargon-process-line { grid-template-columns: repeat(2,1fr); row-gap: 45px; } }
@media(max-width: 600px) { .zargon-about-hero { min-height: 600px; } .zargon-about-sideword { display: none; } .zargon-about-story { padding: 75px 0; } .zargon-about-image { height: 450px; } .zargon-about-stats { grid-template-columns: 1fr; } .zargon-stat { border-left: 0; border-bottom: 1px solid rgba(212,175,55,.2); } .zargon-process-line { grid-template-columns: 1fr; border-top: 0; } .zargon-process-step { border-right: 1px solid rgba(5,59,46,.22); padding: 10px 28px 38px; } .zargon-process-step::before { top: 12px; right: -7px; } }
.zargon-shop-layout { display: grid; grid-template-columns: 270px minmax(0, 1fr); grid-template-areas: "sidebar products"; gap: 34px; align-items: start; clear: both; }
.zargon-shop-sidebar { grid-area: sidebar; position: sticky; top: 115px; }
.zargon-products-area { grid-area: products; min-width: 0; }
.zargon-shop-categories { margin: 0; padding: 26px; border: 1px solid var(--border); background: #fff; box-shadow: var(--shadow-soft); }
.zargon-shop-categories h2 { margin: 0 0 18px; color: var(--emerald-950); font-size: 1.3rem; }
.zargon-category-list { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.zargon-category-list a { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 12px 15px; border: 1px solid var(--border); color: var(--emerald-950); font-weight: 600; transition: .3s; }
.zargon-category-list a:hover { color: var(--gold-light); background: var(--emerald-950); border-color: var(--emerald-950); }
.zargon-category-count { min-width: 22px; height: 22px; padding: 0 6px; display: inline-grid; place-items: center; border-radius: 999px; background: rgba(212,175,55,.15); font-size: .72rem; }
.zargon-category-accordion { border: 1px solid var(--border); background: #fff; }
.zargon-category-accordion + .zargon-category-accordion { margin-top: 10px; }
.zargon-category-accordion summary { min-height: 50px; padding: 11px 14px; display: flex; align-items: center; gap: 10px; cursor: pointer; list-style: none; color: var(--emerald-950); font-weight: 700; transition: .3s; }
.zargon-category-accordion summary::-webkit-details-marker { display: none; }
.zargon-category-accordion summary:hover, .zargon-category-accordion[open] > summary { background: #053b2e; color: #f8ecbf; }
.zargon-category-name { flex: 1; }
.zargon-category-chevron { width: 18px; height: 18px; display: grid; place-items: center; transition: transform .3s; color: #aa8c2c; }
.zargon-category-chevron::before { content: ''; width: 7px; height: 7px; border-left: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(-45deg); }
.zargon-category-accordion[open] > summary .zargon-category-chevron { transform: rotate(180deg); color: #f8ecbf; }
.zargon-subcategory-list { margin: 0; padding: 8px; list-style: none; border-top: 1px solid var(--border); background: #fdfbf7; }
.zargon-subcategory-list li + li { border-top: 1px solid rgba(212,175,55,.13); }
.zargon-subcategory-list a { padding: 10px 12px; border: 0; background: transparent; font-size: .86rem; font-weight: 500; }
.zargon-subcategory-list a:hover { padding-right: 18px; background: rgba(212,175,55,.09); color: #053b2e; }
.zargon-subcategory-all a { color: #aa8c2c; font-weight: 700; }
.zargon-subcategory-list .zargon-category-accordion { margin: 4px 0; border: 0; background: transparent; }
.zargon-subcategory-list .zargon-category-accordion > summary { min-height: 42px; padding: 9px 12px; font-size: .88rem; }
.zargon-subcategory-list .zargon-subcategory-list { margin: 0 10px 7px; border: 1px solid rgba(212,175,55,.18); }
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .woocommerce #respond input#submit,
.woocommerce a.added_to_cart { min-height: 46px; display: inline-flex; align-items: center; justify-content: center; padding: 0 22px !important; border: 1px solid #053b2e !important; border-radius: 0 !important; background: #053b2e !important; background-image: none !important; color: #fdfbf7 !important; font-family: var(--font-main) !important; font-weight: 700 !important; transition: .3s var(--transition-slow); }
.woocommerce a.add_to_cart_button.added { background: #0b6a54 !important; background-image: none !important; border-color: #0b6a54 !important; color: #fdfbf7 !important; }
.woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover, .woocommerce #respond input#submit:hover,
.woocommerce a.added_to_cart:hover, .woocommerce a.add_to_cart_button.added:hover { background: #f8ecbf !important; background-image: none !important; border-color: #e4d29a !important; color: #053b2e !important; transform: translateY(-2px); }
.woocommerce ul.products li.product a.added_to_cart { display: none !important; }
.woocommerce ul.products li.product .price { color: var(--gold-dark) !important; font-family: var(--font-main); font-weight: 700; }
.products-section .product-actions .action-btn {
  width: 44px !important; min-width: 44px !important; max-width: 44px !important;
  height: 44px !important; min-height: 44px !important; padding: 0 !important; flex: 0 0 44px;
  display: grid !important; place-items: center !important; position: relative;
  border: 1px solid rgba(212,175,55,.55) !important; border-radius: 50% !important;
  background: rgba(253,251,247,.92) !important; color: #053b2e !important;
  box-shadow: 0 8px 24px rgba(1,20,15,.22) !important; backdrop-filter: blur(8px);
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease !important;
}
.products-section .product-actions .action-btn svg { width: 20px !important; height: 20px !important; stroke-width: 1.8; }
.products-section .product-actions .action-btn:hover {
  background: #053b2e !important; color: #f8ecbf !important; border-color: #d4af37 !important;
  transform: translateY(-3px) scale(1.04) !important; box-shadow: 0 12px 28px rgba(1,20,15,.32) !important;
}
.products-section .product-actions .action-btn:focus-visible { outline: 2px solid #d4af37; outline-offset: 3px; }
@media (max-width: 900px) {
  .post-type-archive-product .woocommerce-products-header { min-height: 300px; background-position: 60% center; }
  .zargon-shop-layout { grid-template-columns: 1fr; grid-template-areas: "sidebar" "products"; }
  .zargon-shop-sidebar { position: static; }
  .zargon-category-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) { .zargon-category-list { grid-template-columns: 1fr; } }
