/* ====== IMPORTS ====== */
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Merriweather:ital,wght@0,300;0,700;1,400&display=swap");

/* ====== ROOT VARIABLES ====== */
:root {
  /* YOUR PALETTE */
  --bg-off-white: #f9f9f7;
  --text-grey: #4a4a4a;
  --text-dark: #2d2d2d;
  --primary-lilac: #dcd0ff;
  --accent-pink: #fadadd;
  --pure-white: #ffffff;

  /* FONTS */
  --font-serif: "Merriweather", serif;
  --font-sans: "Lato", sans-serif;

  /* SPACING / EFFECTS */
  --border-radius: 12px;
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* ====== RESET / BASE ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-off-white);
  color: var(--text-grey);
  font-family: var(--font-sans);
  line-height: 1.6;
  padding-bottom: 80px;
}

h1,
h2,
h3 {
  font-family: var(--font-serif);
  color: var(--text-dark);
  font-weight: 300;
}

/* ====== UTILITIES ====== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn-primary {
  background-color: var(--text-grey);
  color: var(--pure-white);
  padding: 12px 24px;
  border: none;
  border-radius: 30px;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-lilac);
  color: var(--text-dark);
}

/* ====== NAVIGATION (Mobile + Desktop) ====== */
/* Mobile bottom app-style nav */
.mobile-bottom-nav {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
  border-radius: 40px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 20px;
  z-index: 1000;
}

