/* 🌼 Typography & Fonts */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script&family=Quicksand:wght@400;600&display=swap');

/* 🌼 Base Styles */
body {
  margin: 0;
  padding: 0;
  font-family: 'Quicksand', sans-serif;
  background-color: #ffffff;
  color: #333;
}

main {
  padding: 40px 20px;
  text-align: center;
}

/* 🧣 Header & Navigation */
header {
  background-color: #0d0c0c;
  text-align: center;
  padding: 40px 20px;
  position: relative;
}

.logo {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #ffffff;
  margin: 0;
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  padding: 5px 10px;
}

nav a:hover,
nav a:focus {
  color: #ffb6c1;
  transition: color 0.3s ease;
  outline: none;
}

nav a.active {
  border-bottom: 2px solid #ffb6c1;
}

/* 🛒 Cart Icon */
.cart-icon {
  position: absolute;
  top: 20px;
  right: 20px;
}

.cart-icon img {
  width: 30px;
  height: auto;
  vertical-align: middle;
}

#cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: #d63384;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 50%;
  box-shadow: 0 0 2px rgba(0,0,0,0.2);
}

@media (max-width: 600px) {
  .cart-icon {
    top: 15px;
    right: 15px;
  }
}

/* 📝 Forms */
form input,
form textarea,
form button {
  display: block;
  margin: 10px auto;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  width: 80%;
  max-width: 400px;
  font-family: 'Quicksand', sans-serif;
}

form input:focus,
form textarea:focus,
form button:focus {
  outline: 2px solid #d63384;
  outline-offset: 2px;
}

form button {
  background-color: #000000f7;
  color: white;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

form button:hover {
  background-color: #d63384;
  transition: background-color 0.3s ease;
}

/* 🛍️ Cart Items */
#cart-items {
  list-style: none;
  padding: 0;
  margin: 20px auto;
  max-width: 400px;
  text-align: left;
}

#cart-items li {
  background-color: #fff8f6;
  border-left: 4px solid #d63384;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 8px;
  font-weight: 600;
}

#paypal-button-container iframe {
  height: 100% !important;
  min-height: 320px !important;
  width: 100% !important;
  display: block;
}

.paypal-wrapper {
  width: 100%;
  max-width: 420px;
  margin: 2rem auto;
  padding: 0 1rem;
  box-sizing: border-box;
}

#paypal-button-container {
  min-height: 320px; /* Increased to fit Pay Later */
  overflow: visible;
  display: block;
  width: 100%;
}

/* Ensure PayPal iframe expands and is not clipped */
#paypal-button-container iframe {
  height: auto !important;
  min-height: 340px !important;
  max-height: none !important;
  width: 100% !important;
  display: block !important;
  overflow: visible !important;
  border: none !important;
}

/* Ensure wrapper allows full expansion */
.paypal-wrapper {
  width: 100%;
  max-width: 420px;
  margin: 2rem auto;
  padding: 0 1rem;
  box-sizing: border-box;
  overflow: visible;
}

/* Ensure container doesn’t restrict iframe */
#paypal-button-container {
  min-height: 340px;
  overflow: visible;
  display: block;
  width: 100%;
  position: relative;
}




/* 🎁 Occasion Grid */
.occasion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin-top: 30px;
  justify-items: center;
  padding: 0 1rem;
}

/* 🎉 Occasion Item (Clickable Card) */
.occasion-item {
  background-color: #fffaf5;
  border-radius: 10px;
  padding: 16px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  width: 100%;
  max-width: 240px;
}

.occasion-item:hover {
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(214, 51, 132, 0.2);
}

/* 🖼️ Occasion Image */
.occasion-item img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 12px;
}

/* 🏷️ Occasion Label */
.occasion-item p {
  font-weight: bold;
  font-size: 1rem;
  color: #0d0c0c;
  font-family: 'Quicksand', sans-serif;
  margin: 0;
}

