/* ==========================================================================
   HarNavCrafts — Hero Section
   Fonts: Fraunces (display) / Outfit (body)
   ========================================================================== */

:root {
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
--color-ink: #2c2420;
--color-muted: #2b2b2b;
--color-rose: #ee6f8f;
--color-rose-dark: #e05580;
--color-rose-soft: #ffe3ea;
--color-badge: #f0698b;
--color-card-bg: #fffaf9;
--color-star: #ff7ea6;
--color-border: #f6d9e1;

--radius-card: 18px;
  --ink: #1c1410;          /* near-black text, warm tint */
  --ink-soft: #4a4038;     /* softened body text on light areas */
  --cream: #fbf7f2;        /* glass / card tint */
  --rose: #e8b4bc;         /* brand pink, pulled from logo */
  --rose-deep: #c98a95;

  --radius-frame: 32px;
  --radius-pill: 20px;

  --page-bg: #fff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--page-bg);
  font-family: var(--font-body);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ==========================================================================
   Page frame — dark surround, like the reference device/browser mockup
   ========================================================================== */

.page-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: clamp(14px, 3vw, 40px); */
}

/* ==========================================================================
   Hero card
   ========================================================================== */

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background-image:
    linear-gradient(115deg, rgba(255,250,246,0.94) 0%, rgba(255,250,246,0.75) 22%, rgba(255,250,246,0.25) 42%, rgba(255,250,246,0) 58%),
    url('../images/home-hero.webp');
  background-size: cover;
  background-position: center;
  /* box-shadow: 0 30px 80px rgba(0,0,0,0.45); */
  display: flex;
  flex-direction: column;
}

/* ==========================================================================
   Header / Navbar — glass pill, matches reference exactly
   ========================================================================== */

.site-header {
    position: fixed;
    z-index: 20;
    padding: clamp(16px, 2.4vw, 14px) clamp(16px, 2.6vw, 32px) 0;
    width: 100%;
    top: 0;
    left: 0;
    will-change: transform;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.header-hidden {
    transform: translateY(-100%);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-pill);
  padding: 10px 10px 10px 22px;
  box-shadow: 0 8px 30px rgba(20, 10, 10, 0.06);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-icon {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.28rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 34px);
}

.nav-links a {
  position: relative;
  font-family: var(--font-body);
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s ease;
  white-space: nowrap;
  padding-bottom: 3px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -1px;
    width: 0;
    top: 10p;
    height: 1.5px;
    background: currentColor;
    transform: translateX(-50%);
    transition: width 0.28s ease;
}

.nav-links a:hover { color: var(--ink); }

.nav-links a:hover::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.94rem;
  white-space: nowrap;
  border-radius: var(--radius-pill);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn svg { flex-shrink: 0; transition: transform 0.2s ease; }
.btn:hover svg { transform: translate(2px, -2px); }

.btn-pill {
  background: rgba(255, 255, 255, 0.75);
  color: var(--ink);
  padding: 12px 20px;
  border: 1px solid rgba(255,255,255,0.7);
}

.btn-pill:hover {
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(20,10,10,0.10);
}
.btn-pill.mobile-cta:hover {
    background: #1c1410 !important;
    box-shadow: 0 6px 18px rgba(20,10,10,0.10);
    transform: translate(0px, -2px);
}

.btn-dark {
  background: var(--ink);
  color: #fffaf6;
  padding: 16px 26px;
}

.btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.28);
}

