/* styles.css - Blush Pink Feminine Minimal Aesthetic */

/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fff5f7; /* very pale pink */
  color: #6b4b54; /* muted plum */
  line-height: 1.6;
  min-height: 100vh;
  font-weight: 400;
}

/* NAVBAR */
.navbar {
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(219, 182, 192, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.9rem;
  font-weight: 700;
  color: #b86f82; /* dusty rose */
  letter-spacing: 0.05em;
  text-decoration: none;
  font-family: 'Dancing Script', cursive;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.8rem;
}

.nav-links  a {
  font-weight: 600;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  color: #a37482; /* soft mauve */
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease;
  font-size: 1rem;
  letter-spacing: 0.03em;
}

.nav-links  a:hover,
.nav-links li a.active {
  background-color: #f8c7d0; /* blush pink */
  color: #7b4a58; /* deeper mauve */
}

.menu-toggle {
  display: none;
  font-size: 2.2rem;
  cursor: pointer;
  color: #b86f82;
}

/* MOBILE STYLES */
@media (max-width: 768px) {
  .menu-toggle {
    display: block; /* show hamburger on mobile */
  }

  .nav-links {
    position: absolute;
    top: 60px; /* adjust if navbar height changes */
    right: 1.5rem;
    background-color: #f8c7d0; /* blush pink */
    border-radius: 8px;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.5rem;
    gap: 1rem;
    display: none; /* hide menu by default */
    box-shadow: 0 4px 10px rgba(219, 182, 192, 0.5);
    width: 180px;
  }

  .nav-links.show {
    display: flex; /* show menu when toggled */
  }

  .nav-links li a {
    width: 100%;
  }
}


/* FOOTER */
footer, .footer {
  text-align: center;
  padding: 1.7rem;
  background-color: #b86f82;
  color: #fff1f6;
  font-size: 0.9rem;
  margin-top: 3rem;
  letter-spacing: 0.03em;
}

/* CONTAINERS */
.container {
  max-width: 1100px;
  margin: 3rem auto 4rem;
  padding: 0 1.5rem;
}

/* HOME / ABOUT / PRODUCT INFO SECTIONS */
.hero-section,
.about-section,
.product-info-section {
  background-color: #fff1f5; /* very light blush */
  border-radius: 14px;
  padding: 3rem 3.5rem;
  box-shadow: 0 6px 20px rgba(184,111,130,0.12);
  color: #6b4b54;
  font-weight: 400;
  text-align: center;
}

.hero-section h1,
.about-section h2,
.product-info-section h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
  color: #b86f82;
  letter-spacing: 0.04em;
  font-family: 'Dancing Script', cursive;
}

.hero-section p,
.about-section p,
.product-info-section p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #7e5c69;
}

/* Hero Section Subheading */
.hero-section h2 {
  font-family: 'Dancing Script', cursive;
  color: #b86f82;          /* dusty rose */
  font-weight: 700;
  font-size: 2.2rem;
  margin: 2rem 0 1.5rem;
  text-align: center;
  letter-spacing: 0.03em;
}

/* Package Options Container */
.package-options {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.package-options a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #7b4a58;         /* deeper mauve for text */
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.package-options a img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 4px 15px rgba(184,111,130,0.15);
  margin-bottom: 0.8rem;
}

.package-options a span {
  font-size: 1.2rem;
  font-weight: 700;
  font-family: 'Dancing Script', cursive;
}

/* Hover Effects */
.package-options a:hover {
  transform: translateY(-6px);
}

.package-options a:hover img {
  box-shadow: 0 8px 25px rgba(184,111,130,0.25);
}

/* BUTTON PRIMARY */
.button-primary {
  display: inline-block;
  background-color: #f8c7d0;
  color: #7b4a58;
  font-weight: 700;
  padding: 1rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.25rem;
  box-shadow: 0 6px 15px rgba(248,199,208,0.5);
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-top: 1.8rem;
  letter-spacing: 0.03em;
}

.button-primary:hover {
  background-color: #e3a5b3;
  color: #fff1f6;
  box-shadow: 0 8px 20px rgba(227,165,179,0.7);
}

/* PRODUCT INFO TABLE */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0 2.5rem;
  font-size: 1.15rem;
  box-shadow: 0 3px 12px rgba(184,111,130,0.08);
  border-radius: 12px;
  overflow: hidden;
}

.price-table th,
.price-table td {
  padding: 1rem 1.3rem;
  text-align: left;
  border-bottom: 1px solid #f5d7df;
  color: #6b4b54;
}

.price-table th {
  background-color: #f8c7d0;
  color: #7b4a58;
  font-weight: 700;
}

