  :root {
      --primary: #000000;
      --secondary: #ffffff;
      /* --accent: #6366f1; */
      --accent: #e9ecef;
      --accent-light: #818cf8;
      --success: #10b981;
      --warning: #f59e0b;
      --danger: #ef4444;
      --gray-50: #fafafa;
      --gray-100: #f5f5f5;
      --gray-200: #e5e5e5;
      --gray-300: #d4d4d4;
      --gray-400: #6b7280; /* Darkened for better contrast */
      --gray-500: #4b5563; /* Darkened for better contrast */
      --gray-600: #525252;
      --gray-800: #262626;
  }

  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  html {
      scroll-behavior: smooth;
      overflow-x: hidden;
  }

  body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      color: var(--primary);
      background: var(--gray-50);
      font-size: 15px;
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
      /* font-family: 'Playfair Display', serif; */
      font-weight: 600;
      letter-spacing: -0.02em;
  }

  /* Header Styles */
  .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(20px) saturate(180%);
      -webkit-backdrop-filter: blur(20px) saturate(180%);
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .header.scrolled {
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }

  .main-nav-wrapper {
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .main-nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 30px;
  }

  /* .navbar-brand {
      font-family: 'Playfair Display', serif;
      font-size: 28px;
      font-weight: 700;
      letter-spacing: 1px;
      color: var(--primary);
      transition: all 0.3s ease;
    }
    .navbar-brand:hover {
      color: var(--accent);
    } */
  .navbar-brand {
      font-family: 'Playfair Display', serif;
      font-size: 28px;
      font-weight: 700;
      letter-spacing: 1px;
      color: var(--primary);
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      /* gap: 10px; */
  }

  /* .navbar-brand:hover {
      color: var(--accent);
    } */
  .navbar-brand img {
      height: 30px;
      width: auto;
      object-fit: contain;
  }

  .nav-icon {
      font-size: 22px;
      color: var(--primary);
      margin: 0 12px;
      position: relative;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: pointer;
  }

  .nav-icon:hover {
      color: var(--accent);
      transform: translateY(-2px);
  }

  .cart-count {
      position: absolute;
      top: -8px;
      right: -8px;
      background: #ff0000;
      color: rgb(255, 255, 255);
      border-radius: 50%;
      width: 18px;
      height: 18px;
      font-size: 11px;
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: center;
      animation: pulse 2s infinite;
  }

  @keyframes pulse {

      0%,
      100% {
          transform: scale(1);
      }

      50% {
          transform: scale(1.1);
      }
  }

  /* Desktop Navigation with Mega Menu */
  .nav-links-desktop {
      padding: 0;
      display: block;
      background: white;
  }

  .nav-links-desktop .navbar-nav {
      display: flex;
      justify-content: center;
      gap: 0;
      list-style: none;
      margin: 0;
      padding: 0;
      flex-direction: row;
  }

  .nav-links-desktop .nav-item {
      position: relative;
  }

  .nav-links-desktop .nav-link {
      color: var(--gray-600);
      font-size: 13px;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      padding: 20px 30px;
      display: flex;
      align-items: center;
      gap: 5px;
      transition: all 0.3s ease;
      position: relative;
  }

  .nav-links-desktop .nav-link:hover {
      color: var(--primary);
      background: var(--gray-50);
      border-bottom: 1px solid gray;
  }

  .nav-links-desktop .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 30px;
      right: 30px;
      height: 2px;
      background: var(--accent);
      transform: scaleX(0);
      transition: transform 0.3s ease;
  }

  .nav-links-desktop .nav-link:hover::after {
      transform: scaleX(1);
  }

  /* Mega Menu Dropdown */
  .mega-menu {
      position: absolute;
      top: 100%;
      left: 0;
      width: 45vw;
      background: white;
      border-top: 1px solid var(--gray-200);
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      padding: 40px 0;
  }

  .nav-item:hover .mega-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
  }

  .mega-menu-content {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 60px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
  }

  .mega-menu-column h4 {
      font-size: 14px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 20px;
      color: var(--primary);
      font-family: 'Inter', sans-serif;
  }

  .mega-menu-column ul {
      list-style: none;
      padding: 0;
  }

  .mega-menu-column ul li {
      margin-bottom: 12px;
  }

  .mega-menu-column ul li a {
      color: var(--gray-600);
      font-size: 14px;
      transition: all 0.3s ease;
      display: block;
      padding: 4px 0;
      text-decoration: none;
  }

  .mega-menu-column ul li a:hover {
      color: var(--accent);
      padding-left: 10px;
  }

  .mega-menu-featured {
      background: var(--gray-50);
      padding: 20px;
      border-radius: 12px;
      text-align: center;
  }

  .mega-menu-featured img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 15px;
  }

  .mega-menu-featured h5 {
      font-size: 16px;
      margin-bottom: 10px;
  }

  .mega-menu-featured .btn {
      padding: 10px 24px;
      background: var(--primary);
      color: white;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: all 0.3s ease;
  }

  .mega-menu-featured .btn:hover {
      background: var(--accent);
      transform: translateY(-2px);
  }

  /* Hero Section */
  .hero-section {
      height: 100vh;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: flex-end;
      padding-bottom: 80px;
      margin-top: 140px;
  }

  .hero-bg-img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
  }

  .hero-bg-mobile {
      display: none;
  }

  .hero-bg-desktop {
      display: block;
  }

  @media (max-width: 767px) {
      .hero-bg-mobile {
          display: block;
      }
      .hero-bg-desktop {
          display: none;
      }
  }

  .hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 1;
      background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  }

  .hero-content {
      position: relative;
      z-index: 2;
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 60px;
      width: 100%;
  }

  .hero-content h1 {
      font-size: clamp(3rem, 8vw, 7rem);
      font-weight: 700;
      color: white;
      text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
      margin-bottom: 30px;
      line-height: 1.1;
      letter-spacing: -0.03em;
      animation: fadeInUp 1s ease-out;
  }

  @keyframes fadeInUp {
      from {
          opacity: 0;
          transform: translateY(30px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  .hero-buttons {
      display: flex;
      gap: 20px;
      position: relative;
      /* removed fixed top/left */
      justify-content: center;
      margin-bottom: 40px;
      animation: fadeInUp 1s ease-out 0.2s both;
  }

  .hero-buttons .btn {
      padding: 16px 40px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 14px;
      letter-spacing: 1px;
      text-transform: uppercase;
      border: 2px solid white;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      color: white;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .hero-buttons .btn:hover {
      background: white;
      color: var(--primary);
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }

  /* Category Cards Section */
  .category-cards-section {
      padding: 30px 0;
      background: var(--gray-50);
  }

  .section-header {
      text-align: center;
      margin-bottom: 24px;
  }

  .section-header h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      margin-bottom: 16px;
  }

  .section-header p {
      color: var(--gray-600);
      font-size: 16px;
  }

  .category-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 60px;
  }

  .category-card {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: pointer;
  }

  .category-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  }

  .category-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
  }

  .category-card-content {
      padding: 20px;
      text-align: center;
  }

  .category-card-content h3 {
      font-size: 18px;
      margin-bottom: 8px;
      font-family: 'Inter', sans-serif;
  }

  .category-card-content p {
      color: var(--gray-600);
      font-size: 13px;
  }

  .view-all-btn {
      display: inline-block;
      margin-top: 40px;
      padding: 16px 48px;
      background: var(--primary);
      color: white;
      border-radius: 50px;
      font-weight: 600;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: all 0.3s ease;
      text-decoration: none;
  }

  .view-all-btn:hover {
      background: var(--accent);
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
  }

  /* Product Section */
  .product-carousel-section {
      padding: 27px 0 0 0;
      background: var(--gray-50);
  }

  .product-carousel-header {
      max-width: 1400px;
      margin: 0 auto 60px;
      padding: 0 60px;
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  .tabs {
      display: flex;
      gap: 8px;
      background: white;
      padding: 6px;
      border-radius: 50px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }

  .tab-link {
      background: transparent;
      border: none;
      color: var(--gray-600);
      padding: 12px 28px;
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      border-radius: 50px;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: pointer;
  }

  .tab-link:hover {
      color: var(--primary);
  }

  .tab-link.active {
      background: var(--primary);
      color: white;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .carousel-nav {
      display: flex;
  }

  .carousel-nav button {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 1px solid var(--gray-200);
      background: white;
      color: var(--primary);
      font-size: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      margin-left: 12px;
  }

  .carousel-nav button:hover {
      background: var(--primary);
      color: white;
      transform: scale(1.1);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }

  .product-grid-wrapper {
      overflow-x: auto !important;
      padding: 0 60px !important;
      scrollbar-width: none !important;
      -ms-overflow-style: none !important;
      position: relative !important;
  }

  .product-grid-wrapper::-webkit-scrollbar {
      display: none !important;
  }

  .product-grid {
      display: flex !important;
      flex-wrap: nowrap !important;
      gap: 20px !important;
      padding-bottom: 20px !important;
  }

  .product-card {
      flex: 0 0 300px !important;
      /* Fixed width for horizontal scroll */
      max-width: 300px !important;
      min-height: 400px !important;
      /* Slightly reduced height */
      background-color: white !important;
      border-radius: 12px !important;
      overflow: hidden !important;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
      transition: all 0.3s ease !important;
      display: flex !important;
      flex-direction: column !important;
      justify-content: space-between !important;
  }

  .product-card:hover {
      /* transform: translateY(-8px) !important; */
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
  }

  .product-image {
      position: relative !important;
      height: 280px !important;
      /* Reduced image height */
      overflow: hidden !important;
  }

  .product-image img {
      width: 100% !important;
      height: 100% !important;
      object-fit: cover !important;
      transition: transform 0.3s ease !important;
  }

  .product-image:hover img.img-primary {
      transform: scale(1.05) !important;
  }

  /* .img-secondary {
        display: none !important;
    }
    .product-card:hover .product-image img {
        transform: scale(1.05) !important;
    } */
  .badge-new,
  .badge-discount,
  .badge-out-of-stock {
      position: absolute !important;
      top: 10px !important;
      left: 10px !important;
      padding: 4px 8px !important;
      font-size: 12px !important;
      border-radius: 16px !important;
      z-index: 5 !important;
  }

  .badge-discount {
      background: #ff0000 !important;
      color: #ffffff !important;
  }

  .badge-out-of-stock{
    background: #ff0000 !important;
      color: #ffffff !important;
  }

  .product-overlay {
      position: absolute !important;
      top: 10px !important;
      right: 10px !important;
      display: flex !important;
      flex-direction: column !important;
      gap: 8px !important;
      opacity: 1 !important;
      /* Always visible for debugging, adjust if needed */
      transition: opacity 0.3s ease !important;
      z-index: 10 !important;
      /* Higher z-index to ensure visibility */
  }

  @media (max-width: 768px) {
      .product-overlay {
          opacity: 1;
          transform: translateY(0);
          bottom: 10px;
      }
  }

  .product-card:hover .product-overlay {
      opacity: 1 !important;
  }

  .btn-favorite,
  .btn-quick-view {
      background-color: white !important;
      border: 1px solid #ddd !important;
      padding: 8px !important;
      border-radius: 50% !important;
      /* This makes it circular */
      cursor: pointer !important;
      transition: background-color 0.3s !important;
      width: 36px !important;
      /* Add fixed width */
      height: 36px !important;
      /* Add fixed height */
      display: flex !important;
      /* Center the icon */
      align-items: center !important;
      justify-content: center !important;
  }

  .btn-favorite:hover,
  .btn-quick-view:hover {
      background-color: #f0f0f0 !important;
  }

  .btn-favorite.active {
      background: #ef4444;
      color: rgb(255, 0, 0);
  }

  .product-info {
      padding: 15px !important;
      flex-grow: 1 !important;
      display: flex !important;
      flex-direction: column !important;
      justify-content: space-between !important;
  }

  .product-info h5 {
      font-size: 16px !important;
      margin-bottom: 8px !important;
      color: #333 !important;
      font-family: 'Inter', sans-serif;
      letter-spacing: -0.01em;
  }

  .product-rating {
      display: flex !important;
      align-items: center !important;
      gap: 8px !important;
      margin-bottom: 12px !important;
  }

  .stars {
      color: #fbbf24;
      font-size: 14px;
  }

  .stars i {
      color: #ffc107 !important;
      font-size: 14px !important;
  }

  .rating-count {
      font-size: 12px !important;
      color: #6c757d !important;
      font-size: 13px;
  }

  .product-price-wrapper {
      display: flex !important;
      align-items: center !important;
      gap: 8px !important;
      margin-bottom: 12px !important;
  }

  .product-price {
      font-size: 18px !important;
      font-weight: bold !important;
      color: var(--primary) !important;
      font-size: 20px;
      font-weight: 700;
      color: #000000;
      /* font-family: 'Playfair Display', serif; */
  }

  .product-price-original {
      font-size: 14px !important;
      color: #6c757d !important;
      text-decoration: line-through !important;
      font-size: 16px;
      color: var(--gray-400);
      text-decoration: line-through;
  }

  .product-actions {
      display: flex !important;
      gap: 10px !important;
      flex-direction: column;
  }

  .btn-add-to-cart,
  .btn-buy-now {
      flex: 1 !important;
      padding: 10px !important;
      border-radius: 6px !important;
      font-size: 14px !important;
      transition: all 0.3s ease !important;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
  }

  .btn-add-to-cart {
      background-color: var(--primary) !important;
      color: white !important;
      border: none !important;
  }

  .btn-add-to-cart:hover:not(:disabled) {
      background-color: #333131 !important;
      color: #000000;
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  }

  .btn-add-to-cart:disabled {
      background: #d4d4d4;
      color: #737373;
      cursor: not-allowed;
      opacity: 0.7;
  }

  .btn-add-to-cart:disabled:hover {
      transform: none;
      box-shadow: none;
  }

  .btn-buy-now {
      background-color: #e9ecef !important;
      color: rgb(0, 0, 0) !important;
      border: none !important;
      text-decoration: none;
      font-weight: 700;
  }

  .btn-buy-now:hover {
      background-color: #d4d5d6 !important;
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
  }

  .btn-view-details {
      background-color: #6c757d !important;
      color: white !important;
      border: none !important;
  }

  .btn-view-details:hover {
      background: var(--primary);
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  }

  /* WhatsApp Float Button */
  .whatsapp-float {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
      cursor: pointer;
      z-index: 999;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      animation: float 3s ease-in-out infinite;
      text-decoration: none;
  }

  .whatsapp-float:hover {
      transform: scale(1.1);
      box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
  }

  .whatsapp-float i {
      font-size: 32px;
      color: white;
  }

  @keyframes float {

      0%,
      100% {
          transform: translateY(0);
      }

      50% {
          transform: translateY(-10px);
      }
  }

  /* Category Section */
  .category-section {
      padding: 0;
  }

  .category-item {
      height: 70vh;
      background-size: cover;
      background-position: center;
      position: relative;
      overflow: hidden;
  }

  .category-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
      transition: opacity 0.4s ease;
  }

  .category-item:hover::before {
      opacity: 0.6;
  }

  .category-item a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 100%;
      position: relative;
      z-index: 2;
  }

  .category-content {
      text-align: center;
      transform: translateY(0);
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .category-item:hover .category-content {
      transform: translateY(-10px);
  }

  .category-content h3 {
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 700;
      color: white;
      margin-bottom: 30px;
      text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
      letter-spacing: -0.02em;
  }

  .shop-now {
      display: inline-block;
      padding: 16px 48px;
      border: 2px solid white;
      border-radius: 50px;
      color: white;
      font-weight: 600;
      font-size: 13px;
      letter-spacing: 2px;
      text-transform: uppercase;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .shop-now:hover {
      background: white;
      color: var(--primary);
      transform: scale(1.05);
      box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
  }

  /* Footer */
  .footer-section {
      background: #e9ecef;
      color: rgb(0, 0, 0);
      padding: 80px 60px 5px;
  }

  .footer-section p {
      color: rgba(0, 0, 0, 0.7);
      line-height: 1.8;
      margin-bottom: 30px;
  }

  .footer-section ul {
      list-style: none;
      padding: 0;
  }

  .footer-section ul li {
      margin-bottom: 12px;
  }

  .footer-section ul li a {
      color: rgba(0, 0, 0, 0.7);
      font-size: 14px;
      transition: all 0.3s ease;
      display: inline-block;
      text-decoration: none;
  }

  .footer-section ul li a:hover {
      color: rgb(0, 0, 0);
      transform: translateX(5px);
  }

  .social-icons {
      display: flex;
      gap: 16px;
      margin-top: 30px;
  }

  .social-icons a {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: #e5e7e9;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgb(0, 0, 0);
      font-size: 20px;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      text-decoration: none;
  }

  /* .social-icons a:hover {
        background: white;
        color: var(--primary);
        transform: translateY(-5px) rotate(5deg);
      } */
  /* Facebook */
  .social-icons a:nth-child(1):hover {
      background: #1877F2;
      /* Facebook blue */
      color: white;
  }

  /* Instagram */
  .social-icons a:nth-child(3):hover {
      background: #E4405F;
      /* Instagram pink/red */
      color: white;
  }

  /* TikTok */
  .social-icons a:nth-child(4):hover {
      background: #69C9D0;
      /* TikTok cyan */
      color: white;
  }

  /* WhatsApp */
  .social-icons a:nth-child(2):hover {
      background: #25D366;
      /* WhatsApp green */
      color: white;
  }

  .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      margin-top: -4px;
      padding-top: 30px;
  }

  .copyright-text {
      color: rgba(255, 255, 255, 0.5);
      font-size: 13px;
      text-align: center;
  }

  /* Mobile Navigation */
  .nav-toggle,
  .nav-close {
      display: none;
  }

  .nav-links-mobile {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: white;
      z-index: 1010;
      padding: 30px;
      transform: translateX(-100%);
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      overflow-y: auto;
  }

  .nav-links-mobile.open {
      transform: translateX(0);
  }

  .mobile-nav-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-bottom: 30px;
      border-bottom: 1px solid var(--gray-200);
      margin-bottom: 30px;
  }

  .mobile-nav-header .navbar-brand {
      color: var(--primary);
  }

  .nav-close {
      display: block;
      font-size: 32px;
      color: var(--primary);
      cursor: pointer;
  }

  .nav-links-mobile .navbar-nav {
      list-style: none;
  }

  .nav-links-mobile .nav-item {
      border-bottom: 1px solid var(--gray-200);
  }

  .nav-links-mobile .nav-link {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 10px;
      color: var(--primary);
      font-size: 16px;
      font-weight: 500;
      transition: all 0.3s ease;
  }

  .nav-links-mobile .nav-link:hover {
      color: #000000;
      padding-left: 20px;
  }

  .mobile-social-icons {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 50px;
  }

  .mobile-social-icons a {
      color: var(--primary);
      font-size: 28px;
      transition: all 0.3s ease;
      text-decoration: none;
  }

  /* Facebook */
  .mobile-social-icons a:nth-child(1):hover {
      background: #1877F2;
      /* Facebook blue */
      color: white;
      border-radius: 50%;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  /* Instagram */
  .mobile-social-icons a:nth-child(2):hover {
      background: #E4405F;
      /* Instagram pink/red */
      color: white;
      border-radius: 50%;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  /* TikTok */
  .mobile-social-icons a:nth-child(3):hover {
      background: #69C9D0;
      /* TikTok cyan */
      color: white;
      border-radius: 50%;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  /* WhatsApp */
  .mobile-social-icons a:nth-child(4):hover {
      background: #25D366;
      /* WhatsApp green */
      color: white;
      border-radius: 50%;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  /* Search Overlay */
  .search-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: white;
      z-index: 2000;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
  }

  .search-overlay.active {
      opacity: 1;
      visibility: visible;
  }

  .search-container {
      width: 90%;
      max-width: 700px;
      position: relative;
  }

  .search-input {
      width: 100%;
      padding: 30px 80px 30px 30px;
      font-size: 24px;
      background: transparent;
      border: none;
      border-bottom: 3px solid var(--primary);
      color: var(--primary);
      outline: none;
      font-family: 'Inter', sans-serif;
  }

  .search-input::placeholder {
      color: var(--gray-400);
  }

  .search-close {
      position: absolute;
      right: 20px;
      top: 45px;
      font-size: 32px;
      color: var(--primary);
      cursor: pointer;
      background: none;
      border: none;
      transition: all 0.3s ease;
  }

  .search-close:hover {
      transform: rotate(90deg);
      color: var(--accent);
  }

  /* Responsive */
  @media (max-width: 767px) {
      .nav-toggle {
          display: block;
      }

      .product-details-container {
          margin-top: 50px;
      }

      .nav-links-desktop {
          display: none !important;
      }

      .product-grid-wrapper {
          padding: 0px !important;
      }

      .main-nav {
          padding: 15px 20px;
      }

      .navbar-brand {
          font-size: 20px;
      }

      .nav-icon {
          font-size: 20px;
          margin: 0 8px;
      }

      .hero-section {
          margin-top: 60px;
      }

      .hero-content {
          padding: 0 30px;
      }

      .hero-content h1 {
          font-size: 3rem;
      }

      .hero-buttons {
          flex-direction: column;
          gap: 12px;
      }

      .hero-buttons .btn {
          width: 53%;
          padding: 14px 30px;
      }

      .hero-buttons {
          display: flex;
          gap: 20px;
          position: relative;
          top: -100px;
          left: 83px;
          animation: fadeInUp 1s ease-out 0.2s both;
      }

      .category-cards {
          padding: 0 20px;
          grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
          gap: 20px;
      }

      .product-carousel-header {
          padding: 0 20px;
          flex-direction: column;
          gap: 20px;
          align-items: stretch;
      }

      .tabs {
          width: 100%;
          justify-content: space-between;
      }

      .tab-link {
          padding: 10px 16px;
          font-size: 11px;
      }

      .carousel-nav {
          display: none;
          /* justify-content: center; */
      }

      .product-grid-wrapper {
          padding: 0 20px;
      }

      .product-card {
          width: 280px;
      }

      .category-content h3 {
          font-size: 2.5rem;
      }

      .footer-section {
          padding: 28px 30px 5px;
      }

      .whatsapp-float {
          width: 50px;
          height: 50px;
          bottom: 20px;
          right: 20px;
      }

      .whatsapp-float i {
          font-size: 26px;
      }
  }

  /* Cart Sidebar Styles */
  .cart-sidebar {
      position: fixed;
      top: 0;
      right: -400px;
      width: 400px;
      height: 100vh;
      background: var(--secondary);
      box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
      z-index: 2000;
      transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      display: flex;
      flex-direction: column;
      overflow: hidden;
  }

  .cart-sidebar.open {
      right: 0;
  }

  .cart-sidebar-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 25px 30px;
      border-bottom: 1px solid var(--gray-200);
      background: var(--secondary);
  }

  .cart-sidebar-header h3 {
      font-size: 18px;
      font-weight: 600;
      color: var(--primary);
      margin: 0;
  }

  .cart-close {
      background: none;
      border: none;
      font-size: 24px;
      color: var(--gray-400);
      cursor: pointer;
      padding: 5px;
      border-radius: 50%;
      transition: all 0.2s ease;
  }

  .cart-close:hover {
      background: var(--gray-100);
      color: var(--primary);
  }

  .cart-sidebar-content {
      flex: 1;
      overflow-y: auto;
      padding: 0;
  }

  .empty-cart {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 300px;
      text-align: center;
      color: var(--gray-400);
  }

  .empty-cart i {
      font-size: 64px;
      margin-bottom: 20px;
      opacity: 0.5;
  }

  .empty-cart p {
      font-size: 16px;
      margin-bottom: 20px;
  }

  .continue-shopping {
      color: var(--accent);
      text-decoration: none;
      font-weight: 500;
      transition: color 0.2s ease;
  }

  .continue-shopping:hover {
      color: var(--accent-light);
  }

  .cart-item {
      display: flex;
      align-items: center;
      padding: 20px 30px;
      border-bottom: 1px solid var(--gray-100);
      position: relative;
  }

  .cart-item-image {
      width: 60px;
      height: 60px;
      border-radius: 8px;
      overflow: hidden;
      margin-right: 15px;
      flex-shrink: 0;
  }

  .cart-item-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  .cart-item-details {
      flex: 1;
      min-width: 0;
  }

  .cart-item-details h4 {
      font-size: 14px;
      font-weight: 500;
      color: var(--primary);
      margin: 0 0 5px 0;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
  }

  .cart-item-meta {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 8px;
      flex-wrap: wrap;
  }

  .meta-badge {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      padding: 4px 8px;
      background: var(--gray-100);
      border-radius: 12px;
      font-size: 11px;
      font-weight: 500;
      color: var(--gray-600);
  }

  .meta-badge i {
      font-size: 12px;
  }

  .cart-item-price {
      font-size: 16px;
      font-weight: 600;
      color: #000000;
      margin-bottom: 8px;
  }

  .cart-item-quantity {
      display: flex;
      align-items: center;
      gap: 10px;
  }

  .quantity-btn {
      width: 28px;
      height: 28px;
      border: 1px solid var(--gray-300);
      background: var(--secondary);
      color: var(--primary);
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 14px;
      font-weight: 500;
      transition: all 0.2s ease;
  }

  .quantity-btn:hover {
      background: #000000;
      border-color: var(--accent);
      color: white;
  }

  .quantity {
      font-size: 14px;
      font-weight: 500;
      min-width: 20px;
      text-align: center;
  }

  .cart-item-remove {
      background: none;
      border: none;
      color: var(--gray-400);
      cursor: pointer;
      padding: 5px;
      border-radius: 50%;
      transition: all 0.2s ease;
      position: absolute;
      top: 15px;
      right: 15px;
  }

  .cart-item-remove:hover {
      background: var(--danger);
      color: var(--secondary);
  }

  .cart-total {
      padding: 20px 30px;
      border-top: 1px solid var(--gray-200);
      background: var(--gray-50);
  }

  .cart-total-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 18px;
      font-weight: 600;
      color: var(--primary);
  }

  .total-amount {
      color: #000000;
  }

  .cart-sidebar-footer {
      padding: 20px 30px;
      border-top: 1px solid var(--gray-200);
      background: var(--secondary);
      display: flex;
      gap: 15px;
  }

  .cart-sidebar-footer .btn {
      flex: 1;
      padding: 14px 20px;
      text-align: center;
      text-decoration: none;
      border-radius: 8px;
      font-weight: 500;
      font-size: 14px;
      transition: all 0.2s ease;
  }

  .btn-primary {
      background: var(--accent);
      color: var(--secondary);
      border: 1px solid var(--accent);
  }

  .btn-primary:hover {
      background: var(--accent-light);
      border-color: var(--accent-light);
  }

  .btn-secondary {
      background: var(--secondary);
      color: var(--primary);
      border: 1px solid var(--gray-300);
  }

  .btn-secondary:hover {
      background: #000000;
      border-color: #000000;
  }

  /* Cart Overlay */
  .cart-overlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.5);
      z-index: 1999;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
  }

  .cart-overlay.active {
      opacity: 1;
      visibility: visible;
  }

  /* Mobile Responsiveness */
  @media (max-width: 768px) {
      .cart-sidebar {
          width: 100vw;
          right: -100vw;
          padding: 20px;
      }

      .cart-sidebar.open {
          right: 0;
      }

      .cart-sidebar-header,
      .cart-item,
      .cart-total,
      .cart-sidebar-footer {
          padding-left: 20px;
          padding-right: 20px;
      }

      .cart-sidebar-header {
          padding-top: 20px;
          padding-bottom: 20px;
      }

      .cart-item {
          padding-top: 15px;
          padding-bottom: 15px;
      }

      .cart-item-meta {
          gap: 8px;
          margin-bottom: 6px;
      }

      .meta-badge {
          font-size: 10px;
          padding: 3px 6px;
      }

      .cart-sidebar-footer {
          padding: 15px 20px;
          flex-direction: column;
          gap: 10px;
      }

      .cart-sidebar-footer .btn {
          width: 100%;
      }
  }

  /* Cart Modal Styles */
  .cart-modal {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 3000;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
  }

  .cart-modal.show {
      opacity: 1;
      visibility: visible;
  }

  .cart-modal-content {
      background: var(--secondary);
      border-radius: 12px;
      width: 90%;
      max-width: 500px;
      max-height: 90vh;
      overflow-y: auto;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
      transform: scale(0.9) translateY(20px);
      transition: all 0.3s ease;
  }

  .cart-modal.show .cart-modal-content {
      transform: scale(1) translateY(0);
  }

  .cart-modal-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 25px 30px;
      border-bottom: 1px solid var(--gray-200);
  }

  .cart-modal-header h3 {
      margin: 0;
      font-size: 20px;
      font-weight: 600;
      color: var(--primary);
  }

  .cart-modal-close {
      background: none;
      border: none;
      font-size: 24px;
      color: var(--gray-400);
      cursor: pointer;
      padding: 5px;
      border-radius: 50%;
      transition: all 0.2s ease;
  }

  .cart-modal-close:hover {
      background: var(--gray-100);
      color: var(--primary);
  }

  .cart-modal-body {
      padding: 30px;
  }

  .product-preview {
      display: flex;
      gap: 20px;
      margin-bottom: 30px;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--gray-100);
  }

  .cart-modal-product-image {
      width: 80px;
      height: 80px;
      border-radius: 8px;
      overflow: hidden;
      flex-shrink: 0;
  }

  .cart-modal-product-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  .cart-modal-product-details h4 {
      margin: 0 0 5px 0;
      font-size: 16px;
      font-weight: 600;
      color: var(--primary);
  }

  .cart-modal-product-details .product-price {
      margin: 0;
      font-size: 18px;
      font-weight: 600;
      color: #000000;
  }

  .product-options {
      display: flex;
      flex-direction: column;
      gap: 25px;
  }

  .option-group label {
      display: block;
      font-size: 14px;
      font-weight: 600;
      color: var(--primary);
      margin-bottom: 10px;
  }

  .color-options,
  .size-options {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
  }

  .color-option {
      width: 40px;
      height: 40px;
      border: 3px solid var(--gray-300);
      border-radius: 50%;
      cursor: pointer;
      transition: all 0.2s ease;
      position: relative;
  }

  .color-option.active {
      border-color: #000000;
      box-shadow: 0 0 0 1px #000000;
  }

  .color-option:hover {
      border-color: #000000;
      transform: scale(1.1);
  }

  .color-option.out-of-stock {
      opacity: 0.5;
      cursor: not-allowed;
      position: relative;
  }

  .color-option.out-of-stock::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 100%;
      height: 2px;
      background: #ff0000;
      transform: translate(-50%, -50%) rotate(45deg);
  }

  .color-option.out-of-stock::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 100%;
      height: 2px;
      background: #ff0000;
      transform: translate(-50%, -50%) rotate(-45deg);
  }

  .size-option {
      padding: 8px 16px;
      border: 2px solid var(--gray-300);
      background: var(--secondary);
      color: var(--primary);
      border-radius: 6px;
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.2s ease;
  }

  .size-option.active {
      border-color: var(--accent);
      background: #000000;
      color: var(--secondary);
  }

  .size-option:hover {
      border-color: var(--accent);
  }

  .quantity-selector {
      display: flex;
      align-items: center;
      gap: 15px;
  }

  .quantity-selector input {
      width: 60px;
      text-align: center;
      padding: 8px;
      border: 2px solid var(--gray-300);
      border-radius: 6px;
      font-size: 16px;
      font-weight: 500;
  }

  .quantity-btn {
      width: 40px;
      height: 40px;
      border: 2px solid var(--gray-300);
      background: var(--secondary);
      color: var(--primary);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 18px;
      font-weight: 600;
      transition: all 0.2s ease;
  }

  .cart-modal-footer {
      padding: 20px 30px;
      border-top: 1px solid var(--gray-200);
      display: flex;
      justify-content: flex-end;
      gap: 15px;
  }

  .cart-modal-footer .btn {
      padding: 12px 24px;
      border-radius: 8px;
      font-weight: 500;
      font-size: 14px;
      transition: all 0.2s ease;
      border: 2px solid transparent;
      cursor: pointer;
      font-weight: 700;
  }

  .btn-secondary {
      background: var(--gray-100);
      color: var(--primary);
      border-color: var(--gray-300);
  }

  /* .btn-secondary:hover {
        background: var(--gray-200);
    } */
  .btn-primary {
      background: var(--accent);
      color: #000000;
      border-color: #000000;
  }

  .btn-primary:hover {
      background: #e9ecef;
      color: #000000;
      border-color: #000000;
  }

  .cart-modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.5);
      z-index: 2999;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
  }

  .cart-modal-overlay.active {
      opacity: 1;
      visibility: visible;
  }

  /* Mobile Modal Responsiveness */
  @media (max-width: 768px) {
      .cart-modal-content {
          width: 95%;
          margin: 20px;
      }

      .cart-modal-header,
      .cart-modal-body,
      .cart-modal-footer {
          padding-left: 20px;
          padding-right: 20px;
      }

      .product-preview {
          flex-direction: column;
          text-align: center;
          gap: 15px;
      }

      .cart-modal-product-image {
          align-self: center;
      }

      .cart-modal-footer {
          flex-direction: column;
          gap: 10px;
      }

      .cart-modal-footer .btn {
          width: 100%;
      }
  }

  /* Search Results Styles */
  .search-results {
      margin-top: 30px;
      max-height: 60vh;
      overflow-y: auto;
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 15px;
      padding-right: 10px;
  }

  .search-results::-webkit-scrollbar {
      width: 6px;
  }

  .search-results::-webkit-scrollbar-track {
      background: rgba(255, 255, 255, 0.05);
  }

  .search-results::-webkit-scrollbar-thumb {
      background: rgba(255, 255, 255, 0.2);
      border-radius: 10px;
  }

  .search-result-item {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 15px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 12px;
      text-decoration: none;
      transition: all 0.3s ease;
      border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .search-result-item:hover {
      background: rgba(255, 255, 255, 0.1);
      transform: translateY(-2px);
      border-color: var(--accent);
  }

  .result-image {
      width: 60px;
      height: 60px;
      border-radius: 8px;
      overflow: hidden;
      flex-shrink: 0;
  }

  .result-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  .result-info {
      flex: 1;
  }

  .result-name {
      color: rgb(0, 0, 0);
      font-weight: 600;
      font-size: 16px;
      margin-bottom: 4px;
  }

  .result-price {
      color: var(--accent-light);
      font-weight: 500;
      font-size: 14px;
  }

  .no-results {
      color: rgba(255, 255, 255, 0.6);
      text-align: center;
      padding: 40px;
      font-size: 16px;
  }

  /* Product Swatches */
  .product-color-swatches {
      display: flex !important;
      gap: 8px !important;
      margin-bottom: 12px !important;
      flex-wrap: wrap;
  }

  .swatch-item {
      width: 24px !important;
      height: 24px !important;
      border-radius: 50% !important;
      overflow: hidden !important;
      border: 2px solid #ddd !important;
      cursor: pointer !important;
      transition: all 0.3s ease !important;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #fff;
  }

  .swatch-item img {
      width: 100% !important;
      height: 100% !important;
      object-fit: cover !important;
      border-radius: 50%;
      display: block;
  }

  .swatch-item:hover {
      transform: scale(1.1) !important;
      border-color: #000000 !important;
  }

  .swatch-item.active {
      border-color: var(--primary) !important;
      transform: scale(1.2) !important;
      border-color: #000000 !important;
      box-shadow: 0 0 0 1px #000000 !important;
  }

  .swatch-item.out-of-stock {
      opacity: 0.5 !important;
      cursor: not-allowed !important;
      position: relative !important;
  }

  .swatch-item.out-of-stock::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 100%;
      height: 2px;
      background: #ff0000;
      transform: translate(-50%, -50%) rotate(45deg);
  }

  .swatch-item.out-of-stock::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 100%;
      height: 2px;
      background: #ff0000;
      transform: translate(-50%, -50%) rotate(-45deg);
  }

  .swatch-cross {
      position: absolute !important;
      top: 50% !important;
      left: 50% !important;
      transform: translate(-50%, -50%) rotate(45deg) !important;
      width: 2px !important;
      height: 100% !important;
      background: red !important;
  }

  /* =============================================
     BRAND STORY / OUR MISSION SECTION
     ============================================= */

  .brand-story-section {
      padding: 20px 0 90px;
      background: linear-gradient(180deg, var(--gray-50) 0%, #ffffff 30%, #ffffff 70%, var(--gray-50) 100%);
      position: relative;
      overflow: hidden;
  }

  .brand-story-section::before {
      content: '';
      position: absolute;
      top: -150px;
      right: -150px;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0, 0, 0, 0.02) 0%, transparent 70%);
      pointer-events: none;
  }

  .brand-story-section::after {
      content: '';
      position: absolute;
      bottom: -100px;
      left: -100px;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0, 0, 0, 0.015) 0%, transparent 70%);
      pointer-events: none;
  }

  .brand-story-container {
      max-width: 960px;
      margin: 0 auto;
      padding: 0 30px;
      position: relative;
      z-index: 1;
  }

  /* Divider */
  .brand-story-divider {
      text-align: center;
      margin-bottom: 20px;
      position: relative;
  }

  .brand-story-divider::before,
  .brand-story-divider::after {
      content: '';
      position: absolute;
      top: 50%;
      width: calc(50% - 30px);
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gray-300), transparent);
  }

  .brand-story-divider::before {
      left: 0;
  }

  .brand-story-divider::after {
      right: 0;
  }

  .divider-diamond {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #fff;
      padding: 0 16px;
      position: relative;
      z-index: 1;
      color: var(--primary);
      font-size: 10px;
  }

  /* Heading */
  .brand-story-heading {
      text-align: center;
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 5vw, 3.2rem);
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 20px;
      letter-spacing: -0.02em;
      line-height: 1.2;
  }

  .heading-accent {
      background: linear-gradient(135deg, #000000 0%, #555555 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      position: relative;
  }

  .heading-accent::after {
      content: '';
      position: absolute;
      bottom: 2px;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--primary);
      border-radius: 2px;
  }

  .brand-story-tagline {
      text-align: center;
      font-size: 1.05rem;
      color: var(--gray-600);
      font-weight: 400;
      letter-spacing: 0.5px;
      margin-bottom: 40px;
      font-style: italic;
  }

  /* Narrative */
  .brand-story-narrative {
      text-align: center;
      max-width: 720px;
      margin: 0 auto 50px;
  }

  .brand-story-narrative p {
      font-size: 1.05rem;
      line-height: 1.85;
      color: var(--gray-600);
      margin-bottom: 16px;
  }

  .brand-story-narrative p strong {
      color: var(--primary);
      font-weight: 600;
  }

  .brand-story-narrative p em {
      font-style: italic;
      color: #d32f2f;
      font-weight: 600;
  }

  .brand-story-question {
      font-size: 1.15rem !important;
      font-weight: 600 !important;
      color: var(--primary) !important;
      background: var(--gray-50);
      border-left: 4px solid var(--primary);
      padding: 18px 24px;
      border-radius: 0 10px 10px 0;
      margin: 28px 0 !important;
      text-align: left;
      font-style: italic;
  }

  /* Pillar Cards */
  .brand-story-pillars {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-bottom: 56px;
  }

  .pillar-card {
      background: #ffffff;
      border: 1px solid var(--gray-200);
      border-radius: 16px;
      padding: 32px 20px 28px;
      text-align: center;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
  }

  .pillar-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--primary);
      transform: scaleX(0);
      transition: transform 0.4s ease;
  }

  .pillar-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
      border-color: transparent;
  }

  .pillar-card:hover::before {
      transform: scaleX(1);
  }

  .pillar-icon {
      width: 56px;
      height: 56px;
      background: var(--gray-50);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 18px;
      transition: all 0.3s ease;
  }

  .pillar-icon i {
      font-size: 26px;
      color: var(--primary);
      transition: all 0.3s ease;
  }

  .pillar-card:hover .pillar-icon {
      background: var(--primary);
      transform: scale(1.08);
  }

  .pillar-card:hover .pillar-icon i {
      color: #ffffff;
  }

  .pillar-card h4 {
      font-family: 'Inter', sans-serif;
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 10px;
      line-height: 1.35;
  }

  .pillar-card p {
      font-size: 0.85rem;
      line-height: 1.6;
      color: var(--gray-600);
      margin: 0;
  }

  /* Closing */
  .brand-story-closing {
      text-align: center;
  }

  .closing-line {
      width: 60px;
      height: 2px;
      background: var(--gray-300);
      margin: 0 auto 28px;
  }

  .closing-text {
      font-size: 1.2rem;
      line-height: 1.8;
      color: var(--gray-600);
      margin-bottom: 24px;
  }

  .closing-text strong {
      color: var(--primary);
      font-weight: 700;
      font-size: 1.25rem;
  }

  .closing-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--primary);
      color: #ffffff;
      padding: 14px 32px;
      border-radius: 50px;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.5px;
      text-transform: uppercase;
  }

  /* =============================================
     BRAND STORY RESPONSIVE
     ============================================= */

  @media (max-width: 992px) {
      .brand-story-pillars {
          grid-template-columns: repeat(2, 1fr);
          gap: 16px;
      }

      .brand-story-heading {
          font-size: clamp(1.8rem, 5vw, 2.6rem);
      }
  }

  @media (max-width: 768px) {
      .brand-story-section {
          padding: 50px 0 60px;
      }

      .brand-story-container {
          padding: 0 20px;
      }

      .brand-story-narrative p {
          font-size: 0.95rem;
          line-height: 1.75;
      }

      .brand-story-question {
          font-size: 1rem !important;
          padding: 14px 18px;
      }

      .brand-story-pillars {
          grid-template-columns: repeat(2, 1fr);
          gap: 14px;
      }

      .pillar-card {
          padding: 24px 16px 22px;
      }

      .pillar-icon {
          width: 48px;
          height: 48px;
          border-radius: 12px;
          margin-bottom: 14px;
      }

      .pillar-icon i {
          font-size: 22px;
      }

      .pillar-card h4 {
          font-size: 0.85rem;
      }

      .pillar-card p {
          font-size: 0.8rem;
      }

      .closing-text {
          font-size: 1.05rem;
      }

      .closing-text strong {
          font-size: 1.1rem;
      }

      .closing-badge {
          padding: 12px 24px;
          font-size: 0.75rem;
      }
  }

  @media (max-width: 480px) {
      .brand-story-section {
          padding: 10px 0 50px;
      }

      .brand-story-container {
          padding: 0 16px;
      }

      .brand-story-heading {
          font-size: 1.65rem;
      }

      .brand-story-tagline {
          font-size: 0.9rem;
          margin-bottom: 28px;
      }

      .brand-story-narrative {
          margin-bottom: 36px;
      }

      .brand-story-narrative p {
          font-size: 0.88rem;
      }

      .brand-story-question {
          font-size: 0.92rem !important;
          padding: 12px 14px;
      }

      .brand-story-pillars {
          grid-template-columns: 1fr;
          gap: 12px;
      }

      .pillar-card {
          display: flex;
          flex-direction: row;
          align-items: center;
          text-align: left;
          padding: 18px 16px;
          gap: 14px;
      }

      .pillar-card::before {
          width: 3px;
          height: 100%;
          top: 0;
          left: 0;
          right: auto;
          bottom: 0;
          transform: scaleY(0);
      }

      .pillar-card:hover::before {
          transform: scaleY(1);
      }

      .pillar-icon {
          margin: 0;
          flex-shrink: 0;
          width: 44px;
          height: 44px;
      }

      .pillar-icon i {
          font-size: 20px;
      }

      .pillar-card h4 {
          font-size: 0.85rem;
          margin-bottom: 4px;
      }

      .pillar-card p {
          font-size: 0.78rem;
      }

      .closing-badge {
          padding: 10px 20px;
          font-size: 0.7rem;
          letter-spacing: 0.3px;
      }

      .closing-text {
          font-size: 0.95rem;
      }

      .closing-text strong {
          font-size: 1rem;
      }

      .brand-story-divider::before,
      .brand-story-divider::after {
          width: calc(50% - 20px);
      }
  }
