html{
      overflow-x: hidden;
    }
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Inter', sans-serif;
      background: #0A0A0A;
      color: #E0E0E0;
      overflow-x: hidden;
    }
    
    :root {
      --bg-deep: #050505;
      --bg-dark: #0F0F0F;
      --bg-card: #141414;
      --bg-elevated: #1A1A1A;
      --yellow: #F5C518;
      --blue: #2A7FFF;
      --yellow-dark: #D4A800;
      --text-primary: #FFFFFF;
      --text-secondary: #B0B0B0;
      --text-muted: #707070;
      --border-subtle: rgba(255, 255, 255, 0.06);
      --border-medium: rgba(255, 255, 255, 0.1);
    }
    
    ::-webkit-scrollbar { width: 4px; }
    ::-webkit-scrollbar-track { background: var(--bg-dark); }
    ::-webkit-scrollbar-thumb { background: var(--yellow); border-radius: 4px; }
    
    .navbar-premium {
      background: rgba(10, 10, 10, 0.96);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid white;
    }
    
    
   .category-card {
  background: var(--bg-card);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid #2A7FFF;
  cursor: pointer;
  position: relative;
}

/* Image */
.category-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* 🔥 Overlay FIX (yahan lagao) */
.category-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5); 
  pointer-events: none;
}

/* Hover Zoom */
.category-card:hover .category-img {
  transform: scale(1.2);
}

/* Bottom Gradient Overlay (already correct) */
.category-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(5,5,5,0.95), transparent);
  padding: 1.25rem;
  z-index: 2;
}

/* Text */
.category-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
}