/* 🖋️ Section Heading */
#occasion h2 {
  text-align: center;
  font-size: 2rem;
  color: #020202;
  font-family: 'Dancing Script', cursive;
  margin-bottom: 1rem;
}

/* 📝 Intro Text */
.occasion-intro {
  text-align: center;
  font-family: 'Quicksand', sans-serif;
  margin-bottom: 1.5rem;
  color: #333;
}



/* 📚 Bookish Grid */
.bookish-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 100px;       /* matches jewelry grid spacing */
  justify-items: center;   /* ensures items are centered in grid */
}

/* 🖋️ Section Heading */
#bookish h2 {
  text-align: center;
  font-size: 2rem;
  color: #020202;
  font-family: 'Dancing Script', cursive;
  margin-bottom: 1rem;
}

/* Bookish Item Card */
.bookish-item {
  background-color: #fffaf5;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertical centering */
  align-items: center;     /* horizontal centering */
  min-height: 400px;       /* consistent height with jewelry items */
  position: relative;
}

/* 🖼️ Image Styling */
.bookish-item img {
  max-width: 100%;       /* responsive */
  max-height: 160px;     /* consistent with jewelry images */
  height: auto;
  width: auto;
  display: block;
  margin: 0 auto 10px;
  object-fit: contain;   /* prevents cropping */
  border-radius: 6px;
}

/* 🔗 Link Styling */
.bookish-item a {
  text-decoration: none;
  color: inherit;
  display: block;
  width: 100%;
}

.bookish-item a h3 {
  font-size: 1.1rem;
  margin: 8px 0;
  font-weight: 600;
  font-family: 'Quicksand', sans-serif;
}

/* 🛒 Button Styling */
.bookish-item button {
  margin-top: 10px;
  padding: 8px 16px;
  background-color: #0d0c0c;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  font-family: 'Quicksand', sans-serif;
}

.bookish-item button:hover {
  background-color: #d63384;
}

/* ✨ Hover Effect */
.bookish-item:hover {
  transform: scale(1.05);
}

/* 📖 Special Preview Image Styling */
img[src$="bookmark2.png"] {
  width: 800px !important;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin: 1rem auto;
  display: block;
}

/* 📝 Product Page Card Styling */
.product-page {
  background-color: #fffaf5;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  display: inline-block;   /* keeps card sized to content */
  margin: 20px auto;       /* centers card on page */
}

/* Hover effect only on product card */
.product-page:hover {
  transform: scale(1.05);
}

/* 🖼️ Product Page Image */
.product-page img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 10px;
  object-fit: contain;
}






/* 👕 Clothing Grid */
.clothing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 30px;
  justify-items: center;
}



/* 👕 Clothing Grid */
.clothing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 30px;
  justify-items: center;
}

/* 🧥 Clothing Item */
.clothing-item {
  background-color: #fffaf5;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.clothing-item:hover {
  transform: scale(1.05);
}

/* 🖋️ Section Heading */
#clothing h2 {
  text-align: center;
  font-size: 2rem;
  color: #020202;
  font-family: 'Dancing Script', cursive;
  margin-bottom: 1rem;
}

/* 🖼️ Image Styling */
.clothing-item img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 10px;
}

/* 🔗 Link Styling */
.clothing-item a {
  text-decoration: none;
  color: inherit;
  display: block;
  width: 100%;
}

.clothing-item a h3 {
  font-size: 1.1rem;
  margin: 8px 0;
  font-weight: 600;
  font-family: 'Quicksand', sans-serif;
}

/* 🎨 Optional Form Elements */
.clothing-item select,
.clothing-item input[type="text"] {
  margin: 6px 0;
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-family: 'Quicksand', sans-serif;
  width: 100%;
  max-width: 200px;
}

/* 🛒 Button Styling */
.clothing-item button {
  margin-top: 10px;
  padding: 8px 16px;
  background-color: #0d0c0c;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  font-family: 'Quicksand', sans-serif;
}

