 
    :root {
      --gold: #d4af37;
      --gold-dark: #b88710;
      --bg: #f6f7f9;
      --dark: #0f1720;
      --muted: #7b7b7b;
      --card-radius: 16px;
      --shadow: 0 8px 30px rgba(0,0,0,0.08);
      --shadow-hover: 0 12px 40px rgba(0,0,0,0.15);
    }
    
    /* Disable right-click and text selection */
    body {
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
      background: var(--bg);
      font-family: 'Poppins', sans-serif;
      color: var(--dark);
      padding-top: 80px;
    }
    
    /* Header - Full Width */
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: 72px;
      background: #000;
      z-index: 1200;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 18px;
      box-shadow: 0 4px 18px rgba(0,0,0,.35);
    }

    .brand-title {
      font-weight: 800;
      font-size: 1.25rem;
      color: var(--gold);
      text-decoration: none;
      transition: transform 0.3s ease;
    }

    .brand-title:hover {
      transform: scale(1.05);
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .icon-btn {
      background: transparent;
      border: 0;
      color: #fff;
      font-size: 18px;
      position: relative;
      transition: all 0.3s ease;
      padding: 8px;
      border-radius: 50%;
    }

    .icon-btn:hover {
      background: rgba(212,175,55,0.1);
      transform: translateY(-2px);
    }

    .icon-btn .counter {
      position: absolute;
      top: -6px;
      right: -6px;
      background: var(--gold);
      color: #000;
      border-radius: 50%;
      padding: 3px 7px;
      font-size: 11px;
      font-weight: 700;
      min-width: 18px;
      text-align: center;
    }

    /* Mobile Menu Button */
    .menu-toggle {
      display: none;
      background: transparent;
      border: none;
      color: #fff;
      font-size: 24px;
      cursor: pointer;
      padding: 8px;
      border-radius: 8px;
      transition: all 0.3s ease;
    }

    .menu-toggle:hover {
      background: rgba(212,175,55,0.1);
    }
    
    /* Mobile Sidebar */
    .mobile-sidebar {
      position: fixed;
      top: 0;
      left: -100%;
      width: 300px;
      height: 100vh;
      background: #000;
      z-index: 1300;
      padding: 80px 25px 25px;
      transition: left 0.3s ease;
      overflow-y: auto;
      box-shadow: 5px 0 25px rgba(0,0,0,0.3);
    }

    .mobile-sidebar.active {
      left: 0;
    }

    .mobile-sidebar h5 {
      color: var(--gold);
      font-weight: 700;
      margin: 20px 0 15px;
      font-size: 1.1rem;
      border-bottom: 2px solid var(--gold);
      padding-bottom: 10px;
    }

    .mobile-sidebar a {
      display: flex;
      align-items: center;
      gap: 12px;
      color: #fff;
      text-decoration: none;
      padding: 12px 15px;
      margin: 5px 0;
      border-radius: 8px;
      transition: all 0.3s ease;
      font-weight: 500;
    }

    .mobile-sidebar a:hover {
      background: rgba(212,175,55,0.2);
      color: var(--gold);
      transform: translateX(5px);
    }

    .mobile-sidebar a i {
      width: 20px;
      text-align: center;
      color: var(--gold);
    }

    .mobile-sidebar .text-danger {
      color: #ef4444 !important;
    }

    .sidebar-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.5);
      z-index: 1250;
      display: none;
    }

    .sidebar-overlay.active {
      display: block;
    }
    
    /* Main Container - Full Width */
    .container-main {
      width: 100%;
      max-width: 100%;
      margin: 30px 0;
      animation: fadeInUp 0.8s ease-out;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    /* Page Header */
    .page-header {
      margin-bottom: 40px;
      animation: slideInDown 0.6s ease;
      max-width: 1400px;
      margin-left: auto;
      margin-right: auto;
      padding: 0 20px;
    }

    @keyframes slideInDown {
      from {
        opacity: 0;
        transform: translateY(-30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .page-title {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 10px;
      position: relative;
      display: inline-block;
    }

    .page-title::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 80px;
      height: 3px;
      background: var(--gold);
      border-radius: 2px;
    }

    .breadcrumb {
      background: transparent;
      padding: 0;
      margin-bottom: 20px;
    }

    .breadcrumb-item a {
      color: var(--gold);
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .breadcrumb-item a:hover {
      color: var(--gold-dark);
    }

    .breadcrumb-item.active {
      color: var(--muted);
    }
    
    /* Product Cards - Clickable */
    .product-card {
      border-radius: var(--card-radius);
      background: #fff;
      box-shadow: var(--shadow);
      margin-bottom: 25px;
      overflow: hidden;
      transition: all 0.4s ease;
      border: 2px solid rgba(212,175,55,0.1);
      animation: slideInUp 0.6s ease;
      height: 100%;
      display: flex;
      flex-direction: column;
      position: relative;
      cursor: pointer;
    }

    .product-card-link {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 1;
      text-decoration: none;
    }

    .product-card.dark {
      background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
      color: #fff;
      border-color: rgba(212,175,55,0.3);
    }

    .product-card.dark .product-title,
    .product-card.dark .product-brand,
    .product-card.dark .product-price {
      color: #fff;
    }

    .product-card.dark .product-discount {
      color: #ccc;
    }
    
    @keyframes slideInUp {
      from {
        opacity: 0;
        transform: translateY(40px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .product-card:hover {
      box-shadow: var(--shadow-hover);
      border-color: rgba(212,175,55,0.2);
      transform: translateY(-5px);
    }
    
    .product-image-container {
      height: 250px;
      overflow: hidden;
      position: relative;
      flex-shrink: 0;
    }

    .product-image {
      height: 100%;
      width: 100%;
      object-fit: contain;
      transition: all 0.4s ease;
      background: #f8f9fa;
      padding: 15px;
    }

    .product-card.dark .product-image {
      background: #2d2d2d;
    }
    
    .product-card:hover .product-image {
      transform: scale(1.03);
    }
    
    .product-badge {
      position: absolute;
      top: 15px;
      left: 15px;
      background: var(--gold);
      color: #000;
      padding: 5px 12px;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 700;
      z-index: 2;
    }
    
    .product-content {
      padding: 20px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
      position: relative;
      z-index: 2;
    }
    
    .product-title {
      font-weight: 600;
      font-size: 1.1rem;
      margin-bottom: 8px;
      color: var(--dark);
      line-height: 1.4;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
      min-height: 4.2em;
    }
    
    .product-brand {
      color: var(--muted);
      font-size: 0.9rem;
      margin-bottom: 10px;
    }
    
    .product-price {
      font-weight: 700;
      font-size: 1.2rem;
      color: var(--gold);
      margin-bottom: 15px;
    }
    
    .product-discount {
      color: var(--muted);
      text-decoration: line-through;
      font-size: 0.9rem;
      margin-left: 8px;
    }
    
    .btn-gold {
      background: var(--gold);
      color: #000;
      border: none;
      padding: 12px 20px;
      border-radius: 8px;
      font-weight: 600;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-top: auto;
      width: 100%;
      font-size: 0.95rem;
      min-height: 44px;
      position: relative;
      z-index: 3;
    }

    .btn-gold:hover {
      background: var(--gold-dark);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(212,175,55,0.3);
      color: #000;
    }
    
    /* Section Headers */
    .section-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 25px;
      padding-bottom: 10px;
      border-bottom: 2px solid rgba(212,175,55,0.3);
      max-width: 1400px;
      margin-left: auto;
      margin-right: auto;
      padding: 0 20px 10px;
    }
    
    .section-title {
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--dark);
      margin: 0;
    }
    
    .section-link {
      color: var(--gold);
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 5px;
    }
    
    .section-link:hover {
      color: var(--gold-dark);
      transform: translateX(5px);
    }
    
    /* Product Grid - 5 Products per Row */
    .product-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 20px;
      padding: 0 20px;
      width: 100%;
    }

    /* Product Sliders - 5 Products Grid */
    .products-slider {
      position: relative;
      margin-bottom: 50px;
      width: 100%;
    }
    
    .slider-container {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 20px;
      padding: 10px 20px;
      width: 100%;
      overflow-x: visible;
    }
    
    .slider-item {
      animation: fadeIn 0.6s ease;
    }
    
    @keyframes fadeIn {
      from { opacity: 0; transform: translateX(20px); }
      to { opacity: 1; transform: translateX(0); }
    }
    
    /* No Products */
    .no-products {
      background: #fff;
      border-radius: var(--card-radius);
      padding: 60px 30px;
      box-shadow: var(--shadow);
      text-align: center;
      animation: fadeIn 1s ease;
      border: 2px solid rgba(212,175,55,0.1);
      max-width: 1400px;
      margin: 0 auto;
    }
    
    .no-products-icon {
      font-size: 4rem;
      color: var(--gold);
      margin-bottom: 20px;
      animation: float 3s ease-in-out infinite;
    }
    
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }
    
    .no-products h4 {
      color: var(--dark);
      margin-bottom: 15px;
    }
    
    .no-products p {
      color: var(--muted);
      margin-bottom: 25px;
      max-width: 500px;
      margin-left: auto;
      margin-right: auto;
    }
    
    /* Main Content - Full Width */
    .main-content {
      max-width: 100%;
      margin: 0 auto;
      padding: 0;
    }
    
    /* Product Grid Section - Full Width */
    .product-grid-section {
      width: 100%;
      margin-bottom: 50px;
    }
    
    .product-grid-container {
      width: 100%;
    }
    
    /* Footer - Full Width */
    footer.bg-dark {
      background: #111 !important;
      color: #fff;
      padding-top: 40px;
      padding-bottom: 30px;
      margin-top: 60px;
      width: 100%;
    }

    footer h6 {
      color: var(--gold);
      font-weight: 700;
      margin-bottom: 15px;
      font-size: 1.1rem;
    }

    footer a {
      color: #ddd;
      display: block;
      margin: 6px 0;
      text-decoration: none;
      transition: all 0.3s ease;
      font-size: 0.95rem;
    }

    footer a i {
      margin-right: 8px;
      color: var(--gold);
      width: 20px;
      text-align: center;
    }

    footer a:hover {
      color: var(--gold);
      transform: translateX(5px);
    }

    .footer-divider {
      border-color: rgba(212,175,55,0.3) !important;
      margin: 25px 0;
    }
    
    /* WhatsApp Float */
    .whatsapp-float {
      position: fixed;
      bottom: 25px;
      right: 25px;
      background: #25D366;
      color: #fff;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      z-index: 1100;
      box-shadow: 0 6px 20px rgba(37,211,102,0.3);
      transition: all 0.3s ease;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
      70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
      100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
    }

    .whatsapp-float:hover {
      transform: scale(1.1);
      animation: none;
    }
    
    /* Responsive Grid System */
    /* Desktop: 5 products per row */
    @media (min-width: 1200px) {
      .product-grid,
      .slider-container {
        grid-template-columns: repeat(5, 1fr);
      }
    }

    /* Large Desktop: 5 products per row */
    @media (min-width: 1400px) {
      .product-grid,
      .slider-container {
        grid-template-columns: repeat(5, 1fr);
      }
    }

    /* Tablet: 3 products per row */
    @media (min-width: 768px) and (max-width: 1199px) {
      .product-grid,
      .slider-container {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    /* Mobile: 2 products per row */
    @media (max-width: 767px) {
      .product-grid,
      .slider-container {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .product-image-container {
        height: 200px;
      }
      
      .btn-gold {
        padding: 10px 15px;
        font-size: 0.9rem;
        min-height: 40px;
      }
    }

    /* Small Mobile: 1 product per row */
    @media (max-width: 480px) {
      .product-grid,
      .slider-container {
        grid-template-columns: 1fr;
      }
    }

    /* Responsive adjustments */
    @media (max-width: 992px) {
      .container-main {
        padding: 0 15px;
      }
      
      .page-title {
        font-size: 2rem;
      }
      
      .menu-toggle {
        display: block;
      }
    }
    
    @media (max-width: 768px) {
      .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 0 15px 10px;
      }
      
      .product-title {
        font-size: 1rem;
        min-height: 3.6em;
      }
    }
    
    @media (max-width: 576px) {
      .page-title {
        font-size: 1.8rem;
      }
      
      .section-title {
        font-size: 1.5rem;
      }
      
      .no-products {
        padding: 40px 20px;
      }

      .mobile-sidebar {
        width: 280px;
      }
      
      .product-content {
        padding: 15px;
      }

      .product-grid,
      .slider-container {
        padding: 0 15px;
        gap: 15px;
      }
    }

    /* Animation for product cards */
    @keyframes cardAppear {
      0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
      }
      100% {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    .product-card {
      animation: cardAppear 0.6s ease-out;
    }

    /* Full width sections */
    .full-width-section {
      width: 100%;
      margin-bottom: 50px;
    }
  