/* ========================================================================== */
/* ======================= GLOBAL & LAYOUT STYLES ========================= */
/* ========================================================================== */
:root {
    --card-bg: #ffffff;
    --text-primary: #1a1a1a;
    --text-secondary: #555;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --shadow-hover-color: rgba(0, 0, 0, 0.2);
    --slideshow-bg: #f9f6f2; /* Warmer background for furniture */
    --accent-color: #8B4513; /* Saddle brown accent */
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #e5e7eb;
    margin: 0;
    padding: 63px 63px 0;
    box-sizing: border-box;
    overflow-x: hidden;
    position: relative;
}

/* ========================================================================== */
/* ========================= ANIMATED BACKGROUND ========================== */
/* ========================================================================== */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.ball {
    position: absolute;
    background: linear-gradient(45deg, rgba(139, 69, 19, 0.2), rgba(210, 180, 140, 0.2));
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

.ball:nth-child(1) { width: 80px; height: 80px; top: 10%; left: 5%; animation-duration: 20s; }
.ball:nth-child(2) { width: 120px; height: 120px; top: 20%; left: 85%; animation-duration: 22s; }
.ball:nth-child(3) { width: 50px; height: 50px; top: 70%; left: 15%; animation-duration: 15s; }
.ball:nth-child(4) { width: 150px; height: 150px; top: 80%; left: 60%; animation-duration: 24s; }
.ball:nth-child(5) { width: 90px; height: 90px; top: 40%; left: 40%; animation-duration: 19s; }
.ball:nth-child(6) { width: 60px; height: 60px; top: 90%; left: 8%; animation-duration: 18s; }
.ball:nth-child(7) { width: 70px; height: 70px; top: 15%; left: 30%; animation-duration: 21s; }
.ball:nth-child(8) { width: 130px; height: 130px; top: 35%; left: 75%; animation-duration: 17s; }
.ball:nth-child(9) { width: 40px; height: 40px; top: 65%; left: 25%; animation-duration: 23s; }
.ball:nth-child(10) { width: 160px; height: 160px; top: 85%; left: 50%; animation-duration: 26s; }
.ball:nth-child(11) { width: 100px; height: 100px; top: 55%; left: 45%; animation-duration: 16s; }
.ball:nth-child(12) { width: 75px; height: 75px; top: 92%; left: 90%; animation-duration: 25s; }


@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); }
    50% { transform: translateY(-50px) translateX(20px) rotate(180deg); }
}

/* ========================================================================== */
/* ============================== NAVBAR ==================================== */
/* ========================================================================== */
nav {
    width: 100%;
    max-width: 1350px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background-color: var(--card-bg);
    box-shadow: 0 2px 10px var(--shadow-color);
    border-radius: 0 0 15px 15px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    transition: color 0.3s;
}

nav ul a:hover {
    color: var(--accent-color);
}

/* ========================================================================== */
/* =================== HERO SECTION (INTERACTIVE CARD) ====================== */
/* ========================================================================== */
.hero-container {
     max-width: 1100px; /* Corrected a likely typo from 11000px */
    margin-left: auto;
    margin-right: auto;
    margin-top: 100px;
    margin-bottom: 50px;
    min-height: 570px;
    display: flex;
    flex-direction: row;
    background-color: var(--card-bg);
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-color);
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
                box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hero-container:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 40px var(--shadow-hover-color);
}

/* Responsive layout for smaller screens */
@media (max-width: 820px) {
    .hero-container {
        flex-direction: column;
        margin-top: 100px;
    }
    .hero-container:hover {
        transform: translateY(-8px) scale(1.02);
    }
}