.clothing-item button:hover {
  background-color: #d63384;
}




/* ❄️ Seasonal Grid */
.seasonal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 30px;
  justify-items: center;
}

/* 🎁 Seasonal Item */
.seasonal-item {
  background-color: #fffaf5;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ✨ Hover Effect */
.seasonal-item:hover {
  transform: scale(1.05);
}

/* 🖼️ Image Styling */
.seasonal-item img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 10px;
}

/* 🔗 Link Styling */
.seasonal-item a {
  text-decoration: none;
  color: inherit;
  display: block;
  width: 100%;
}

.seasonal-item a h3 {
  font-size: 1.1rem;
  margin: 8px 0;
  font-weight: 600;
  font-family: 'Quicksand', sans-serif;
}

/* 🛒 Primary Button */
.seasonal-item button {
  margin-top: 10px;
  padding: 8px 16px;
  background-color: #0d0c0c;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  font-family: 'Quicksand', sans-serif;
}

.seasonal-item button:hover {
  background-color: #d63384;
}

/* 🖋️ Section Heading */
#seasonal h2 {
  text-align: center;
  font-size: 2rem;
  color: #020202;
  font-family: 'Dancing Script', cursive;
  margin-bottom: 1rem;
}

/* 📜 Intro Text */
.seasonal-intro {
  text-align: center;
  font-family: 'Quicksand', sans-serif;
  margin-bottom: 1.5rem;
  color: #333;
}

/* 🧺 Add-to-Cart Button */
.add-to-cart {
  margin-top: 6px;
  padding: 6px 12px;
  background-color: #ff6f61;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.add-to-cart:hover {
  background-color: #e85c4a;
}

/* 🎨 Optional Form Elements */
.seasonal-item select,
.seasonal-item input[type="text"] {
  margin: 6px 0;
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-family: 'Quicksand', sans-serif;
  width: 100%;
  max-width: 200px;
}




/* 🏡 Home Decor Grid */
.homedecor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 30px;
  justify-items: center;
}

/* 🪴 Home Decor Item */
.homedecor-item {
  background-color: #fffaf5;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 🖋️ Section Heading */
#homedecor h2 {
  text-align: center;
  font-size: 2rem;
  color: #020202;
  font-family: 'Dancing Script', cursive;
  margin-bottom: 1rem;
}

/* 🖼️ Image Styling */
.homedecor-item img {
  width: 60%;
  border-radius: 6px;
  margin-bottom: 10px;
}

/* 🔗 Link Styling */
.homedecor-item a {
  text-decoration: none;
  color: inherit;
  display: block;
  width: 100%;
}

.homedecor-item a h3 {
  font-size: 1.1rem;
  margin: 8px 0;
  font-weight: 600;
  font-family: 'Quicksand', sans-serif;
}

/* 🎨 Optional Form Elements */
.homedecor-item select,
.homedecor-item input[type="text"] {
  margin: 6px 0;
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-family: 'Quicksand', sans-serif;
  width: 100%;
  max-width: 200px;
}

/* 🛒 Button Styling */
.homedecor-item button {
  margin-top: 10px;
  padding: 8px 16px;
  background-color: #0d0c0c;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  font-family: 'Quicksand', sans-serif;
}

.homedecor-item button:hover {
  background-color: #d63384;
}

/* ✨ Hover Effect */
.homedecor-item:hover {
  transform: scale(1.05);
}

/* 🖼️ Specific Preview Image */
img[src$="homedecor1.png"] {
  width: 80%;
  max-width: 250px;
  height: auto;
}






/* 💍 Jewelry Grid */
.jewelry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 100px;
  justify-items: center; /* ensures items are centered in grid */
}

/* Default Jewelry Item Images */
.jewelry-item img {
  max-width: 100%;       /* keep images responsive */
  max-height: 160px;
  height: auto;
  width: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;   /* prevents cropping */
}

