/*
 * Global styles for the Mr Okay Parfum website.
 * A modern, responsive layout makes use of CSS variables, flexbox
 * and grid to adapt to different screen sizes. The colour palette
 * emphasises a premium feel with dark tones and warm highlights.
 */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* CSS variables - Theme Mode Support */
:root,
[data-theme="light"] {
  --primary: #0d0d0d;
  --secondary: #bfa26b;
  --light: #f5f5f5;
  --dark: #1a1a1a;
  --text: #333;
  --text-light: #fafafa;
  --transition-speed: 0.3s;
  
  /* Light Mode Colors */
  --light-bg: #ffffff;
  --light-secondary-bg: #f5f5f5;
  --light-text: #333333;
  --light-text-secondary: #666666;
  --light-border: #e0e0e0;
  --light-card: #ffffff;
  --light-shadow: rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] {
  /* Dark Mode Colors */
  --light-bg: #0d0d0d;
  --light-secondary-bg: #1a1a1a;
  --light-text: #f5f5f5;
  --light-text-secondary: #cccccc;
  --light-border: #333333;
  --light-card: #1a1a1a;
  --light-shadow: rgba(0, 0, 0, 0.5);
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--light-text);
  background-color: var(--light-bg);
  transition: background-color 0.4s ease, color 0.4s ease;
}

img {
  max-width: 100%;
  display: block;
}

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

/* Container keeps content aligned and centred */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Navigation styles moved to assets/css/navigation.css */

/* Hero section */
.hero {
  background: linear-gradient(135deg, var(--light-secondary-bg) 0%, var(--light-bg) 100%);
  color: var(--light-text);
  padding: 6rem 0 4rem;
  min-height: 70vh;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--light-border);
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.hero-text {
  flex: 1 1 45%;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--secondary);
}

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

.hero-text p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #ddd;
}

.btn {
  display: inline-block;
  background-color: var(--secondary);
  color: var(--primary);
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  transition: background-color var(--transition-speed);
}

.btn:hover {
  background-color: #a48755;
}

.hero-image-wrapper {
  flex: 1 1 45%;
  position: relative;
}

.hero-image-wrapper img {
  width: 100%;
  border-radius: 12px;
  transition: opacity 0.6s ease-in-out;
}

.hero-caption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(0, 0, 0, 0.6);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.hero-image-wrapper img.fade-out {
  opacity: 0;
}

/* Categories */
.categories {
  padding: 4rem 0;
  background-color: var(--dark);
  color: var(--text-light);
}

.categories h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: var(--secondary);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.category-card {
  background-color: var(--light-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--light-border);
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
  text-align: center;
}

.category-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.category-card h3 {
  margin: 0.8rem 0 0.4rem;
  color: var(--secondary);
  font-size: 1.1rem;
}

.category-card p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: var(--light-text-secondary);
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Products */
.products {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--light-secondary-bg) 0%, var(--light-bg) 100%);
  color: var(--light-text);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--light-border);
}

.products::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--secondary), transparent);
}

.products h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: var(--secondary);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1400px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  background-color: var(--light-card);
  border: 1px solid var(--light-border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px var(--light-shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.product-card img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  background: linear-gradient(135deg, #000000 0%, #e0e0e0 100%);
  padding: 1rem;
}

.product-info {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-info h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  color: var(--secondary);
  font-weight: 600;
}

.product-info p {
  flex: 1;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  color: var(--light-text-secondary);
  line-height: 1.6;
}

.btn-secondary {
  display: inline-block;
  background-color: var(--secondary);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-weight: 500;
  transition: background-color var(--transition-speed);
}

.btn-secondary:hover {
  background-color: #a48755;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
  border-color: var(--secondary);
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover::before {
  opacity: 1;
}

/* About section */
.about {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  padding: 6rem 0;
  color: var(--text-light);
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.about-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.about-image {
  flex: 1 1 40%;
  text-align: center;
}

.about-image img {
  max-width: 280px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.about-content {
  flex: 1 1 55%;
}

.about-content h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
  font-weight: 700;
}

.about-content h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--secondary);
  font-weight: 600;
}

.about-content p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

/* Contact section */
.contact {
  padding: 3rem 0;
  background: linear-gradient(135deg, var(--light-secondary-bg) 0%, var(--light-bg) 100%);
  color: var(--light-text);
  text-align: center;
  border-top: 1px solid var(--light-border);
}

.contact h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--secondary);
}

