/* assets/css/style.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== PAGE THEME — B&W with charcoal dark ===== */
:root {
  --transition: all 0.3s ease;
  --bg-color: #F7F7F7;
  --text-color: #000000;
  --card-bg: #E6E6E6;
  --header-bg: #ffffff;
  --footer-bg: #ffffff;
  --button-bg: #000000;
  --button-text: #ffffff;
  --section-alt-bg: #EFEFEF;
}

body.dark-theme {
  --bg-color: #2E2E2E;
  --text-color: #f0f0f0;
  --card-bg: #242424;
  --header-bg: #000000;
  --footer-bg: #000000;
  --button-bg: #ffffff;
  --button-text: #000000;
  --section-alt-bg: #242424;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
  transition: background-color 0.3s, color 0.3s;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section-alt {
  background-color: var(--section-alt-bg) !important;
}

/* HEADER */
header {
  position: sticky;
  top: 0;
  background-color: var(--header-bg);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
  transition: background-color 0.3s;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo img {
  height: 40px;
  width: auto;
}

.hamburger {
  display: none;
  cursor: pointer;
  font-size: 24px;
}

.nav-links {
  display: flex;
  gap: 25px;
  font-weight: 600;
}

.nav-links a {
  color: var(--text-color);
  transition: var(--transition);
}

.nav-links a:hover {
  opacity: 0.8;
}

/* HERO */
.hero {
  background: url('../images/hero-bg103.jpg') center/cover no-repeat;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3); /* ← adjust this */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  text-align: center;
}

/* Always white for contrast on image */
.hero h1,
.hero h2 {
  color: white !important;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.hero h2 {
  font-size: 1.5rem;
  margin-bottom: 30px;
  font-weight: 500;
}

/* CTA Stack */
.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}
@media (max-width: 768px) {
.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 290px;
}

}
/* ===== AMAZON BUTTON — THEME-AWARE ===== */
.btn-amazon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--button-bg);
  color: var(--button-text) !important;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--button-text);
  z-index: 1;
}

.btn-amazon:hover {
  opacity: 0.95;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.45);
}

.btn-amazon::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
  z-index: -1;
}

body.dark-theme .btn-amazon::before {
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.3), transparent);
}

.btn-arrow {
  stroke: var(--button-text) !important;
  transition: transform 0.3s ease;
}

.btn-amazon:hover .btn-arrow {
  transform: translateX(3px);
}

/* ===== AMAZON BADGE — THEME-AWARE ===== */
.amazon-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,0.05);
  color: #000000;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 6px 12px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

body.dark-theme .amazon-verified-badge {
  background: rgba(255,255,255,0.05);
  color: #ffffff;
  border-color: rgba(255,255,255,0.2);
}

.amazon-verified-badge:hover {
  transform: scale(1.03);
}