/* 🔗 Link Styling */
.jewelry-item a {
  text-decoration: none;
  color: inherit;
  display: block;
  width: 100%;
}

/* Jewelry Item Card */
.jewelry-item {
  background-color: #fffaf5;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertical centering */
  align-items: center;     /* horizontal centering */
  min-height: 400px;       /* consistent height */
  position: relative;
}

/* 🎨 Form Elements */
.jewelry-item select,
.jewelry-item input[type="text"],
.jewelry-item input[type="date"] {
  margin: 6px 0;
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-family: 'Quicksand', sans-serif;
  width: 100%;
  max-width: 200px;
  text-align: center; /* keeps text inside centered */
}

/* 🛒 Button Styling */
.jewelry-item button {
  margin-top: 10px;
  padding: 8px 16px;
  background-color: #0d0c0c;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  font-family: 'Quicksand', sans-serif;
}

.jewelry-item button:hover {
  background-color: #d63384;
}

/* ✨ Hover Effect */
.jewelry-item:hover {
  transform: scale(1.05);
}

/* Thumbprint image layout */
.persons-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 15px;
}

.person {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* 📅 Date Input Centering */
.date-container {
  text-align: center;
  margin-top: 10px;
}

.date-container label {
  display: block;
  margin-bottom: 5px;
  text-align: center;
}

.date-container input[type="date"] {
  display: block;
  margin: 0 auto;
  max-width: 150px;   /* keeps it narrow and tidy */
  text-align: center; /* centers text inside input */
}

/* 🖋️ Section Heading */
#jewelry h2 {
  text-align: center;
  font-size: 2rem;
  color: #020202;
  font-family: 'Dancing Script', cursive;
  margin-bottom: 1rem;
}



/* 🐾 Pet Grid */
.pet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 100px;       /* matches jewelry grid spacing */
  justify-items: center;   /* ensures items are centered in grid */
}

/* Pet Item Card */
.pet-item {
  background-color: #fffaf5;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertical centering */
  align-items: center;     /* horizontal centering */
  min-height: 400px;       /* consistent height with jewelry items */
  position: relative;
}

/* 🖼️ Image Styling */
.pet-item img {
  max-width: 100%;       /* responsive */
  max-height: 160px;     /* consistent with jewelry images */
  height: auto;
  width: auto;
  display: block;
  margin: 0 auto 10px;
  object-fit: contain;   /* prevents cropping */
  border-radius: 6px;
}

/* 🔗 Link Styling */
.pet-item a {
  text-decoration: none;
  color: inherit;
  display: block;
  width: 100%;
}

.pet-item a h3 {
  font-size: 1.1rem;
  margin: 8px 0;
  font-weight: 600;
  font-family: 'Quicksand', sans-serif;
}

/* Pets1.png preview image */
img[src$="pets1.png"] {
  width: 80%;
  max-width: 250px;
  height: auto;
}

/* 🎨 Form Elements */
.pet-item select,
.pet-item input[type="text"],
.pet-item input[type="date"] {
  margin: 6px 0;
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-family: 'Quicksand', sans-serif;
  width: 100%;
  max-width: 200px;
  text-align: center; /* keeps text inside centered */
}

/* 🛒 Button Styling */
.pet-item button {
  margin-top: 10px;
  padding: 8px 16px;
  background-color: #0d0c0c;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  font-family: 'Quicksand', sans-serif;
}

.pet-item button:hover {
  background-color: #d63384;
}

/* ✨ Hover Effect */
.pet-item:hover {
  transform: scale(1.05);
}

/* Dog Tag Image */
.dogtag-image {
  width: 60%;
  max-width: 250px;
  height: auto;
}

/* 📅 Date Input Centering */
.date-container {
  text-align: center;
  margin-top: 10px;
}

.date-container label {
  display: block;
  margin-bottom: 5px;
  text-align: center;
}

.date-container input[type="date"] {
  display: block;
  margin: 0 auto;
  max-width: 150px;
  text-align: center;
}

