
/* ------Fonts----- */
@font-face {
    font-family: "IRANYekan";
    font-weight: lighter;
    src: url("../fonts/IRANYekanLight\(FaNum\).ttf") format("ttf");
    src: url("../fonts/iranyekanweblight.eot") format("eot");
    src: url("../fonts/iranyekanweblight.woff") format("woff");
}

@font-face {
    font-family: "IRANYekan";
    font-weight: bold;
    src: url("../fonts/iranyekanwebbold.ttf") format("ttf");
    src: url("../fonts/iranyekanwebbold.eot") format("eot");
    src: url("../fonts/iranyekanwebbold.woff") format("woff");
}
 /* ===== RESET & BASE ===== */
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      font-family: IRANYekan,'Vazirmatn', sans-serif;
      background: #0A0A0F;
      color: #E8E6E3;
      line-height: 1.8;
      overflow-x: hidden;
    }
    html { scroll-behavior: smooth; }

    /* ===== پس‌زمینه اصلی ===== */
    .master-bg {
      position: relative;
      background: #0A0A0F;
      min-height: 100vh;
    }
    .master-bg::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: 
        radial-gradient(circle at 20% 20%, rgba(60, 40, 100, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(20, 60, 120, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(180, 120, 70, 0.06) 0%, transparent 60%);
      pointer-events: none;
      z-index: 0;
    }
    .aurora {
      position: fixed;
      top: -30%;
      left: -10%;
      width: 120%;
      height: 120%;
      background: 
        radial-gradient(ellipse at 30% 40%, rgba(120, 80, 200, 0.07) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(200, 150, 80, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 30%, rgba(40, 100, 200, 0.05) 0%, transparent 50%);
      filter: blur(80px);
      pointer-events: none;
      z-index: 0;
      animation: auroraMove 25s ease-in-out infinite alternate;
    }
    @keyframes auroraMove {
      0% { transform: translate(0, 0) scale(1); }
      100% { transform: translate(3%, 3%) scale(1.05); }
    }
    
    /* ===== عقربه‌های ساعت در پس‌زمینه ===== */
    .watch-particles {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 0;
      overflow: hidden;
      opacity: 0.2;
    }
    .watch-hand {
      position: absolute;
      font-size: 1.8rem;
      transform-origin: center;
    }
    .watch-hand i {
      display: block;
      transform-origin: bottom center;
    }
    .watch-hand .hour-hand {
      font-size: 2.2rem;
      animation: rotateHour 25s linear infinite;
      color: rgba(212, 175, 55, 0.06);
    }
    .watch-hand .minute-hand {
      font-size: 1.8rem;
      animation: rotateMinute 16s linear infinite;
      color: rgba(212, 175, 55, 0.04);
    }
    .watch-hand .second-hand {
      font-size: 1.4rem;
      animation: rotateSecond 8s linear infinite;
      color: rgba(192, 57, 43, 0.03);
    }
    @keyframes rotateHour { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
    @keyframes rotateMinute { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
    @keyframes rotateSecond { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
    
    .watch-hand.floating-1 { animation: floatSoft1 25s infinite ease-in-out; }
    .watch-hand.floating-2 { animation: floatSoft2 28s infinite ease-in-out; }
    .watch-hand.floating-3 { animation: floatSoft3 30s infinite ease-in-out; }
    @keyframes floatSoft1 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(15px, -12px); } }
    @keyframes floatSoft2 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-12px, 15px); } }
    @keyframes floatSoft3 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(18px, 8px); } }
    
    .hand-pos-1 { left: 5%; top: 15%; }
    .hand-pos-2 { left: 15%; top: 55%; }
    .hand-pos-3 { left: 30%; top: 10%; }
    .hand-pos-4 { left: 45%; top: 70%; }
    .hand-pos-5 { left: 60%; top: 25%; }
    .hand-pos-6 { left: 75%; top: 60%; }
    .hand-pos-7 { left: 88%; top: 15%; }
    .hand-pos-8 { left: 92%; top: 75%; }
    
    .mini-hand {
      position: absolute;
      font-size: 0.8rem;
      color: rgba(212, 175, 55, 0.02);
      animation: rotateMinute 15s linear infinite;
    }
    .mini-hand i { display: inline-block; }

    .metal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: 
        repeating-linear-gradient(45deg, rgba(255,255,255,0.005) 0px, rgba(255,255,255,0.005) 1px, transparent 1px, transparent 3px),
        repeating-linear-gradient(-45deg, rgba(255,255,255,0.003) 0px, rgba(255,255,255,0.003) 1px, transparent 1px, transparent 4px);
      pointer-events: none;
      z-index: 0;
    }

    .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 2rem;
      position: relative;
      z-index: 1;
    }

    /* ============================================================
          HERO BANNER
          ============================================================ */
    .hero-banner {
      position: relative;
      width: 100%;
      padding: 0;
      margin: 0;
      border-radius: 24px;
      overflow: hidden;
      margin-bottom: 2.5rem;
    }
    .hero-banner img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 24px;
      object-fit: cover;
    }

    /* ============================================================
          شمارنده کمپین (7 روز)
          ============================================================ */
    .countdown-section {
      background: rgba(20, 24, 40, 0.3);
      backdrop-filter: blur(16px);
      border: 1px solid rgba(212, 175, 55, 0.02);
      border-radius: 24px;
      padding: 1.8rem 2rem;
      margin-bottom: 3rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1.5rem;
    }
    .countdown-section .countdown-title {
      font-size: 1rem;
      font-weight: 700;
      color: #D4AF37;
      letter-spacing: 1px;
    }
    .countdown-section .countdown-title i {
      margin-left: 0.5rem;
    }
    .countdown-section .countdown-items {
      display: flex;
      gap: 0.8rem;
      flex-wrap: wrap;
    }
    .countdown-section .countdown-items .cd-item {
      background: rgba(10, 10, 15, 0.4);
      border: 1px solid rgba(212, 175, 55, 0.02);
      padding: 0.3rem 0.8rem;
      border-radius: 12px;
      min-width: 55px;
      text-align: center;
    }
    .countdown-section .countdown-items .cd-item .num {
      font-size: 1.6rem;
      font-weight: 900;
      background: linear-gradient(135deg, #D4AF37, #B87333);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1.2;
    }
    .countdown-section .countdown-items .cd-item .label {
      font-size: 0.8rem;
      color: #8A8A8A;
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    /* ============================================================
          بخش برندها
          ============================================================ */
    .brands-section {
      padding: 3rem 0 2rem;
      position: relative;
    }
    .brands-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(212,175,55,0.04), transparent);
    }
    
    .brands-header {
      text-align: center;
      margin-bottom: 2.5rem;
    }
    .brands-header .main-title {
      font-size: 2.2rem;
      font-weight: 900;
      background: linear-gradient(135deg, #E8E6E3 0%, #D4AF37 60%, #B87333 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: -0.02em;
      line-height: 1.3;
      margin-bottom: 0.3rem;
    }
    .brands-header .main-title .highlight {
      background: linear-gradient(135deg, #D4AF37, #E5C76B);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    
    /* ===== سه آیتم برجسته ===== */
    .brands-header .highlight-items {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 2.5rem;
      flex-wrap: wrap;
      margin: 0.8rem 0 1.2rem;
    }
    .brands-header .highlight-items .item {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-size: 1.2rem;
      color: #E8E6E3;
      background: rgba(212, 175, 55, 0.02);
      padding: 0.3rem 1.2rem;
      border-radius: 40px;
      border: 1px solid rgba(212, 175, 55, 0.02);
      transition: 0.3s;
    }
    .brands-header .highlight-items .item:hover {
      border-color: rgba(212, 175, 55, 0.06);
      background: rgba(212, 175, 55, 0.03);
    }
    .brands-header .highlight-items .item i {
      color: #D4AF37;
      font-size: 1.2rem;
    }
    .brands-header .highlight-items .item .highlight-gold {
      font-weight: 900;
      font-size: 1.4rem;
      background: linear-gradient(135deg, #D4AF37, #E5C76B);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-shadow: 0 0 30px rgba(212, 175, 55, 0.03);
    }
    
    .highlight-gold {
      font-weight: 800;
      background: linear-gradient(135deg, #D4AF37, #E5C76B);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-shadow: 0 0 30px rgba(212, 175, 55, 0.05);
      transition: all 0.3s ease;
      display: inline-block;
    }
    .highlight-gold:hover {
      text-shadow: 0 0 40px rgba(212, 175, 55, 0.12);
      transform: scale(1.01);
    }

    /* ===== دسته‌بندی‌ها با راست‌چین ===== */
    .category-scroll-wrapper {
      position: relative;
      margin-top: 2rem;
      margin-bottom: 3rem;
    }
    .category-scroll-wrapper:last-child { margin-bottom: 0; }
    
    .category-scroll-wrapper .category-title {
      font-size: 1.3rem;
      font-weight: 700;
      color: #D4AF37;
      margin-bottom: 1rem;
      letter-spacing: 1px;
      display: flex;
      align-items: center;
      gap: 0.8rem;
      justify-content: flex-end;
      text-align: right;
    }
    .category-scroll-wrapper .category-title::after {
      content: '';
      flex: 1;
      height: 1px;
      background: linear-gradient(270deg, rgba(212, 175, 55, 0.06), transparent);
    }
    .category-scroll-wrapper .category-title .title-text {
      white-space: nowrap;
      padding: 0.2rem 1rem;
      background: rgba(212, 175, 55, 0.02);
      border: 1px solid rgba(212, 175, 55, 0.02);
      border-radius: 30px;
      font-size: 1rem;
    }
    .category-scroll-wrapper .category-title .title-icon {
      font-size: 0.8rem;
      color: #D4AF37;
      opacity: 0.4;
    }
    
    .category-scroll {
      display: flex;
      gap: 2rem;
      overflow-x: auto;
      padding: 0.5rem 0.2rem 1.5rem;
      scroll-behavior: smooth;
      scrollbar-width: thin;
      scrollbar-color: rgba(212, 175, 55, 0.06) transparent;
      -webkit-overflow-scrolling: touch;
    }
    .category-scroll::-webkit-scrollbar { height: 4px; }
    .category-scroll::-webkit-scrollbar-track { background: rgba(255,255,255,0.01); border-radius: 4px; }
    .category-scroll::-webkit-scrollbar-thumb { background: rgba(212, 175, 55, 0.06); border-radius: 4px; }
    
    .brand-card {
      flex: 0 0 240px;
      background: rgba(28, 28, 40, 0.7);
      backdrop-filter: blur(12px);
      border-radius: 32px;
      padding: 2rem 1rem 1.5rem;
      text-align: center;
      border: 1px solid rgba(212, 175, 55, 0.02);
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
      cursor: default;
    }
    .brand-card:hover {
      transform: translateY(-8px);
      border-color: rgba(212, 175, 55, 0.04);
      box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    }
    
    .brand-card .brand-logo {
      width: 200px;
      height: 200px;
      margin: 0 auto 0.8rem;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: radial-gradient(ellipse at 30% 30%, rgba(212,175,55,0.03), rgba(20,20,30,0.3));
      border: 1px solid rgba(212, 175, 55, 0.02);
      position: relative;
      overflow: hidden;
    }
    .brand-card .brand-logo .watch-face {
      position: absolute;
      inset: -12px;
      border-radius: 50%;
      z-index: 1;
      pointer-events: none;
    }
    .brand-card .brand-logo .watch-face .index-line {
      position: absolute;
      width: 2px;
      background: rgba(212, 175, 55, 0.04);
      left: 50%;
      top: -3px;
      transform-origin: bottom center;
      transform: translateX(-50%) rotate(var(--deg));
      height: 12px;
    }
    .brand-card .brand-logo .watch-face .index-line.major {
      height: 18px;
      width: 3px;
      background: rgba(212, 175, 55, 0.05);
    }
    .brand-card .brand-logo .watch-face .roman-numeral {
      position: absolute;
      font-size: 0.5rem;
      font-weight: 700;
      color: rgba(212, 175, 55, 0.03);
      left: 50%;
      top: 0px;
      transform: translateX(-50%) rotate(var(--deg));
      font-family: 'Times New Roman', serif;
    }
    .brand-card .brand-logo .watch-face .roman-numeral span {
      display: inline-block;
      transform: rotate(calc(-1 * var(--deg)));
    }
    .brand-card .brand-logo img {
      position: relative;
      z-index: 2;
      width: 100%;
      height: 100%;
      object-fit: contain;
      border-radius: 50%;
      filter: drop-shadow(0 4px 15px rgba(0,0,0,0.15)) brightness(0.95) contrast(1.05);
      transition: all 0.4s ease;
    }
    .brand-card:hover .brand-logo img {
      transform: scale(1.05);
      filter: drop-shadow(0 6px 25px rgba(212,175,55,0.04)) brightness(1.02) contrast(1.06);
    }
    .brand-card .brand-logo .glow-ring {
      position: absolute;
      inset: -4px;
      border-radius: 50%;
      border: 1px solid rgba(212, 175, 55, 0.01);
      pointer-events: none;
      transition: 0.4s;
      z-index: 0;
    }
    .brand-card:hover .brand-logo .glow-ring {
      border-color: rgba(212, 175, 55, 0.03);
      box-shadow: 0 0 40px rgba(212, 175, 55, 0.01);
    }
    
    .brand-card .brand-name {
      font-weight: 700;
      font-size: 1rem;
      color: #E8E6E3;
      margin-bottom: 0.1rem;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .brand-card .brand-name .en {
      font-size: 0.95rem;
      font-weight: 700;
      color: #E8E6E3;
      letter-spacing: 1px;
      text-transform: uppercase;
      order: 1;
    }
    .brand-card .brand-name .fa {
      font-size: 1rem;
  font-weight: 300;
  color: #F2EDED;
  order: 2;
  margin-top: 0.05rem;
  font-family: IRANYekan,'Vazirmatn', sans-serif;
    }
    
    .brand-card .stock-info {
      font-size: 0.7rem;
      color: #E74C3C;
      font-weight: 700;
      margin: 0.1rem 0;
    }
    .brand-card .stock-info i { margin-left: 0.15rem; font-size: 0.35rem; }
    
    .brand-card .discount-badge {
      display: inline-block;
      background: rgba(212, 175, 55, 0.03);
      color: #D4AF37;
      border-radius: 30px;
      padding: 0.08rem 0.8rem;
      font-size: 0.85rem;
      font-weight: 900;
      margin-top: 0.1rem;
      border: 1px solid rgba(212, 175, 55, 0.02);
      letter-spacing: 0.5px;
    }
    
    .brand-card .btn-link {
      display: inline-block;
      margin-top: 0.4rem;
      padding: 0.15rem 1.2rem;
      font-size: 0.65rem;
      font-weight: 700;
      color: #D4AF37;
      background: transparent;
      border: 1px solid #ffffff82;
      border-radius: 40px;
      text-decoration: none;
      transition: 0.3s;
      cursor: pointer;
    }
    .brand-card .btn-link:hover {
      background: rgba(212, 175, 55, 0.02);
      border-color: rgba(212, 175, 55, 0.04);
      transform: translateY(-2px);
    }

    /* ============================================================
          بخش مزایا
          ============================================================ */
    .benefits-section {
      margin: 3rem 0;
    }
    .benefits-grid {
      margin: 2rem auto;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
    }
    .benefit-item {
      background: rgba(28, 28, 40, 0.12);
  backdrop-filter: blur(12px);
  padding: 1rem 0.5rem;
  border-radius: 28px;
  text-align: center;
  border: 1px solid rgb(244, 235, 203);
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  min-width: 140px;
  margin: 15px;
  height: 120px;
    }
    .benefit-item:hover {
      border-color: rgba(212, 175, 55, 0.04);
      transform: translateY(-6px);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), 0 0 30px rgba(212, 175, 55, 0.01);
    }
    .benefit-item i { 
      font-size: 2.5rem; 
      color: #D4AF37; 
      margin-bottom: 0.5rem;
      display: block;
      filter: drop-shadow(0 2px 15px rgba(212, 175, 55, 0.08));
      transition: all 0.4s ease;
    }
    .benefit-item:hover i {
      filter: drop-shadow(0 4px 25px rgba(212, 175, 55, 0.15));
      transform: scale(1.02);
    }
    .benefit-item h4 { 
      color: #D4AF37; 
      font-size: 1rem; 
      font-weight: 700;
      letter-spacing: 0.5px;
      text-shadow: 0 0 20px rgba(212, 175, 55, 0.02);
    }

    /* ============================================================
          FAQ (جابه‌جا شده به بالا)
          ============================================================ */
    .faq-section {
      margin: 3rem 0;
    }
    .faq-item {
      background: rgba(28, 28, 40, 0.7);
      backdrop-filter: blur(8px);
      border-radius: 24px;
      padding: 1.2rem 1.8rem;
      margin: 0.8rem 0;
      border: 1px solid rgba(212, 175, 55, 0.01);
      cursor: pointer;
      transition: 0.3s;
    }
    .faq-item:hover {
      border-color: rgba(212, 175, 55, 0.02);
      background: rgba(28, 28, 40, 0.18);
    }
    .faq-item .faq-question {
      font-weight: 700;
      color: #D4AF37;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 1.05rem;
      gap: 1rem;
    }
    .faq-item .faq-question i {
      transition: 0.3s;
      font-size: 0.9rem;
      color: #8A8A8A;
    }
    .faq-item.active .faq-question i {
      transform: rotate(180deg);
      color: #D4AF37;
    }
    .faq-item .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: 0.5s ease;
      color: #B0B0B0;
      font-size: 0.95rem;
      line-height: 1.9;
    }
    .faq-item.active .faq-answer {
      max-height: 800px;
      padding-top: 1rem;
    }
    .faq-item .faq-answer strong {
      color: #D4AF37;
      font-weight: 700;
    }

    /* ============================================================
          اعتماد (جابه‌جا شده به پایین)
          ============================================================ */
    .trust-section {
      margin: 3rem 0;
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin: 1.5rem 0;
      text-align: center;
    }
    .stats-grid .stat {
      background: rgba(28, 28, 40, 0.7);
      background: rgba(28, 28, 40, 0.7);
      backdrop-filter: blur(8px);
      border-radius: 40px;
      padding: 1.2rem 0.5rem;
      border: 1px solid rgba(212, 175, 55, 0.01);
    }
    .stat-number { font-size: 2.2rem; font-weight: 900; color: #D4AF37; }
    
    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1.5rem;
      margin: 1.5rem 0;
    }
    .testimonial-card {
      background: rgba(28, 28, 40, 0.7);
      backdrop-filter: blur(8px);
      padding: 1.2rem;
      border-radius: 28px;
      border: 1px solid rgba(212, 175, 55, 0.01);
    }
    .testimonial-card .stars { color: #D4AF37; letter-spacing: 2px; font-size: 0.8rem; }
    .testimonial-card p { color: #B0B0B0; font-size: 0.85rem; }
    .testimonial-card strong { color: #D4AF37; font-size: 0.85rem; }

    /* ============================================================
          فوتر
          ============================================================ */
    .footer-section {
      margin-top: 4rem;
      padding: 2rem 0 0;
      border-top: 1px solid rgba(212, 175, 55, 0.04);
    }
    .footer-section .footer-text {
      text-align: center;
      font-size: 1.1rem;
      color: #B8B8B8;
      font-weight: 300;
      letter-spacing: 0.5px;
      margin-bottom: 0.5rem;
    }
    .footer-section .footer-divider {
      width: 60px;
      height: 1px;
      margin: 0.8rem auto;
      background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.15), transparent);
    }
    .footer-section .footer-contact {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 1.5rem 2.5rem;
      padding: 1.5rem 0;
    }
    .footer-section .footer-contact .contact-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: #8A8A8A;
      font-size: 0.85rem;
      transition: 0.3s;
      text-decoration: none;
	  direction: ltr;
    }
    .footer-section .footer-contact .contact-item:hover {
      color: #D4AF37;
    }
    .footer-section .footer-contact .contact-item i {
      color: #D4AF37;
      font-size: 1rem;
      width: 20px;
      text-align: center;
    }
    .footer-section .footer-contact .contact-item .social-icon {
      font-size: 1.2rem;
      color: #8A8A8A;
      transition: 0.3s;
    }
    .footer-section .footer-contact .contact-item .social-icon:hover {
      color: #D4AF37;
      transform: translateY(-2px);
    }
    .footer-section .footer-copy {
      text-align: center;
      font-size: 0.7rem;
      color: #5A5A5A;
      padding: 1.5rem 0 0.5rem;
      border-top: 1px solid rgba(255,255,255,0.02);
      letter-spacing: 1px;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 992px) {
      .hero-banner { border-radius: 16px; }
      .hero-banner img { border-radius: 16px; }
      .countdown-section { flex-direction: column; align-items: flex-start; padding: 1.5rem; }
      .countdown-section .countdown-items { width: 100%; justify-content: center; }
      .brands-header .main-title { font-size: 1.8rem; }
      .brands-header .highlight-items { gap: 1.5rem; }
      .brands-header .highlight-items .item { font-size: 1rem; padding: 0.2rem 1rem; }
      .brands-header .highlight-items .item .highlight-gold { font-size: 1.2rem; }
      .brand-card { flex: 0 0 220px; }
      .brand-card .brand-logo { width: 130px; height: 130px; }
      .benefits-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
      .footer-section .footer-contact { gap: 1rem 1.5rem; }
    }
    @media (max-width: 600px) {
      .container { padding: 0 1rem; }
      .hero-banner { border-radius: 12px; margin-bottom: 1.5rem; }
      .hero-banner img { border-radius: 12px; }
      .countdown-section { padding: 1rem; border-radius: 16px; }
      .countdown-section .countdown-title { font-size: 0.8rem; }
      .countdown-section .countdown-items .cd-item { min-width: 45px; padding: 0.15rem 0.2rem; }
      .countdown-section .countdown-items .cd-item .num { font-size: 1.2rem; }
      
      .brands-header .main-title { font-size: 1.4rem; }
      .brands-header .highlight-items { 
        gap: 0.8rem; 
        flex-direction: column;
        align-items: center;
      }
      .brands-header .highlight-items .item { 
        font-size: 0.95rem; 
        padding: 0.15rem 0.8rem;
        width: 100%;
        justify-content: center;
      }
      .brands-header .highlight-items .item .highlight-gold { 
        font-size: 1.1rem; 
      }
      
      .brand-card { 
        flex: 0 0 180px; 
        padding: 1.5rem 0.6rem 1.2rem; 
        border-radius: 24px;
      }
      .brand-card .brand-logo { width: 110px; height: 110px; }
      .brand-card .brand-name .en { font-size: 0.8rem; }
      .brand-card .brand-name .fa { font-size: 0.55rem; }
      .brand-card .discount-badge { font-size: 0.7rem; padding: 0.05rem 0.6rem; }
      .brand-card .btn-link { font-size: 0.55rem; padding: 0.1rem 0.8rem; }
      .brand-card .stock-info { font-size: 0.6rem; }
      .brand-card .brand-logo .watch-face .index-line { height: 10px; width: 1.5px; }
      .brand-card .brand-logo .watch-face .index-line.major { height: 14px; width: 2px; }
      .brand-card .brand-logo .watch-face .roman-numeral { font-size: 0.4rem; }
      
      .category-scroll { gap: 1.2rem; padding: 0.3rem 0.1rem 1rem; }
      .category-scroll-wrapper .category-title .title-text { font-size: 0.8rem; padding: 0.1rem 0.6rem; }
      
      .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
      .benefit-item { padding: 1.5rem 0.8rem;margin: 4px; }
      .benefit-item i { font-size: 2rem; }
      .benefit-item h4 { font-size: 0.80rem; }
      
      .stats-grid { grid-template-columns: 1fr 1fr; }
      .stats-grid .stat:last-child { grid-column: span 2; }
      
      .faq-item { padding: 1rem 1rem; }
      .faq-item .faq-question { font-size: 0.9rem; }
      .faq-item .faq-answer { font-size: 0.85rem; }
      
      .footer-section .footer-text { font-size: 0.9rem; }
      
      .footer-section .footer-contact .contact-item { font-size: 0.8rem;direction: ltr; }
    }