.price-table tr:nth-child(even) {
  background-color: #fff1f5;
}

/* SHOP PAGE */
header.shop-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.4rem;
}

header.shop-header h1 {
  font-size: 2.8rem;
  color: #b86f82;
  font-weight: 700;
  font-family: 'Dancing Script', cursive;
}

.shopping {
  position: relative;
  cursor: pointer;
  width: 42px;
  height: 42px;
}

.shopping img {
  width: 100%;
  height: auto;
  filter: hue-rotate(-20deg) saturate(150%);
}

.shopping .quantity {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: #f8c7d0;
  color: #7b4a58;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(184,111,130,0.4);
}

/* Product grid */
.list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.3rem;
}

/* Product card */
.product-item {
  background-color: #fff1f5;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(184,111,130,0.12);
  padding: 1.3rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: box-shadow 0.25s ease;
}

.product-item:hover {
  box-shadow: 0 8px 30px rgba(184,111,130,0.25);
}

/* Image styling */
.product-item img {
  width: 100%;
  max-height: 170px;       /* limits max height */
  object-fit: contain;     /* shows full image without cropping */
  border-radius: 12px;
  margin-bottom: 1.2rem;
}

/* Product title */
.product-item h3 {
  font-size: 1.5rem;
  color: #b86f82;
  margin-bottom: 0.6rem;
  font-weight: 700;
  font-family: 'Dancing Script', cursive;
}

/* Product description (optional) */
.product-item p {
  font-size: 1rem;
  color: #8e6673;
  flex-grow: 1;
  margin-bottom: 1rem;
}

/* Price styling */
.product-item .price {
  font-weight: 700;
  font-size: 1.15rem;
  color: #d05e7e; /* deeper blush */
  margin-bottom: 1rem;
}

/* Add to cart button */
.product-item button {
  background-color: #f8c7d0;
  color: #7b4a58;
  border: none;
  padding: 0.75rem 1.7rem;
  border-radius: 40px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
  transition: background-color 0.3s ease;
  letter-spacing: 0.02em;
}

.product-item button:hover {
  background-color: #d894a4;
  color: #fff1f6;
  box-shadow: 0 4px 15px rgba(216,148,164,0.5);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .list {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.8rem;
  }

  .product-item img {
    max-height: 140px;
  }

  .product-item h3 {
    font-size: 1.3rem;
  }

  .product-item .price {
    font-size: 1.05rem;
  }
}

@media (max-width: 480px) {
  .list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .product-item img {
    max-height: 130px;
  }

  .product-item h3 {
    font-size: 1.2rem;
  }

  .product-item button {
    font-size: 1rem;
    padding: 0.65rem 1.3rem;
  }
}

/* CART SIDEBAR */
.card {
  position: fixed;
  right: 0;
  top: 0;
  width: 340px;
  height: 100vh;
  background-color: #fff5f7;
  box-shadow: -4px 0 20px rgba(184,111,130,0.18);
  padding: 2rem 2rem 2.5rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  border-left: 3px solid #f8c7d0;
}

.card.open {
  transform: translateX(0);
}

.card h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #b86f82;
  margin-bottom: 1.3rem;
  text-align: center;
  font-family: 'Dancing Script', cursive;
}

.closeshopping {
  position: absolute;
  top: 15px;
  right: 18px;
  font-size: 2.8rem;
  font-weight: 700;
  color: #d894a4;
  cursor: pointer;
  user-select: none;
  transition: color 0.3s ease;
}

.closeshopping:hover {
  color: #b86f82;
}

/* Cart Items List */
.listCard {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
  overflow-y: auto;
}

/* Checkout Section */
.checkOut {
  border-top: 2px solid #f8c7d0;
  padding-top: 1.2rem;
  margin-top: 1.2rem;
  text-align: center;
}

.total {
  font-weight: 700;
  font-size: 1.5rem;
  color: #b86f82;
  margin-bottom: 1rem;
}

.checkout-btn {
  background-color: #f8c7d0;
  color: #7b4a58;
  padding: 0.9rem 2.7rem;
  font-weight: 700;
  border-radius: 40px;
  text-decoration: none;
  font-size: 1.15rem;
  display: inline-block;
  box-shadow: 0 7px 15px rgba(248,199,208,0.45);
  transition: background-color 0.3s ease;
}

.checkout-btn:hover {
  background-color: #d894a4;
  color: #fff1f6;
  box-shadow: 0 9px 20px rgba(216,148,164,0.6);
}

/* CHECKOUT PAGE - Shipping Options */
.shipping-container {
  max-width: 620px;
  margin: 2.5rem auto 3.5rem;
  background-color: #fff1f5;
  border-radius: 14px;
  padding: 2rem 2.5rem;
  box-shadow: 0 6px 20px rgba(184,111,130,0.12);
  color: #6b4b54;
  text-align: center;
}