.menu-toggle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.menu-toggle:hover { background: #ffffff; }

.menu-toggle-bars {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 16px;
}

.menu-toggle-bars span {
  display: block;
  height: 1.6px;
  width: 100%;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bars span:nth-child(1) {
  transform: translateY(5.6px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .menu-toggle-bars span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-toggle-bars span:nth-child(3) {
  transform: translateY(-5.6px) rotate(-45deg);
}

/* Mobile dropdown */
.mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 10px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 22px;
    overflow: hidden;

    max-height: 0;
    opacity: 0;
    padding: 0 14px;
    transform: translateY(-10px);
    pointer-events: none;

    transition:
        max-height 0.35s ease,
        opacity 0.25s ease,
        transform 0.25s ease,
        padding 0.35s ease;
}

.mobile-menu.open {
    max-height: 500px;
    opacity: 1;
    padding: 14px;
    transform: translateY(0);
    pointer-events: auto;
}

.mobile-menu a {
  padding: 12px 10px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 12px;
}

.mobile-menu a:hover { background: rgba(0,0,0,0.05); }

.mobile-cta {
  justify-content: center;
  margin-top: 6px;
  background: var(--ink);
  color: #fff;
}

/* ==========================================================================
   Hero content
   ========================================================================== */

.hero-content {
  position: relative;
  z-index: 10;
  flex: 1;
  padding-top: 155px !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 64px) clamp(24px, 6vw, 96px);
  max-width: 760px;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 18px;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: normal;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.03;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 26px;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: 38px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.link-underline {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--ink);
  padding-bottom: 3px;
  border-bottom: 1.4px solid var(--ink);
  transition: opacity 0.2s ease;
}

.link-underline:hover { opacity: 0.6; }

.collection-section {
	position: relative;
	width: 100%;
	padding: 55px 24px 64px;
	background-image: url('../images/bg.webp');
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
	overflow: hidden;
	background-position: center 11%;
}
.collection-section.shop {
	background:none !important;
}
img.brop-img {
    width: 250px;
    margin-bottom: -10px;
}
span.ht {
    color: red;
}
.product-media {
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 0.82;
	background: linear-gradient(135deg, #fbe6ec, #f7d9e4);
	overflow: hidden;
}
.collection-container {
	position: relative;
	max-width: 1280px;
	margin: 0 auto;
	z-index: 2;
}
.collection-header {
	text-align: center;
	max-width: 620px;
	margin: 0 auto 44px;
}
.eyebrow-flourish {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-bottom: 14px;
	flex-direction: column;
}

/* ================= HEADER ================= */




.eyebrow-text {
	font-family: var(--font-body);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 3px;
	color: var(--color-rose);
	text-transform: uppercase;
}

.collection-title {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 44px;
	line-height: 1.15;
	color: var(--color-ink);
	margin: 0 0 18px;
}

.collection-title .accent {
	color: var(--color-rose);
	font-style: italic;
}

.collection-subtitle {
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	color: var(--color-muted);
	margin: 0;
}

/* ================= GRID ================= */
.products-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-bottom: 40px;
}

@media (max-width: 767px) {
	.products-grid {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 8px;
	}
}

/* ================= PRODUCT CARD ================= */
.product-card {
	background: var(--color-card-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-card);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	box-shadow: 0 4px 18px rgba(226, 120, 150, 0.08);
	outline: 1.5px solid #fff;
}

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

.badge-handmade {
	position: absolute;
	top: 10px;
	line-height: 1.25em;
	left: 10px;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background: var(--color-badge);
	color: #fff;
	font-family: var(--font-body);
	font-size: 11px;
	font-weight: 600;
	padding: 5px 10px;
	border-radius: var(--radius-pill);
	z-index: 2;
}

.badge-handmade svg { width: 10px; height: 10px; }

.fav-btn {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.92);
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	cursor: pointer;
	z-index: 2;
	padding: 0;
}
.product-rating {
	display: flex;
	align-items: center;
	gap: 0px;
}

.fav-btn svg {
	width: 17px;
	height: 17px;
	stroke: var(--color-rose);
	fill: none;
	stroke-width: 2;
}

.product-info {
	padding: 14px 14px 16px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
}

.product-title {
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 16px;
	color: var(--ink);
	margin: 0;
}

.product-meta {
display: flex;
align-items: center;
justify-content: space-between;
gap: 8px;
}



.product-rating svg {
	width: 20px;
	height: 20px;
	fill: var(--color-star);
}

.rating-count {
	font-family: var(--font-body);
	font-size: 12px;
	color: var(--color-muted);
	margin-left: 4px;
}

.product-price {
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 16px;
	color: var(--color-ink);
	white-space: nowrap;
	letter-spacing: 0.8px;
}

.buy-now-btn {
margin-top: 4px;
width: 100%;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
background: transparent;
border: 1.5px solid var(--color-rose);
color: var(--color-rose-dark);
font-family: var(--font-body);
font-weight: 600;
font-size: 14px;
padding: 10px 14px;
border-radius: var(--radius-pill);
cursor: pointer;
transition: background 0.2s ease, color 0.2s ease;
}

.buy-now-btn svg {
width: 15px;
height: 15px;
stroke: currentColor;
fill: none;
stroke-width: 2;
}

.buy-now-btn:hover {
background: var(--color-rose);
color: #fff;
}

/* ================= VIEW ALL / FOOTER ================= */
.view-all-wrap {
text-align: center;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--color-rose), var(--color-rose-dark));
    color: #fff;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    padding: 15px 34px;
    border: none;
    border-radius: var(--radius-pill);
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(224, 85, 128, 0.28);
    transition: all .3s ease;
}

.view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(224, 85, 128, 0.4);
}

.view-all-btn:active {
    transform: translateY(-1px);
}
.view-all-btn svg:last-child {
    transition: transform .3s ease;
}

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

.view-all-btn svg { width: 16px; height: 16px; transform: translate(0px, 1px); }

.footer-note {
margin: 18px 0 0;
font-family: var(--font-body);
font-size: 13px;
color: var(--color-muted);
display: flex;
align-items: center;
justify-content: center;
gap: 6px;
}

.footer-note svg {
width: 12px;
height: 12px;
fill: var(--color-rose);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 980px) {
  .nav-links { display: none; }
}

@media (max-width: 980px) {
  .site-header { padding-top: 20px; }
  .collection-title { font-size: 32px; }
	.collection-subtitle { font-size: 14px; }
}

@media (max-width: 640px) {
  .hero { border-radius: 0px; min-height: 56vh; background-position: 62% center;}
  .navbar { padding: 8px 8px 8px 14px; }
  .brand-name { font-size: 1.08rem; }
  .btn-pill span { display: none; }
  .btn-pill { padding: 10px 14px; }
  .hero-content { padding: 140px 20px 60px !important; }
  .hero-cta-group { gap: 16px; }
  .btn-dark { padding: 14px 20px; font-size: 0.9rem; }
  .nav-actions .btn.btn-pill svg {
		height: 18px;
		width: 18px;
	}
}

@media (max-width: 440px) {
	:root {
		--radius-pill: 14px;
	}
	nav .nav-actions .btn-pill { display: none; }
	.mobile-menu {
	  border-radius: 16px;
	}
	img.brop-img {
		width: 165px !important;
		margin-bottom: -4px !important;
	}
	.eyebrow-text {
		font-size: 12px !important;
	}
	.collection-title {
		font-size: 36px !important;    
		margin: 0 0 14px;
	}
	.eyebrow-flourish{
		margin-bottom: 8px !important;
	}
	.collection-subtitle{
		font-size: 15px;
		line-height: 1.5;
	}
	.collection-header{
		margin: 0 auto 25px;
	}
	.footer-note {
		color: white;
		margin-top: 13px;
	}
	.product-info{
		padding: 10px 10px 16px;
		gap: 7px;
	}
	.badge-handmade {
		top: 7px;
		left: 7px;
		line-height: 1.2em;
		font-size: 10px;
		gap: 2px;
		padding: 5px 7px 5px 6px;
	}
	.fav-btn{
		top: 7px;
		right: 7px;
		width: 28px;
		height: 28px;
	}
	.product-title{
		font-size: 14px;
		line-height: 1.35;
	}
	.product-price{
		font-size: 13px;
	}
	.product-rating svg {
		width: 11px;
		height: 11px;
	}
	.rating-count {
		font-size: 10px;
	}
}
@media (max-width: 767px) {
	.collection-section {
		background-image: url('../images/mob-bg.webp');
		padding: 40px 18px 40px;
		background-position: 37% center;
	}
}
/* ==========================================================================
   WHY CHOOSE US SECTION — append this block to your style.css
   ========================================================================== */

.why-section {
  position: relative;
  width: 100%;
  padding: 55px 24px 64px;
  background-image: url('../images/why-bg.webp');
  background-size: cover;
  background-position: center;
}