.contact p a {
  color: var(--secondary);
}

/* Footer */
footer {
  background-color: var(--primary);
  color: var(--text-light);
  padding: 1rem 0;
  text-align: center;
  font-size: 0.85rem;
}

/* Features section */
.features {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  color: var(--text-light);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--secondary), transparent);
}
.features h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--secondary);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.feature-card {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(13, 13, 13, 0.9) 100%);
  padding: 3rem 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  border: 1px solid rgba(191, 162, 107, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(191, 162, 107, 0.1), transparent);
  transition: left 0.5s ease;
}

.feature-card:hover::before {
  left: 100%;
}
.feature-card i {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}
.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--secondary);
}
.feature-card p {
  font-size: 0.9rem;
  color: #ccc;
}
.feature-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 10px 30px rgba(191, 162, 107, 0.3);
  border-color: var(--secondary);
}

/* Blog section */
.blog {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--light-bg) 0%, var(--light-secondary-bg) 100%);
  color: var(--light-text);
  position: relative;
  border-top: 1px solid var(--light-border);
}
.blog h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: var(--secondary);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.blog-post {
  background-color: var(--light-card);
  border: 1px solid var(--light-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--light-shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.blog-post img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.blog-content {
  padding: 1rem 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--light-text);
  font-weight: 600;
}
.blog-content p {
  flex: 1;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  color: var(--light-text-secondary);
  line-height: 1.7;
}
.read-more {
  align-self: flex-start;
  color: var(--secondary);
  font-weight: 500;
  font-size: 0.9rem;
  transition: color var(--transition-speed);
}
.read-more:hover {
  color: #a48755;
}
.blog-post:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
  border-color: var(--secondary);
}

/* Timeline inside About */
.timeline {
  position: relative;
  margin-top: 2rem;
  padding: 2rem 0;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background-color: var(--secondary);
}
.timeline-item {
  position: relative;
  padding: 1rem 0;
  width: 50%;
}
.timeline-item .timeline-date {
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--secondary);
  font-size: 1.1rem;
}
.timeline-item .timeline-content {
  background-color: var(--light-card);
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.5);
  border: 1px solid var(--light-border);
  font-size: 0.9rem;
  color: var(--light-text-secondary);
}
.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
  padding-right: 2rem;
}
.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
  padding-left: 2rem;
}
.timeline-item::before {
  content: "";
  position: absolute;
  top: 1.1rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--secondary);
  z-index: 1;
}
.timeline-item:nth-child(odd)::before {
  right: -6px;
}
.timeline-item:nth-child(even)::before {
  left: -6px;
}

/* Stores Section */
.stores-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--light-secondary-bg) 0%, var(--light-bg) 100%);
  color: var(--light-text);
  border-top: 1px solid var(--light-border);
  border-bottom: 1px solid var(--light-border);
}

.stores-section h2 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  color: var(--secondary);
  font-weight: 600;
}

.stores-subtitle {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.1rem;
  color: var(--light-text-secondary);
}

.stores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.store-group {
  background: var(--light-card);
  border: 1px solid var(--light-border);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px var(--light-shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.store-group:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px var(--light-shadow);
  border-color: var(--secondary);
}

.store-group-title {
  font-size: 1.8rem;
  color: var(--secondary);
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 600;
  position: relative;
  padding-bottom: 1rem;
}

.store-group-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--secondary);
  border-radius: 2px;
}

.store-locations {
  flex: 1;
  margin-bottom: 2rem;
}

.store-location {
  padding: 1.5rem;
  margin-bottom: 1rem;
  background: var(--light-secondary-bg);
  border-radius: 12px;
  border: 1px solid var(--light-border);
  transition: all 0.3s ease;
}

.store-location:hover {
  background: var(--light-bg);
  border-color: var(--secondary);
  transform: translateX(5px);
}

.store-location.online-store {
  background: linear-gradient(135deg, rgba(191, 162, 107, 0.1) 0%, rgba(191, 162, 107, 0.05) 100%);
}

.store-city {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--secondary);
}

.store-city i {
  font-size: 1.3rem;
}

