/* --- Brand Variables (Drop your palette here) --- */
:root {
  --bg-color: #FAFAFA; /* Museum-wall white for the 80% */
  --text-main: #333333; /* Deep gray for readability */
  --accent-color: #72963d; /* The "fun" 20% accent color */
  --accent-hover: #E85D75;
  --font-stack: 'Montserrat', sans-serif;
}

/* --- Base Reset --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-stack);
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
}

/* --- Navigation & Mega Menu --- */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  max-width: 50px; /* Keeps the top navigation logo neat and compact */
  height: auto;     /* Prevents the image from stretching or looking squished */
  display: block;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--accent-color);
}

/* Mega Menu Hover Logic */
.has-mega-menu {
  position: relative;
}

.mega-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  width: 350px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border-radius: 8px;
  border-top: 3px solid var(--accent-color);
  margin-top: 0; 
}

.has-mega-menu:hover .mega-menu {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translate(-50%, 10px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

.waitlist-form {
  display: flex;
  margin-top: 1rem;
  gap: 0.5rem;
}

.waitlist-form input {
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  flex-grow: 1;
}

/* --- Buttons --- */
.btn-primary, .btn-small {
  background-color: var(--accent-color);
  color: #fff;
  border: none;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-small {
  padding: 8px 15px;
  font-size: 0.85rem;
}

.btn-primary:hover, .btn-small:hover {
  background-color: var(--accent-hover);
}

.btn-secondary {
  background-color: var(--accent-color); 
  color: #fff;
  border: none;
  border-radius: 4px; 
  padding: 8px 20px;
  margin-top: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-secondary:hover {
  background: #E85D75; 
  border-color: #E85D75; 
  color: #fff;
}

/* --- Layout Sections --- */
.hero {
  position: relative; /* Crucial for the overlay to work */
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  
  /* Adds your background image and scales it perfectly */
  background-image: url('pitagurl.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0 20px;
}

/* --- The Dark Overlay --- */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); 
  z-index: 1; 
}

/* --- Hero Text & Spacing --- */
.hero-text {
  position: relative;
  z-index: 2; 
  color: #ffffff; 
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  max-width: 800px;
}

.hero-text p {
  font-size: 1.2rem;

  margin-bottom: 2.5rem; 
}
.products {
  padding: 6rem 5%;
  text-align: center;
}

.products h2 {
  margin-bottom: 3rem;
  font-size: 2rem;
}

.product-grid {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.product-card {
  width: 320px;
  text-align: left;
}

.product-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border-radius: 4px;
}

.product-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
}

.product-card .format {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.product-card .price {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.about-teaser {
  background-color: #CDE0B1; /* Your custom soft base color */
  padding: 6rem 5%;
  text-align: center;
  color: var(--text-main); /* Keeps the dark gray text for perfect readability */
}

.about-content {
  max-width: 600px;
  margin: 0 auto;
}

.text-link {
  display: inline-block;
  margin-top: 1.5rem;
  color: var(--accent-color); 
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease; 
}

.text-link:hover {
  color: #E85D75; 
}

footer {
  background-color: #ffffff; /* Crisp white to match the navbar */
  border-top: 1px solid #eee; /* Creates a clean division from the main content */
  padding: 4rem 5% 2rem 5%;
  font-size: 0.9rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: flex-start; 
}
/* --- Footer Columns --- */
footer .col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  min-width: 200px;
}

footer .logo {
  max-width: 100px;
  margin-bottom: 1.5rem;
}

footer h4 {
  font-size: 1rem;
  margin-top: 0; 
  margin-bottom: 1rem;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Footer Links --- */
footer a {
  text-decoration: none;
  color: #666666; /* Slightly lighter gray so headings stand out */
  margin-bottom: 0.8rem;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

footer a:hover {
  color: #E85D75; /* The vibrant coral to match your other hovers! */
  padding-left: 5px; /* Adds a tiny, high-end nudge effect on hover */
}

/* --- Social Icons --- */
footer .follow .icon {
  display: flex;
  gap: 1rem;
}

footer .follow .icon i {
  font-size: 1.2rem;
  color: #666666;
  transition: color 0.3s ease, transform 0.3s ease;
}

footer .follow .icon a:hover i {
  color: #E85D75; /* Coral hover */
  transform: translateY(-3px); /* Gentle lift effect */
}

/* --- Payments & Copyright --- */
.pay-img {
  max-width: 250px;
  margin-top: 0.5rem;
}

footer .copyright {
  width: 100%;
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #eee;
  color: #999999;
  font-size: 0.8rem;
}

/* =========================================
   ABOUT PAGE STYLES
   ========================================= */

/* --- About Hero Banner --- */
/* =========================================
   ABOUT PAGE: DYNAMIC SECTIONS
   ========================================= */

/* --- Brand Pillars Section --- */
/* --- Brand Pillars Section --- */
.about-pillars {
  text-align: center;
  padding: 5rem 5%;
  background-color: #f4f7f0; /* The soft Pistachio tint background! */
}

.about-pillars h2 {
  font-family: 'Cinzel', serif;
  font-size: 2.8rem; 
  font-weight: 400;
  color: var(--text-main);
  
  /* Reduced from 3rem to pull the heading closer to the cards below */
  margin-bottom: 2.5rem; 
  letter-spacing: 2px; 
  text-transform: uppercase;
}

.pillar-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.pillar-box {
  flex: 1;
  min-width: 250px;
  padding: 2rem;
  background-color: #fafafa;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar-box:hover {
  transform: translateY(-10px); /* Creates a high-end floating effect on hover */
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.icon-coral {
  font-size: 2.5rem;
  color: #E85D75; /* Vibrant coral for a pop of color */
  margin-bottom: 1.5rem;
}

.pillar-box h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.pillar-box p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- Editorial Quote Block --- */
.about-quote {
  background-color: #CDE0B1; /* Ties back to the hero section */
  padding: 6rem 5%;
  text-align: center;
}

.quote-content {
  max-width: 900px;
  margin: 0 auto;
}

.quote-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; /* Sized perfectly for readability */
  color: var(--text-main);
  line-height: 1.6;
  font-weight: normal; 
  font-style: italic; /* This creates that sweeping, gentle curve */
  letter-spacing: 0.5px; /* Adds just a touch of breathing room */
}
/* =========================================
   PLANNER PRODUCT PAGE
   ========================================= */

/* --- Planner Hero --- */
/* --- Planner Hero --- */
.planner-hero {
  background-color: #CDE0B1; /* Updated to match the contact form buttons! */
  color: #111; /* Deep charcoal text for perfect contrast */
  text-align: center;
  padding: 4rem 2rem;
  margin-bottom: 2rem;
}

.planner-hero h1 {
  font-family: 'Cinzel', serif;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.planner-hero p {
  font-size: 1.1rem;
  color: #333;
}

/* --- Product Showcase --- */
.product-showcase {
  padding: 5rem 5%;
}

.product-container {
  display: flex; /* This is the magic rule that keeps them side-by-side */
  flex-wrap: wrap;
  align-items: flex-start; /* This levels the text with the top of the image */
  justify-content: space-between; /* This keeps the image left and text right */
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto; 
}

/* Image takes up 50% of the space */
.product-image-wrapper {
  flex: 1;
  min-width: 300px;
}

.main-product-img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Premium drop shadow */
}

/* Text takes up 50% of the space */
.product-details {
  flex: 1;
  min-width: 300px;
}

.product-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 600;
  color: #E85D75; /* Vibrant coral for the price tag */
  margin-bottom: 1.5rem;
}

.product-description {
  margin-bottom: 2rem;
  line-height: 1.8;
  color: #555;
}

.product-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2.5rem;
}

.product-features li {
  margin-bottom: 0.8rem;
  color: #444;
}

.product-features i {
  color: #CDE0B1; /* Pistachio green checkmarks */
  margin-right: 10px;
}

/* --- Checkout Button --- */


/* --- 3-Column Product Grid --- */
.collection-grid {
  padding: 5rem 5%;
  text-align: center;
  background-color: #fafafa; /* Very light gray to separate it from the top section */
}

.section-title {
  font-family: 'Cinzel', serif; /* Keeps your premium architectural header! */
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 3rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* The Grid Setup */
.grid-container {
  display: grid; /* Turns on CSS Grid */
  grid-template-columns: repeat(3, 1fr); /* Creates exactly 3 equal columns */
  gap: 2rem; /* Creates beautiful spacing between the products */
  max-width: 1200px;
  margin: 0 auto;
}

/* Individual Product Cards */
.grid-item {
  background-color: #fff;
  padding: 2rem;
  border-radius: 4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grid-item:hover {
  transform: translateY(-5px); /* Slight lift on hover */
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.grid-item img {
  width: 100%;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.grid-item h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.grid-price {
  color: #E85D75; /* Coral accent */
  font-weight: 600;
  margin-bottom: 1.5rem;
}

/* Secondary Button for the Grid */
/* =========================================
   GLOBAL BUTTON STYLES
   ========================================= */

/* --- The Default Pistachio State --- */
.btn-primary,
.btn-checkout,
.btn-secondary {
  display: inline-block;
  background-color: #CDE0B1; /* Pistachio green */
  color: #111; /* Dark text for readability on the light green */
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 2px;
  text-decoration: none;
  border: none; /* Removes any old borders */
  transition: background-color 0.3s ease, color 0.3s ease; /* Smooth fade effect */
}

/* Sizing for the large main checkout button */
.btn-checkout {
  padding: 1rem 3rem;
  letter-spacing: 2px;
}

/* Sizing for the smaller grid buttons */
.btn-secondary {
  padding: 0.8rem 2rem;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

/* --- The Coral Hover State --- */
.btn-primary:hover,
.btn-checkout:hover,
.btn-secondary:hover {
  background-color: #E85D75; /* Vibrant coral */
  color: #fff; /* Text switches to white for perfect contrast */
}

/* =========================================
   JOURNAL MARKETING TACTICS
   ========================================= */

/* --- Tactic 1: Exclusivity Badge --- */
.image-relative {
  position: relative; /* Allows us to pin the badge over the image */
}

.exclusivity-badge {
  position: absolute;
  top: 15px;
  left: -10px;
  background-color: #111; /* Sleek black */
  color: #fff;
  padding: 0.5rem 1.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 10;
}

/* --- Tactic 2: Social Proof (Gold Stars) --- */
.trust-stars {
  margin-bottom: 0.5rem;
}

.trust-stars i {
  color: #D4AF37; /* Metallic Gold */
  font-size: 0.9rem;
}

.review-count {
  font-size: 0.85rem;
  color: #666;
  margin-left: 8px;
}

/* --- Tactic 3: The Upsell Bundle Box --- */
.bundle-box {
  background-color: #fafafa;
  border: 1px solid #CDE0B1; /* Pistachio border to tie the brand together */
  border-radius: 4px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.bundle-title {
  font-family: 'Cinzel', serif; /* Architectural elegance */
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.bundle-label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.bundle-checkbox {
  width: 20px;
  height: 20px;
  margin-right: 15px;
  accent-color: #E85D75; /* Makes the checkbox coral when ticked */
}

.bundle-text {
  display: flex;
  flex-direction: column;
}

.bundle-item-name {
  font-weight: 600;
  color: var(--text-main);
}

.bundle-item-price {
  font-size: 0.9rem;
  color: #555;
  margin-top: 3px;
}

.discount-tag {
  color: #E85D75; /* Coral to highlight the savings */
  font-weight: 600;
  font-size: 0.85rem;
  margin-left: 5px;
}

/* --- Trust Signal under button --- */
.shipping-notice {
  font-size: 0.85rem;
  color: #666;
  margin-top: 1rem;
  text-align: center;
}

.shipping-notice i {
  color: #CDE0B1;
  margin-right: 5px;
}

/* =========================================
   JOURNAL MARKETING TACTICS
   ========================================= */

/* --- Tactic 1: Exclusivity Badge --- */
.image-relative {
  position: relative; /* Allows us to pin the badge over the image */
}

.exclusivity-badge {
  position: absolute;
  top: 15px;
  left: -10px;
  background-color: #111; /* Sleek black */
  color: #fff;
  padding: 0.5rem 1.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 10;
}

/* --- Tactic 2: Social Proof (Gold Stars) --- */
.trust-stars {
  margin-bottom: 0.5rem;
}

.trust-stars i {
  color: #D4AF37; /* Metallic Gold */
  font-size: 0.9rem;
}

.review-count {
  font-size: 0.85rem;
  color: #666;
  margin-left: 8px;
}

/* --- Tactic 3: The Upsell Bundle Box --- */
.bundle-box {
  background-color: #fafafa;
  border: 1px solid #CDE0B1; /* Pistachio border to tie the brand together */
  border-radius: 4px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.bundle-title {
  font-family: 'Cinzel', serif; /* Architectural elegance */
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.bundle-label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.bundle-checkbox {
  width: 20px;
  height: 20px;
  margin-right: 15px;
  accent-color: #E85D75; /* Makes the checkbox coral when ticked */
}

.bundle-text {
  display: flex;
  flex-direction: column;
}

.bundle-item-name {
  font-weight: 600;
  color: var(--text-main);
}

.bundle-item-price {
  font-size: 0.9rem;
  color: #555;
  margin-top: 3px;
}

.discount-tag {
  color: #E85D75; /* Coral to highlight the savings */
  font-weight: 600;
  font-size: 0.85rem;
  margin-left: 5px;
}

/* --- Trust Signal under button --- */
.shipping-notice {
  font-size: 0.85rem;
  color: #666;
  margin-top: 1rem;
  text-align: center;
}

.shipping-notice i {
  color: #CDE0B1;
  margin-right: 5px;
}

/* =========================================
   INTERACTIVE QUICK VIEW (ACCORDION)
   ========================================= */

/* The clickable trigger text */
.quick-view summary {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #111;
  cursor: pointer;
  padding: 10px 0;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
  margin-top: 1rem;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
  list-style: none; /* Removes the default tiny arrow on most browsers */
}

/* Add a custom plus sign to the trigger */
.quick-view summary::after {
  content: '+';
  float: right;
  font-size: 1.2rem;
  color: #E85D75; /* Coral accent */
}

/* Change the plus to a minus when opened */
.quick-view[open] summary::after {
  content: '−';
}

/* Hover effect for the text */
.quick-view summary:hover {
  color: #E85D75;
}

/* Hide the default arrow in Safari */
.quick-view summary::-webkit-details-marker {
  display: none;
}

/* The content that drops down */
.quick-view-content {
  padding: 1rem 0;
  text-align: left; /* Aligns text cleanly to the left for readability */
}

.quick-view-content p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 1.5rem;
}

/* Make the button stretch the full width of the box */
.quick-view-content .btn-secondary {
  display: block;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

/* =========================================
   THUMBNAIL GALLERY
   ========================================= */
.thumbnail-gallery {
  display: flex;
  gap: 15px; /* Spacing between thumbnails */
  margin-top: 20px;
}

.thumb-img {
  width: 80px;
  height: 80px;
  object-fit: cover; /* Keeps images perfectly square without squishing */
  border-radius: 4px;
  cursor: pointer;
  border: 2px solid transparent; /* Invisible border to prevent jumping */
  opacity: 0.6; /* Faded look for inactive images */
  transition: all 0.3s ease;
}

.thumb-img:hover {
  opacity: 1;
}

/* The style for the currently selected image */
.thumb-img.active {
  border-color: #CDE0B1; /* Your signature Pistachio Green */
  opacity: 1;
}

/* =========================================
   LEGAL & PRIVACY PAGES
   ========================================= */
.legal-content {
  background-color: #ffffff; /* Changed to pure white to blend with the footer */
}

.legal-container {
  max-width: 800px; /* Keeps the text narrow for optimal reading */
  margin: 0 auto; /* Centers the block on the page */
  padding: 3rem 2rem; /* Adjusted padding to look natural without the box */
  
  
}

.legal-container h2 {
  font-family: 'Cinzel', serif; /* Ties in your elegant brand font */
  font-size: 1.5rem;
  color: #111;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 0.5rem;
}

.legal-container h2:first-of-type {
  margin-top: 0; /* Removes extra space from the very top heading */
}

.legal-container p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.5rem;
}

.legal-container ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.legal-container ul li {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 20px;
}

/* Custom Pistachio Bullet Points */
.legal-container ul li::before {
  content: '•';
  color: #CDE0B1; 
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -4px;
}

/* =========================================
   CONTACT PAGE & FORM
   ========================================= */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 4rem;
  max-width: 1200px;
  
  /* This centers the box, but adds a 4rem (approx 64px) gap to the top! */
  margin: 4rem auto 0 auto; 
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info h2 {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  color: #111;
  margin-top: 0; /* Removes the hidden browser space pushing it down */
  margin-bottom: 1.5rem; /* Pushes the paragraph down slightly for breathing room */
  padding-bottom: 0.8rem;
  border-bottom: 2px solid #CDE0B1; /* Grounds the text with a Pistachio accent line */
}

.contact-info p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact-perks h4 {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1rem;
  font-weight: 600;
}

.contact-perks i {
  color: #CDE0B1; /* Pistachio Green accent */
  margin-right: 10px;
}

.contact-social-pitch {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #eaeaea;
}

.contact-social-pitch h3 {
  font-family: 'Cinzel', serif;
  margin-bottom: 0.5rem;
}

.contact-social-pitch .icon a {
  color: #72963d;
  font-size: 1.2rem;
  margin-right: 15px;
  transition: 0.3s ease;
}

.contact-social-pitch .icon a:hover {
  color: #e85d75; /* Coral accent on hover */
}

/* Form Styling */
.contact-form-wrapper {
  flex: 1;
  min-width: 300px;
  background-color: #f4f7f0; /* Soft Pistachio/Neutral tint */
  padding: 3rem;
  border-radius: 8px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #111;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-group textarea {
  resize: vertical; /* Allows them to make it taller, but not wider */
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #CDE0B1;
  box-shadow: 0 0 5px rgba(205, 224, 177, 0.5);
}

.form-optin {
  margin-top: 1rem;
  margin-bottom: 2rem;
  background-color: #fff;
  padding: 1rem;
  border-radius: 4px;
  border: 1px solid #eaeaea;
}

.optin-desc {
  display: block;
  font-size: 0.8rem;
  color: #666;
  margin-top: 0.3rem;
  line-height: 1.5;
}

.contact-form .btn-checkout {
  width: 100%; /* Makes the button span the whole form width */
  text-align: center;
  border: none;
  cursor: pointer;
}

/* Professional Toast Notification */
/* Premium Minimalist Cart Notification */
#cart-toast {
  position: fixed;
  top: 90px; /* Sits elegantly just below your navigation bar */
  right: 30px; /* Anchored to the right side */
  
  background-color: #ffffff; /* Clean, stark white */
  color: #111111; /* Deep charcoal text for high contrast */
  
  padding: 16px 24px;
  border: 1px solid #eaeaea; /* Very subtle, delicate border */
  border-left: 4px solid #111111; /* A structured, editorial accent line on the left */
  border-radius: 4px; /* Sharper corners for a modern, structured look */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* Soft, diffused luxury shadow */
  
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: inherit; 
  font-size: 0.95rem;
  font-weight: 500;
  z-index: 9999;
  
  /* The hidden state (starts slightly off-screen to the right) */
  transform: translateX(50px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1); /* Exceptionally smooth glide */
}

/* The visible state (slides in perfectly) */
#cart-toast.show {
  transform: translateX(0); 
  opacity: 1;
  visibility: visible;
}