.why-header {
  max-width: 640px;
  margin: 0 auto 25px;
  text-align: center;
}

.why-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 44px;
  line-height: 1.15;
  color: var(--color-ink);
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.why-title .accent { color: var(--color-rose); }

.why-title-heart {
  width: 26px;
  height: 26px;
  color: var(--color-rose);
  transform: translateY(-2px);
}

.why-subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-muted);
  margin: 0 0 18px;
}

.why-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.why-divider span {
  width: 60px;
  height: 1px;
  background: #ffafc5;
}

.why-divider svg {
  width: 13px;
  height: 13px;
  fill: var(--color-rose);
}

/* ================= GRID ================= */

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 44px;
}

.why-card {
    position: relative;
    background: #fffaf900;
    border-radius: var(--radius-card);
    padding: 36px 24px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: visible;
    padding-bottom: 46px;
    box-shadow: 0 4px 18px rgba(226, 120, 150, 0.25);
    backdrop-filter: blur(10px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border: 2px solid #fff;
}
/* Optional: thin rose outline on the scallop edge like your reference image.
   This adds a second pseudo-element as a "stroke" layer under the fill. */
.why-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 24px;
  background: #ff082647;
  z-index:1;
  -webkit-mask-image: radial-gradient(circle at 10px 0, transparent 12px, black 12.5px);
  mask-image: radial-gradient(circle at 10px 0, transparent 12px, black 12.5px);
  -webkit-mask-size: 22px 22px;
  mask-size: 22px 22px;
  -webkit-mask-repeat: repeat-x;
  mask-repeat: repeat-x;
  -webkit-mask-position: left top;
  mask-position: left top;

  border-bottom-left-radius: var(--radius-card);
  border-bottom-right-radius: var(--radius-card);
}

.why-icon-wrap {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  /* background: radial-gradient(circle, #fff3f6 0%, #ffe3ea 100%); */
  background: #ffffffb0;
  border: 1.5px dashed var(--color-rose);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  flex-shrink: 0;
}

.why-icon {
  width: 100%;
  object-fit: contain;
}

.why-card-content h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
  color: var(--ink);
  margin: 0 0 12px;
}

.why-card-divider {
  display: block;
  width: 34px;
  height: 2px;
  background: var(--color-rose);
  border-radius: 2px;
  margin: 0 auto 12px;
}

.why-card-content p {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.65;
  color: #444444;
  margin: 0;
}

.why-card-heart {
  display: none; /* only shown on mobile row layout */
  width: 16px;
  height: 16px;
  fill: var(--color-rose);
  flex-shrink: 0;
}

/* ================= BANNER ================= */

.why-banner {
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position:relative;
  background: var(--color-card-bg);
  border: 1.5px dashed var(--color-rose);
  border-radius: var(--radius-pill);
  padding: 18px 30px;
}

.why-banner-icon {
  width: 23px;
  height: 23px;
  fill: var(--color-rose);
  flex-shrink: 0;
}

.why-banner p {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--color-ink);
  margin: 0;
  text-align: center;
}

.why-banner em {
  color: var(--color-rose);
  font-style: italic;
}
img.flower-img.flw-1 {
    left: 75px !important;
	animation: rotateFlower 18s linear infinite !important;
}
img.flower-img {
    position: absolute;
    width: 67px;
    right: 75px;
	animation: rotatereverse 18s linear infinite;
    transform-origin: center;
}
/* ==========================================================================
   Responsive — mobile keeps 4 blocks, stacked as icon-left rows
   ========================================================================== */

@media (max-width: 980px) {
  .why-title { font-size: 32px;display: block;}
  .why-subtitle { font-size: 14px; }
}

@media (max-width: 767px) {
.why-section {
    padding: 32px 18px 44px;
    background: linear-gradient(rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0)), 
                url('../images/why-mob-bg.webp');
    background-position: 55% center;
    background-size: cover;
    background-repeat: no-repeat;
    background-size: 157%;
}

  .why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-card {
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 16px 16px;
    gap: 16px;
	border: 0px solid #fff;
	background: #fffffff2;
  }

  .why-icon-wrap {
    width: 68px;
    height: 68px;
    margin-bottom: 0;
	background: radial-gradient(circle, #fff3f6 0%, #ffe3ea54 100%);
  }

  .why-card-content { flex: 1; }

  .why-card-content h3 { font-size: 16px; margin-bottom: 4px; }

  .why-card-divider { display: none; }

  .why-card-content p { font-size: 12px; line-height: 1.55; }

  .why-card-heart { display: block; margin-left: 4px; }

  .why-banner { padding: 14px 20px; border-radius: 20px; }
  .why-banner p { font-size: 16px; }
  .why-banner-icon { width: 20px; height: 20px; }
  .why-title-heart {
		transform: translateY(-23px);
		position: absolute;
	}
	.why-header {
    margin: 0 auto 20px;
	}
	br.br-desktop {
    display: none;
	}
	.why-card::before{
		height: 15px;
		display: none;
	}
	img.flower-img {
		width: 36px !important;
		right: -10px;
		display: none;
	}
	img.flower-img.flw-1 {
		left: -20px !important;
		top: -35px;
		display: block;
	}
	.why-grid{
	  margin: 0 auto 30px;
	}
}

@media (max-width: 440px) {
  .why-title { font-size: 36px; line-height: 1.2em;}
  .why-card { padding: 14px; }
  .why-icon-wrap { width: 58px; height: 58px; }
}
/* ==========================================================================
   REVIEWS / TESTIMONIALS SECTION — save as css/reviews.css (or append to style.css)
   Slider = Swiper.js (CDN) — this file only styles it, swiper-bundle.min.css
   handles the mechanics.
   ========================================================================== */

.reviews-section {
  position: relative;
  width: 100%;
  padding: 55px 24px 64px;
  background-image: url('../images/review-bg.webp');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

/* ================= HEADER ================= */

.reviews-header {
  max-width: 620px;
  margin: 0 auto 46px;
  text-align: center;
}

.flourish-icon {
  width: 20px;
  height: 20px;
  color: var(--color-rose);
  fill: var(--color-rose);
  margin-bottom: 4px;
}

.reviews-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 44px;
  line-height: 1.18;
  color: var(--color-ink);
  margin: 0 0 16px;
}