/* 🖋️ Section Heading */
#pets h2 {
  text-align: center;
  font-size: 2rem;
  color: #020202;
  font-family: 'Dancing Script', cursive;
  margin-bottom: 1rem;
}

/* Pet Item Card */
.pet-item {
  background-color: #fffaf5;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertical centering */
  align-items: center;     /* horizontal centering */
  min-height: 400px;       /* consistent height */
  position: relative;
}


/* Farm Lead Gallery */
.thumbnail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns */
  gap: 10px; /* spacing between thumbnails */
  margin-top: 10px;
}

.thumbnail {
  width: 100%;
  max-width: 120px;   /* keeps thumbnails tidy */
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.thumbnail:hover {
  transform: scale(1.05);
}

/* Ensure all pet product images are the same size */
.pet-item img {
  width: 100%;
  max-width: 200px;   /* keeps them tidy and consistent */
  height: 160px;      /* fixed height for uniformity */
  object-fit: contain; /* ensures the whole image fits without cropping */
  display: block;
  margin: 0 auto 10px;
}

.engraving-container {
  margin-top: 15px;      /* adds breathing room above */
  padding: 10px;         /* subtle spacing inside */
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.engraving-field {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 300px;
}

.engraving-field label {
  margin-bottom: 5px;
  font-weight: bold;
  text-align: center;
}

.engraving-field input {
  width: 100%;
  padding: 6px;
  border: 1px solid #ccc;
  border-radius: 4px;
  text-align: center;
}



/* ✍️ Customize Section Heading */
#customize h2 {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: #2c1e1e;
  font-family: 'Dancing Script', cursive;
  margin-bottom: 1.2rem;
  letter-spacing: 0.5px;
}

/* 📝 Customize Intro Paragraph */
#customize p {
  text-align: center;
  font-family: 'Quicksand', sans-serif;
  font-size: 1.1rem;
  margin: 0 auto 2rem;
  max-width: 700px;
  color: #444;
  line-height: 1.6;
}




/* 💌 Contact Section Heading */
#contact h2 {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: #2c1e1e;
  font-family: 'Dancing Script', cursive;
  margin-bottom: 1.2rem;
  letter-spacing: 0.5px;
}

/* 📝 Contact Intro Paragraph */
#contact p {
  text-align: center;
  font-family: 'Quicksand', sans-serif;
  font-size: 1.1rem;
  margin: 0 auto 2rem;
  max-width: 700px;
  color: #444;
  line-height: 1.6;
}




/* 🧶 About Us */
.about-us {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background-color: #fffaf5;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  line-height: 1.6;
  color: #040404; /* Ensures all default text is black */
  font-family: 'Quicksand', sans-serif;
}

/* 🖋️ Section Heading */
.about-us h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #040404;
  font-family: 'Dancing Script', cursive;
}

/* 📝 Paragraph Styling */
.about-us p {
  color: #040404;
  font-family: 'Quicksand', sans-serif;
  margin-bottom: 1rem;
}

/* 🎨 Visuals Section */
.about-visuals {
  text-align: center;
  margin-top: 30px;
}

.about-visuals img {
  width: 75%;
  max-width: 200px;
  border-radius: 12px;
  margin-bottom: 10px;
}

/* 💬 Quote Styling */
.about-visuals blockquote {
  font-style: italic;
  color: #040404;
  font-size: 0.9rem;
  margin: 0 auto;
  max-width: 300px;
  font-family: 'Quicksand', sans-serif;
}



.featured-image {
  text-align: center;
  margin: 2rem auto;
}

.featured-image img {
  width: 100%;
  max-width: 900px;
  height: auto;
  border: 8px solid #f2d9e6; /* soft pink border */
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  display: block;
  margin: 0 auto;
  padding: 0; /* 🔥 remove internal spacing */
  box-sizing: border-box; /* ensures border is included in width */
}