.nav-item {
  color: var(--text-grey);
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

/* The pill/active animation for mobile nav */
.nav-item.active .icon-pill {
  background-color: var(--primary-lilac);
  color: var(--text-dark);
  padding: 8px 20px;
  border-radius: 20px;
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.9rem;
  font-family: var(--font-sans);
  font-weight: bold;
}

.nav-item span {
  display: none;
}
.nav-item.active span {
  display: block;
}

/* Desktop header layout */
.desktop-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background-color: var(--bg-off-white);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.brand-name {
  font-family: var(--font-serif);
  color: var(--text-dark);
  font-size: 1.5rem;
}

.nav-center a {
  text-decoration: none;
  color: var(--text-grey);
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 30px;
  transition: all 0.4s ease;
  background-color: transparent;
}

.nav-center a:hover,
.nav-center a.active {
  background-color: var(--primary-lilac);
  color: var(--text-dark);
  box-shadow: 0 5px 15px rgba(220, 208, 255, 0.4);
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .mobile-bottom-nav {
    display: none;
  }
  .desktop-nav {
    display: block;
    padding: 20px 0;
  }

  .flex-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .desktop-nav nav a {
    margin: 0 15px;
    text-decoration: none;
    color: var(--text-grey);
    font-family: var(--font-serif);
  }
}

/* ====== MARQUEE / ANNOUNCEMENTS ====== */
.marquee-container {
  background-color: var(--primary-lilac);
  color: var(--text-dark);
  padding: 8px 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: 0.8rem;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.marquee-content {
  display: inline-block;
  animation: marquee 20s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ====== HERO (Split) ====== */
.hero-split {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 60px 20px;
  min-height: 80vh;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.hero-text .subtitle {
  color: var(--accent-pink);
  font-weight: bold;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.hero-image {
  flex: 1;
  height: 500px;
  background-color: #e0e0e0;
  border-radius: 200px 200px 0 0;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ====== VALUES STRIP ====== */
.values-strip {
  background-color: white;
  padding: 50px 0;
  text-align: center;
}
.values-strip i {
  font-size: 2rem;
  color: var(--primary-lilac);
  margin-bottom: 15px;
}

/* ====== COLLECTION / GRID LAYOUT ====== */
.collection-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 250px 250px;
  gap: 20px;
  margin-top: 30px;
}

.collection-card {
  position: relative;
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--text-dark);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s;
}

.collection-card:hover {
  transform: translateY(-5px);
}

.big-card {
  grid-row: 1 / -1;
}
.card-image {
  height: 60%;
  background-color: #ddd;
}
.big-card .card-image {
  height: 75%;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card-text {
  padding: 20px;
}

/* ====== COLLECTION SECTION HEADERS ====== */
.collection-separator {
  padding-top: 40px;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
}

.collection-separator h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--text-dark);
  display: inline-block;
  position: relative;
  background-color: var(--bg-off-white);
  padding: 0 20px;
  z-index: 2;
}

.collection-separator::after {
  content: "";
  position: absolute;
  top: 60%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--primary-lilac);
  z-index: 1;
}

@media (max-width: 768px) {
  .collection-separator h3 {
    font-size: 1.4rem;
  }
}

/* ====== SITE FOOTER ====== */
.site-footer {
  background-color: #fff;
  border-top: 1px solid #eee;
  padding: 60px 0 100px 0;
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-col h4 {
  font-family: var(--font-serif);
  color: var(--primary-lilac);
  margin-bottom: 20px;
  font-size: 1.1rem;
  text-decoration: underline;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 12px;
}
.footer-col a {
  text-decoration: none;
  color: var(--text-grey);
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-col a:hover {
  color: var(--primary-lilac);
}
.newsletter-col input {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  width: 100%;
  margin-bottom: 10px;
}
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 0.8rem;
  color: #aaa;
}

.footer-bottom p {
  font-family: var(--font-serif);
  color: var(--text-dark);
}

/* Newsletter / VIP Section Styling */
.newsletter-col h4 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--primary-lilac);
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.newsletter-col p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* The Form Layout */
.newsletter-col form {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* The Input Field (Sleek Pill Shape) */
.newsletter-col input {
  flex: 1;
  padding: 12px 20px;
  border: 1px solid #ccc;
  border-radius: 30px;
  background-color: #f9f9f7;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-dark);
  outline: none;
  transition: all 0.3s ease;
}

/* Input Focus State (Glow Effect) */
.newsletter-col input:focus {
  border-color: var(--primary-lilac);
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(220, 208, 255, 0.2);
}

/* The Button (Solid Contrast) */
.newsletter-col button {
  padding: 12px 25px;
  background-color: var(--text-dark);
  color: #fff;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

/* Button Hover State */
.newsletter-col button:hover {
  background-color: var(--primary-lilac);
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Mobile Tweaks */
@media (max-width: 768px) {
  .newsletter-col form {
    flex-direction: column;
    width: 100%;
  }

  .newsletter-col input,
  .newsletter-col button {
    width: 100%;
  }
}

/* ====== PRODUCT PAGE & GALLERY ====== */
.product-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding-top: 40px;
  padding-bottom: 80px;
}

.main-image {
  background-color: #f0f0f0;
  border-radius: var(--border-radius);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  margin-bottom: 20px;
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumbnail-grid {
  display: flex;
  gap: 10px;
}

.thumb {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.6;
  transition: 0.3s;
}

.thumb.active,
.thumb:hover {
  opacity: 1;
  border: 2px solid var(--primary-lilac);
}

/* ====== PRODUCT GRID (Catalog) ====== */
.page-header {
  text-align: center;
  padding: 40px 20px;
}
.page-header h2 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--text-dark);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.product-card {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid #eee;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}

.card-img {
  height: 300px;
  position: relative;
  overflow: hidden;
  background-color: #eee;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay-btn {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-dark);
  text-align: center;
  padding: 12px;
  font-weight: bold;
  transition: bottom 0.3s;
}
.product-card:hover .overlay-btn {
  bottom: 0;
}

.card-info {
  padding: 20px;
  text-align: center;
}
.card-info h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}
.price {
  color: var(--text-grey);
  font-weight: 300;
  font-size: 1.1rem;
}

/* ====== MODAL / QUICK VIEW ====== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-content {
  background: var(--bg-off-white);
  width: 95%;
  max-width: 1000px;
  height: 600px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.modal-grid {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 0;
  width: 100%;
  height: 100%;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 20;
  color: var(--text-dark);
}

.modal-image {
  background: #eee;
  height: 100%;
  width: 100%;
  position: relative;
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.modal-details {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
  background-color: var(--bg-off-white);
  color: var(--text-dark);
  z-index: 10;
}

.modal-details h2 {
  font-family: var(--font-serif);
  margin-bottom: 10px;
  font-size: 2rem;
}

.modal-price {
  color: var(--primary-lilac);
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

/* FORM ELEMENTS */
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}
.form-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.color-options {
  display: flex;
  gap: 10px;
}
.color-swatch {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid #ccc;
  cursor: pointer;
}
.color-swatch.active {
  border: 2px solid var(--text-dark);
  transform: scale(1.1);
}

.add-to-cart-btn {
  width: 100%;
  padding: 15px;
  background-color: var(--text-dark);
  color: white;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 20px;
}
.add-to-cart-btn:hover {
  background-color: var(--primary-lilac);
  color: var(--text-dark);
}

/* ===========================
   ABOUT PAGE STYLES 
   =========================== */

/* 1. The Split Story Section */
.about-split {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-top: 60px;
  margin-bottom: 120px;
}

.about-text {
  flex: 1;
}

.about-text h3 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: var(--text-dark);
}

.about-text p {
  margin-bottom: 25px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
}

.about-image {
  flex: 1;
  height: 500px;
  background-color: #ddd;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 2. The Philosophy Banner */
.philosophy-banner {
  background-color: var(--primary-lilac);
  padding: 100px 20px;
  text-align: center;
  margin-bottom: 120px;
  width: 100%;
}

.philosophy-banner i {
  font-size: 3rem;
  color: var(--text-dark);
  opacity: 0.3;
  margin-bottom: 30px;
  display: block;
}

.philosophy-banner h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--text-dark);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.philosophy-banner p {
  max-width: 700px;
  margin: 0 auto;
  font-weight: 500;
  font-size: 1.1rem;
}

/* 3. The Core Values Section */
.values-section {
  margin-bottom: 120px;
}

/* Centering the Title */
.section-title {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px auto;
}

.section-title h3 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

/* THE 2-COLUMN GRID */
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.value-card {
  background: white;
  padding: 40px;
  border-radius: var(--border-radius);
  text-align: center;
  border: 1px solid #eee;
  transition: transform 0.3s;
  box-shadow: var(--shadow-soft);
}

.value-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-lilac);
}