.reviews-title .accent {
  color: var(--color-rose);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.reviews-title-heart {
  width: 24px;
  height: 24px;
  color: var(--color-rose);
  transform: translateY(2px);
}

.reviews-subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-muted);
  margin: 0 0 18px;
}

/* ================= SLIDER WRAP ================= */

.reviews-slider-wrap {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
}

.reviews-swiper {
  flex: 1;
  overflow: hidden;
  padding-bottom: 46px; /* room for pagination dots */
}

/* ================= NAV ARROWS ================= */

.reviews-nav {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 5;
}

.reviews-nav:hover {
  background: #fff;
  transform: translateY(-1px);
}

.reviews-nav svg {
  width: 18px;
  height: 18px;
  color: var(--color-rose-dark);
}

/* ================= CARD ================= */

.review-card {
  background: var(--color-card-bg);
  border: 1px solid #d8597f8f;
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 32px 24px;
  height: 100%;
  box-shadow: 0 4px 18px rgba(226, 120, 150, 0.08);
  flex-direction: column;
  
}

.review-media {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
   outline: 1px solid red;
}

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

.review-body {
  flex: 1;
  min-width: 0;
}

.review-top {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 10px;
}

.review-stars {
  display: flex;
  gap: 0px;
}

.review-stars svg {
    width: 24px;
    height: 24px;
    fill: var(--color-star);
}

.review-quote {
    width: 44px;
    height: 44px;
    fill: var(--color-rose-soft);
    flex-shrink: 0;
    position: absolute;
    right: 15px;
    margin-top: -38px;
}

.review-text {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
  margin: 22px 0;
  text-align: center;
}

.review-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
}

.review-name {
    display: block;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 4px;
    color: var(--color-rose-dark);
}

.review-loc {
  display: block;
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--color-muted);
  margin-top: 2px;
}

.review-heart-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-rose-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-heart-badge svg{
	animation: heartbeat 1.4s ease-in-out infinite;
	transform-origin: center;
}

.review-heart-badge svg {
  width: 18px;
  height: 18px;
  fill: var(--color-rose);
}

/* ================= PAGINATION DOTS ================= */

.reviews-pagination {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.reviews-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-border);
  opacity: 1;
  margin: 0 !important;
  transition: background 0.2s ease, transform 0.2s ease;
}

.reviews-pagination .swiper-pagination-bullet-active {
  background: var(--color-rose);
  transform: scale(1.2);
}
/* ==========================================================================
   FAQ SECTION — save as css/faq.css (or append to style.css)
   ========================================================================== */

.faq-section {
  position: relative;
  width: 100%;
  padding: 70px 24px 76px;
  background-image: url('../images/faq-bg.webp');
  background-size: cover;
  background-position: center;
}

/* ================= HEADER ================= */

.faq-header {
  max-width: 620px;
  margin: 0 auto 25px;
  text-align: center;
}

.faq-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 44px;
  line-height: 1.15;
  color: var(--color-ink);
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.faq-title .accent { color: var(--color-rose); }

.faq-title-heart {
  width: 24px;
  height: 24px;
  color: var(--color-rose);
  transform: translateY(-4px);
}

.faq-subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-muted);
  margin: 0 0 18px;
}

.faq-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.faq-divider span {
  width: 60px;
  height: 1px;
  background: var(--color-border);
}

.faq-divider svg {
  width: 13px;
  height: 13px;
  fill: var(--color-rose);
}

/* ================= LIST ================= */

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(226, 120, 150, 0.06);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  background: transparent;
  text-align: left;
}

.faq-question-left {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--color-ink);
}

.faq-chevron {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-rose-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-chevron svg {
  width: 20px;
  height: 20px;
  color: var(--color-rose-dark);
}

.faq-item.is-open .faq-chevron {
  transform: rotate(90deg);
}

.faq-toggle-icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.faq-toggle-icon svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  color: var(--color-rose);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.icon-minus { opacity: 0; transform: scale(0.7); }
.icon-plus { opacity: 1; transform: scale(1); }

.faq-item.is-open .icon-minus { opacity: 1; transform: scale(1); }
.faq-item.is-open .icon-plus { opacity: 0; transform: scale(0.7); }

/* ================= ANSWER (collapsible) ================= */

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.is-open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 0 22px 22px 68px;
  position: relative;
}

.faq-answer-heart {
  position: absolute;
  left: 22px;
  top: 3px;
  width: 15px;
  height: 15px;
  fill: var(--color-rose);
  flex-shrink: 0;
}

.faq-answer-inner::before {
    content: "";
    position: absolute;
    left: 36px;
    top: 0px;
    bottom: 17px;
    width: 1px;
    border-left: 1.5px dashed var(--color-border);
}

.faq-answer-inner p {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--color-ink);
  margin: 0;
}

/* ================= CTA STRIP ================= */

.faq-cta {
  max-width: 900px;
  margin: 40px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  background: var(--color-card-bg);
  border: 1.5px dashed var(--color-rose);
  border-radius: var(--radius-pill);
  padding: 18px 28px;
}

.faq-cta-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.faq-cta-left svg {
  width: 26px;
  height: 26px;
  color: var(--color-rose);
  flex-shrink: 0;
}

.faq-cta-left div {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}

.faq-cta-left strong {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--color-ink);
}

.faq-cta-left span {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-muted);
}

.faq-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid var(--color-rose);
  color: var(--color-rose-dark);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.faq-whatsapp-btn svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.faq-whatsapp-btn:hover {
  background: var(--color-rose);
  color: #fff;
  transform: translateY(-2px);
}
img.flower-img.faq {
    top: 50%;
    width: 80px;
}
/* ==========================================================================
   FOOTER — save as css/footer.css (or append to style.css)
   ========================================================================== */

.site-footer {
  position: relative;
  width: 100%;
  padding: 66px 24px 40px;
  background-image: url('../images/footer-bg.webp');
  background-size: cover;
  background-position: center;
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
}

