      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: 'Inter', 'Arial', sans-serif;
        background-color: #0a0a0a;
        color: #ffffff;
        line-height: 1.6;
        overflow-x: hidden;
      }

      .container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 50px;
      }

      /* Shop Section */
      .shop-section {
        background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
        padding: 140px 0 80px;
        text-align: center;
        position: relative;
        overflow: hidden;
      }

      .shop-section::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
        z-index: 0;
        animation: pulse 10s infinite;
      }

      @keyframes pulse {
        0% { transform: scale(1); opacity: 0.15; }
        50% { transform: scale(1.2); opacity: 0.1; }
        100% { transform: scale(1); opacity: 0.15; }
      }

      .shop-title {
        font-size: 60px;
        font-weight: 900;
        margin-bottom: 20px;
        letter-spacing: 4px;
        color: #d4af37;
        text-transform: uppercase;
        position: relative;
        z-index: 1;
        text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
        animation: fadeInDown 1s ease-out;
      }

      .shop-subtitle {
        color: #e0e0e0;
        font-size: 18px;
        margin-bottom: 50px;
        position: relative;
        z-index: 1;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        animation: fadeInUp 1s ease-out;
      }

      @keyframes fadeInDown {
        from { opacity: 0; transform: translateY(-20px); }
        to { opacity: 1; transform: translateY(0); }
      }

      @keyframes fadeInUp {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
      }

      /* Search Bar */
      .search-section {
        margin: 40px 0;
        display: flex;
        justify-content: center;
      }

      .search-bar {
        width: 100%;
        max-width: 500px;
        position: relative;
      }

      .search-input {
        width: 100%;
        padding: 14px 50px 14px 20px;
        background-color: #1a1a1a;
        border: 1px solid #555;
        border-radius: 50px;
        color: #ffffff;
        font-size: 16px;
        transition: all 0.3s ease;
      }

      .search-input:focus {
        outline: none;
        border-color: #d4af37;
        box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
      }

      .search-icon {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        color: #d4af37;
        font-size: 18px;
        cursor: pointer;
      }

      /* Filter Section */
      .filter-section {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin: 60px 0;
        flex-wrap: wrap;
      }

      .filter-dropdown, .filter-btn {
        background-color: #1a1a1a;
        color: #ffffff;
        border: 1px solid #555;
        padding: 12px 40px 12px 20px;
        border-radius: 50px;
        font-size: 14px;
        text-transform: uppercase;
        transition: all 0.3s ease;
        appearance: none;
        background-image: url('data:image/svg+xml;utf8,<svg fill="white" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
        background-repeat: no-repeat;
        background-position: right 15px center;
        min-width: 160px;
        cursor: pointer;
      }

      .filter-btn {
        background-image: none;
        padding: 12px 20px;
      }

      .filter-dropdown:hover,
      .filter-dropdown:focus,
      .filter-btn:hover {
        border-color: #d4af37;
        background-color: #222222;
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      }

      /* Product Grid */
      .product-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        margin-bottom: 80px;
      }

      .product-card {
        background-color: #1a1a1a;
        border-radius: 16px;
        overflow: hidden;
        transition: all 0.4s ease;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        position: relative;
      }

      .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
      }

      .product-image {
        width: 100%;
        height: 320px;
        object-fit: cover;
        background-color: #222;
        transition: transform 0.5s ease;
      }

      .product-card:hover .product-image {
        transform: scale(1.05);
      }

      .product-info {
        padding: 30px;
        text-align: center;
      }

      .product-name {
        font-size: 18px;
        margin-bottom: 15px;
        color: #ffffff;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-weight: 700;
      }

      .product-price {
        margin-bottom: 25px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
      }

      .base-price {
        color: #999;
        text-decoration: line-through;
        font-size: 16px;
      }

      .discounted-price {
        color: #d4af37;
        font-size: 18px;
        font-weight: 700;
      }

      .shop-now-btn {
        background: linear-gradient(90deg, #d4af37, #f0c14b);
        color: #000000;
        border: none;
        padding: 12px 35px;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
      }

      .shop-now-btn:hover {
        background: linear-gradient(90deg, #b8941f, #d4af37);
        transform: translateY(-3px);
        box-shadow: 0 6px 15px rgba(212, 175, 55, 0.5);
      }

      .shop-now-btn::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.3),
          transparent
        );
        transition: 0.5s;
      }

      .shop-now-btn:hover::after {
        left: 100%;
      }

      /* Wishlist Icon */
      .wishlist-btn {
        position: absolute;
        top: 15px;
        right: 15px;
        background-color: rgba(26, 26, 26, 0.7);
        border: none;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 2;
      }

      .wishlist-btn i {
        color: #ffffff;
        font-size: 18px;
      }

      .wishlist-btn.active i {
        color: #ff4444;
      }

      .wishlist-btn:hover {
        background-color: rgba(212, 175, 55, 0.2);
        transform: scale(1.1);
      }

      .wishlist-btn.active:hover i {
        color: #cc0000;
      }

      /* Pagination */
      .pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        margin-bottom: 80px;
      }

      .pagination-btn {
        background-color: transparent;
        color: #ffffff;
        border: 1px solid #555;
        padding: 12px 20px;
        border-radius: 50px;
        cursor: pointer;
        font-size: 14px;
        font-weight: 600;
        transition: all 0.3s ease;
      }

      .pagination-btn:hover:not(:disabled) {
        color: #d4af37;
        border-color: #d4af37;
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
      }

      .pagination-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
      }

      .pagination-dot {
        width: 12px;
        height: 12px;
        background-color: #666;
        border-radius: 50%;
        transition: all 0.3s ease;
        cursor: pointer;
      }

      .pagination-dot:hover {
        background-color: #d4af37;
        transform: scale(1.3);
      }

      .pagination-dot.active {
        background-color: #d4af37;
        transform: scale(1.3);
      }

      /* Error Message */
      .error-message {
        color: #ff6b6b;
        text-align: center;
        margin: 20px 0;
        font-size: 16px;
      }

      /* Toast Notifications */
      .toast-container {
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 9999;
        display: flex;
        flex-direction: column;
        gap: 10px;
      }

      .toast {
        background-color: #333;
        color: #fff;
        padding: 12px 16px;
        border-radius: 4px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        max-width: 300px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        animation: slideInRight 0.3s ease;
        font-size: 0.9rem;
      }

      .toast.success {
        background-color: #4ade80;
        color: #000;
      }

      .toast.error {
        background-color: #ef4444;
        color: #fff;
      }

      .toast .close {
        background: none;
        border: none;
        color: inherit;
        font-size: 18px;
        cursor: pointer;
        padding: 0 4px;
        margin-left: 8px;
        line-height: 1;
      }

      .toast .close:hover {
        opacity: 0.7;
      }

      @keyframes slideInRight {
        from {
          transform: translateX(100%);
          opacity: 0;
        }
        to {
          transform: translateX(0);
          opacity: 1;
        }
      }

      @keyframes slideOutRight {
        from {
          transform: translateX(0);
          opacity: 1;
        }
        to {
          transform: translateX(100%);
          opacity: 0;
        }
      }

      .fadeOut {
        animation: slideOutRight 0.3s ease forwards;
      }

      /* Modal Styles */
      .modal {
        display: none;
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(5px);
      }

      .modal-content {
        background-color: #1a1a1a;
        margin: 5% auto;
        padding: 0;
        border: 1px solid #555;
        border-radius: 16px;
        width: 90%;
        max-width: 500px;
        max-height: 80vh;
        overflow-y: auto;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
      }

      .modal-header {
        padding: 20px;
        border-bottom: 1px solid #555;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .modal-header h2 {
        color: #d4af37;
        margin: 0;
        font-size: 24px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
      }

      .close {
        color: #999;
        font-size: 28px;
        font-weight: bold;
        cursor: pointer;
        transition: color 0.3s;
      }

      .close:hover {
        color: #d4af37;
      }

      .filter-group {
        padding: 20px;
        border-bottom: 1px solid #555;
      }

      .filter-group:last-child {
        border-bottom: none;
      }

      .filter-group h3 {
        color: #d4af37;
        margin-bottom: 15px;
        font-size: 18px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
      }

      .price-selects {
        display: flex;
        flex-direction: column;
        gap: 15px;
      }

      .price-select-group {
        display: flex;
        gap: 10px;
        align-items: center;
      }

      .price-select-group label {
        color: #e0e0e0;
        font-size: 14px;
        min-width: 40px;
      }

      .price-select {
        flex: 1;
        background-color: #1a1a1a;
        color: #ffffff;
        border: 1px solid #555;
        padding: 10px;
        border-radius: 8px;
        font-size: 14px;
        transition: all 0.3s ease;
      }

      .price-select:focus {
        border-color: #d4af37;
        outline: none;
        box-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
      }

      .checkbox-label {
        display: flex;
        align-items: center;
        padding: 10px;
        color: #ffffff;
        cursor: pointer;
        border-bottom: 1px solid #333;
        transition: background 0.3s;
      }

      .checkbox-label:hover {
        background: #222222;
      }

      .checkbox-label input[type="checkbox"] {
        margin-right: 10px;
        accent-color: #d4af37;
      }

      .show-more-btn {
        background: none;
        border: none;
        color: #d4af37;
        cursor: pointer;
        font-size: 14px;
        text-decoration: underline;
        padding: 10px;
        text-align: center;
        width: 100%;
        transition: color 0.3s;
      }

      .show-more-btn:hover {
        color: #b8941f;
      }

      .brands-hidden {
        display: none;
      }

      .modal-footer {
        padding: 20px;
        display: flex;
        gap: 10px;
        justify-content: flex-end;
        border-top: 1px solid #555;
      }

      .modal-footer button {
        padding: 10px 20px;
        border: 1px solid #555;
        background: transparent;
        color: #ffffff;
        border-radius: 50px;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        /* margin-left: auto; */
      }

      .modal-footer button:hover {
        border-color: #d4af37;
        color: #d4af37;
        box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
      }

      /* Responsive Design */
      @media (max-width: 1024px) {
        .shop-title {
          font-size: 48px;
        }

        .product-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 30px;
        }
      }

      @media (max-width: 768px) {
        .shop-title {
          font-size: 36px;
        }

        .shop-subtitle {
          font-size: 16px;
        }

        .product-grid {
          grid-template-columns: 1fr;
          gap: 20px;
        }

        .filter-section {
          flex-direction: column;
          align-items: center;
        }

        .filter-dropdown, .filter-btn {
          width: 100%;
          max-width: 300px;
        }

        .search-bar {
          max-width: 400px;
        }

        .modal-content {
          width: 95%;
          margin: 10% auto;
        }

        .price-select-group {
          flex-direction: column;
          align-items: stretch;
        }
      }

      @media (max-width: 480px) {
        .shop-title {
          font-size: 28px;
        }

        .shop-subtitle {
          font-size: 14px;
        }

        .product-grid {
          grid-template-columns: 1fr;
        }

        .product-image {
          height: 280px;
        }
      }