.category-count {
  font-size: 0.75rem;
  color: var(--yellow);
}
    
    .feature-card {
      background: var(--bg-card);
      border-radius: 20px;
      padding: 1.5rem;
      text-align: center;
      border: 1px solid var(--border-subtle);
      transition: all 0.2s;
    }
    .feature-card:hover {
      transform: translateY(-2px);
      border-color: var(--blue);
    }
    .feature-card i {
      color: var(--yellow);
      font-size: 2rem;
      margin-bottom: 0.5rem;
      display: inline-block;
    }
    
    .banner-card {
      background: #2A7FFF;
      border-radius: 28px;
      padding: 2.5rem 2rem;
      text-align: center;
      border: 1px solid var(--border-subtle);
    }
    
    .hero-slide {
      overflow: hidden;
      position: relative;
      padding: 60px 0 0;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 1;
      background: rgba(0, 0, 0, 0.6);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding: 0 10px;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
    }
    .swiper-button-next, .swiper-button-prev {
      color: var(--yellow);
      background: rgba(20,20,20,0.8);
      width: 44px;
      height: 44px;
      border-radius: 44px;
      backdrop-filter: blur(4px);
      border: 1px solid var(--border-subtle);
      display: none;
    }
    .swiper-button-next:after, .swiper-button-prev:after {
      font-size: 16px;
    }
    .swiper-pagination-bullet {
      background: var(--text-secondary);
      opacity: 0.5;
    }
    .swiper-pagination-bullet-active {
      background: var(--yellow);
      opacity: 1;
    }
    
    .review-card {
      background: var(--bg-card);
      border-radius: 24px;
      padding: 1.8rem;
      border: 1px solid var(--border-subtle);
    }
    .review-stars i {
      color: var(--yellow);
      font-size: 14px;
      margin-right: 2px;
    }
    
    .detail-overlay {
      position: fixed;
      inset: 0;
      background: rgba(5,5,5,0.4);
      backdrop-filter: blur(20px);
      z-index: 2000;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 1rem;
    }
    .detail-container {
      max-width: 1100px;
      width: 100%;
      background: var(--bg-dark);
      border-radius: 10px;
      border: 1px solid var(--border-medium);
      overflow: auto;
      max-height: 90vh;
    }
    .detail-thumb {
      width: 70px;
      height: 70px;
      object-fit: cover;
      border-radius: 12px;
      border: 2px solid transparent;
      cursor: pointer;
    }
    .detail-thumb.active {
      border-color: var(--yellow);
    }
    
    .order-modal {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(5,5,5,0.98);
      backdrop-filter: blur(20px);
      align-items: center;
      justify-content: center;
      z-index: 2100;
    }
    .order-modal-content {
      background: var(--bg-elevated);
      border-radius: 28px;
      max-width: 480px;
      width: 90%;
      padding: 2rem;
      border: 1px solid var(--border-medium);
    }
    .form-input {
      width: 100%;
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: 16px;
      padding: 12px 16px;
      color: var(--text-primary);
    }
    .form-input:focus {
      outline: none;
      border-color: var(--yellow);
    }
    
    .mobile-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 80%;
      max-width: 340px;
      height: 100%;
      background: var(--bg-deep);
      backdrop-filter: blur(20px);
      z-index: 1500;
      transition: right 0.3s ease;
      padding: 2rem 1.5rem;
      border-left: 1px solid var(--border-subtle);
    }
    .mobile-menu.open { right: 0; }
    .menu-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.5);
      backdrop-filter: blur(4px);
      z-index: 1499;
      display: none;
    }
    .menu-overlay.active { display: block; }
    
    .phone-badge {
      background: rgba(245, 197, 24, 0.12);
      border-radius: 60px;
      padding: 8px 18px;
      transition: all 0.2s;
      border: 1px solid rgba(245,197,24,0.2);
    }
    .phone-badge:hover {
      background: var(--yellow);
      color: #0A0A0A;
    }
    
    .footer {
      background: #050505;
      border-top: 1px solid var(--border-subtle);
    }
    .footer a {
      transition: color 0.2s;
    }
    .footer a:hover {
      color: var(--yellow);
    }
    
    .section-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      padding: 0 10px;
      margin-bottom: 1.5rem;
    }
    .section-title {
      font-size: 1.8rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      color: var(--text-primary);
    }
    .section-subtitle {
      color: var(--text-secondary);
      font-size: 0.9rem;
      margin-top: 0.25rem;
    }
    .view-all-link {
      color: var(--yellow);
      font-size: 0.85rem;
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: all 0.2s;
      cursor: pointer;
      background: rgba(245,197,24,0.1);
      padding: 6px 14px;
      border-radius: 40px;
      border: 1px solid rgba(245,197,24,0.2);
    }
    .view-all-link:hover {
      background: var(--yellow);
      color: #0A0A0A;
      gap: 10px;
    }
    
    /* Admin Access Button */
    .admin-access-btn {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background: var(--bg-elevated);
      border: 1px solid var(--border-medium);
      border-radius: 50px;
      padding: 10px 20px;
      display: flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      z-index: 100;
      transition: all 0.2s;
      backdrop-filter: blur(10px);
    }
    .admin-access-btn:hover {
      border-color: var(--yellow);
      color: var(--yellow);
      transform: translateY(-2px);
    }
    
    /* NEW: unified carousel card style (preserves exact same product card look) */
    .unified-carousel-section {
      margin-bottom: 3rem;
    }
    .carousel-card-wrapper {
      padding: 0 4px;
    }
    .carousel-swiper {
      overflow: hidden;
    }
    .carousel-swiper .swiper-slide {
      height: auto;
    }
    
    @media (max-width: 768px) {
      .product-img { height: 200px; }
      .section-title { font-size: 1.5rem; text-align: center; }
      .section-subtitle { text-align: center; }
      .section-header { flex-direction: column; align-items: center; gap: 12px; text-align: center; }
      .product-card { text-align: center; }
      .product-rating { justify-content: center; }
      .product-actions { justify-content: center; }
      .category-card { text-align: center; }
      .category-overlay { text-align: center; }
      .feature-card { text-align: center; }
      .banner-card { text-align: center; }
      .review-card { text-align: center; }
      .review-stars { justify-content: center; display: flex; }
      .hero-content { text-align: center; align-items: center; }
      .footer { text-align: center; }
      .footer .grid > div { text-align: center; }
      .footer ul { display: flex; flex-direction: column; align-items: center; }
      .swiper-button-next, .swiper-button-prev { display: none; }
      .admin-access-btn { bottom: 10px; right: 10px; padding: 6px 12px; font-size: 12px; }
    }
    
    @media (max-width: 480px) {
      .product-actions { flex-direction: column; gap: 8px; }
      .btn-primary, .btn-outline { width: 100%; }
      .hero-content h1 { font-size: 2rem; }
      .section-title { font-size: 1.3rem; }
    }
    .whatsapp-left-image-container{
      height: 100px;
      width: 100px;
      position: fixed;
      bottom: 10px;
      right: 10px;
    }
    .whatsapp-left-image-container img{
      height: 100%;
      width: 100%;
      object-fit: contain;
    }
    @media(max-width:600px){
      .whatsapp-left-image-container{
        height: 80px;
        width: 80px;

      }
    }