/* ================= BRAND COLUMN ================= */
.footer-initial {
    position: relative;
    background: #fffaf900;
    border-radius: var(--radius-card);
    padding: 36px 38px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: visible;
    padding-bottom: 46px;
    box-shadow: 0 4px 18px rgba(226, 120, 150, 0.25);
    backdrop-filter: blur(10px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border: 2px solid #fff;
}
.footer-logo {
    display: flex;
    flex-direction: column;
    align-content: center;
    flex-wrap: wrap;
    align-items: center;
}
.footer-lg {
    background: white;
    padding: 5px;
    border-radius: 50%;
}
.foot-divider {
}
.footer-brand-col { padding-right: 90px; }

.footer-logo-icon {
  width: 46px;
  height: 24px;
  color: var(--color-rose);
  margin-bottom: 6px;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  color: var(--color-ink);
  margin: 0 0 5px;
}

.footer-tagline {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--color-rose);
  margin: 4px 0 10px;
  justify-content: center;
}

.footer-tagline svg {
  width: 13px;
  height: 13px;
  fill: var(--color-rose);
}

.footer-desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-ink);
  margin: 0 0 18px;
  max-width: 34ch;
}

.footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.4px solid var(--color-rose);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.footer-social-btn svg {
  width: 20px;
  height: 20px;
  color: var(--color-rose);
}

.footer-social-btn:hover {
  background: var(--color-rose);
  transform: translateY(-2px);
}

.footer-social-btn:hover svg { color: #fff; }

/* ================= LINK COLUMNS ================= */

.footer-col-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-ink);
  margin: 0 0 8px;
  position: relative;
  text-align: left;
  margin-left: 31px;
}
.footer-info-col .footer-col-title {
  margin-left: 0px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 6px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--color-ink);
  transition: color 0.2s ease, gap 0.2s ease;
}

.footer-links a svg {
  width: 13px;
  height: 13px;
  color: var(--color-rose);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.footer-links a:hover {
  color: #000;
}

.footer-links a:hover svg {
  transform: translateX(3px);
}


/* ================= NEWSLETTER COLUMN ================= */

.footer-newsletter-text {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-ink);
  margin: 0 0 18px;
  max-width: 30ch;
}

.footer-newsletter-form {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: var(--radius-pill);
  padding: 4px 4px 4px 18px;
  box-shadow: 0 6px 18px rgba(226, 120, 150, 0.12);
  max-width: 300px;
}

.footer-newsletter-form input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-ink);
  padding: 10px 0;
}

.footer-newsletter-form input::placeholder {
  color: var(--color-muted);
}

.footer-newsletter-form button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-rose), var(--color-rose-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.footer-newsletter-form button svg {
  width: 17px;
  height: 17px;
  color: #fff;
}

.footer-newsletter-form button:hover {
  transform: scale(1.06);
}

/* ================= DIVIDER ================= */

.footer-divider {
  max-width: 1200px;
  margin: 44px auto 30px;
  position: relative;
  height: 1px;
  background: var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-divider.footer-bottom span {
    width: 40vw;
    background: #f5a7d2;
}
footer .why-divider.footer-bottom svg {
    width: 22px;
    height: 22px;
}
/* ================= BOTTOM ================= */

.footer-bottom {
  text-align: center;
}

.footer-flourish {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}

.footer-flourish-svg {
  width: 180px;
  height: 44px;
  color: var(--color-muted);
}

.footer-copyright {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-ink);
  margin: 0 0 6px;
}

.footer-madewith {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--color-ink);
  margin: 0;
}

.footer-madewith svg {
  width: 13px;
  height: 13px;
  fill: var(--color-rose);
}
.footer-social-btn.fb svg{
    width: 30px;
    height: 30px;
    transform: translate(-1px, 0px);
}
.foot-divider span {
    background: #fe2661;
}
.footer-links li {
    text-align: left;
}
.why-divider.footer-hed span {
    width: 36px;
    background: #e76288;
}
footer .why-divider svg {
    width: 15px;
    height: 15px;
}
.why-divider.footer-hed {
    justify-content: flex-start;
	margin-bottom: 20px;
}
.footer-col.footer-newsletter-col .why-divider.footer-hed {
	justify-content: center;
}
.footer-col.footer-newsletter-col .footer-col-title {
    transform: translate(0px, 0px);
	text-align: center;
	margin-left:0 !important;
}
footer img.brop-img {
    width: 170px;
	margin-bottom: -22px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 980px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
  }

  .footer-brand-col { grid-column: 1 / -1; }
  .footer-brand-col{
	  padding-right: 0;
  }
}

@media (max-width: 767px) {
  .site-footer {
    background-image: url('../images/footer-mob-bg.webp');
    padding: 0;
	
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 46px;
    text-align: left;
  }

  .footer-desc { max-width: 100%; text-align: center;}

  .footer-newsletter-form { max-width: 100%; padding-left: 8px;}

  .footer-divider { margin: 36px auto 16px; }

  .footer-flourish-svg { width: 150px; height: 38px; }
  .why-divider.footer-bottom span {
		width: 27vw;
	}
	.footer-initial{
		padding: 40px 18px;
		border: none;
        border-radius: 0;
        outline: 1px solid #fff;
	}
  .footer-col-title { font-size: 15px;transform: translate(0px, 0px); text-align:center;    margin-left: 0px; }
  .why-divider.footer-hed {
    justify-content: center;
}
  .why-divider.footer-hed { margin-bottom: 24px;}
}

@media (max-width: 440px) {
  .footer-brand-name { font-size: 22px; }
  .footer-newsletter-text{ text-align:center;}
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 980px) {
  .faq-title { font-size: 32px; }
  .faq-subtitle { font-size: 14px; }
}