/* ========================================================================== */
/* ===================== SLIDESHOW (LEFT SIDE) ============================ */
/* ========================================================================== */
.slideshow-container {
    flex: 1.1;
    position: relative;
    background-color: var(--slideshow-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.slideshow img {
    width: 85%;
    max-width: 400px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    opacity: 0;
    background-color: #D2B48C; /* Tan fallback */
}

/* Cot 1 */
.slideshow img:nth-child(1) { animation: fadeOnce 15s ease-in-out 0s infinite; }
/* Cot 2 */
.slideshow img:nth-child(2) { animation: fadeOnce 15s ease-in-out 5s infinite; }
/* Cot 3 */
.slideshow img:nth-child(3) { animation: fadeOnce 15s ease-in-out 10s infinite; }

@keyframes fadeOnce {
    0%   { opacity: 0; transform: translate(-50%, -50%) scale(0.95); }
    10%  { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    30%  { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    40%  { opacity: 0; transform: translate(-50%, -50%) scale(0.95); }
    100% { opacity: 0; }
}

/* ========================================================================== */
/* =================== PRODUCT INFO (RIGHT SIDE) ========================== */
/* ========================================================================== */
.info-container {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.info-container h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.5rem;
}

.info-container h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.info-container .tagline {
    font-size: 1.25rem;
    color: var(--accent-color);
    margin: 1.5rem 0;
    font-weight: 600;
}

.info-container .description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}





/* =================== Product page heading ========================== */

/* Products Page Container */
.products-container {
    max-width: 1200px;
    margin: 100px auto 50px;
    padding: 2rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}




.subheading h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.5rem;
    text-align: center;
  
}

.subheading .tagline {
    font-size: 1.25rem;
    color: var(--accent-color);
    margin: 0;
    font-weight: 600;
    text-align: center;
}




/* Categories Section */
.categories {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem auto;
}

.category {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.category img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.category span {
    font-size: 1.2rem;
    font-weight: 600;
}

/*------------------------------ Featured Offers -------------------------*/
/*------------------------- Featured Offers Section -------------------------*/
.featured-offers {
  display: flex;
  width: 60%;
  justify-content: center;
  align-items: flex-start;
  gap: 1.2rem;
  margin: 2rem auto;
  flex-wrap: wrap;
  perspective: 1000px; /* Enables 3D tilt effect */
}

.offer-item {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 2.5rem; 
}

.offer-item img {
  width: 100%;
  max-width: 260px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 3px solid transparent;
  background-image: linear-gradient(#fff, #fff),
    linear-gradient(45deg, #ff7f50, #ff4500, #ffd700); /* 🔥 Coral → OrangeRed → Gold */
  background-origin: border-box;
  background-clip: content-box, border-box;
  animation: floatCard 5s ease-in-out infinite;
}

/* Hover effects: zoom, glow, and shine */
.offer-item img:hover {
  transform: scale(1.06) rotateY(6deg);
  box-shadow: 0 10px 28px rgba(220, 194, 0, 0.786); /* Coral glow */
}

/* Shine effect */
.offer-item img::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0.15) 60%,
    transparent 100%
  );
  transform: skewX(-25deg);
}

.offer-item:hover img::after {
  animation: shine 1s forwards;
}

/* Center Image Special Styling */
.offer-item.center img {
  max-width: 220px;
  margin-top: 5rem;
}


/* Offer Heading Styling */
/* Offer Heading Styling */
.offer-heading {
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, #b22222, #d2691e); /* 🔥 Contrast: Firebrick red → Chocolate */
  padding: 0.3rem 0.8rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;   /* keep it single line */
}

/* Floating Animation */
@keyframes floatCard {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Shine Animation */
@keyframes shine {
  100% {
    left: 125%;
  }
}

/* Responsive Fix */
@media (max-width: 768px) {
  .featured-offers {
    flex-direction: column;
    align-items: center;
  }
  .offer-item.center img {
    margin-top: 1.5rem;
    max-width: 180px;
  }
  .offer-heading {
    font-size: 1rem;
    padding: 0.25rem 0.6rem;
  }
}

/* Limited Offer Button */
.limited-offer {
  margin: 1rem auto;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  background: linear-gradient(135deg, #ff7f50, #ff4500); /* 🟠 Coral → OrangeRed for strong contrast */
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  animation: pulseOffer 1.5s infinite;
  width: fit-content;
}

/* Pulsing effect */
@keyframes pulseOffer {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 6px 16px rgba(255, 127, 80, 0.4); /* coral glow */
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 8px 22px rgba(255, 69, 0, 0.6); /* orange-red glow */
  }
}


















/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 2rem auto;
    width: 90%;
}

/* ============= Product Card (Upgraded with premium style) ============= */

.product-card {
    background: #fff;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.img-container {
    position: relative;
}

.img-container img {
    width: 100%;
    border-radius: 10px;
}

.img-container .offer {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: #E50914;
    color: white;
    padding: 4px 8px;
    font-size: 0.8rem;
    border-radius: 6px;
}

/* ================= Add to Cart Button ================= */
.add-to-cart {
    display: inline-block;
    background: var(--accent-color);
    color: #fff;
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    margin-top: 0.8rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.add-to-cart:hover {
    background: #a0522d; /* Slightly lighter brown */
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.add-to-cart:active {
    transform: translateY(0);
    box-shadow: none;
}



/* ========================================================================== */
/* ========================= IMAGE MODAL (LIGHTBOX) ======================== */
/* ========================================================================== */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.4);
    animation: zoomIn 0.3s ease;
}

/* Close button */
.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-btn:hover {
    color: #E50914;
}

/* Zoom-in effect */
@keyframes zoomIn {
    from { transform: scale(0.7); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}



/* --------------------About Grid Layout ----------------------*/
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr; /* 3 equal columns */
  gap: 2rem;
  align-items: center;
  text-align: center;
}

/* Map */
.map-container iframe {
  width: 100%;
  height: 350px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* Video */
.video-container video {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

/* Shop Info */
.shop-info {
  text-align: right;
}

.shop-info img.logo {
  width: 100px;
  margin-bottom: 1rem;
}

.shop-info h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}





/* =================== About ========================== */


        /* About Page Styling */
        /* =================== About Page (REVISED) ========================== */

/* Main container for the About page */
.about-container {
    max-width: 1200px;
    margin: 100px auto 50px;
    padding: 2rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* New Flexbox container for the content */
.about-content {
    display: flex;
    align-items: flex-start; /* Aligns items to the top */
    gap: 2rem; /* Space between the columns */
    flex-wrap: wrap; /* Allows columns to stack on smaller screens */
}

/* Styling for both columns */
.about-column {
    flex: 1; /* Each column will take up equal space */
    min-width: 300px; /* Prevents columns from getting too narrow */
}

/* Specific styling for the left (video) column */
.about-video {
    text-align: center;
}

.about-video h2 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

.about-video video {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

/* Specific styling for the right (info) column */
.about-info {
    text-align: left;
}

.about-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-info p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Circular placeholder for the owner's picture */
.owner-profile {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #f0f0f0; /* Light grey placeholder color */
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    /* If using an image */
    overflow: hidden; 
}

.owner-profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Make it responsive for mobile */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column; /* Stack columns vertically */
        align-items: center; /* Center the columns */
    }
    .about-info, .about-video {
        text-align: center; /* Center text on mobile */
    }
    .owner-profile {
        margin-left: auto;
        margin-right: auto;
    }
}





/* Google Reviews Section */
.reviews-container {
  max-width: 1200px;
  margin: 50px auto;
  padding: 2rem;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
}

.reviews-container h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.review-card {
  background: #fafafa;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: left;
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.review-card h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.review-card span {
  color: #FFD700; /* Gold stars */
  font-size: 1rem;
}

.review-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}





/* Footer Styles */
.footer {
  max-width: 1350px;
  background-color: #2c2c2c; /* Dark background different from site */
  color: #fff;
  padding: 2rem 1.5rem 0;
  border-radius: 15px 15px 0 0;
  margin: 0 auto;
}

.footer-content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-info {
  flex: 1;
  min-width: 250px;
}

.footer-info h2 {
  margin: 0.5rem 0;
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-info p {
  margin: 0.5rem 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-info a {
  color: #FFD700; /* Gold color for phone numbers */
  text-decoration: none;
}

.footer-info a:hover {
  text-decoration: underline;
}

.footer-logo {
  width: 80px;
  margin-bottom: 1rem;
}

.footer-map {
  flex: 1;
  min-width: 300px;
}

.footer-map iframe {
  width: 100%;
  height: 250px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}




        /* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    transition: transform 0.3s ease;
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20b858;
}
/* Page Transition Effect */
body {
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

body.fade-in {
  opacity: 1;
}






.cart-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 90px; /* above WhatsApp */
    right: 20px;
    background-color: #ff9800;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    z-index: 999;
    transition: transform 0.3s ease;
}

.cart-float span {
    background: red;
    color: white;
    font-size: 12px;
    font-weight: bold;
    border-radius: 50%;
    padding: 2px 6px;
    position: absolute;
    top: 8px;
    right: 8px;
}

.cart-float:hover {
    transform: scale(1.1);
    background-color: #e68900;
}




/* ========================================================================== */
/* ========================== MOBILE RESPONSIVENESS ======================== */
/* ========================================================================== */

/* ========================================================================== */
/* ========================== MOBILE RESPONSIVENESS ======================== */
/* ========================================================================== */
/* ========================================================================== */
/* ========================== MOBILE RESPONSIVENESS ======================== */
/* ========================================================================== */

/* ========================================================================== */
/* ========================== MOBILE RESPONSIVENESS ======================== */
/* ========================================================================== */

/* Tablets (<= 992px) */
@media (max-width: 992px) {
  nav ul {
    gap: 1rem;
  }

  .info-container h1 {
    font-size: 2.2rem;
  }

  .info-container .tagline {
    font-size: 1.1rem;
  }

  .products-container {
    padding: 1.5rem;
  }

  .categories {
    flex-wrap: wrap;
    gap: 1rem;
  }

  /* ✅ Products → 2 per row */
  .products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  /* ✅ Special offers → 3 per row */
  .featured-offers {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
  }

  .featured-offers img {
    width: 100%;
  }

  .about-grid {
    grid-template-columns: 1fr 1fr; /* 2 columns */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
  }
}

/* Mobiles (<= 768px) */
@media (max-width: 768px) {
  body {
    padding: 50px 15px 0; /* reduce side padding */
  }

  nav {
    display: flex;
    flex-direction: column;
    align-items: center;  /* center logo */
    text-align: center;
    padding: 1rem;
    gap: 0.5rem;
  }

  nav .logo {
    margin-bottom: 0.5rem; /* space between logo & menu */
  }

  nav ul {
    display: flex;
    flex-direction: row;   /* keep items in a row */
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;       /* allow wrapping if too small */
  }

  .hero-container {
    flex-direction: column;
    min-height: auto;
  }

  .slideshow img {
    width: 100%;
    max-width: 280px;
  }

  .info-container {
    padding: 1.5rem;
  }

  .info-container h1 {
    font-size: 1.8rem;
  }

  .info-container h2 {
    font-size: 1rem;
  }

  .info-container .tagline {
    font-size: 1rem;
  }

  /* ✅ Products → 2 per row */
  .products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  /* ✅ Special offers → 3 per row */
  .featured-offers {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
  }

  .featured-offers img {
    width: 100%;
  }

  /* ✅ About section centered */
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
  }

  .about-text {
    width: 100%;
    left: 0;
    height: auto;
    margin-top: 1rem;
    max-width: 100%;
    padding: 0 1rem;
  }

  .video-container video {
    width: 100%;
    height: auto;
    max-width: 100%;
  }

  .shop-info {
    text-align: center;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-map iframe {
    height: 200px;
  }
}

/* Small Mobiles (<= 480px) */
@media (max-width: 480px) {
  nav ul {
    flex-direction: row;    /* keep in row, not stacked */
    justify-content: center;
    gap: 1rem;
  }

  .info-container h1 {
    font-size: 1.5rem;
  }

  .info-container .description {
    font-size: 0.9rem;
  }

  /* ✅ Products → 2 per row */
  .products-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* ✅ Special offers → 3 per row */
  .featured-offers {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .featured-offers img {
    width: 100%;
  }

  .categories {
    flex-direction: column;
    gap: 1rem;
  }

  .category img {
    width: 60px;
    height: 60px;
  }

  .cart-float,
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }

  .cart-float {
    bottom: 75px;
  }
}
