/* Reset & Base Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
}
.main-header {
  background: #501002; /* Wine red */
  background: linear-gradient(to right, #1a1a1a, #3d1006);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

/* Logo Styles */
/* Logo Container */
/* Logo Container */
.logo {
  margin-right: auto; /* Pushes nav to the right */
  padding: 5px 0;
  z-index: 1001;
  display: flex;
  align-items: center; /* Centers vertically */
}

/* Logo Image - Big Size */
.logo-image {
  height: 80px; /* Fixed height (width will auto-scale) */
  width: auto; /* Maintain aspect ratio */
  max-width: 300px; /* Prevents overflow on mobile */
  transition: all 0.3s ease;
  margin-left: 20px; /* Space from left edge */
}

/* Hover Animation */
.logo:hover .logo-image {
  transform: scale(1.05);
  opacity: 0.9;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .logo-image {
    height: 60px; /* Slightly smaller on mobile */
    margin-left: 10px;
  }
}

/* Header Height Adjustment */
.main-header {
  min-height: 100px; /* Taller header for big logo */
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .main-header {
    min-height: 80px;
  }
}
/* Header Layout Adjustments */

.container {
  display: flex;
  align-items: center;
  gap: 2rem; /* Space between logo and nav */
}
/* Navigation Links */
.nav-list {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
  background: rgba(212, 175, 55, 0.2);
  color: #d4af37;
}

.nav-link i {
  font-size: 1.1rem;
}
@media (max-width: 768px) {
  .nav-list {
    display: none; /* Will show in mobile menu */
  }}
/* === Add these new rules BELOW your existing CSS === */

/* Mobile Menu Button (Hidden on Desktop) */
.hamburger {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
  /* Show hamburger button */
  .hamburger {
    display: block;
  }
  
  /* Mobile menu overlay */
  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #1a1a1a;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999;
    padding-top: 80px;
  }
  
  /* Active state when menu is open */
  .main-nav.active {
    transform: translateX(0);
  }
  
  /* Mobile nav list styles */
  .main-nav.active .nav-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    padding: 0 2rem;
  }
  
  /* Mobile nav link adjustments */
  .main-nav.active .nav-link {
    justify-content: center;
    padding: 1rem;
    font-size: 1.2rem;
  }
  
  /* Close button (optional) */
  .close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: white;
    font-size: 1.8rem;
    background: none;
    border: none;
    cursor: pointer;
  }
}
/* Hero Section */
.hero {
    background: url('images/logo/hero-bg.jpg') no-repeat center center/cover;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 1rem;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.btn {
    background: #d4af37;
    color: #000;
    padding: 0.7rem 1.5rem;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    display: inline-block;
}

.btn:hover {
    background: #c9a227;
}

/* Products Section */
.products {
    padding: 3rem 1rem;
    text-align: center;
    background: #f9f9f9;
}



.product-card {
  
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1.5rem;
    width: 250px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

/* About & Contact Sections */
.about, .contact {
    padding: 3rem 1rem;
    text-align: center;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-info i {
    margin-right: 0.5rem;
    color: #d4af37;
}

form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

form input, form textarea {
    padding: 0.7rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 1.5rem;
    margin-top: 2rem;
}

.social-links {
    margin-top: 1rem;
}

.social-links a {
    color: #fff;
    margin: 0 0.5rem;
    font-size: 1.2rem;
}

.social-links a:hover {
    color: #d4af37;
}

/* Logo Styling */
.logo img {
    height: 80px; /* Adjust based on your logo size */
    width: auto; /* Maintain aspect ratio */
}

/* For smaller screens (optional) */
@media (max-width: 768px) {
    .logo img {
        height: 60px; /* Smaller logo on mobile */
    }
}

header {
    background: #1a1a1a;
    color: #fff;
    padding: 1rem;
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center;
    flex-direction: column; /* Stack logo and nav vertically */
}

nav {
    margin-top: 1rem; /* Space between logo and nav */
}


.logo img:hover {
    transform: scale(1.05); /* Slight zoom effect */
    transition: 0.3s ease;
}

.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
}

.product-card {
    position: relative;
    overflow: hidden; /* Hide overflowing content */
    padding: 1rem 0.5rem; 
}

.product-card img {
    transition: transform 0.5s ease;
}

.product-card:hover img {
    transform: scale(1.1); /* Zoom image */
}

.product-card .btn {
    position: absolute;
    bottom: -50px; /* Hide button initially */
    left: 50%;
    transform: translateX(-50%);
    transition: bottom 0.3s ease;
}

.product-card:hover .btn {
    bottom: 20px; /* Slide button up on hover */
}

/* Price styling */
.product-card p {
    font-size: 1.2rem;
    color: #d4af37; /* Gold color */
    font-weight: bold;
    margin: 0.5rem 0;
}

/* Optional: Original price with discount */
.discounted-price {
    color: #d4af37;
    font-size: 1.3rem;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
}

/* Animated Gradient Border for "Our Products" Heading */
/* Shared Section Header Style */
.section-header {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    text-align: center;
    color: #1a1a1a;
    position: relative;
    margin: 4rem 0 3rem;
    padding-bottom: 15px;
  }
  
  .section-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
  }
  
  /* Decorative Icons (Optional) */
  .products .section-header::before {
    content: "🍷";
    margin-right: 15px;
  }
  
  .about .section-header::before {
    content: "🥃"; 
    margin-right: 15px;
  }
  
  /* Shared Section Container */
  .content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .section-header {
      font-size: 2.2rem;
    }
  }
  /* About Section Container */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
  }
  
  /* Decorative Liquor Cap */
  .decorative-cap {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    background: #d4af37;
    clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%);
    opacity: 0.1;
  }
  
  /* Story Column */
  .about-story {
    position: relative;
    padding-right: 2rem;
  }
  
  .about-story h3, 
  .about-features h3 {
    font-family: 'Playfair Display', serif;
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .about-story p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
  }
  
  /* Signature */
  .signature {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px dashed #d4af37;
  }
  
  .signature img {
    height: 40px;
    margin-bottom: 0.5rem;
    opacity: 0.9;
  }
  
  .signature p {
    font-style: italic;
    color: #777;
  }
  
  
  /* Why Choose Us Section */