.shipping-options {
  display: flex;
  gap: 2.3rem;
  justify-content: center;
  margin-top: 1.4rem;
}

.shipping-options label {
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
  color: #9b6f83;
}

.shipping-options input[type="radio"] {
  margin-right: 0.65rem;
}

/* CHECKOUT FORM */
.checkout-form-section {
  max-width: 620px;
  margin: 0 auto 4.5rem;
  background-color: #fff1f5;
  padding: 2.7rem 3.2rem;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(184,111,130,0.12);
  color: #6b4b54;
  font-weight: 400;
  text-align: left;
}

.checkout-form-section h2 {
  font-weight: 700;
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: #b86f82;
  text-align: center;
  font-family: 'Dancing Script', cursive;
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
  color: #9b6f83;
  letter-spacing: 0.02em;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  padding: 0.8rem 1.2rem;
  border: 2px solid #f8c7d0;
  border-radius: 12px;
  font-size: 1rem;
  margin-bottom: 1.8rem;
  font-family: inherit;
  resize: vertical;
  color: #7b4a58;
  background-color: #fff5f7;
  transition: border-color 0.3s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form textarea:focus {
  border-color: #d894a4;
  outline: none;
}

.contact-form textarea {
  min-height: 130px;
}

.contact-form button {
  display: block;
  background-color: #f8c7d0;
  color: #7b4a58;
  font-weight: 700;
  font-size: 1.25rem;
  padding: 1rem 3.3rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  margin: 0 auto;
  box-shadow: 0 7px 18px rgba(248,199,208,0.45);
  transition: background-color 0.3s ease;
  letter-spacing: 0.04em;
}

.contact-form button:hover {
  background-color: #d894a4;
  color: #fff1f6;
  box-shadow: 0 9px 25px rgba(216,148,164,0.6);
}

/* PAYMENT INSTRUCTIONS */
.payment-instructions {
  max-width: 620px;
  margin: 0 auto 4.5rem;
  background-color: #fff1f5;
  padding: 2.5rem 3rem;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(184,111,130,0.12);
  color: #6b4b54;
  text-align: center;
}

.payment-instructions h3 {
  font-weight: 700;
  font-size: 1.9rem;
  margin-bottom: 1.8rem;
  color: #b86f82;
  font-family: 'Dancing Script', cursive;
}

.payment-instructions ul {
  list-style-type: disc;
  padding-left: 1.6rem;
  margin-bottom: 1.8rem;
  font-size: 1.15rem;
  color: #8e6673;
  text-align: left;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.payment-instructions p {
  font-size: 1.15rem;
  margin-bottom: 1.1rem;
  color: #8e6673;
}

.btn-payment {
  display: inline-block;
  background-color: #f8c7d0;
  color: #7b4a58;
  font-weight: 700;
  padding: 1.1rem 3.3rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.25rem;
  box-shadow: 0 7px 18px rgba(248,199,208,0.45);
  transition: background-color 0.3s ease;
  text-align: center;
  margin: 0 auto;
  display: block;
  width: max-content;
}

.btn-payment:hover {
  background-color: #d894a4;
  color: #fff1f6;
  box-shadow: 0 9px 25px rgba(216,148,164,0.6);
}

/* THANK YOU PAGE */
.thank-you-section {
  max-width: 520px;
  margin: 7rem auto;
  background-color: #fff1f5;
  padding: 3.5rem 3rem;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(184,111,130,0.18);
  text-align: center;
  color: #6b4b54;
  font-weight: 400;
}

.thank-you-section h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
  color: #b86f82;
  font-family: 'Dancing Script', cursive;
}

.thank-you-section p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  color: #8e6673;
}

.thank-you-section a {
  display: inline-block;
  background-color: #f8c7d0;
  color: #7b4a58;
  padding: 1.2rem 3.6rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.3rem;
  box-shadow: 0 8px 24px rgba(248,199,208,0.5);
  transition: background-color 0.3s ease;
  letter-spacing: 0.03em;
}

.thank-you-section a:hover {
  background-color: #d894a4;
  color: #fff1f6;
  box-shadow: 0 10px 30px rgba(216,148,164,0.6);
}

/* CONTACT PAGE */
.contact-form-section {
  max-width: 620px;
  margin: 5rem auto 4rem;
  background-color: #fff1f5;
  padding: 3rem 3.2rem;
  border-radius: 18px;
  box-shadow: 0 6px 20px rgba(184,111,130,0.15);
  text-align: center;
  color: #6b4b54;
}