.store-address {
  font-size: 1rem;
  font-weight: 500;
  color: var(--light-text);
  margin-bottom: 0.5rem;
}

.store-details {
  font-size: 0.9rem;
  color: var(--light-text-secondary);
  line-height: 1.6;
}

.store-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  color: var(--secondary);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.store-link:hover {
  color: var(--secondary);
  gap: 0.75rem;
}

.store-logo {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid var(--light-border);
  text-align: center;
}

.logo-placeholder {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: var(--light-secondary-bg);
  border-radius: 12px;
  border: 2px dashed var(--light-border);
  transition: all 0.3s ease;
}

.logo-placeholder:hover {
  border-color: var(--secondary);
  background: var(--light-bg);
}

.logo-placeholder i {
  font-size: 2.5rem;
  color: var(--secondary);
}

.logo-placeholder span {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--light-text);
}

@media (max-width: 968px) {
  .stores-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .store-group {
    padding: 2rem;
  }
  
  .stores-section h2 {
    font-size: 2rem;
  }
}

/* View All Button */
.stores-view-all {
  text-align: center;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--light-border);
}

.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(191, 162, 107, 0.3);
}

.btn-view-all:hover {
  background: #d4b885;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(191, 162, 107, 0.5);
  gap: 1rem;
}

.btn-view-all i {
  transition: transform 0.3s ease;
}

.btn-view-all:hover i {
  transform: translateX(5px);
}

@media (max-width: 480px) {
  .stores-section {
    padding: 4rem 0;
  }
  
  .store-group {
    padding: 1.5rem;
  }
  
  .store-location {
    padding: 1rem;
  }
  
  .btn-view-all {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
}

/* Gallery section */
.gallery-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--light-secondary-bg) 0%, var(--light-bg) 100%);
  color: var(--light-text);
}
.gallery-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: var(--secondary);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}
.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  transition: transform var(--transition-speed);
}
.gallery-grid img:hover {
  transform: scale(1.05);
}

/* Fragrance pyramid on product pages */
.pyramid-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.pyramid-level {
  background-color: var(--primary);
  color: var(--text-light);
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  transition: transform var(--transition-speed);
}
.pyramid-level h4 {
  margin-bottom: 0.5rem;
  color: var(--secondary);
  font-size: 1.1rem;
}
.pyramid-level ul {
  list-style: none;
  padding-left: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}
.pyramid-level:hover {
  transform: translateY(-5px);
}

/* Contact form */
.contact-form {
  margin: 1.5rem auto;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--light-border);
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  background: var(--light-secondary-bg);
  color: var(--light-text);
}
.contact-form button {
  align-self: flex-start;
}

.contact-form input[type="tel"] {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--light-border);
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  background: var(--light-secondary-bg);
  color: var(--light-text);
}
.contact-info {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #ccc;
}

.form-message {
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.form-message.success {
  background-color: rgba(40, 167, 69, 0.2);
  color: #28a745;
  border: 1px solid #28a745;
}

.form-message.error {
  background-color: rgba(220, 53, 69, 0.2);
  color: #dc3545;
  border: 1px solid #dc3545;
}

/* Responsive behaviour */
@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }
  .hero-text, .hero-image-wrapper {
    flex: 1 1 100%;
  }
}

/* Navigation responsive styles moved to assets/css/navigation.css */

/* Product detail pages */
.product-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background-size: cover;
  background-position: center;
  position: relative;
}
.product-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.product-hero h1 {
  position: relative;
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color: var(--secondary);
}
.product-hero p {
  position: relative;
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

.product-details {
  padding: 4rem 0;
  background-color: var(--dark);
  color: var(--text-light);
}

.details-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.details-grid .description,
.details-grid .notes {
  flex: 1 1 45%;
}
.details-grid h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--secondary);
}
.details-grid p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--light-text-secondary);
}
.notes ul {
  list-style: none;
  padding-left: 0;
}
.notes li {
  margin-bottom: 0.6rem;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--light-text-secondary);
}
.notes i {
  color: var(--secondary);
  font-size: 1.2rem;
}

.gallery {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
  .product-hero h1 {
    font-size: 2.2rem;
  }
  .details-grid .description,
  .details-grid .notes {
    flex: 1 1 100%;
  }
}