.about-features {
  background: #fff9f5;
  padding: 4rem 2rem;
  border-top: 3px solid #d4af37;
  border-bottom: 3px solid #d4af37;
  margin: 3rem 0;
}

.features-header {
  text-align: center;
  margin-bottom: 3rem;
}

.features-header h3 {
  font-size: 2.2rem;
  color: #2a0e08;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.features-header h3 i {
  color: #d4af37;
}

.features-subtitle {
  color: #7a1c27;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Features Grid */
.gold-features {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.gold-features li {
  display: flex;
  gap: 1.5rem;
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.gold-features li:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4af37;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.feature-content h4 {
  color: #2a0e08;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.feature-content p {
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .about-features {
    padding: 3rem 1rem;
  }
  
  .gold-features {
    grid-template-columns: 1fr;
  }
  
  .gold-features li {
    padding: 1.5rem;
  }
}
  
  /* Awards */
  .awards {
    display: flex;
    gap: 15px;
    margin-top: 2rem;
    flex-wrap: wrap;
  }
  
  .awards img {
    height: 50px;
    opacity: 0.9;
    transition: all 0.3s ease;
  }
  
  .awards img:hover {
    transform: translateY(-5px);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .about-container {
      grid-template-columns: 1fr;
    }
    
    .about-story {
      padding-right: 0;
      margin-bottom: 2rem;
    }
  }
  .contact-details {
    display: grid;
    gap: 1.5rem;
  }
  
  .detail-block h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .detail-block h4 i {
    color: #d4af37;
    width: 20px;
  }
  
  .hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .hours-list li {
    margin-bottom: 0.5rem;
    color: #555;
  }
  /* Category Navigation */
.product-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.category-btn {
  padding: 0.8rem 1.8rem;
  background: white;
  border: 2px solid #d4af37;
  color: #d4af37;
  font-weight: 600;
  font-size: 1.1rem; 
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-btn:hover, .category-btn.active {
  background: #d4af37;
  color: white;
}
@media (max-width: 768px) {
  .btn-large {
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
    min-width: 100px;
  }
  
  .category-nav {
    flex-wrap: wrap; /* Allow buttons to wrap on small screens */
  }
}
/* Category Titles */
.category-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #333;
  margin: 3rem 0 2rem;
  display: flex;
  align-items: center;
  gap: 15px;
}

.category-title i {
  color: #d4af37;
  font-size: 1.8rem;
}

/* Product Grid (Same as before) */

.price {
  font-family: Arial, "Preeti", "Mangal", sans-serif; /* Nepali-friendly fonts */
}
/* Product Grid Container */
/* Product Grid Container */
/* Constrain the grid container */
.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  max-width: 1400px; /* Critical constraint */
  margin: 0 auto; /* Center the grid */
  padding: 0 1rem; /* Prevent edge touching */
}

/* Strict 3-column layout */
.beer-card {
  flex: 0 0 calc(33.333% - 2rem); /* flex-grow: 0, flex-shrink: 0 */
  min-width: 280px;
  max-width: calc(33.333% - 2rem); /* Prevent overflow */
  box-sizing: border-box;
}



/* Hero Carousel */
.hero-carousel {
  position: relative;
  max-height: 80vh;
  overflow: hidden;
  margin-bottom: 3rem;
}

.carousel-container {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: 80vh;
  object-fit: cover;
  object-position: center;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
  width: 90%;
  max-width: 800px;
}

.btn-carousel {
  background: #d4af37;
  color: #1a1a1a;
  padding: 12px 30px;
  font-size: 1.2rem;
  border-radius: 30px;
  margin-top: 1.5rem;
  display: inline-block;
  transition: all 0.3s ease;
}
.carousel-title {
  font-size: 2.5rem;
  color: #f3e9d9; /* Using your gold accent color */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  margin-bottom: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.carousel-subtitle {
  font-size: 1.5rem; /* Slightly smaller than heading */
  color: #e8c4c4; /* Gold color to match your theme */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.btn-carousel:hover {
  background: #c9a227;
  transform: translateY(-3px);
}

/* Navigation Arrows */
.carousel-prev, 
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  font-size: 1.5rem;
  padding: 1rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.carousel-prev { left: 20px; }
.carousel-next { right: 20px; }

.carousel-prev:hover,
.carousel-next:hover {
  background: rgba(212, 175, 55, 0.8);
}

/* Navigation Dots */
.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.carousel-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
}

.carousel-dots .dot.active {
  background: #d4af37;
}
/* Our Story Section */
/* About Section - Compact */
/* Force vertical stack */
/* About Section Structure */
.about-container {
  display: flex;
  flex-direction: column;
  gap: 2rem; /* Space between sections */
}

/* Story Container - Larger Image */
.story-container {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 50/50 split */
  gap: 2rem;
  align-items: center;
}

.story-image {
  height: 500px; /* Increased from 350px */
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Fill container while maintaining aspect ratio */
  transition: transform 0.5s ease;
}

.story-image:hover img {
  transform: scale(1.03); /* Subtle hover effect */
}

.story-content {
  padding: 1rem;
}

/* Why Choose Us Section */
.about-features {
  margin-top: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .story-image {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .story-container {
    grid-template-columns: 1fr;
  }
  
  .story-image {
    height: 300px;
    order: -1; /* Image first on mobile */
  }
}
/* Add to your existing CSS */
.story-content {
  position: relative;
  padding: 2rem;
  background: rgba(255, 253, 250, 0.8); /* Parchment-like */
  border-radius: 0 8px 8px 0;
}

.story-content h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 300;
  font-size: 2.8rem;
  color: #2a0e08; /* Deep burgundy */
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
  position: relative;
}

.story-content h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 2px;
  background: #d4af37;
}