@media (max-width: 767px) {
  .faq-section {
    background-image: url('../images/faq-mob-bg.webp');
    padding: 32px 18px 44px;
  }

  .faq-question { padding: 16px; gap: 10px; }
  .faq-question-left { font-size: 14.5px; gap: 10px; }
  .faq-chevron { width: 28px; height: 28px; }
  .faq-chevron svg { width: 18px; height: 18px; }

  .faq-answer-inner { padding: 0 16px 18px 22px; }
  .faq-answer-heart { left: 16px; }
  .faq-answer-inner::before { left: 23px; display:none; }
  .faq-answer-inner p { font-size: 13.5px; }

  .faq-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 20px;
    border-radius: 22px;
  }

  .faq-whatsapp-btn { width: 100%; justify-content: center; }
	  .footer-flourish {
		margin-bottom: 10px;
	}
	ul.footer-links {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		column-gap: 0px;
	}
	.footer-links a{
		font-size:14px;
	}
}

@media (max-width: 440px) {
  .faq-title { font-size: 26px; }
  .faq-question-left { font-size: 13.5px; }
}


/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 980px) {
  .reviews-title { font-size: 32px; }
  .reviews-subtitle { font-size: 14px; }
}

@media (max-width: 767px) {
  .reviews-section {
    background-image: url('../images/review-mob-bg.webp');
    padding: 32px 18px 44px;
  }

  .reviews-slider-wrap { gap: 8px; }

  .reviews-nav { width: 38px; height: 38px;display:none; }
  .reviews-nav svg { width: 15px; height: 15px; }

.review-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 22px 26px;
    gap: 16px;
    width: 88%;
    margin: auto;
}
  span.review-loc {
		text-align: left;
		transform: translate(4px, 0px);
	}

  .review-media { width: 110px; height: 110px;}

  .review-top { flex-direction: column; align-items: center; gap: 10px; }

  .review-footer { align-items: center; gap: 12px; }

  .review-name, .review-loc { text-align: center; }
  .review-heart-badge svg {
    width: 20px;
    height: 20px;
}
.footer-col.footer-newsletter-col {
    display: flex;
    flex-direction: column;
    align-items: center;
}
}

@media (max-width: 440px) {
  .reviews-title { font-size: 32px; }
  .review-media { width: 96px; height: 96px; }
  .review-text { font-size: 14px; margin: 22px 0 26px; }
   .review-name{ margin-bottom: 5px;}
}

@keyframes rotateFlower {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
@keyframes rotatereverse {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0deg);
    }
}
@keyframes heartbeat {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.18);
    }
    100% {
        transform: scale(1);
    }
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

/* Optional delays */
.reveal[data-d="1"] {
    transition-delay: 0.1s;
}

.reveal[data-d="2"] {
    transition-delay: 0.2s;
}

.reveal[data-d="3"] {
    transition-delay: 0.3s;
}

.reveal[data-d="4"] {
    transition-delay: 0.4s;
}
.reveal[data-d="5"] {
    transition-delay: 0.5s;
}
.reveal[data-d="6"] {
    transition-delay: 0.6s;
}
.reveal[data-d="0.25"] { transition-delay: 0.25s; }
.reveal[data-d="0.35"] { transition-delay: 0.35s; }
.reveal[data-d="0.45"] { transition-delay: 0.45s; }
.reveal[data-d="0.55"] { transition-delay: 0.55s; }
/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal.in {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
/* Reveal Animation Ends Here*/
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 24px;
  right: 24px;
  background-color: #0ec552;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  transition: all 0.3s ease;
}

/* Smooth hover effect */
.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  background-color: #20ba5a;
}

/* Icon styling */
.whatsapp-icon {
  width: 36px;
  height: 36px;
  fill: #ffffff;
  /* Ensures the asymmetrical path centers nicely inside the flex circle */
  display: block; 
}

/* Gentle pulse animation to draw attention without being annoying */
@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-float {
  animation: whatsapp-pulse 2s infinite;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 16px;
    right: 16px;
  }
  .whatsapp-icon {
    width: 28px;
    height: 28px;
  }
}
/* ==========================================================================
   SHOP PAGE — save as css/shop.css
   Covers: hero banner, breadcrumb, filter sidebar (desktop) / slide-over
   (mobile), toolbar, load more button, pagination.
   No product-card styles included — you already have those.
   ========================================================================== */

/* ================= HERO BANNER ================= */

.shop-hero {
  background-image: url('../images/shop-hero.webp');
  min-height: 65vh;
  background-position: 50% 60%;
}

.shop-hero .hero-content {
    padding-top: 160px !important;
    padding-bottom: 130px !important;
}

.shop-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.shop-hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 46px;
  color: var(--ink);
  margin: 0 0 14px;
}

.shop-hero-desc {
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 26px;
  max-width: 40ch;
}

.shop-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-rose);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  transition: background 0.2s ease, transform 0.2s ease;
}

.shop-hero-btn svg {
  width: 15px;
  height: 15px;
  fill: #fff;
}

.shop-hero-btn:hover {
  background: var(--color-rose-dark);
  transform: translateY(-2px);
}

.shop-hero-media img {
  width: 100%;
  border-radius: var(--radius-card);
  object-fit: cover;
}

/* ================= BREADCRUMB ================= */

.shop-breadcrumb {
  border-bottom: 1px solid var(--color-border);
}

.shop-breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--color-muted);
}

.shop-breadcrumb-inner a { color: #4c4c4c; }
.shop-breadcrumb-inner a:hover { color: var(--color-rose); }
.shop-breadcrumb-inner span { color: var(--color-ink); font-weight: 500; }

.shop-breadcrumb-inner svg {
  width: 12px;
  height: 12px;
  color: var(--color-muted);
}

/* ================= MOBILE FILTER TRIGGER BAR ================= */

.shop-mobile-bar {
  display: none;
  padding: 16px 20px 0;
}

.shop-filter-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.4px solid var(--color-rose);
  color: var(--color-rose-dark);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  background: #fff;
}

.shop-filter-trigger svg { width: 15px; height: 15px; }
.shop-filter-trigger .chev { width: 12px; height: 12px; margin-left: 2px; }

/* ================= LAYOUT ================= */

.shop-layout {
  padding: 30px 24px 70px;
}

.shop-layout-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: start;
}

/* ================= FILTER SIDEBAR ================= */

.shop-filters {
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 22px 20px;
  position: sticky;
  top: 20px;
}