.amazon-verified-badge svg {
  stroke: currentColor !important;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* GENERIC BUTTON */
.btn {
  display: inline-block;
  background: var(--button-bg);
  color: var(--button-text) !important;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: var(--transition);
  border: 1px solid var(--text-color);
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* SECTIONS */
.section {
  padding: 80px 0;
  background-color: var(--bg-color);
}

.section-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 50px;
  color: var(--text-color);
}

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

.feature-card {
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  background: var(--card-bg);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: var(--transition);
  color: var(--text-color);
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-card img {
  width: 100%;
  height: 65%;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {

.feature-card {
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  background: var(--card-bg);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: var(--transition);
  color: var(--text-color);
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-card img {
  width: 100%;
  height: 55%;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}
}

/* PRODUCTS */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.product-card {
  background: var(--card-bg);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  text-align: center;
  color: var(--text-color);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.product-image {
  width: 100%;
  height: 60%;
  object-fit: center;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.product-info {
  padding: 22px 20px 25px;
}

.product-info h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--text-color);
}

.product-info .btn {
  background: var(--button-bg);
  color: var(--button-text) !important;
  padding: 10px 24px;
  font-size: 1rem;
  border-radius: 30px;
  margin-top: 10px;
  display: inline-block;
  border: 1px solid var(--text-color);
}

.product-info .btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.product-badge {
  position: absolute;
  top: 18px;
  right: -30px;
  background: #ff0000;
  color: #F7F7F7;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 28px;
  transform: rotate(45deg);
  z-index: 1;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.appear {
  opacity: 1;
  transform: translateY(0);
}

/* PRICE */
.price-container {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0;
  justify-content: center;
}

.mrp {
  font-size: 1.1rem;
  color: var(--text-color);
  text-decoration: line-through;
  opacity: 0.7;
  font-weight: 500;
}

.offer-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-color);
}

/* SPLIT LAYOUTS */
.harvest-container,
.benefit-container {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px 0;
}

.harvest-image,
.benefit-image {
  flex: 1;
  height: 550px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.harvest-image img,
.benefit-image img {
  width: 100%;
  height: 100%;
  object-fit: center;
  transition: transform 0.6s ease;
}

.harvest-image:hover img,
.benefit-image:hover img {
  transform: scale(1.05);
}

.harvest-content,
.benefit-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.harvest-content .section-title,
.benefit-content .section-title {
  font-size: 2.5rem;
  color: var(--text-color);
  text-align: left;
  margin: 0;
}

.harvest-content p,
.benefit-content p {
  margin: 0;
  font-weight: 400;
  color: var(--text-color);
}

@media (max-width: 768px) {
  .harvest-container,
  .benefit-container {
    flex-direction: column;
    gap: 30px;
  }
  .harvest-image,
  .benefit-image { height: 300px; }
  .harvest-content,
  .benefit-content { text-align: center; }
  .harvest-content .section-title,
  .benefit-content .section-title {
    font-size: 2rem;
    text-align: center;
  }
  .section h1 { font-size: 3rem; }
  .section h2 { font-size: 2rem; }
  .section h3 { font-size: 1.2rem; }
  .section p { font-size: 1rem; }
  .benefit-container { flex-direction: column-reverse; }
}

.section-title {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 50px;
  color: var(--text-color);
}

/* FOOTER */
footer {
  background: var(--footer-bg);
  color: var(--text-color);
  padding: 50px 0 30px;
  transition: background-color 0.3s, color 0.3s;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col--center {
  align-items: center;
  text-align: center;
}

.footer-logo img {
  height: 50px;
  width: auto;
  transition: opacity 0.3s ease;
}

.footer-logo:hover img {
  opacity: 0.85;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 16px;
  color: var(--text-color);
}

.footer-col a,
.footer-text,
.footer-copyright {
  color: var(--text-color);
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 10px;
  display: block;
  opacity: 0.9;
}

.footer-col a:hover {
  opacity: 1;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 12px;
}

.social-links svg {
  fill: var(--text-color);
  transition: transform 0.2s ease;
}

.social-links a:hover svg {
  transform: translateY(-2px);
}

.footer-copyright {
  margin-top: 24px;
  margin-bottom: 0;
  opacity: 0.7;
}

/* ===== THEME TOGGLE ===== */
.theme-toggle {
  --track-height: 26px;
  --track-width: 60px;
  --knob-size: 22px;
  --padding: 2px;
  --track-light-bg: linear-gradient(135deg, #fdf6f0, #f5ebd9);
  --knob-light-bg: #ffffff;
  --knob-light-shadow: 0 2px 6px rgba(0,0,0,0.15);
  --sun-color: #f5c518;
  --track-dark-bg: linear-gradient(135deg, #1a1f2b, #0f121a);
  --knob-dark-bg: #e0e0e0;
  --knob-dark-glow: 0 0 12px rgba(64, 120, 255, 0.35);
  --moon-color: #ffffff;
  
  display: inline-block;
  position: relative;
  width: var(--track-width);
  height: var(--track-height);
  background: var(--track-light-bg);
  border-radius: calc(var(--track-height) / 2);
  cursor: pointer;
  transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

body.dark-theme .theme-toggle {
  background: var(--track-dark-bg);
  box-shadow: inset 0 1px 3px rgba(255,255,255,0.1);
}

.theme-toggle-knob {
  position: absolute;
  top: var(--padding);
  left: var(--padding);
  width: var(--knob-size);
  height: var(--knob-size);
  background: var(--knob-light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--knob-light-shadow);
  z-index: 2;
}

body.dark-theme .theme-toggle-knob {
  background: var(--knob-dark-bg);
  box-shadow: var(--knob-dark-glow);
}

.theme-toggle.is-dark .theme-toggle-knob {
  transform: translateX(calc(var(--track-width) - var(--knob-size) - var(--padding) * 2));
}

.theme-toggle-icon {
  width: 14px;
  height: 14px;
  transition: opacity 0.3s ease, transform 0.3s ease, fill 0.3s ease;
  position: absolute;
}

.sun-icon { 
  opacity: 1; 
  fill: var(--sun-color);
  transform: rotate(0deg);
}

.moon-icon { 
  opacity: 0; 
  fill: var(--moon-color);
  transform: rotate(15deg);
}

.theme-toggle.is-dark .sun-icon {
  opacity: 0;
  transform: rotate(-15deg);
}

.theme-toggle.is-dark .moon-icon {
  opacity: 1;
  transform: rotate(0deg);
}

.theme-toggle:focus-visible {
  outline: 2px solid var(--sun-color);
  outline-offset: 2px;
  border-radius: calc(var(--track-height) / 2);
}

.nav-container .theme-toggle {
  margin: 0 10px;
}

.footer-theme-toggle {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: var(--card-bg);
  padding: 30px;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  color: var(--text-color);
  border: 1px solid var(--text-color);
}

.modal h3 {
  margin-bottom: 20px;
}

.stores {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.store-logo {
  width: 80px;
  height: 80px;
  background: var(--bg-color);
  border: 1px solid var(--text-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--text-color);
}

/* MOBILE MENU */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    background: var(--header-bg);
    width: 100%;
    flex-direction: column;
    gap: 0;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 0.5s ease;
  }
 
  .nav-links.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  .hamburger {
    display: block;
  }
  .hero { background: url('../images/hero-bg104.jpg') center/cover no-repeat;}
  .hero h1 { font-size: 1.4rem; }
  .hero h2 { font-size: 0.85rem; }
  .section { padding: 50px 0; }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
    text-align: center;
  }

  .footer-col--center { order: 3; }
  .footer-col:not(.footer-col--center) { align-items: center; }
}

/* CONTACT PAGE STYLES */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 700px;
  margin: 0 auto;
}

.contact-form-card{
  background: var(--card-bg);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.contact-info-card {
  background: var(--card-bg);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  text-align: center;
}

.contact-form-card h3,
.contact-info-card h3 {
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: var(--text-color);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--text-color);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 6px;
  font-family: inherit;
  background: var(--bg-color);
  color: var(--text-color);
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--button-bg);
}

/* MOBILE */
@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* PRIVACY & LEGAL PAGES */
.privacy-content,
.terms-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 1rem;
  color: var(--text-color);
}

.privacy-content h2,
.terms-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: var(--text-color);
}

.privacy-content ul,
.terms-content ul {
  padding-left: 20px;
  margin: 1rem 0;
}

.privacy-content p,
.terms-content p {
  margin-bottom: 1.2rem;
}

/* ABOUT PAGE STYLES */
.about-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 1.1rem;
  color: var(--text-color);
}

.about-content p {
  margin-bottom: 1.5rem;
}

.about-tagline {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.1);
  font-size: 1.3rem;
  text-align: center;
  color: var(--text-color);
}