.contact-form-section h1 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-form-section p {
  font-size: 1.1rem;
  margin-bottom: 2.2rem;
  color: #7e5c69;
}

.contact-form-section p:last-child {
  margin-top: 3rem;
}

.cta-button {
  background-color: #f8c7d0;
  color: white;
  border: none;
  padding: 1rem 3rem;
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 6px 12px rgba(140,110,75,0.3);
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #d894a4;
}

/* FORM FOCUS */
input:focus,
textarea:focus,
select:focus {
  outline: 3px solid #d894a4;
  outline-offset: 2px;
}

/* MEDIA QUERIES - RESPONSIVE */

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    right: 1.3rem;
    top: 58px;
    width: 200px;
    border: 1px solid #f1d9df;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(184,111,130,0.3);
    padding: 1rem 0;
    z-index: 1000;
  }
  
  .nav-links.open {
    display: flex;
  }
  
  .menu-toggle {
    display: block;
  }

  .list {
    grid-template-columns: 1fr 1fr;
  }

  .container {
    margin: 2rem auto;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .list {
    grid-template-columns: 1fr;
  }
  
  .nav-container {
    padding: 0.8rem 1rem;
  }

  .thank-you-section,
  .checkout-form-section,
  .payment-instructions,
  .contact-form-section,
  .shipping-container {
    margin: 3rem 1rem 4rem;
    padding: 2rem 1.5rem;
  }
}
/* Order Summary Section */
.order-summary {
  background-color: #fff1f5; /* light blush background */
  border-radius: 14px;
  padding: 1.8rem 2rem;
  box-shadow: 0 4px 15px rgba(184, 111, 130, 0.12);
  max-width: 480px;
  margin: 2rem auto;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #6b4b54;
}

.order-summary h2 {
  font-family: 'Dancing Script', cursive;
  color: #b86f82;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 1.2rem;
  text-align: center;
}

/* Order Items Container */
#orderItems {
  max-height: 300px;
  overflow-y: auto;
  padding-right: 0.5rem;
}

/* Individual order item */
.order-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f8c7d0; /* blush pink */
  border-radius: 10px;
  padding: 0.75rem 1rem;
  margin-bottom: 0.9rem;
  box-shadow: 0 2px 8px rgba(184,111,130,0.15);
  font-weight: 600;
  font-size: 1.1rem;
  color: #7b4a58;
}

.order-item .item-info {
  flex-grow: 1;
}

.order-item .item-name {
  font-weight: 700;
  font-family: 'Dancing Script', cursive;
  font-size: 1.2rem;
}

.order-item .item-quantity {
  font-style: italic;
  font-size: 0.9rem;
  color: #a37482;
  margin-top: 0.2rem;
}

.order-item .item-price {
  font-weight: 700;
  color: #d05e7e;
  min-width: 70px;
  text-align: right;
}
.listCard li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid #f5d7df;
  gap: 10px;
}

.listCard li img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
}

.listCard li > div {
  flex-grow: 1;
  color: #7b4a58;
  font-weight: 600;
  font-size: 1rem;
}

.listCard li > div:nth-child(3) { /* Price div */
  flex-grow: 0;
  width: 70px;
  text-align: right;
}

.listCard li > div:nth-child(4) { /* Quantity controls div */
  flex-grow: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.listCard button.btn-decrease,
.listCard button.btn-increase {
  background-color: #f8c7d0;
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  cursor: pointer;
  font-weight: 700;
  color: #7b4a58;
  font-size: 1.2rem;
  line-height: 1;
  transition: background-color 0.3s ease;
}

.listCard button.btn-decrease:hover,
.listCard button.btn-increase:hover {
  background-color: #d894a4;
  color: #fff1f6;
}

/* Success Message Container */
#successMessage {
  max-width: 500px;
  margin: 60px auto;
  padding: 30px;
  background-color: #fdecef; /* soft blush pink */
  border: 2px solid #f7c6d0; /* soft pink border */
  border-radius: 15px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  color: #5a2a2a; /* deep rose-brown text */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

/* Heading Style */
#successMessage h3 {
  font-size: 1.8em;
  color: #b84a62; /* rose pink */
  margin-bottom: 15px;
}

/* Paragraph Style */
#successMessage p {
  font-size: 1.1em;
  margin-bottom: 10px;
}

/* Links Container */
#successMessage .links {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* Buttons/Links Style */
#successMessage .links a {
  background-color: #f7c6d0; /* pastel pink */
  color: #5a2a2a;
  padding: 10px 18px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.2s ease;
}

/* Hover Effect */
#successMessage .links a:hover {
  background-color: #f5a8b8; /* deeper pink */
  color: white;
  transform: scale(1.05);
}