/* Optional: Add a subtle watermark */
.story-content::before {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  width: 100px;
  height: 100px;
  background-image: url('images/logo/hero-bg.jpg') !important;/* Your watermark image */
  background-size: contain;
  opacity: 0.05;
  z-index: 0;
}
.story-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  line-height: 1.8;
  color: #3a2a1a;
  position: relative;
  padding-left: 2rem;
  border-left: 3px solid #d4af37;
}

.drop-cap::first-letter {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  color: #d4af37;
  float: left;
  line-height: 0.8;
  margin: 0.5rem 0.8rem 0 0;
}

.founder-title {
  font-style: italic;
  color: #7a1c27;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* Decorative Quote Marks */
.icon-quote {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: rgba(212, 175, 55, 0.3);
  position: absolute;
  line-height: 1;
}

.icon-quote.left {
  top: -1rem;
  left: 0;
}

.icon-quote.right {
  bottom: 2rem;
  right: 0;
}


.mission-wrapper {
  display: flex;
  justify-content: center;
  padding: 4rem 2rem;
  background: rgba(255, 253, 250, 0.7);
  margin: 3rem 0;
  position: relative;
}

.mission-statement {
  max-width: 800px;
  text-align: center;
  position: relative;
  padding: 0 2rem;
}

.mission-statement p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  line-height: 1.6;
  color: #2a0e08;
  font-style: italic;
  margin: 2rem 0;
  position: relative;
}