body.dark-theme .about-tagline {
  border-top-color: rgba(255,255,255,0.1);
}

/* ===== VISION PAGE — PERFECT SIDE-BY-SIDE LAYOUT ===== */
.vision-container {
  max-width: 1200px;
  padding: 0 15px;
}

.vision-block {
  display: flex;
  align-items: center;
  gap: 100px;
  padding: 1px 0;
  width: 100%;
}

.vision-text {
  flex: 1;
  max-width: 600px;
  font-size: 1.5rem;
  line-height: 1.8;
  color: var(--text-color);
}

.vision-image {
  flex: 1;
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.vision-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.vision-image img:hover {
  transform: scale(1.03);
}

/* Reverse: Text on right, image on left */
.vision-block.reverse {
  flex-direction: row-reverse;
}

/* Mobile: Stack vertically */
@media (max-width: 768px) {
  .vision-block {
    flex-direction: column !important;
    gap: 30px;
    padding: 40px 0;
  }

  .vision-image {
    height: 320px;
  }

  .vision-text {
    text-align: center;
    max-width: 100%;
    font-size: 1rem;
  }
}

/* PRODUCT DETAIL LAYOUT */
.product-detail {
  display: flex;
  gap: 50px;
  margin: 40px 0;
}

.product-images {
  flex: 1;
  max-width: 520px;
}

.main-image-container {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  margin-bottom: 20px;
}

.main-image-container img {
  width: 100%;
  display: block;
}

.thumbnails {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 10px 0;
  scrollbar-width: thin;
}

.thumbnails img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  flex-shrink: 0;
}