/* 🛒 Cart Item Layout */
.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 10px 0;
  padding: 10px 12px;
  border-bottom: 1px solid #eee;
  background-color: #fffaf5;
  border-radius: 8px;
  font-family: 'Quicksand', sans-serif;
}

/* 🖼️ Thumbnail Preview */
.cart-thumb {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

/* 🏷️ Bundle Badge */
.bundle-badge {
  background-color: #0d0c0c;
  color: white;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 8px;
  font-weight: bold;
  letter-spacing: 0.5px;
}

/* 🗑️ Trash Icon 
.trash-icon {
  margin-left: 10px;
  cursor: pointer;
  font-size: 1rem;
  color: #d63384;
  transition: color 0.3s ease;
}

.trash-icon:hover {
  color: #a0005c;
} */


/* 🧹 Remove Button */
.remove-button {
  display: block;
  margin-top: 8px;
  background-color: #e88fb1;
  color: white;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  font-family: 'Quicksand', sans-serif;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.remove-button:hover {
  background-color: #d26c94;
}




/* 🔢 Quantity Controls */
.quantity-control {
  display: flex;
  align-items: center;
  background-color: #f8f1ec;
  border-radius: 6px;
  padding: 4px 8px;
}

.quantity-control span {
  margin: 0 6px;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
  color: #0d0c0c;
}

/* 🧾 Cart Total */
#total {
  font-weight: bold;
  font-size: 1.2rem;
  text-align: right;
  margin-top: 20px;
  color: #0d0c0c;
  font-family: 'Quicksand', sans-serif;
}




/* 🔍 Search Results */
.search-result {
  padding: 6px 10px;
  margin: 4px auto;
  background-color: #fff8f6;
  border-left: 2px solid #ff6f61;
  border-radius: 4px;
  text-align: center;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.85rem;
  color: #0d0c0c;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, background-color 0.2s ease;
  cursor: pointer;
}

.search-result:hover {
  transform: scale(1.02);
  background-color: #fff0ec;
}

/* 🔘 Keyboard navigation highlight */
.search-result.active {
  background-color: #ffeae5;
  border-left-color: #e85c4a;
  box-shadow: 0 0 0 2px rgba(255, 111, 97, 0.2);
}

/* ✨ Highlighted match */
.search-result strong {
  color: #d94b3e;
  font-weight: 600;
}

/* 🏷️ Category label */
.search-result .category {
  display: block;
  font-size: 0.75rem;
  color: #7a6e6e;
  margin-top: 2px;
}


/*Loyalty Sign up*/
.loyalty-signup {
  text-align: center;
  margin-top: 2rem;
  padding: 1rem;
  background-color: #f9f5f2;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.loyalty-signup input[type="email"] {
  padding: 0.5rem;
  width: 60%;
  max-width: 300px;
  margin-bottom: 0.5rem;
}

.loyalty-signup button {
  padding: 0.5rem 1rem;
  background-color: #a0522d;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}



/* Confirmation Page */
.confirmation {
  text-align: center;
  padding: 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.order-summary {
  background-color: #fff8f9;
  border: 2px solid #f2d9e6;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.button {
  display: inline-block;
  background-color: #e88fb1;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #d26c94;
}





/* 🎉 Promo Box */
.promo-box {
  background-color: #fff0f5;
  border: 2px dashed #d63384;
  padding: 20px;
  margin: 20px auto;
  max-width: 400px;
  border-radius: 10px;
  font-weight: bold;
  color: #d63384;
  font-family: 'Quicksand', sans-serif;
  text-align: center;
}



.social-links {
  margin: 20px 0;
  font-size: 1rem;
  font-family: 'Quicksand', sans-serif;
}

.social-links a {
  color: #d63384;
  text-decoration: none;
  margin: 0 8px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #a0005c;
}







/* 🧵 Buttons */
.button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #0d0c0c;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-family: 'Quicksand', sans-serif;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #d63384;
}






/* 🧶 Footer */
footer {
  background-color: #ffe4ec;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #555;
  font-family: 'Quicksand', sans-serif;
}

.footer-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 10px;
  overflow: hidden;
  clip-path: path("M40 16 C40 0, 0 0, 0 28 C0 50, 40 72, 40 80 C40 72, 80 50, 80 28 C80 0, 40 0, 40 16 Z");
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo img {
  width: 100%;
  height: auto;
}

/* 🧷 Social Icons */
.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin: 0.5rem auto 1rem;
}

.social-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
}