.icon-box {
  width: 70px;
  height: 70px;
  background-color: var(--bg-off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px auto;
  color: var(--text-dark);
  font-size: 1.8rem;
}

.value-card h4 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.value-card p {
  font-size: 1rem;
  color: #777;
  line-height: 1.6;
}

/* 4. Bottom CTA */
.about-cta {
  text-align: center;
  margin-bottom: 100px;
  padding: 80px;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid #eee;
}

.about-cta h2 {
  margin-bottom: 30px;
  font-size: 2.5rem;
}

/* ===========================
   LUXURY CART STYLES
   =========================== */

.cart-header {
  text-align: center;
  padding: 40px 0;
  margin-bottom: 20px;
}

.cart-header h2 {
  font-size: 2.5rem;
  font-family: var(--font-serif);
  margin-bottom: 10px;
}

.cart-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  padding-bottom: 100px;
  align-items: start;
}

/* --- LEFT COLUMN: ITEMS --- */
.cart-item {
  display: flex;
  background: white;
  border-radius: var(--border-radius);
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease;
  border: 1px solid transparent;
  position: relative;
  align-items: center;
}

.cart-item:hover {
  transform: translateY(-3px);
  border-color: var(--primary-lilac);
}

.cart-img {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
  margin-right: 25px;
  background-color: #f4f4f4;
}

.cart-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-details {
  flex: 1;
}

.cart-details h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.cart-price {
  font-weight: bold;
  color: var(--text-grey);
  margin-bottom: 10px;
}

/* The "Tag" styling for customizations */
.cart-specs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.spec-tag {
  background-color: var(--bg-off-white);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  color: #666;
  border: 1px solid #eee;
}

.remove-btn {
  background: transparent;
  border: none;
  color: #ff6b6b;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: 0.3s;
  font-weight: 600;
}

.remove-btn:hover {
  color: #d63031;
  text-decoration: underline;
}

/* --- RIGHT COLUMN: SUMMARY (Sticky Receipt) --- */
.cart-summary-column {
  position: sticky;
  top: 120px;
}

.summary-card {
  background: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #eee;
}