.nav-call{
  background-color: #D4A800;
  padding: 7px 20px;
  border-radius: 20px;
  transition: all 0.3s;
}
.nav-call:hover{
  background-color: #2A7FFF;
}

.navbar-premium {
      background: rgba(10, 10, 10, 0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    
    .text-yellow {
      color: #F5C518;
    }
    
    .bg-yellow {
      background-color: #F5C518;
    }
    
    .hover\:bg-yellow-dark:hover {
      background-color: #D4A800;
    }
    
    .border-yellow {
      border-color: #F5C518;
    }
    
    .text-yellow-dark {
      color: #D4A800;
    }
    
    .nav-call {
      background: linear-gradient(135deg, #F5C518 0%, #D4A800 100%);
      color: #0A0A0A;
      padding: 0.5rem 1.25rem;
      border-radius: 40px;
      font-weight: 600;
      font-size: 0.85rem;
      transition: all 0.2s ease;
      box-shadow: 0 2px 8px rgba(245, 197, 24, 0.2);
    }
    
    .nav-call:hover {
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(245, 197, 24, 0.3);
      background: linear-gradient(135deg, #FFD624 0%, #E5B800 100%);
    }
    
    .footer {
      background: #050505;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .help-card {
      background: #111111;
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 24px;
      transition: all 0.25s ease;
    }
    
    .help-card:hover {
      border-color: rgba(245, 197, 24, 0.3);
      transform: translateY(-4px);
      box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.5);
    }
    
    .faq-item {
      background: #0F0F0F;
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: 20px;
      transition: all 0.2s;
    }
    
    .faq-question {
      cursor: pointer;
      transition: color 0.2s;
    }
    
    .faq-question:hover {
      color: #F5C518;
    }
    
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease-out;
      border-top: 0px solid transparent;
    }
    
    .faq-item.active .faq-answer {
      max-height: 300px;
      border-top-width: 1px;
      border-top-color: rgba(245, 197, 24, 0.15);
      margin-top: 0.75rem;
      padding-top: 0.75rem;
    }
    
    .faq-item.active .faq-icon i {
      transform: rotate(180deg);
    }
    
    .contact-badge {
      background: linear-gradient(135deg, #F5C51810 0%, #D4A80010 100%);
      border: 1px solid rgba(245, 197, 24, 0.2);
      border-radius: 20px;
    }
    
    .form-input {
      background: #111111;
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 16px;
      padding: 0.875rem 1rem;
      color: #E0E0E0;
      width: 100%;
      transition: all 0.2s;
    }
    
    .form-input:focus {
      outline: none;
      border-color: #F5C518;
      box-shadow: 0 0 0 2px rgba(245, 197, 24, 0.2);
    }
    
    .btn-primary {
      background: #F5C518;
      color: #0A0A0A;
      font-weight: 600;
      border-radius: 40px;
      padding: 0.875rem 1.5rem;
      transition: all 0.2s;
    }
    
    .btn-primary:hover {
      background: #D4A800;
      transform: translateY(-1px);
    }
    
    .section-title {
      font-size: 1.8rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      background: linear-gradient(135deg, #FFFFFF 0%, #E0E0E0 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      margin-bottom: 0.5rem;
    }
    
    .section-subtitle {
      color: #8A8A8A;
      font-size: 0.95rem;
    }
    
    @media (max-width: 768px) {
      .section-title {
        font-size: 1.5rem;
      }
    }
    
    .breadcrumb {
      font-size: 0.85rem;
      color: #8A8A8A;
    }
    
    .breadcrumb a {
      color: #F5C518;
    }

  .warranty-badge {
      background: linear-gradient(135deg, rgba(245,197,24,0.15) 0%, rgba(212,168,0,0.08) 100%);
      border: 1px solid rgba(245,197,24,0.25);
    }
    .timeline-step {
      position: relative;
    }
    .timeline-step:not(:last-child)::after {
      content: '';
      position: absolute;
      top: 40px;
      left: 24px;
      width: 2px;
      height: calc(100% - 40px);
      background: linear-gradient(to bottom, #F5C518, rgba(245,197,24,0.2));
      z-index: 0;
    }
    .coverage-card {
      background: #0F0F0F;
      border: 1px solid rgba(255,255,255,0.06);
      transition: all 0.25s ease;
    }
    .coverage-card:hover {
      border-color: rgba(245,197,24,0.3);
      transform: translateY(-2px);
    }
    .exclusion-card {
      background: rgba(255,50,50,0.05);
      border: 1px solid rgba(255,50,50,0.15);
    }
     /* Fresh layout styles for shipping page */
    .shipping-hero {
      background: linear-gradient(135deg, #0A0A0A 0%, #0F0F0F 100%);
      position: relative;
      overflow: hidden;
    }
    .shipping-hero::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 60%;
      height: 200%;
      background: radial-gradient(circle, rgba(245,197,24,0.08) 0%, transparent 70%);
      pointer-events: none;
    }
    .stat-card {
      background: rgba(255,255,255,0.03);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.06);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .stat-card:hover {
      transform: translateY(-5px);
      border-color: rgba(245,197,24,0.3);
      background: rgba(245,197,24,0.05);
    }
    .method-card {
      background: #0D0D0D;
      border: 1px solid rgba(255,255,255,0.06);
      transition: all 0.25s ease;
    }
    .method-card:hover {
      border-color: #F5C518;
      box-shadow: 0 8px 25px -12px rgba(245,197,24,0.2);
    }
    .city-badge {
      background: rgba(245,197,24,0.08);
      border: 1px solid rgba(245,197,24,0.15);
      transition: all 0.2s;
    }
    .city-badge:hover {
      background: rgba(245,197,24,0.15);
      transform: scale(1.02);
    }
    .timeline-node {
      position: relative;
    }
    .timeline-node::before {
      content: '';
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: -30px;
      width: 2px;
      height: 40px;
      background: linear-gradient(to bottom, #F5C518, transparent);
    }
    .timeline-node:last-child::before {
      display: none;
    }
    .faq-shipping-item {
      background: #0B0B0B;
      border: 1px solid rgba(255,255,255,0.05);
      transition: all 0.2s;
    }
    .faq-shipping-item.active {
      border-color: rgba(245,197,24,0.3);
      background: rgba(245,197,24,0.02);
    }
    .tracking-card {
      background: linear-gradient(135deg, #0F0F0F 0%, #0A0A0A 100%);
      border: 1px solid rgba(245,197,24,0.2);
    }

    .text-yellow {
      color: #F5C518;
    }
    
    .bg-yellow {
      background-color: #F5C518;
    }
    
    .hover\:bg-yellow-dark:hover {
      background-color: #D4A800;
    }
    
    .nav-call {
      background: linear-gradient(135deg, #F5C518 0%, #D4A800 100%);
      color: #0A0A0A;
      padding: 0.5rem 1.25rem;
      border-radius: 40px;
      font-weight: 600;
      font-size: 0.85rem;
      transition: all 0.2s ease;
      box-shadow: 0 2px 8px rgba(245, 197, 24, 0.2);
    }
    
    .nav-call:hover {
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(245, 197, 24, 0.3);
    }
    
    .footer {
      background: #050505;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    /* New fresh layout styles */
    .hero-wave {
      background: linear-gradient(180deg, #0A0A0A 0%, #0F0F0F 100%);
      position: relative;
      overflow: hidden;
    }
    
    .hero-wave::before {
      content: '';
      position: absolute;
      top: -30%;
      right: -10%;
      width: 60%;
      height: 150%;
      background: radial-gradient(circle, rgba(245,197,24,0.06) 0%, transparent 70%);
      pointer-events: none;
    }
    
    .hero-wave::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(245,197,24,0.3), transparent);
    }
    
    .stat-card {
      background: rgba(18, 18, 18, 0.8);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.06);
      transition: all 0.3s ease;
    }
    
    .stat-card:hover {
      transform: translateY(-6px);
      border-color: rgba(245, 197, 24, 0.4);
      background: rgba(245, 197, 24, 0.04);
    }
    
    .method-card {
      background: #0D0D0D;
      border: 1px solid rgba(255, 255, 255, 0.06);
      transition: all 0.3s ease;
    }
    
    .method-card:hover {
      transform: translateY(-4px);
      border-color: #F5C518;
      box-shadow: 0 12px 28px -12px rgba(245, 197, 24, 0.2);
    }
    
    .city-chip {
      background: rgba(245, 197, 24, 0.08);
      border: 1px solid rgba(245, 197, 24, 0.12);
      transition: all 0.2s;
    }
    
    .city-chip:hover {
      background: rgba(245, 197, 24, 0.18);
      transform: translateY(-2px);
      border-color: rgba(245, 197, 24, 0.4);
    }
    
    .journey-step {
      position: relative;
    }

    
    
    
    .step-circle {
      background: rgba(245, 197, 24, 0.1);
      border: 1px solid rgba(245, 197, 24, 0.3);
      transition: all 0.2s;
    }
    
    .journey-step:hover .step-circle {
      background: rgba(245, 197, 24, 0.2);
      transform: scale(1.05);
    }
    
    .track-card {
      background: linear-gradient(135deg, #0F0F0F 0%, #0B0B0B 100%);
      border: 1px solid rgba(245, 197, 24, 0.15);
    }
    
    .faq-item {
      background: #0B0B0B;
      border: 1px solid rgba(255, 255, 255, 0.05);
      transition: all 0.25s;
    }
    
    .faq-item.active {
      border-color: rgba(245, 197, 24, 0.35);
      background: rgba(245, 197, 24, 0.02);
    }
    
    .section-title {
      font-size: 1.8rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      background: linear-gradient(135deg, #FFFFFF 0%, #C0C0C0 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      margin-bottom: 0.5rem;
    }
    
    .section-subtitle {
      color: #8A8A8A;
      font-size: 0.95rem;
    }
    
    .text-text-secondary {
      color: #A0A0A0;
    }
    
    .text-text-muted {
      color: #6B6B6B;
    }
    
    @media (max-width: 768px) {
      .section-title {
        font-size: 1.5rem;
      }
    }
    /* About page specific styles */
    .about-hero {
      background: linear-gradient(135deg, #0A0A0A 0%, #0F0F0F 100%);
      position: relative;
      overflow: hidden;
    }
    
    .about-hero::before {
      content: '';
      position: absolute;
      top: -30%;
      right: -10%;
      width: 60%;
      height: 150%;
      background: radial-gradient(circle, rgba(245,197,24,0.06) 0%, transparent 70%);
      pointer-events: none;
    }
    
    .about-hero::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(245,197,24,0.3), transparent);
    }
    
    .value-card {
      background: #0D0D0D;
      border: 1px solid rgba(255, 255, 255, 0.06);
      transition: all 0.3s ease;
    }
    
    .value-card:hover {
      transform: translateY(-6px);
      border-color: rgba(245, 197, 24, 0.4);
      background: rgba(245, 197, 24, 0.03);
    }
    
    .milestone-dot {
      position: relative;
    }
    
    .milestone-dot:not(:last-child)::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 100%;
      width: calc(100% - 40px);
      height: 2px;
      background: linear-gradient(90deg, #F5C518, rgba(245,197,24,0.1));
      transform: translateY(-50%);
    }
    
    @media (max-width: 768px) {
      .milestone-dot:not(:last-child)::after {
        display: none;
      }
    }
    
    .team-card {
      background: #0D0D0D;
      border: 1px solid rgba(255, 255, 255, 0.06);
      transition: all 0.3s ease;
    }
    
    .team-card:hover {
      transform: translateY(-5px);
      border-color: rgba(245, 197, 24, 0.3);
    }
    
    .stat-number {
      font-size: 2.5rem;
      font-weight: 800;
      background: linear-gradient(135deg, #F5C518 0%, #D4A800 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    
    .section-title {
      font-size: 1.8rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      background: linear-gradient(135deg, #FFFFFF 0%, #C0C0C0 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      margin-bottom: 0.5rem;
    }
    
    .section-subtitle {
      color: #8A8A8A;
      font-size: 0.95rem;
    }
    
    .text-text-secondary {
      color: #A0A0A0;
    }
    
    .text-text-muted {
      color: #6B6B6B;
    }
    
    @media (max-width: 768px) {
      .section-title {
        font-size: 1.5rem;
      }
    }

    /* Terms page specific styles */
    .terms-hero {
      background: linear-gradient(135deg, #0A0A0A 0%, #0F0F0F 100%);
      position: relative;
      overflow: hidden;
    }
    
    .terms-hero::before {
      content: '';
      position: absolute;
      top: -30%;
      right: -10%;
      width: 60%;
      height: 150%;
      background: radial-gradient(circle, rgba(245,197,24,0.05) 0%, transparent 70%);
      pointer-events: none;
    }
    
    .terms-hero::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(245,197,24,0.3), transparent);
    }
    
    .terms-card {
      background: #0D0D0D;
      border: 1px solid rgba(255, 255, 255, 0.06);
      transition: all 0.3s ease;
    }
    
    .terms-card:hover {
      border-color: rgba(245, 197, 24, 0.2);
    }
    
    .section-title {
      font-size: 1.8rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      background: linear-gradient(135deg, #FFFFFF 0%, #C0C0C0 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      margin-bottom: 0.5rem;
    }
    
    .section-subtitle {
      color: #8A8A8A;
      font-size: 0.95rem;
    }
    
    .text-text-secondary {
      color: #A0A0A0;
    }
    
    .text-text-muted {
      color: #6B6B6B;
    }
    
    .last-updated {
      font-size: 0.8rem;
      color: #6B6B6B;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      padding-bottom: 1rem;
    }
    
    .terms-content h3 {
      font-size: 1.25rem;
      font-weight: 600;
      color: #F5C518;
      margin-top: 1.5rem;
      margin-bottom: 0.75rem;
    }
    
    .terms-content h4 {
      font-size: 1rem;
      font-weight: 600;
      color: #FFFFFF;
      margin-top: 1rem;
      margin-bottom: 0.5rem;
    }
    
    .terms-content p {
      color: #A0A0A0;
      line-height: 1.6;
      margin-bottom: 1rem;
    }
    
    .terms-content ul, .terms-content ol {
      margin: 0.75rem 0 1rem 1.5rem;
      color: #A0A0A0;
      line-height: 1.6;
    }
    
    .terms-content li {
      margin-bottom: 0.5rem;
    }
    
    .terms-content a {
      color: #F5C518;
      text-decoration: none;
    }
    
    .terms-content a:hover {
      text-decoration: underline;
    }
    
    .highlight-box {
      background: rgba(245, 197, 24, 0.05);
      border-left: 3px solid #F5C518;
      padding: 1rem 1.25rem;
      border-radius: 12px;
      margin: 1.5rem 0;
    }
    
    @media (max-width: 768px) {
      .section-title {
        font-size: 1.5rem;
      }
    }

    .privacy-hero {
      background: linear-gradient(135deg, #0A0A0A 0%, #0F0F0F 100%);
      position: relative;
      overflow: hidden;
    }
    
    .privacy-hero::before {
      content: '';
      position: absolute;
      top: -30%;
      right: -10%;
      width: 60%;
      height: 150%;
      background: radial-gradient(circle, rgba(245,197,24,0.05) 0%, transparent 70%);
      pointer-events: none;
    }
    
    .privacy-hero::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(245,197,24,0.3), transparent);
    }
    
    .privacy-card {
      background: #0D0D0D;
      border: 1px solid rgba(255, 255, 255, 0.06);
      transition: all 0.3s ease;
    }
    
    .privacy-card:hover {
      border-color: rgba(245, 197, 24, 0.2);
    }
    
    .section-title {
      font-size: 1.8rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      background: linear-gradient(135deg, #FFFFFF 0%, #C0C0C0 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      margin-bottom: 0.5rem;
    }
    
    .section-subtitle {
      color: #8A8A8A;
      font-size: 0.95rem;
    }
    
    .text-text-secondary {
      color: #A0A0A0;
    }
    
    .text-text-muted {
      color: #6B6B6B;
    }
    
    .last-updated {
      font-size: 0.8rem;
      color: #6B6B6B;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      padding-bottom: 1rem;
    }
    
    .privacy-content h3 {
      font-size: 1.25rem;
      font-weight: 600;
      color: #F5C518;
      margin-top: 1.5rem;
      margin-bottom: 0.75rem;
    }
    
    .privacy-content h4 {
      font-size: 1rem;
      font-weight: 600;
      color: #FFFFFF;
      margin-top: 1rem;
      margin-bottom: 0.5rem;
    }
    
    .privacy-content p {
      color: #A0A0A0;
      line-height: 1.6;
      margin-bottom: 1rem;
    }
    
    .privacy-content ul, .privacy-content ol {
      margin: 0.75rem 0 1rem 1.5rem;
      color: #A0A0A0;
      line-height: 1.6;
    }
    
    .privacy-content li {
      margin-bottom: 0.5rem;
    }
    
    .privacy-content a {
      color: #F5C518;
      text-decoration: none;
    }
    
    .privacy-content a:hover {
      text-decoration: underline;
    }
    
    .highlight-box {
      background: rgba(245, 197, 24, 0.05);
      border-left: 3px solid #F5C518;
      padding: 1rem 1.25rem;
      border-radius: 12px;
      margin: 1.5rem 0;
    }
    
    .info-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1rem;
      margin: 1.5rem 0;
    }
    
    .info-item {
      background: rgba(255, 255, 255, 0.03);
      padding: 1rem;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .info-item i {
      color: #F5C518;
      margin-right: 0.5rem;
    }
    
    @media (max-width: 768px) {
      .section-title {
        font-size: 1.5rem;
      }
    }



    
    .section-title {
      font-size: 1.8rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      background: linear-gradient(135deg, #FFFFFF 0%, #E0E0E0 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      margin-bottom: 0.5rem;
    }
    
    .section-subtitle {
      color: #8A8A8A;
      font-size: 0.95rem;
    }
    
    .section-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 1.5rem;
      flex-wrap: wrap;
    }
    
    .view-all-link {
      color: #F5C518;
      font-size: 0.85rem;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }
    
    .view-all-link:hover {
      gap: 0.75rem;
      color: #000;
    }
    
    .product-card {
      background: #111111;
      border-radius: 6px;
      overflow: hidden;
      max-width: 320px;
      transition: all 0.3s ease;
      border: 1px solid rgba(255, 255, 255, 0.06);
      cursor: pointer;
    }
    
    .product-card:hover {
      transform: translateY(-4px);
      border-color: #fff;
      box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.5);
    }
    
    .product-img {
      width: 100%;
      height: 250px;
      object-fit: cover;
    }
    
    .product-info {
      padding: 1rem;
    }
    
    .product-title {
      font-weight: 600;
      font-size: 0.95rem;
      color: white;
      margin-bottom: 0.25rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    
    .product-rating {
      display: flex;
      align-items: center;
      gap: 0.25rem;
      margin-bottom: 0.5rem;
    }
    
    .product-price {
      font-weight: 700;
      font-size: 1.1rem;
      color: #F5C518;
      margin-bottom: 0.75rem;
    }
    
    .product-actions {
      display: flex;
      gap: 0.5rem;
    }
    
    .btn-primary {
      background: #F5C518;
      color: #0A0A0A;
      padding: 0.5rem 1rem;
      border-radius: 2rem;
      font-size: 0.75rem;
      font-weight: 600;
      border: none;
      cursor: pointer;
      transition: all 0.2s;
      flex: 1;
    }
    
    .btn-primary:hover {
      background: #D4A800;
      transform: translateY(-1px);
    }
    
    .btn-outline {
      background: #2A7FFF;
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: #E0E0E0;
      padding: 0.5rem 1rem;
      border-radius: 2rem;
      font-size: 0.75rem;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.2s;
      flex: 1;
      text-align: center;
    }
    
    .btn-outline:hover {
      transform: translateY(-1px);
    }
    
    .category-card {
      position: relative;
      border-radius: 1rem;
      overflow: hidden;
      cursor: pointer;
      aspect-ratio: 1;
    }
    
    .category-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }
    
    .category-card:hover .category-img {
      transform: scale(1.05);
    }
    
    .category-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
      padding: 1rem;
      text-align: center;
    }
    
    .category-name {
      color: white;
      font-weight: 600;
      font-size: 0.9rem;
    }
    
    .category-count {
      color: #F5C518;
      font-size: 0.7rem;
    }
    
    .feature-card {
      background: #111111;
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: 1rem;
      padding: 1rem;
      text-align: center;
      transition: all 0.2s;
    }
    
    .feature-card:hover {
      border-color: rgba(245, 197, 24, 0.3);
      transform: translateY(-2px);
    }
    
    .feature-card i {
      font-size: 1.5rem;
      color: #F5C518;
      margin-bottom: 0.5rem;
    }
    
    .review-card {
      background: #111111;
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: 1rem;
      padding: 1.5rem;
    }
    
    .review-stars i {
      color: #F5C518;
      font-size: 0.8rem;
    }
    
    .banner-card {
      background: linear-gradient(135deg, #1A1A1A 0%, #0F0F0F 100%);
      border: 1px solid rgba(245, 197, 24, 0.2);
      border-radius: 2rem;
      padding: 3rem 2rem;
      text-align: center;
    }
    
    /* Detail Overlay */
    .detail-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.95);
      z-index: 1000;
      justify-content: center;
      align-items: center;
      backdrop-filter: blur(8px);
    }
    
    .detail-container {
      background: #0D0D0D;
      border-radius: 1.5rem;
      max-width: 1100px;
      width: 90%;
      max-height: 90vh;
      overflow-y: auto;
      border: 1px solid rgba(245, 197, 24, 0.2);
    }
    
    .detail-thumb {
      width: 60px;
      height: 60px;
      object-fit: cover;
      border-radius: 0.5rem;
      cursor: pointer;
      border: 2px solid transparent;
      transition: all 0.2s;
    }
    
    .detail-thumb.active {
      border-color: #F5C518;
    }
    
    /* Order Modal */
    .order-modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.95);
      z-index: 1001;
      justify-content: center;
      align-items: center;
    }
    
    .order-modal-content {
      background: #0D0D0D;
      border-radius: 1.5rem;
      padding: 2rem;
      max-width: 500px;
      width: 90%;
      border: 1px solid rgba(245, 197, 24, 0.2);
    }
    
    .form-input {
      width: 100%;
      background: #1A1A1A;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 0.75rem;
      padding: 0.75rem 1rem;
      color: white;
      outline: none;
      transition: all 0.2s;
    }
    
    .form-input:focus {
      border-color: #F5C518;
    }
    
    .carousel-swiper {
      padding: 0.5rem 0.25rem;
    }
    
    .carousel-card-wrapper {
      height: auto;
    }
    
    .swiper-button-next, .swiper-button-prev {
      color: #F5C518 !important;
    }
    
    .text-text-secondary {
      color: #A0A0A0;
    }
    
    .text-text-muted {
      color: #6B6B6B;
    }
    

@media(max-width:600px){
  .swiper-slide h1{
    font-size: 30px;
    text-align: center;
  }
  .swiper-slide p{
    font-size: small;
    text-align: center;
  }
  .section-header{
    align-items: center;
    justify-content: center;
  }
  .section-title{
    width: 100% !important;
    text-align: center !important;
  }
}