* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #fff;
}


.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 100;
}

.logo {
  position: fixed;        
  top: 20px;
  left: 30px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #111;
  cursor: pointer;
  z-index: 1000;
}

.logo span {
  color: #ff3b3b;          
}


/* subtle hover polish */
.logo:hover {
  letter-spacing: 1.5px;
  transition: letter-spacing 0.3s ease;
}
.category-btn {
  display: inline-block;
  padding: 10px 20px;
  margin: 5px;
  background: #333;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.logo {
  height: 24px;
}

.logo.small {
  height: 22px;
}

.nav-center {
  display: flex;
  gap: 28px;
}

.nav-center a {
  position: relative;
  text-decoration: none;
  color: #111;
  font-size: 15px;
  font-weight: 500;
  padding: 6px 2px;
  transition: color 0.3s ease;
}

/* underline animation */
.nav-center a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #111;
  transition: width 0.3s ease;
}
.nav-center a:hover {
  text-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.nav-center a:hover::after {
  width: 100%;
}


.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.search {
  padding: 6px 12px;
  border-radius: 20px;
  border: none;
  background: #f5f5f5;
}

.icon {
  font-size: 20px; 
  cursor: pointer;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}


.image-section {
  width: 100%;
  padding: 20px;
}

.image-wrapper {
  max-width: 2500px;
  margin: 0 auto;
  position: relative; 
}

.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}


.image-text {
  position: absolute;
  top: 20%;
  left: 5%;
  color: #bbb5b5;
  max-width: 420px;
}

.image-text h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.image-text p {
  font-size: 18px;
  margin-bottom: 20px;
}

.image-text button {
  padding: 10px 22px;
  border: none;
  border-radius: 25px;
  background: black;
  color: white;
  cursor: pointer;
  font-size: 14px;
}

.product-section {
  padding: 40px 20px;
}

.product-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  transition: 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.product-card:hover {
  transform: translateY(-6px);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
}

.product-card h3 {
  margin: 12px 0 8px;
  font-size: 16px;
}

.price {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.current {
  font-weight: bold;
}

.old {
  text-decoration: line-through;
  color: gray;
}

.discount {
  color: green;
  font-size: 13px;
}

.rating {
  margin-top: 8px;
  font-size: 14px;
}
*



.product-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    display: flex;
    max-width: 900px;
    width: 90%;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    max-height: 90vh;
}

.modal-image {
    width: 50%;
    height: 500px;
    object-fit: cover;
}

.product-details {
    padding: 30px;
    width: 50%;
    overflow-y: auto;
}

.close {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 35px;
    cursor: pointer;
    color: #999;
    z-index: 10001;
}

.close:hover { color: #333; }

.product-name { font-size: 2em; margin-bottom: 10px; color: #333; }
.product-price { font-size: 1.5em; color: #e74c3c; font-weight: bold; margin-bottom: 20px; }
.product-desc { line-height: 1.6; color: #666; margin-bottom: 25px; }
.buy-btn { 
    background: #3498db; color: white; padding: 12px 30px; 
    border: none; border-radius: 25px; font-size: 1.1em; cursor: pointer; 
}

.product-section h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  justify-content:center ;
}


.subtitle {
  margin-top: 16px;
  font-size: 1rem;
  color: #333;
}

.spotlight-grid {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(8, 1fr);     
    grid-template-rows: 220px 220px;          
    gap: 40px 24px;
    align-items: end;                          
    justify-items: center;                     
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.item {
    width: 100%;
    height: 100%;                               
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;             
    padding: 24px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.item img {
    width: 100%;
    height: 160px;                            
    object-fit: cover;
    border-radius: 16px;
    flex-shrink: 0;                            
}

.item span {
    font-size: clamp(12px, 1.8vw, 14px);
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
    margin-top: auto;                         
    color: #111;
    padding: 0 8px;
}


.item:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.item:hover img {
    transform: scale(1.08);
}


.cart-section {
    padding: 80px 0;
    min-height: calc(100vh - 200px);
}

.cart-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #111, #333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cart-empty {
    text-align: center;
    padding: 60px 20px;
    max-width: 500px;
    margin: 0 auto;
}

.empty-icon {
    font-size: 6rem;
    margin-bottom: 20px;
}

.cart-empty h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #333;
}

.cart-empty p {
    color: #666;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #111;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #ff3b3b;
    transform: translateY(-2px);
}

.cart-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    align-items: start;
}

.cart-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    border: 1px solid #eee;
    border-radius: 16px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.cart-item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #ddd;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 12px;
}

.cart-item-details h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 700;
}