.summary-card h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--bg-off-white);
  padding-bottom: 15px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  color: #666;
  font-size: 0.95rem;
}

.divider {
  height: 1px;
  background-color: #eee;
  margin: 20px 0;
}

.summary-row.total {
  color: var(--text-dark);
  font-size: 1.4rem;
  font-weight: bold;
  font-family: var(--font-serif);
}

.checkout-btn {
  width: 100%;
  background-color: var(--text-dark);
  color: white;
  padding: 16px;
  border-radius: 30px;
  border: none;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.checkout-btn:hover {
  background-color: var(--primary-lilac);
  color: var(--text-dark);
  transform: translateY(-2px);
}

.payment-icons {
  margin-top: 20px;
  text-align: center;
  color: #ccc;
  font-size: 2rem;
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* --- EMPTY STATE --- */
.empty-state {
  text-align: center;
  padding: 80px 0;
  grid-column: 1 / -1;
}

.empty-state i {
  font-size: 4rem;
  color: var(--primary-lilac);
  margin-bottom: 20px;
  opacity: 0.5;
}

.empty-state h3 {
  margin-bottom: 10px;
}

/* ===========================
   CHECKOUT FORM STYLES
   =========================== */

/* Reuse modal styles but limit width */
.checkout-content {
  max-width: 600px;
  display: block;
  height: auto;
  max-height: 90vh;
  overflow-y: auto;
}

.checkout-container {
  padding: 40px;
}

.checkout-container h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.checkout-container p {
  color: #666;
  margin-bottom: 30px;
}

/* 2-Column Layout for inputs */
.form-row {
  display: flex;
  gap: 20px;
}

.form-row .form-group {
  flex: 1;
}

/* Footer Section */
.checkout-footer {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.final-total {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--text-dark);
}

.pay-btn {
  background-color: #2d2d2d;
  padding: 12px 30px;
}

/* ===========================
   CONTACT PAGE STYLES
   =========================== */

.contact-section {
  padding-bottom: 100px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  margin-top: 40px;
  align-items: start;
}

/* Left Column: Info */
.contact-info h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.contact-info p {
  color: #666;
  margin-bottom: 40px;
  line-height: 1.6;
}

.direct-channels {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.channel-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.channel-item i {
  width: 50px;
  height: 50px;
  background-color: white;
  border: 1px solid #eee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-lilac);
  font-size: 1.2rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s;
}

.channel-item:hover i {
  transform: scale(1.1);
  background-color: var(--primary-lilac);
  color: var(--text-dark);
}

.channel-item h4 {
  font-size: 1rem;
  margin-bottom: 3px;
}

.channel-item a {
  text-decoration: none;
  color: #666;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.channel-item a:hover {
  color: var(--text-dark);
  text-decoration: underline;
}

/* Right Column: Form */
.contact-form-wrapper {
  background: white;
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid #eee;
}

/* Textarea specific styling */
textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 1rem;
  background: #fff;
  transition: 0.3s;
  resize: vertical;
}

textarea:focus {
  outline: none;
  border-color: var(--primary-lilac);
  box-shadow: 0 0 0 4px rgba(220, 208, 255, 0.2);
}

/* ===========================
   SHIPPING & RETURNS STYLES
   =========================== */

.production-banner {
  background-color: var(--primary-lilac);
  color: var(--text-dark);
  padding: 40px;
  border-radius: var(--border-radius);
  text-align: center;
  margin-bottom: 60px;
  box-shadow: var(--shadow-soft);
}

.production-banner i {
  font-size: 2rem;
  margin-bottom: 15px;
  display: block;
}

.production-banner h3 {
  margin-bottom: 10px;
}

.section-heading {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: var(--text-dark);
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

/* Decorative underline for headings */
.section-heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--accent-pink);
  margin: 10px auto 0;
}

/* Policy Grid (Pudo/Paxi) */
.policy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
}

.policy-card {
  background-color: #fff0f5;
  border: 1px solid var(--primary-lilac);
  padding: 40px;
  border-radius: var(--border-radius);
  text-align: center;
  transition: transform 0.3s;
}

.policy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(220, 208, 255, 0.3);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  color: var(--text-dark);
  font-size: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.policy-list {
  text-align: left;
  margin-top: 20px;
  list-style: none;
}