.shop-filters-header {
  display: none; /* desktop hides this, mobile shows it */
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.shop-filters-header h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--color-ink);
}

.shop-filters-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-rose-soft);
}

.shop-filters-close svg { width: 15px; height: 15px; color: var(--color-rose-dark); }

.filter-group {
  border-bottom: 1px solid var(--color-border);
  padding: 16px 0;
}

.filter-group:first-of-type { padding-top: 0; }
.filter-group:last-of-type { border-bottom: none; }

.filter-group-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-ink);
}

.filter-group-toggle svg {
  width: 13px;
  height: 13px;
  color: var(--color-muted);
  transition: transform 0.25s ease;
}

.filter-group.is-collapsed .filter-group-toggle svg { transform: rotate(-90deg); }
.filter-group.is-collapsed .filter-group-body { display: none; }

.filter-group-body { margin-top: 14px; }

/* category chips */
.filter-chips {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.filter-chip {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--color-muted);
  padding: 6px 2px;
  transition: color 0.2s ease;
}

.filter-chip.is-active {
  color: var(--color-rose-dark);
  font-weight: 600;
}

.filter-chip:hover { color: var(--color-rose); }

/* sort radios */
.filter-radio {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--color-ink);
  padding: 6px 0;
  cursor: pointer;
}

.filter-radio input { position: absolute; opacity: 0; width: 0; height: 0; }

.radio-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.6px solid var(--color-border);
  flex-shrink: 0;
  position: relative;
}

.filter-radio input:checked + .radio-dot {
  border-color: var(--color-rose);
}

.filter-radio input:checked + .radio-dot::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--color-rose);
}

/* price range */
.filter-range {
  width: 100%;
  accent-color: var(--color-rose);
  margin-bottom: 12px;
}

.filter-price-inputs {
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-price-inputs input {
  flex: 1;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 8px 10px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-ink);
  background: #fff;
  text-align: center;
  max-width:100px;
}

/* color swatches */
.filter-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.swatch {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--swatch-color, #ccc);
  border: 2px solid transparent;
  box-shadow: 0 0 0 1px var(--color-border);
}

.swatch.is-active {
  border-color: #fff;
  box-shadow: 0 0 0 2px var(--color-rose);
}

.swatch-more {
  background: #fff;
  color: var(--color-muted);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 1px var(--color-border);
}

/* occasion checkboxes */
.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--color-ink);
  padding: 6px 0;
  cursor: pointer;
}

.filter-checkbox input { position: absolute; opacity: 0; width: 0; height: 0; }

.check-box {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1.6px solid var(--color-border);
  flex-shrink: 0;
  position: relative;
}

.filter-checkbox input:checked + .check-box {
  background: var(--color-rose);
  border-color: var(--color-rose);
}

.filter-checkbox input:checked + .check-box::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* mobile-only action buttons (hidden on desktop) */
.shop-filters-actions { display: none; }

.faq-page .faq-section {
    background: none !important;
	padding: 40px 24px 76px;
}

.shop-apply-btn {
  width: 100%;
  background: var(--color-rose);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 14px;
  border-radius: var(--radius-pill);
  margin-top: 10px;
}

.shop-reset-btn {
  width: 100%;
  text-align: center;
  color: var(--color-rose);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  padding: 12px;
}

.shop-filters-overlay { display: none; }

/* ================= RESULTS / TOOLBAR ================= */

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}

.shop-results-count {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-muted);
}

.shop-sort-select {
  position: relative;
}

.shop-sort-select select {
  appearance: none;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: #fff;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--color-ink);
  padding: 9px 34px 9px 14px;
}

.shop-sort-select svg {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  color: var(--color-muted);
  pointer-events: none;
}

/* ================= LOAD MORE (mobile) ================= */

.shop-load-more {
  display: none;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--color-rose-soft);
  color: var(--color-rose-dark);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14.5px;
  padding: 14px;
  border-radius: var(--radius-pill);
  margin-top: 26px;
}

.shop-load-more svg { width: 13px; height: 13px; }

.shop-load-more.is-loading { opacity: 0.7; pointer-events: none; }
.shop-load-more.is-hidden { display: none !important; }

/* ================= PAGINATION (desktop) ================= */

.shop-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.page-arrow, .page-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-ink);
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease;
}

.page-arrow svg { width: 14px; height: 14px; }

.page-arrow { border-color: var(--color-border); color: var(--color-muted); }
.page-arrow:hover { background: var(--color-rose-soft); color: var(--color-rose-dark); }

.page-num:hover { background: var(--color-rose-soft); }

.page-num.is-active {
  background: var(--color-rose);
  color: #fff;
  font-weight: 600;
}
.products-grid.shop{
	grid-template-columns: repeat(3, 1fr);
}
.hero.policy-hero{
	background-image: url(../images/banner-bg.webp);
	min-height: 50vh;
}
.hero.policy-hero .hero-content {
    width: 100%;
    max-width: 100%;
    text-align: center;
}
/* ==========================================================================
   HarNavCrafts — Legal Pages (Privacy Policy, Terms, Shipping, Returns, etc.)
   Uses the same tokens as style.css (Fraunces / Outfit, rose palette)
   ========================================================================== */

.legal-page {
  padding: 64px 24px 100px;
  background: var(--page-bg);
}

.legal-page .container {
  max-width: 780px;
  margin: 0 auto;
}

.legal-page .last-updated {
  font-size: 0.85rem;
  color: var(--ink-soft);
  background: var(--color-rose-soft);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 10px 20px;
  display: inline-block;
  margin-bottom: 32px;
}

.legal-page .last-updated strong {
  color: var(--color-rose-dark);
  font-weight: 600;
}

.legal-page p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

.legal-page p strong {
  color: var(--ink);
  font-weight: 600;
}

.legal-page h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--ink);
  margin: 44px 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
}

.legal-page h2:first-of-type {
  margin-top: 8px;
}

.legal-page ul {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-page ul li {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-soft);
  padding-left: 26px;
  position: relative;
}

.legal-page ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-rose);
}

/* Contact block (final section) */

.legal-page h2:last-of-type + p {
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 24px 28px;
  line-height: 1.9;
}