.thumbnails img:hover {
  border-color: var(--button-bg);
}

.product-info {
  flex: 1;
}

.product-info h1 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: var(--text-color);
}

.price-section {
  margin: 20px 0 30px;
}

.discount {
  background: #e74c3c;
  color: white;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  display: inline-block;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.offer-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-color);
  margin: 8px 0;
}

.mrp {
  font-size: 1.15rem;
  color: var(--text-color);
  text-decoration: line-through;
  opacity: 0.75;
}

.buy-btn {
  margin: 25px 0 30px;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
  color: var(--text-color);
}

.benefits-list li {
  padding: 8px 0;
  position: relative;
  padding-left: 28px;
  line-height: 1.65;
}

.benefits-list li:before {
  content: "•";
  color: var(--button-bg);
  font-size: 1.6rem;
  position: absolute;
  left: 0;
  top: -4px;
}

.product-desc {
  color: var(--text-color);
  line-height: 1.75;
  margin-top: 20px;
}

/* DETAIL GALLERY */
.detail-gallery img {
  width: 100%;
  height: auto;
  border-radius: 0px;
  margin-bottom: 0px;
  display: block;
}

/* FAQ */
.faq-list details {
  margin-bottom: 16px;
  background: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.1);
}

.faq-list summary {
  padding: 16px 20px;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-color);
  outline: none;
}

.faq-list details[open] summary {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.faq-list p {
  padding: 0 20px 16px;
  color: var(--text-color);
  line-height: 1.7;
}

/* MODAL STORES */
.stores {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 20px 0;
}

.store-logo {
  background: var(--bg-color);
  border: 1px solid var(--text-color);
  border-radius: 8px;
  padding: 14px;
  text-align: center;
  font-weight: 600;
  color: var(--text-color);
  text-decoration: none;
  transition: opacity 0.3s;
}

.store-logo:hover {
  opacity: 0.9;
}

.thumbnails1 {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.thumbnails1 img {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center; 
}

/* MOBILE */
@media (max-width: 768px) {
  .product-detail {
    flex-direction: column;
  }

  .thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow-x: hidden;
  }
  .thumbnails1 {    
    align-items: center;
  justify-content: center;
  flex-wrap: wrap;
    
  }

  .product-info h1 {
    font-size: 1.7rem;
  }

  .offer-price {
    font-size: 1.8rem;
  }
}