.policy-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  color: #555;
}

.policy-list li::before {
  content: "•";
  color: var(--accent-pink);
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

/* Returns Section */
.returns-section {
  padding-bottom: 100px;
}

.returns-layout {
  background: white;
  border-left: 5px solid var(--accent-pink);
  padding: 40px;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  box-shadow: var(--shadow-soft);
}

.returns-text h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.returns-text p {
  margin-bottom: 20px;
  color: #666;
  line-height: 1.6;
}

.contact-btn {
  display: inline-block;
  margin-top: 20px;
  background-color: var(--text-dark);
}

.contact-btn:hover {
  background-color: var(--accent-pink);
  color: var(--text-dark);
}

/* ===========================
   HOW TO ORDER STYLES
   =========================== */

.steps-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 100px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.step-card {
  display: flex;
  gap: 30px;
  background: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid #eee;
  transition: transform 0.3s;
  align-items: flex-start;
}

.step-card:hover {
  transform: translateX(10px);
  border-color: var(--primary-lilac);
}

.highlight-step {
  border-left: 5px solid var(--primary-lilac);
  background-color: #fffcfd; /* Very faint pink */
}

.step-number {
  font-size: 2.5rem;
  font-family: var(--font-serif);
  color: var(--primary-lilac);
  font-weight: bold;
  line-height: 1;
  opacity: 0.8;
}

.step-content h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.step-content p {
  color: #666;
  line-height: 1.6;
}

.warning-box {
  margin-top: 15px;
  background-color: #fff0f0;
  color: #d63031;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 0.9rem;
  display: flex;
  gap: 10px;
  align-items: center;
}

.step-list {
  margin-top: 10px;
  padding-left: 20px;
  color: #666;
}

.step-list li {
  margin-bottom: 5px;
}

/* ===========================
   FORM STYLING (Dropdown)
   =========================== */
select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: white;
  font-family: var(--font-sans);
  font-size: 1rem;
  cursor: pointer;
}

select:focus {
  outline: none;
  border-color: var(--primary-lilac);
}

/* =========================================
   SHOP PAGE "GLOW UP" 
   ========================================= */

.product-card {
  background: #ffffff;
  border: none;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(220, 208, 255, 0.25);
}

.card-img {
  height: 320px;
  background-color: #f4f4f4;
  overflow: hidden;
  position: relative;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .card-img img {
  transform: scale(1.08);
}

.overlay-btn {
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-dark);
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  padding: 15px;
  bottom: -60px;
  transition: bottom 0.3s ease;
}

.product-card:hover .overlay-btn {
  bottom: 0;
}

.card-info {
  padding: 25px;
  text-align: center;
  background: white;
}

.card-info h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-weight: 600;
}

.price {
  font-family: var(--font-sans);
  color: #888;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .card-img {
    height: 250px;
  }
}

/* =========================================
   HERO BUTTONS
   ========================================= */

.hero-btns {
  display: flex !important;
  gap: 30px !important;
  align-items: center !important;
  margin-top: 40px !important;
  flex-wrap: wrap;
}

.btn-primary {
  text-decoration: none;
}

.hero-btns a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 55px !important;
  padding: 0 35px !important;
  box-sizing: border-box !important;
  font-family: var(--font-sans) !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  text-decoration: none !important;
  border-radius: 50px !important;
  transition: all 0.3s ease !important;
}

.hero-btns .btn-primary {
  background-color: var(--text-dark) !important;
  border: 1px solid var(--text-dark) !important;
  color: #ffffff !important;
}

.hero-btns .btn-primary:hover {
  background-color: var(--primary-lilac) !important;
  border-color: var(--primary-lilac) !important;
  color: var(--text-dark) !important;
  transform: translateY(-3px);
}

.hero-btns .btn-secondary {
  background-color: transparent !important;
  border: 1px solid var(--text-dark) !important;
  color: var(--text-dark) !important;
}

.hero-btns .btn-secondary:hover {
  background-color: var(--text-dark) !important;
  color: #ffffff !important;
  transform: translateY(-3px);
}

/* =========================================
   SHOP PAGE SPECIFIC BUTTONS
   ========================================= */