.cart-item-details .price {
    font-size: 20px;
    font-weight: 800;
    color: #111;
    margin: 12px 0;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 16px 0;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #ddd;
    background: white;
    border-radius: 50%;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
}

.quantity-btn:hover {
    border-color: #111;
    background: #f8f8f8;
}

.quantity-input {
    width: 60px;
    height: 40px;
    border: 2px solid #eee;
    border-radius: 8px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
}

.remove-btn {
    background: #ff3b3b;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.remove-btn:hover {
    background: #e63939;
    transform: translateY(-1px);
}

.cart-summary {
    background: #f8f8f8;
    padding: 32px;
    border-radius: 20px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: 16px;
}

.summary-row.total {
    font-size: 24px;
    font-weight: 800;
    color: #111;
    border-top: 2px solid #eee;
    padding-top: 20px;
    margin-top: 20px;
}

.checkout-btn {
    width: 100%;
    padding: 18px;
    background: #111;
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 24px;
}

.checkout-btn:hover {
    background: #ff3b3b;
    transform: translateY(-2px);
}

.cart-icon-container {
    position: relative;
    display: inline-block;
}

.cart-icon {
    width: 25px;
    height: 25px;
}


.cart-container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
}

.cart-container h1 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
}


.cart-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.cart-item img {
    width: 120px;
    height: auto;
    border-radius: 8px;
    background: #f5f5f5;
}

.cart-info {
    flex: 1;
}

.cart-info h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.cart-price {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.qty {
    display: flex;
    align-items: center;
    gap: 12px;
}

.qty button {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #ccc;
    background: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.qty button:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

.qty span {
    min-width: 20px;
    text-align: center;
    font-weight: 500;
}


.total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0 0;
    margin-top: 20px;
    font-size: 36px;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.1;
    color: green;
}


@media (max-width: 768px) {
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .cart-item img {
        width: 100%;
        max-width: 250px;
    }

    .cart-info {
        width: 100%;
    }

    .total {
        text-align: left;
    }
}


@media (max-width: 480px) {
    .cart-container {
        padding: 15px;
    }

    .cart-container h1 {
        font-size: 22px;
    }

    .cart-info h3 {
        font-size: 16px;
    }

    .cart-price {
        font-size: 14px;
    }

    .qty button {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

    .total {
        font-size: 18px;
        
    }
}


/* Responsive */
@media (max-width: 768px) {
    .cart-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .cart-summary {
        order: -1;
        position: static;
    }
}

/* RESPONSIVE */
@media (max-width: 1400px) {
    .spotlight-grid {
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: 200px 200px;
        gap: 32px 20px;
    }
}

@media (max-width: 1100px) {
    .spotlight-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(4, 180px);
        gap: 28px 18px;
    }
}

@media (max-width: 768px) {
    .spotlight-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(8, 160px);
        gap: 24px 16px;
    }
}

@media (max-width: 480px) {
    .spotlight-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.item img {
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.item:hover img {
  transform: translateY(-6px);
}

.item span {
  margin-top: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #fff;
  color: #111;
}

.footer {
  border-top: 1px solid #e5e5e5;
  padding: 60px 5vw 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 40px;
}

.footer-column h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 12px;
}

.footer-column a {
  text-decoration: none;
  color: #555;
  font-size: 0.85rem;
}

.footer-column a:hover {
  color: #111;
}

.footer-region {
  font-size: 0.85rem;
  color: #555;
  white-space: nowrap;
}

.footer-bottom {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8rem;
  color: #555;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a {
  text-decoration: none;
  color: #555;
}

.footer-links a:hover {
  color: #111;
}

/*men */

.container {
  max-width: 1300px;
  margin: auto;
}


.hero-card {
  position: relative;
  background: black;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 40px;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-badge {
    position: absolute;
    top: 7px;
    right: 20px;
    background: #242222;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

#toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #333;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.4s ease;
    z-index: 10001;
    font-weight: 500;
}

#toast.show {
    opacity: 1;
    transform: translateX(0);
}


.hero-content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  color: white;
}

.hero-content h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