@media (max-width: 768px) {
  .mission-statement p {
    font-size: 1.4rem;
    padding: 0 1rem;
  }
  
  .icon-quote {
    font-size: 3rem;
  }
  
  .icon-quote.left {
    top: -0.5rem;
  }
  
  .icon-quote.right {
    bottom: 1rem;
  }
}

form {
  max-width: 800px; /* Increased from default */
  margin: 0 auto;
  padding: 2.5rem;
  background: rgba(255, 253, 250, 0.9);
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

form input,
form textarea {
  display: block;
  width: 100%;
  padding: 1.2rem;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: all 0.3s ease;
  background: #fff;
}

form textarea {
  min-height: 200px; /* Larger text area */
  resize: vertical;
}

form input:focus,
form textarea:focus {
  border-color: #d4af37;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
  outline: none;
}

form .btn {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.2rem;
  background: #2a0e08;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

form .btn:hover {
  background: #d4af37;
}
/* Contact Details Section */
.about-mission {
  background: #fff9f5;
  padding: 4rem 2rem;
  margin: 3rem 0;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.contact-details-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.detail-block {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  display: flex;
  gap: 1.5rem;
  transition: transform 0.3s ease;
}

.detail-block:hover {
  transform: translateY(-5px);
}

.detail-icon {
  width: 60px;
  height: 60px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4af37;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.detail-content h4 {
  color: #2a0e08;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.detail-content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hours-list li {
  margin-bottom: 0.5rem;
  color: #555;
}

.days {
  font-weight: 500;
  color: #333;
  display: inline-block;
  width: 70px;
}

.map-link, .phone-link {
  color: #7a1c27;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  margin-top: 0.5rem;
  transition: color 0.3s ease;
}

.map-link:hover, .phone-link:hover {
  color: #d4af37;
}

.map-link i, .phone-link i {
  margin-left: 5px;
  font-size: 0.9rem;
}

.contact-note, .holiday-note {
  font-size: 0.9rem;
  color: #888;
  font-style: italic;
  margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-details-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .detail-block {
    padding: 1.5rem;
  }
}
/* --- Mobile & Tablet Layout (2 cards per row) --- */
@media (max-width: 768px) { /* Targets tablets and phones */

  .product-grid {
    /* Adjust the gap between cards for smaller screens */
    gap: 15px; /* Use a smaller gap, e.g., 15px or 1rem */
    /* Ensure flex-wrap is still active if needed */
    flex-wrap: wrap;
  }

  /* Apply 2-column layout to ALL product cards */
  .product-card { /* Target the general class for ALL cards */
    /* flex: flex-grow flex-shrink flex-basis */
    /* Don't grow, don't shrink, base width is 50% minus half the gap */
    flex: 0 0 calc(50% - 7.5px); /* 7.5px is half of the 15px gap */
    max-width: calc(50% - 7.5px); /* Ensure max-width matches flex-basis */
    box-sizing: border-box; /* Add this for safety, prevents padding/border issues */
  }

  /* Optional: Adjust card content if needed for smaller size */
  /*
  .product-card {
    padding: 10px;
  }
  .product-card h3 {
    font-size: 0.9em;
  }
  .product-card .price {
    font-size: 1em;
  }
  .product-card img {
    height: 180px;
  }
  */
}