:root {
    --primary: #000000;
    --primary-dark: #000000;
    --secondary: #000000;
    --light: #ffffff;
    --dark: #000000;
    --gray: #333333;
    --light-gray: #f5f5f5;
    --success: #000000;
    --danger: #000000;
    --border-radius: 12px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    --gradient: linear-gradient(135deg, #000000, #000000);
    --gold: #d4af37;
    --silver: #c0c0c0;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, sans-serif;
  }

  body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: var(--light);
    padding-top: 120px;
    padding-bottom: 60px;
    overflow-x: hidden;
  }

  /* Premium Desktop Header */
  .top-bar {
    background: var(--gradient);
    color: white;
    padding: 8px 0;
    font-size: 0.8rem;
    text-align: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    letter-spacing: 0.5px;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }

  header {
    background-color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 32px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 12px 5%;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    transition: all 0.3s ease;
  }

  header.scrolled {
    padding: 8px 5%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }

  .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
  }

  .logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: -0.5px;
  }

  .logo i {
    color: var(--secondary);
  }

  .nav-links {
    display: flex;
    gap: 25px;
    margin: 0 20px;
  }

  .nav-link {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
  }

  .nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--dark);
    transition: width 0.3s ease;
  }

  .nav-link:hover:after {
    width: 100%;
  }

  .search-bar {
    display: flex;
    flex: 1;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    background: white;
    max-width: 600px;
    border: 1px solid rgba(0,0,0,0.1);
    transition: var(--transition);
  }

  .search-bar:focus-within {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
  }

  .search-bar input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    font-size: 0.9rem;
    outline: none;
    background: transparent;
    color: var(--dark);
  }

  .search-bar button {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 0 25px;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
  }

  .search-bar button:hover {
    background: var(--dark);
  }

  .nav-icons {
    display: flex;
    gap: 20px;
  }

  .nav-icon {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    padding: 8px;
    border-radius: 10px;
    min-width: 44px;
    transition: var(--transition);
  }

  .nav-icon:hover {
    background: rgba(0,0,0,0.05);
    transform: translateY(-2px);
  }

  .nav-icon i {
    font-size: 1.3rem;
    color: var(--dark);
  }

  .nav-icon-label {
    font-size: 0.7rem;
    margin-top: 4px;
    color: var(--gray);
  }

  .cart-count {
    position: absolute;
    top: 4px;
    right: 4px;
    background-color: var(--danger);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
  }

  /* Premium Hero Slider */
  .hero {
    padding: 20px 0;
    max-width: 1400px;
    margin: 0 auto;
  }

  .hero-slider {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0,0,0,0.05);
  }

  .slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
  }

  .slider-item.active {
    opacity: 1;
  }

  .slider-content {
    position: absolute;
    bottom: 60px;
    left: 60px;
    color: white;
    z-index: 2;
    max-width: 500px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  }

  .slider-content h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    line-height: 1.1;
    font-weight: 800;
  }

  .slider-content p {
    margin-bottom: 25px;
    font-size: 1.2rem;
    line-height: 1.5;
    max-width: 80%;
  }

  .btn {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
    border: 1px solid var(--dark);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }

  .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0,0,0,0.2);
  }

  .slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
  }

  .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
  }

  .indicator.active {
    background-color: white;
    transform: scale(1.3);
  }

  .slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 3;
  }

  .slider-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: var(--transition);
  }

  .slider-arrow:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
  }

  /* Premium Categories */
  .section {
    margin: 40px 0;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0,0,0,0.05);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
  }

  .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 0 10px;
  }

  .section-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark);
    position: relative;
    padding-bottom: 10px;
  }

  .section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient);
  }

  .view-all {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
  }

  .view-all:hover {
    gap: 10px;
  }

  .categories-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 15px;
  }

  .category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    padding: 20px 10px;
    border-radius: 15px;
    background: var(--light-gray);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
  }

  .category-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--gradient);
    transition: height 0.3s ease;
    z-index: 0;
  }

  .category-card:hover:before {
    height: 100%;
  }

  .category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  }

  .category-card:hover .category-icon {
    background: white;
    transform: scale(1.1);
  }

  .category-card:hover .category-name {
    color: white;
  }

  .category-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
    border-radius: 15px;
    background: white;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
    position: relative;
    z-index: 1;
  }

  .category-icon i {
    font-size: 1.8rem;
    color: var(--primary);
    transition: var(--transition);
  }

  .category-card:hover .category-icon i {
    color: var(--dark);
  }

  .category-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.2;
    transition: var(--transition);
    position: relative;
    z-index: 1;
  }

  /* Premium Products */
  .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }

  .product-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
  }

  .product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }

  .product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gradient);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 10;
    border: 1px solid var(--dark);
  }

  .product-image {
    height: 250px;
    width: 100%;
    background-color: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
  }

  .product-image:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .product-card:hover .product-image:after {
    opacity: 1;
  }

  .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
  }

  .product-card:hover .product-image img {
    transform: scale(1.1);
  }

  .product-info {
    padding: 20px;
  }

  .product-title {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.3;
    height: 2.6em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: var(--dark);
  }

  .product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 12px;
  }

  .stars {
    color: var(--gold);
    display: flex;
    gap: 2px;
    font-size: 0.8rem;
  }

  .rating-count {
    color: var(--gray);
    font-size: 0.75rem;
  }

  .product-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
  }

  .price {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--dark);
  }

  .old-price {
    color: var(--gray);
    text-decoration: line-through;
    font-size: 0.8rem;
  }

  .discount {
    color: var(--success);
    font-weight: 700;
    font-size: 0.8rem;
  }

  .product-actions {
    display: flex;
    gap: 8px;
  }

  .add-to-cart {
    flex: 1;
    background: var(--gradient);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.8rem;
    border: 1px solid var(--dark);
  }

  .add-to-cart:hover {
    opacity: 0.9;
    transform: translateY(-2px);
  }

  .wishlist {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    background: white;
    font-size: 0.9rem;
  }

  .wishlist:hover {
    color: var(--danger);
    border-color: var(--danger);
    transform: scale(1.1);
  }

  /* Premium Carousel */
  .carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
  }

  .carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
  }

  .productsprocer-card {
    background: white;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 15px;
    flex: 0 0 200px;
    max-width: 200px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
  }

  .productsprocer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }

  .productsprocer-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: var(--transition);
  }

  .productsprocer-card:hover img {
    transform: scale(1.05);
  }

  .productsprocer-card .name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    margin-top: 5px;
    line-height: 1.3;
  }

  .productsprocer-card .price {
    font-size: 1rem;
    font-weight: 800;
    color: var(--dark);
    margin-top: 5px;
  }

  /* Premium Footer */
  footer {
    background-color: var(--dark);
    color: white;
    padding: 50px 0 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    padding: 0 5%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    font-weight: 700;
  }

  .footer-col h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient);
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .footer-links a {
    color: #cbd5e1;
    transition: var(--transition);
    text-decoration: none;
    font-size: 0.9rem;
  }

  .footer-links a:hover {
    color: white;
    transform: translateX(5px);
  }

  .social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
  }

  .social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 1.1rem;
    border: 1px solid rgba(255,255,255,0.1);
  }

  .social-link:hover {
    background: var(--gradient);
    transform: translateY(-3px);
  }

  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
  }

  .contact-icon {
    color: var(--primary);
    font-size: 1rem;
    margin-top: 2px;
  }

  .contact-item span {
    font-size: 0.9rem;
  }

  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    color: #94a3b8;
    font-size: 0.8rem;
  }

  /* Hide Mobile Navigation on Desktop */
  .mobile-nav {
    display: none;
  }

  /* Container */
  .container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 5%;
  }

  /* Advanced Animations */
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
  }

  .animate-in {
    animation: fadeIn 0.6s ease forwards;
    opacity: 0;
  }

  .delay-1 { animation-delay: 0.1s; }
  .delay-2 { animation-delay: 0.2s; }
  .delay-3 { animation-delay: 0.3s; }

  .float {
    animation: float 5s ease-in-out infinite;
  }

  /* Search Results */
  .search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-height: 400px;
    overflow-y: auto;
    z-index: 10;
    margin-top: 10px;
    display: none;
    border: 1px solid rgba(0,0,0,0.1);
  }

  .search-results.active {
    display: block;
    animation: fadeIn 0.3s ease;
  }

  .search-item {
    padding: 15px 20px;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: var(--transition);
  }

  .search-item:hover {
    background: var(--light);
    transform: translateX(5px);
  }

  .search-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
  }

  .search-item-info {
    flex: 1;
  }

  .search-item-name {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: var(--dark);
  }

  .search-item-price {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
  }

  .no-results {
    padding: 20px;
    text-align: center;
    color: var(--gray);
    font-size: 0.9rem;
  }

  /* Toast Notification */
  .toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--gradient);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 1001;
    transform: translateX(150%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 350px;
  }

  .toast.show {
    transform: translateX(0);
  }

  .toast i {
    font-size: 1.2rem;
  }

  /* Quick View Modal */
  .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
  }

  .modal-content {
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 900px;
    padding: 30px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: fadeIn 0.4s ease;
  }

  .close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
  }

  .close-modal:hover {
    background: rgba(0,0,0,0.05);
  }

  /* Filter & Sort */
  .filter-sort {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    overflow-x: auto;
    padding: 10px 0;
  }

  .filter-btn, .sort-btn {
    padding: 10px 20px;
    border: 1px solid rgba(0,0,0,0.1);
    background: white;
    border-radius: 25px;
    font-size: 0.8rem;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
    font-weight: 600;
  }

  .filter-btn.active, .sort-btn.active {
    background: var(--gradient);
    color: white;
    border-color: var(--dark);
  }

  .filter-btn:hover, .sort-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }

  /* Loading Spinner */
  .loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
  }

  @keyframes spin {
    to { transform: rotate(360deg); }
  }

  /* Special Offers Banner */
  .offers-banner {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
  }

  .offer-card {
    flex: 1;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
  }

  .offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  }

  .offer-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    color: white;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    z-index: 2;
  }

  .offer-content h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
  }

  .offer-content p {
    font-size: 0.9rem;
  }

  /* Newsletter Section */
  .newsletter {
    background: var(--gradient);
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-top: 60px;
  }

  .newsletter-content {
    max-width: 600px;
    margin: 0 auto;
  }

  .newsletter h2 {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .newsletter p {
    margin-bottom: 30px;
    font-size: 1rem;
    opacity: 0.9;
  }

  .newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
  }

  .newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 30px 0 0 30px;
    font-size: 0.9rem;
    outline: none;
  }

  .newsletter-form button {
    background: var(--dark);
    color: white;
    border: none;
    padding: 0 30px;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition);
  }

  .newsletter-form button:hover {
    background: #333;
  }

  /* Responsive Design */
  @media (max-width: 1200px) {
    .categories-grid {
      grid-template-columns: repeat(6, 1fr);
    }
    
    .products-grid {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 992px) {
    .nav-links {
      display: none;
    }
    
    .categories-grid {
      grid-template-columns: repeat(4, 1fr);
    }
    
    .hero-slider {
      height: 400px;
    }
    
    .slider-content h2 {
      font-size: 2.5rem;
    }
  }

  @media (max-width: 768px) {
    .mobile-nav {
      display: flex;
    }
    
    .categories-grid {
      grid-template-columns: repeat(4, 1fr);
    }
    
    .products-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-slider {
      height: 300px;
    }
    
    .slider-content h2 {
      font-size: 2rem;
    }
    
    .slider-content {
      bottom: 30px;
      left: 30px;
    }
    
    .section {
      padding: 20px;
    }
  }

  @media (max-width: 576px) {
    .categories-grid {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .products-grid {
      grid-template-columns: 1fr;
    }
    
    .hero-slider {
      height: 250px;
    }
    
    .slider-content h2 {
      font-size: 1.5rem;
    }
    
    .footer-grid {
      grid-template-columns: 1fr;
    }
  }