.social-icon:hover {
  transform: scale(1.1);
}





/* 🧶 About Us */
.about-us {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background-color: #fffaf5;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  line-height: 1.6;
  color: #040404;
  font-family: 'Quicksand', sans-serif;
}

.about-us h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #040404; /* ✅ changed from pink to black */
  font-family: 'Dancing Script', cursive;
}

.about-us p {
  color: #040404 !important;
  font-family: 'Quicksand', sans-serif;
  margin-bottom: 1rem;
}

.about-visuals {
  text-align: center;
  margin-top: 30px;
}

.about-visuals img {
  width: 75%;
  max-width: 200px;
  border-radius: 12px;
  margin-bottom: 10px;
}

.about-visuals blockquote {
  font-style: italic;
  color: #040404; /* ✅ changed from pink to black */
  font-size: 0.9rem;
  margin: 0 auto;
  max-width: 300px;
  font-family: 'Quicksand', sans-serif;
}



#cart label,
#cart input,
#cart select,
#cart button {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 0.5rem auto;
  font-family: inherit;
  font-size: 1rem;
}

#cart input,
#cart select {
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}




.cart-toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #333;
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 14px;
  z-index: 1000;
  animation: fadeInOut 3s ease-in-out;
}

@keyframes fadeInOut {
  0% { opacity: 0; transform: translateY(20px); }
  10% { opacity: 1; transform: translateY(0); }
  90% { opacity: 1; }
  100% { opacity: 0; transform: translateY(20px); }
}

#cart-count.updated {
  animation: pulse 0.3s ease-in-out;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
}








.stamp-view {
  display: flex;
  gap: 6px;
  margin-top: 10px;
}
.stamp {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ccc;
}
.stamp.active {
  background: #ff6f61;
}

.stamp-progress {
  display: flex;
  gap: 8px;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.stamp {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ffe0cc;
  border: 2px solid #d17c5c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #d17c5c;
  font-size: 1rem;
  transition: background 0.3s;
}

.stamp.active {
  background: #d17c5c;
  color: white;
}

.stamp.active {
  background: #d17c5c;
  color: white;
  box-shadow: 0 0 6px #d17c5c66;
}

.stamp:hover {
  transform: scale(1.1);
  cursor: default;
}

.redeem-button {
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background-color: #d17c5c;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.redeem-button:hover {
  background-color: #b85f45;
}

.stamp:hover {
  transform: scale(1.1);
  cursor: default;
}







.custom-fields {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1rem;
  gap: 0.75rem;
}

.custom-fields label {
  font-weight: bold;
  margin-top: 0.5rem;
  text-align: center;
}

.custom-fields input[type="text"],
.custom-fields select,
.custom-fields input[type="file"] {
  width: 80%;
  max-width: 400px;
  padding: 0.5rem;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
}


/*Disabled links */
.disabled-link {
  cursor: default;
  text-decoration: none;
  color: inherit;
}



/* 🛒 Cart Button Styling */
section#cart button#applyPromo,
section#cart .checkout-btn {
  margin-top: 10px;
  padding: 8px 16px;
  background-color: #0d0c0c; /* Default black */
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  font-family: 'Quicksand', sans-serif;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

/* Hover effect for cart buttons */
section#cart button#applyPromo:hover,
section#cart .checkout-btn:hover {
  background-color: #d63384; /* Pink on hover */
  transform: scale(1.02);    /* Slight zoom */
}