.hero-content button {
  padding: 10px 22px;
  border: none;
  border-radius: 25px;
  background: white;
  cursor: pointer;
  font-weight: bold;
}


.trending-section {
    padding: 60px 20px;
    text-align: center;
}

.trending-section h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #111, #333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.category-buttons {
    margin-bottom: 50px;
}

.category-btn {
    display: inline-block;
    padding: 12px 24px;
    margin: 0 8px;
    background: #111;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-btn:hover {
    background: #ff3b3b;
    transform: translateY(-2px);
}


.product-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: stretch;  
}

.product-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;  
}

.product-card {
    height: 100%;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    padding: 0;  
}

.product-card-content {
    padding: 25px;
    flex-grow: 1;  
    display: flex;
    flex-direction: column;
}

.product-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111;
}

.price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.current {
    font-size: 22px;
    font-weight: 800;
    color: #111;
}

.old {
    font-size: 16px;
    text-decoration: line-through;
    color: #999;
}

.discount {
    background: #ff3b3b;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.rating {
    margin-top: auto;  
    font-size: 15px;
    color: #f39c12;
}

/* Responsive */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-btn {
        padding: 10px 20px;
        margin: 4px;
        font-size: 14px;
    }
}

.category {
  color: #777;
  font-size: 14px;
  margin: 4px 0;
}

.price {
  font-weight: bold;
  margin-top: 6px;
}


.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: red;
  color: white;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 4px;
}
.contact-container {
  width: 100%;
  padding: 50px;
}

.contact-form {
  max-width: 420px;
  margin: auto;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form h2 {
  text-align: center;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.contact-form textarea {
  resize: none;
  height: 120px;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: black;
  color: white;
  font-size: 16px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #333;
}


#toast {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translate(-50%, -20px);
  background: #000;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 9999;
}

#toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}
/* =========================
   SHOE HERO BANNER
========================= */

.shoe-banner {
    position: relative;
    width: 100%;
    height: 75vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Image */
.shoe-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Dark Gradient Overlay */
.shoe-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.35) 45%,
        rgba(0, 0, 0, 0.1) 100%
    );
    z-index: 2;
}

/* Content */
.shoe-banner-content {
    position: relative;
    z-index: 3;
    max-width: 600px;
    margin-left: 80px;
    color: #fff;
}

.shoe-banner-content h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.shoe-banner-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #f1f1f1;
}

/* Buttons */
.banner-buttons {
    display: flex;
    gap: 16px;
}

.btn {
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn.primary {
    background: #fff;
    color: #000;
}

.btn.primary:hover {
    background: #000;
    color: #fff;
}

.btn.secondary {
    border: 2px solid #fff;
    color: #fff;
}

.btn.secondary:hover {
    background: #fff;
    color: #000;
}

/* =========================
   RESPONSIVE
========================= */

/* Tablet */
@media (max-width: 900px) {
    .shoe-banner {
        height: 60vh;
    }

    .shoe-banner-content {
        margin-left: 40px;
    }

    .shoe-banner-content h1 {
        font-size: 36px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .shoe-banner {
        height: 55vh;
        justify-content: center;
        text-align: center;
    }

    .shoe-banner-content {
        margin-left: 0;
        padding: 0 20px;
    }

    .shoe-banner-content h1 {
        font-size: 28px;
    }

    .banner-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
}



/* RESPONSIVE */
@media (max-width: 480px) {
  #toast {
    right: 50%;
    transform: translate(50%, 20px);
  }

  #toast.show {
    transform: translate(50%, 0);
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-region {
    grid-column: span 2;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .footer {
    padding: 40px 6vw;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    gap: 12px;
  }
}


/* Tablet */
@media (max-width: 1024px) {
  .spotlight-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .spotlight {
    padding: 0px 6vw;
  }

  .spotlight-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 16px;
  }

  .item span {
    font-size: 0.8rem;
  }
}




/* Tablets */
@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
.image-wrapper img{
  width: 100%;
  height: auto;
}
  .image-text h1 {
   width: 1px;
  
  }
  .image-text p {
    display: none;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .nav-center {
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    display: none;
  }

  .nav-center.active {
    display: flex;
  }

  .search {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .image-text {
    top: 10%;
    left: 5%;
    max-width: 90%;
  }

  .image-text h1 {
    font-size: 28px;
  }

  .image-text p {
    font-size: 14px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }
}