.view-all-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 40px;
  background-color: transparent;
  color: var(--text-dark);
  border: 1px solid var(--text-dark);
  border-radius: 50px;
  font-family: var(--font-sans);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.view-all-btn:hover {
  background-color: var(--text-dark);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.view-all-btn i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.view-all-btn:hover i {
  transform: translateX(5px);
}

/* ====== RESPONSIVE RULES (Mobile) ====== */
@media (max-width: 768px) {
  .hero-split {
    flex-direction: column-reverse;
    text-align: center;
    padding-top: 20px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }
  .hero-btns {
    justify-content: center;
  }

  .collection-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .product-page {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .action-buttons {
    position: fixed;
    bottom: 80px;
    left: 0;
    width: 100%;
    background: white;
    padding: 15px 20px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
    z-index: 900;
    margin: 0;
  }

  .add-to-cart-btn {
    width: 100%;
  }

  .desktop-nav {
    display: none;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }

  .modal-content {
    height: 85vh;
    width: 100%;
    position: absolute;
    bottom: 0;
    border-radius: 20px 20px 0 0;
  }

  .modal-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 250px auto;
  }

  .modal-image {
    height: 100%;
  }

  .modal-details {
    padding: 20px;
    justify-content: flex-start;
  }

  .about-split {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
  }

  .about-image {
    height: 300px;
    width: 100%;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .philosophy-banner {
    padding: 60px 20px;
  }

  .philosophy-banner h2 {
    font-size: 1.8rem;
  }

  .about-cta {
    padding: 40px 20px;
  }

  .cart-layout {
    grid-template-columns: 1fr;
  }

  .cart-item {
    flex-direction: row;
    padding: 15px;
  }

  .cart-img {
    width: 80px;
    height: 80px;
  }

  .summary-card {
    margin-top: 20px;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }
  .checkout-footer {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .pay-btn {
    width: 100%;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-form-wrapper {
    padding: 20px;
  }

  .form-row {
    flex-direction: column;
  }

  .policy-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .production-banner {
    padding: 30px 20px;
  }

  .step-card {
    flex-direction: column;
    gap: 10px;
  }
  .step-number {
    font-size: 2rem;
  }

  .nav-center,
  .nav-right {
    display: none;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
    gap: 20px !important;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .view-all-btn {
    width: 100%;
    margin-bottom: 20px;
  }

  .modal-content {
    height: 85vh !important;
    bottom: 0 !important;
    border-radius: 20px 20px 0 0 !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .modal-grid {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    overflow: hidden !important;
  }

  .modal-image {
    height: 200px !important;
    flex-shrink: 0 !important;
  }

  .modal-details {
    flex: 1 !important;
    overflow-y: auto !important;
    padding-bottom: 80px !important;
  }
}

/* =========================================
   HEADER FIX (Crowded Menu)
   ========================================= */

@media (min-width: 900px) {
  /* 1. Force Brand Name to stay on one line */
  .brand-name {
    white-space: nowrap !important;
    font-size: 1.4rem !important;
  }

  /* 2. Slim down the links */
  .desktop-nav nav a {
    margin: 0 5px !important;
    padding: 10px 15px !important;
    font-size: 0.9rem !important;
  }

  /* 3. Ensure the container handles the space better */
  .desktop-nav {
    justify-content: space-between;
    gap: 10px;
  }

  .nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
  }

  .modal-content {
    height: 85vh !important;
    bottom: 0 !important;
    border-radius: 20px 20px 0 0 !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .modal-grid {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    overflow: hidden !important;
  }

  .modal-image {
    height: 200px !important;
    flex-shrink: 0 !important;
  }

  .modal-details {
    flex: 1 !important;
    overflow-y: auto !important;
    padding-bottom: 80px !important;
  }
}

/* ====== DUPLICATE/ALTERNATE NAV BLOCKS (preserved verbatim) ====== */
/* The file originally included a second desktop-nav / nav-left / logo-img / brand-name group
   — keeping these verbatim to ensure no original code was removed. */
.desktop-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  background-color: var(--bg-off-white);
}

/* 4. THE CART */
.cart-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: bold;
}
