/* 🌼 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 */
.paypal-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}


/* 🎁 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;
}



/* 📚 Book-ish Grid */
.bookish-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 30px;
  justify-items: center;
}

/* 🖋️ Section Heading */
#bookish h2 {
  text-align: center;
  font-size: 2rem;
  color: #020202;
  font-family: 'Dancing Script', cursive;
  margin-bottom: 1rem;
}

.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;
  align-items: center;
}

/* 🖼️ Image Styling */
.bookish-item img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 10px;
}

/* 🔗 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);
}



/* 👕 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: 100%;
  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);
}







/* 💍 Jewelry Grid */
.jewelry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 30px;
  justify-items: center;
}

.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;
  align-items: center;
}

/* 🖼️ Image Styling */
.jewelry-item img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 10px;
}

/* 🔗 Link Styling */
.jewelry-item a {
  text-decoration: none;
  color: inherit;
  display: block;
  width: 100%;
}

.jewelry-item a h3 {
  font-size: 1.1rem;
  margin: 8px 0;
  font-weight: 600;
  font-family: 'Quicksand', sans-serif;
}

/* 🎨 Form Elements */
.jewelry-item select,
.jewelry-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 */
.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);
}

/* 🖋️ 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: 30px;
  justify-items: center;
}

.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;
  align-items: center;
}

/* 🖼️ Image Styling */
.pet-item img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 10px;
}

/* 🔗 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;
}

/* 🎨 Form Elements */
.pet-item select,
.pet-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 */
.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);
}



/* 🖋️ Section Heading */
#pets h2 {
  text-align: center;
  font-size: 2rem;
  color: #020202;
  font-family: 'Dancing Script', cursive;
  margin-bottom: 1rem;
}





/* ✍️ 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;
}






/* 🛒 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;
}

/* 🔢 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;
}




/* 🎉 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;
}


/* 🧶 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-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); }
}