.legal-page h2:last-of-type + p strong:first-child {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-rose-dark);
}
.checkout .hero-content {
    padding-top: 125px !important;
    padding: clamp(28px, 5vw, 48px) clamp(24px, 6vw, 96px);
}
/* ================= MOBILE RESPONSIVE ================= */

@media (max-width: 640px) {
  .legal-page {
    padding: 40px 18px 72px;
  }

  .legal-page h2 {
    font-size: 1.25rem;
    margin: 34px 0 14px;
  }

  .legal-page p,
  .legal-page ul li {
    font-size: 0.94rem;
  }

  .legal-page h2:last-of-type + p {
    padding: 20px 20px;
  }
  .hero.policy-hero{
	  min-height: 16vh;
  }
  .footer-newsletter-form input{
	width: 64vw;  
  }
}
/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 980px) {
  .shop-hero-title { font-size: 34px; }
}

@media (max-width: 860px) {

  .shop-hero {
    background-image: url('../images/shop-mob-bg.webp');
	min-height: 46vh;
  }
  .shop-hero .hero-content {
    padding-top: 144px !important;
	padding-bottom: 77px !important;
}

  .shop-hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: left;
  }

  .shop-hero-title { font-size: 30px; }
  .shop-hero-desc { max-width: 100%; }

  .shop-breadcrumb-inner { padding: 12px 20px; }

  .shop-mobile-bar { display: block; }

  .shop-layout { padding: 18px 20px 60px; }

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

  /* filter sidebar becomes a right-side slide-over panel */
  .shop-filters {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: min(340px, 88vw);
    max-width: 88vw;
    border-radius: 0;
    z-index: 60;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -8px 0 30px rgba(0,0,0,0.12);
  }

  .shop-filters.is-open { transform: translateX(0); }

  .shop-filters-header { display: flex; }
  .shop-filters-actions { display: block; padding-bottom: 10px; }

  .shop-filters-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(20, 14, 12, 0.4);
    z-index: 55;
  }

  .shop-filters-overlay.is-open { display: block; }

  /* mobile shows Load More, hides pagination */
  .shop-load-more { display: flex; }
  .shop-pagination { display: none; }
}

@media (max-width: 440px) {
  .shop-hero-title { font-size: 26px; }
  .faq-page .faq-section {
    background: none !important;
   padding: 32px 18px 44px;
	}
}
@media (max-width: 375px) {
	span.shop-results-count {
		font-size: 12px;
	}
	.shop-sort-select select {
		padding: 9px 28px 9px 10px;
	}
	.shop-layout{
		padding: 18px 12px 60px;
	}
}
.header-cart{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--color-rose-dark);
    text-decoration:none;
}

.cart-icon{
    width:28px;
    height:28px;
}

.cart-badge{
    position:absolute;
    top:-7px;
    right:-8px;
    width:18px;
    height:18px;
    border-radius:50%;
    background:var(--color-ink);
    color:#fff;
    font-size:10px;
    font-weight:600;
    display:flex;
    align-items:center;
    justify-content:center;
    border:2px solid #fff;
	display:none;
}
.cart-badge.is-visible {
    display: flex;
}

.flying-cart-dot {
    position: fixed;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--color-primary, #d88ca1);
    box-shadow: 0 0 0 6px rgba(216, 140, 161, .18);
    pointer-events: none;
    z-index: 9999;
    will-change: transform, left, top, width, height, opacity;
}

.header-cart.bump {
    animation: cart-bump .35s ease;
}

@keyframes cart-bump {
    0% { transform: scale(1); }
    40% { transform: scale(1.18); }
    100% { transform: scale(1); }
}
.fav-btn svg{
    transition: transform .3s ease;
}

.fav-btn.added{
    color: var(--color-primary);
}

.fav-btn.added svg{
    animation: bagAdded .5s cubic-bezier(.34,1.56,.64,1);
}
.buy-now-btn.added{
    color: var(--color-primary);
	transform: translate(0px, -4px);
}

.buy-now-btn.added svg{
    animation: bagAdded .5s cubic-bezier(.34,1.56,.64,1);
}

@keyframes bagAdded{

    0%{
        transform: scale(1) rotate(0deg);
    }

    30%{
        transform: scale(1.28) rotate(-10deg);
    }

    55%{
        transform: scale(.92) rotate(6deg);
    }

    75%{
        transform: scale(1.08) rotate(-3deg);
    }

    100%{
        transform: scale(1) rotate(0deg);
    }

}
.hc-toast{
    position:fixed;
    right:24px;
    bottom:24px;
    width:360px;
    max-width:calc(100vw - 32px);

    display:flex;
    align-items:center;
    gap:14px;

    padding:16px;

    background:rgba(255,255,255,.92);
    backdrop-filter:blur(18px);

    border:1px solid rgba(255,209,220,.8);

    border-radius:18px;

    box-shadow:
        0 18px 40px rgba(0,0,0,.08),
        0 2px 8px rgba(255,209,220,.25);

    transform:translateY(120%);
    opacity:0;

    pointer-events:none;

    transition:.45s cubic-bezier(.22,1,.36,1);

    z-index:999999;

    overflow:hidden;
}

.hc-toast.show{
    transform:none;
    opacity:1;
    pointer-events:auto;
}

.hc-toast-icon{

    width:48px;
    height:48px;

    border-radius:50%;

    background:#ffe8ef;

    display:flex;
    align-items:center;
    justify-content:center;

    flex-shrink:0;
}

.hc-toast-icon svg{
    width:22px;
    height:22px;
}

.hc-toast-title{

    font-size:15px;
    font-weight:700;
    color:#2f2f2f;
}

.hc-toast-message{

    margin-top:2px;

    color:#666;

    font-size:13px;
    line-height:1.5;
}

.hc-toast-close{

    margin-left:auto;

    border:none;
    background:none;

    cursor:pointer;

    color:#999;
}

.hc-toast-close svg{

    width:18px;
    height:18px;
}

.hc-toast-progress{

    position:absolute;

    left:0;
    bottom:0;

    width:100%;
    height:3px;

    background:#ffd1dc;

    transform-origin:left;
}