/* ============================================================
   London Florals — css/style.css
   Theme: Sage Green #7D9B76 | Cream #F7F2EA | Gold #C9A96E
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Lato:wght@300;400;700&display=swap');

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	--sage: #7d9b76;
	--sage-dark: #4e6e47;
	--sage-light: #b5ccaf;
	--sage-pale: #e8f0e6;
	--cream: #f7f2ea;
	--cream-dark: #ede5d5;
	--gold: #c9a96e;
	--gold-dark: #a8843f;
	--text: #2c2c2c;
	--text-mid: #5a5a5a;
	--text-light: #8a8a8a;
	--white: #ffffff;
	--radius: 6px;
	--radius-lg: 14px;
	--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.07);
	--shadow-md: 0 6px 24px rgba(0, 0, 0, 0.1);
	--shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
	--transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	--font-serif: 'Playfair Display', Georgia, serif;
	--font-sans: 'Lato', Arial, sans-serif;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: var(--font-sans);
	background: var(--cream);
	color: var(--text);
	line-height: 1.7;
	min-height: 100vh;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}
a {
	color: inherit;
	text-decoration: none;
}
ul {
	list-style: none;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4,
h5 {
	font-family: var(--font-serif);
	line-height: 1.25;
	color: var(--sage-dark);
}
h1 {
	font-size: clamp(2.2rem, 5vw, 3.6rem);
	font-weight: 700;
}
h2 {
	font-size: clamp(1.7rem, 3.5vw, 2.6rem);
	font-weight: 600;
}
h3 {
	font-size: clamp(1.2rem, 2.5vw, 1.6rem);
	font-weight: 500;
}
h4 {
	font-size: 1.1rem;
	font-weight: 600;
}
p {
	color: var(--text-mid);
}

/* ---------- Utilities ---------- */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
}
.container-sm {
	max-width: 780px;
	margin: 0 auto;
	padding: 0 1.5rem;
}
.section-pad {
	padding: 90px 0;
}
.section-pad-sm {
	padding: 60px 0;
}
.text-center {
	text-align: center;
}
.text-sage {
	color: var(--sage);
}
.text-gold {
	color: var(--gold);
}
.divider {
	width: 60px;
	height: 2px;
	background: var(--gold);
	margin: 1rem auto;
}
.divider-left {
	margin-left: 0;
}
.tag {
	display: inline-block;
	font-size: 0.72rem;
	font-family: var(--font-sans);
	letter-spacing: 0.12em;
	text-transform: uppercase;
}
.eyebrow {
	font-family: var(--font-sans);
	font-size: 0.78rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--gold);
	font-weight: 700;
}

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--font-sans);
	font-size: 0.88rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 0.85rem 2rem;
	border-radius: var(--radius);
	border: 2px solid transparent;
	cursor: pointer;
	transition: var(--transition);
}
.btn-primary {
	background: var(--sage-dark);
	color: var(--white);
	border-color: var(--sage-dark);
}
.btn-primary:hover {
	background: var(--sage);
	border-color: var(--sage);
	box-shadow: 0 8px 24px rgba(78, 110, 71, 0.3);
	transform: translateY(-1px);
}
.btn-outline {
	background: transparent;
	color: var(--sage-dark);
	border-color: var(--sage-dark);
}
.btn-outline:hover {
	background: var(--sage-dark);
	color: var(--white);
}
.btn-gold {
	background: var(--gold);
	color: var(--white);
	border-color: var(--gold);
}
.btn-gold:hover {
	background: var(--gold-dark);
	border-color: var(--gold-dark);
	transform: translateY(-1px);
}
.btn-ghost {
	background: transparent;
	color: var(--white);
	border-color: rgba(255, 255, 255, 0.6);
}
.btn-ghost:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: var(--white);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
	position: sticky;
	top: 0;
	z-index: 900;
	background: rgba(247, 242, 234, 0.96);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--cream-dark);
	transition: box-shadow var(--transition);
}
.site-header.scrolled {
	box-shadow: var(--shadow-md);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 0;
	gap: 1rem;
}

/* Logo */
.logo {
	display: flex;
	align-items: center;
	gap: 0.6rem;
}
.logo-icon {
	width: 38px;
	height: 38px;
	background: var(--sage-dark);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	line-height: 1;
	flex-shrink: 0;
}
.logo-text {
	font-family: var(--font-serif);
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--sage-dark);
	line-height: 1.1;
}
.logo-sub {
	font-family: var(--font-sans);
	font-size: 0.65rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--gold);
	font-weight: 700;
}

/* Nav */
.main-nav {
	display: flex;
	align-items: center;
	gap: 2rem;
}
.nav-link {
	font-family: var(--font-sans);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--text-mid);
	padding: 0.25rem 0;
	position: relative;
	transition: color var(--transition);
}
.nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1.5px;
	background: var(--gold);
	transition: width var(--transition);
}
.nav-link:hover,
.nav-link.active {
	color: var(--sage-dark);
}
.nav-link:hover::after,
.nav-link.active::after {
	width: 100%;
}

/* Header actions */
.header-actions {
	display: flex;
	align-items: center;
	gap: 1rem;
}
.icon-btn {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: none;
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background var(--transition);
	position: relative;
}
.icon-btn:hover {
	background: var(--cream-dark);
}
.icon-btn svg {
	width: 20px;
	height: 20px;
	stroke: var(--sage-dark);
	fill: none;
	stroke-width: 1.8;
}
.cart-badge {
	position: absolute;
	top: 4px;
	right: 4px;
	width: 16px;
	height: 16px;
	background: var(--gold);
	border-radius: 50%;
	font-size: 0.6rem;
	font-weight: 700;
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Hamburger */
.hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	padding: 0.4rem;
	border: none;
	background: transparent;
}
.hamburger span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--sage-dark);
	border-radius: 2px;
	transition: var(--transition);
}
.hamburger.open span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
	opacity: 0;
}
.hamburger.open span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.mobile-nav {
	display: none;
	flex-direction: column;
	background: var(--cream);
	border-top: 1px solid var(--cream-dark);
	padding: 1.5rem;
	gap: 1.2rem;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	box-shadow: var(--shadow-md);
}
.mobile-nav.open {
	display: flex;
}
.mobile-nav .nav-link {
	font-size: 0.9rem;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
	position: relative;
	min-height: 92vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: var(--sage-dark);
}
.hero-bg {
	position: absolute;
	inset: 0;
	background-image: url('../assets/images/hero.jpg');
	background-size: cover;
	background-position: center;
	transition: transform 8s ease;
}
.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		120deg,
		rgba(30, 50, 28, 0.72) 0%,
		rgba(30, 50, 28, 0.38) 60%,
		rgba(30, 50, 28, 0.1) 100%
	);
}
.hero-content {
	position: relative;
	z-index: 2;
	max-width: 700px;
	padding: 4rem 1.5rem;
	margin-left: max(1.5rem, calc((100vw - 1200px) / 2 + 1.5rem));
}
.hero-eyebrow {
	font-family: var(--font-sans);
	font-size: 0.78rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--gold);
	font-weight: 700;
	margin-bottom: 1rem;
}
.hero h1 {
	color: var(--white);
	margin-bottom: 1.4rem;
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.hero p {
	font-size: 1.12rem;
	color: rgba(255, 255, 255, 0.88);
	max-width: 520px;
	margin-bottom: 2.4rem;
	font-family: var(--font-sans);
}
.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}
.hero-badge {
	position: absolute;
	bottom: 2.5rem;
	right: max(1.5rem, calc((100vw - 1200px) / 2 + 1.5rem));
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: var(--radius-lg);
	padding: 1rem 1.4rem;
	color: var(--white);
	display: flex;
	align-items: center;
	gap: 1rem;
}
.hero-badge-icon {
	font-size: 1.8rem;
	line-height: 1;
}
.hero-badge-text {
	font-size: 0.72rem;
	font-family: var(--font-sans);
	letter-spacing: 0.06em;
}
.hero-badge-text strong {
	display: block;
	font-size: 0.95rem;
}

/* ============================================================
   STRIP / ANNOUNCEMENT
   ============================================================ */
.strip {
	background: var(--sage-dark);
	color: rgba(255, 255, 255, 0.9);
	padding: 0.7rem 0;
	text-align: center;
	font-family: var(--font-sans);
	font-size: 0.78rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-weight: 700;
}
.strip-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	flex-wrap: wrap;
}
.strip-item {
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-header {
	margin-bottom: 3rem;
}
.section-header .eyebrow {
	margin-bottom: 0.5rem;
}
.section-header h2 {
	margin-bottom: 0.7rem;
}
.section-header p {
	max-width: 540px;
}
.section-header.centered {
	text-align: center;
}
.section-header.centered p {
	margin: 0 auto;
}

/* ============================================================
   PRODUCT CARD
   ============================================================ */
.product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 2rem;
}

.product-card {
	background: var(--white);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition:
		transform var(--transition),
		box-shadow var(--transition);
	display: flex;
	flex-direction: column;
}
.product-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
}

.product-img-wrap {
	position: relative;
	overflow: hidden;
	aspect-ratio: 4/3;
	background: var(--sage-pale);
}
.product-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}
.product-card:hover .product-img-wrap img {
	transform: scale(1.07);
}

.product-badge {
	position: absolute;
	top: 0.75rem;
	left: 0.75rem;
	background: var(--gold);
	color: var(--white);
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 0.28rem 0.7rem;
	border-radius: 100px;
}
.product-badge.new {
	background: var(--sage-dark);
}
.product-badge.sale {
	background: #c0392b;
}

.product-wishlist {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: none;
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(4px);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: var(--transition);
}
.product-wishlist:hover {
	background: var(--white);
	transform: scale(1.1);
}
.product-wishlist svg {
	width: 16px;
	height: 16px;
	stroke: var(--sage-dark);
	fill: none;
	stroke-width: 2;
}
.product-wishlist.liked svg {
	fill: #e74c3c;
	stroke: #e74c3c;
}

.product-body {
	padding: 1.4rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}
.product-category {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--sage);
	margin-bottom: 0.4rem;
}
.product-name {
	font-family: var(--font-serif);
	font-size: 1.15rem;
	font-weight: 600;
	color: var(--text);
	margin-bottom: 0.5rem;
	line-height: 1.3;
}
.product-desc {
	font-size: 0.85rem;
	color: var(--text-light);
	line-height: 1.55;
	flex: 1;
	margin-bottom: 1rem;
}

.product-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: auto;
}
.product-price {
	font-family: var(--font-serif);
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--sage-dark);
}
.product-price-old {
	font-size: 0.88rem;
	text-decoration: line-through;
	color: var(--text-light);
	margin-left: 0.3rem;
	font-weight: 400;
}
.add-to-cart {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	background: var(--sage-dark);
	color: var(--white);
	border: none;
	border-radius: var(--radius);
	padding: 0.6rem 1.1rem;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	cursor: pointer;
	transition: var(--transition);
}
.add-to-cart:hover {
	background: var(--sage);
	transform: scale(1.03);
}
.add-to-cart svg {
	width: 15px;
	height: 15px;
	stroke: currentColor;
	fill: none;
	stroke-width: 2;
}

/* ============================================================
   FEATURES STRIP
   ============================================================ */
.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 2rem;
}
.feature-card {
	text-align: center;
	padding: 2.2rem 1.5rem;
	background: var(--white);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	transition: box-shadow var(--transition);
}
.feature-card:hover {
	box-shadow: var(--shadow-md);
}
.feature-icon {
	width: 62px;
	height: 62px;
	border-radius: 50%;
	background: var(--sage-pale);
	margin: 0 auto 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.6rem;
}
.feature-card h4 {
	color: var(--sage-dark);
	margin-bottom: 0.4rem;
}
.feature-card p {
	font-size: 0.88rem;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.8rem;
}
.testimonial-card {
	background: var(--white);
	border-radius: var(--radius-lg);
	padding: 2rem;
	box-shadow: var(--shadow-sm);
	border-left: 4px solid var(--sage);
}
.stars {
	color: var(--gold);
	font-size: 1.1rem;
	margin-bottom: 0.8rem;
}
.testimonial-text {
	font-style: italic;
	font-family: var(--font-serif);
	font-size: 1rem;
	color: var(--text);
	margin-bottom: 1.2rem;
	line-height: 1.65;
}
.testimonial-author {
	display: flex;
	align-items: center;
	gap: 0.8rem;
}
.author-avatar {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--sage-pale);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-serif);
	font-weight: 700;
	color: var(--sage-dark);
	font-size: 0.9rem;
	flex-shrink: 0;
}
.author-name {
	font-weight: 700;
	font-size: 0.88rem;
	color: var(--text);
}
.author-loc {
	font-size: 0.75rem;
	color: var(--text-light);
}

/* ============================================================
   ABOUT BANNER / CTA
   ============================================================ */
.about-banner {
	background: linear-gradient(135deg, var(--sage-dark) 0%, var(--sage) 100%);
	border-radius: var(--radius-lg);
	padding: 4rem 3rem;
	color: var(--white);
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 2rem;
}
.about-banner h2 {
	color: var(--white);
}
.about-banner p {
	color: rgba(255, 255, 255, 0.82);
	max-width: 560px;
}

/* ============================================================
   INSTAGRAM GRID / GALLERY
   ============================================================ */
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 0.5rem;
	border-radius: var(--radius-lg);
	overflow: hidden;
}
.gallery-item {
	position: relative;
	aspect-ratio: 1;
	overflow: hidden;
	background: var(--sage-pale);
}
.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}
.gallery-item:hover img {
	transform: scale(1.1);
}
.gallery-overlay {
	position: absolute;
	inset: 0;
	background: rgba(78, 110, 71, 0.55);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay {
	opacity: 1;
}
.gallery-overlay span {
	color: var(--white);
	font-size: 1.4rem;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter {
	background: var(--cream-dark);
	border-radius: var(--radius-lg);
	padding: 3.5rem;
	text-align: center;
}
.newsletter h2 {
	margin-bottom: 0.6rem;
}
.newsletter p {
	margin-bottom: 2rem;
}
.newsletter-form {
	display: flex;
	max-width: 460px;
	margin: 0 auto;
	gap: 0.5rem;
	background: var(--white);
	border-radius: var(--radius);
	padding: 0.35rem 0.35rem 0.35rem 0.9rem;
	box-shadow: var(--shadow-sm);
}
.newsletter-form input {
	flex: 1;
	border: none;
	outline: none;
	font-family: var(--font-sans);
	font-size: 0.9rem;
	background: transparent;
	color: var(--text);
}
.newsletter-form input::placeholder {
	color: var(--text-light);
}
.newsletter-form .btn {
	padding: 0.65rem 1.4rem;
	border-radius: 4px;
	flex-shrink: 0;
}

/* ============================================================
   SHOP PAGE — FILTERS
   ============================================================ */
.shop-layout {
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: 2.5rem;
	align-items: start;
}
.filter-panel {
	position: sticky;
	top: 90px;
}
.filter-panel h4 {
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--sage-dark);
	margin-bottom: 1rem;
}
.filter-group {
	background: var(--white);
	border-radius: var(--radius-lg);
	padding: 1.4rem;
	margin-bottom: 1.2rem;
	box-shadow: var(--shadow-sm);
}
.filter-group + .filter-group {
	margin-top: 1rem;
}
.filter-item {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-size: 0.88rem;
	color: var(--text-mid);
	padding: 0.4rem 0;
	cursor: pointer;
}
.filter-item input[type='checkbox'] {
	accent-color: var(--sage-dark);
	width: 15px;
	height: 15px;
	cursor: pointer;
}
.filter-item:hover {
	color: var(--sage-dark);
}

.price-range {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}
.range-input {
	width: 100%;
	accent-color: var(--sage-dark);
}
.range-labels {
	display: flex;
	justify-content: space-between;
	font-size: 0.8rem;
	color: var(--text-light);
}

.shop-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1.8rem;
	flex-wrap: wrap;
	gap: 1rem;
}
.result-count {
	font-size: 0.88rem;
	color: var(--text-light);
}
.sort-select {
	border: 1.5px solid var(--cream-dark);
	border-radius: var(--radius);
	padding: 0.5rem 0.9rem;
	font-family: var(--font-sans);
	font-size: 0.85rem;
	background: var(--white);
	color: var(--text);
	cursor: pointer;
	outline: none;
	transition: border-color var(--transition);
}
.sort-select:focus {
	border-color: var(--sage);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
	background: linear-gradient(135deg, var(--sage-dark) 0%, var(--sage) 100%);
	padding: 5rem 0 4rem;
	text-align: center;
	color: var(--white);
	position: relative;
	overflow: hidden;
}
.page-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero h1 {
	color: var(--white);
	margin-bottom: 0.8rem;
}
.page-hero p {
	color: rgba(255, 255, 255, 0.82);
	font-size: 1.08rem;
}
.breadcrumb {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	font-size: 0.78rem;
	color: rgba(255, 255, 255, 0.65);
	margin-bottom: 1.5rem;
	font-family: var(--font-sans);
	letter-spacing: 0.06em;
}
.breadcrumb a {
	color: rgba(255, 255, 255, 0.65);
	transition: color var(--transition);
}
.breadcrumb a:hover {
	color: var(--white);
}
.breadcrumb span {
	color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}
.about-img-stack {
	position: relative;
}
.about-img-main {
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	aspect-ratio: 4/5;
	background: var(--sage-pale);
}
.about-img-main img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.about-img-accent {
	position: absolute;
	bottom: -1.5rem;
	right: -1.5rem;
	width: 46%;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-md);
	aspect-ratio: 1;
	background: var(--cream-dark);
	border: 6px solid var(--cream);
}
.about-img-accent img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.stat-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-top: 2.5rem;
}
.stat-item {
	text-align: center;
}
.stat-num {
	font-family: var(--font-serif);
	font-size: 2.2rem;
	font-weight: 700;
	color: var(--sage-dark);
}
.stat-label {
	font-size: 0.78rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--text-light);
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 2rem;
}
.team-card {
	text-align: center;
}
.team-img {
	width: 140px;
	height: 140px;
	border-radius: 50%;
	margin: 0 auto 1.2rem;
	overflow: hidden;
	background: var(--sage-pale);
	box-shadow: var(--shadow-sm);
}
.team-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.team-name {
	font-family: var(--font-serif);
	font-size: 1.1rem;
	color: var(--sage-dark);
	margin-bottom: 0.2rem;
}
.team-role {
	font-size: 0.78rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--gold);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 3rem;
	align-items: start;
}
.contact-info h3 {
	margin-bottom: 1.5rem;
}
.contact-detail {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
	padding: 1.2rem 0;
	border-bottom: 1px solid var(--cream-dark);
}
.contact-detail:last-child {
	border-bottom: none;
}
.contact-icon {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--sage-pale);
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
}
.contact-detail h4 {
	font-size: 0.82rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--sage);
	margin-bottom: 0.2rem;
}
.contact-detail p {
	font-size: 0.92rem;
	color: var(--text-mid);
}

.contact-form-card {
	background: var(--white);
	border-radius: var(--radius-lg);
	padding: 2.5rem;
	box-shadow: var(--shadow-md);
}
.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}
.form-group {
	margin-bottom: 1.2rem;
}
.form-label {
	display: block;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--sage-dark);
	margin-bottom: 0.45rem;
}
.form-input,
.form-textarea,
.form-select {
	width: 100%;
	padding: 0.78rem 1rem;
	border: 1.5px solid var(--cream-dark);
	border-radius: var(--radius);
	font-family: var(--font-sans);
	font-size: 0.92rem;
	color: var(--text);
	background: var(--cream);
	outline: none;
	transition:
		border-color var(--transition),
		box-shadow var(--transition);
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
	border-color: var(--sage);
	box-shadow: 0 0 0 3px rgba(125, 155, 118, 0.15);
}
.form-textarea {
	resize: vertical;
	min-height: 130px;
}

/* ============================================================
   POLICY PAGES (delivery, returns, privacy)
   ============================================================ */
.policy-content {
	background: var(--white);
	border-radius: var(--radius-lg);
	padding: 3rem;
	box-shadow: var(--shadow-sm);
	max-width: 820px;
	margin: 0 auto;
}
.policy-content h2 {
	font-size: 1.5rem;
	margin: 2rem 0 0.8rem;
	color: var(--sage-dark);
}
.policy-content h2:first-child {
	margin-top: 0;
}
.policy-content p {
	margin-bottom: 1rem;
	font-size: 0.95rem;
	line-height: 1.8;
}
.policy-content ul {
	padding-left: 1.4rem;
	list-style: disc;
	margin-bottom: 1rem;
}
.policy-content ul li {
	font-size: 0.95rem;
	color: var(--text-mid);
	margin-bottom: 0.4rem;
	line-height: 1.7;
}
.policy-table {
	width: 100%;
	border-collapse: collapse;
	margin: 1.2rem 0;
}
.policy-table th {
	background: var(--sage-pale);
	color: var(--sage-dark);
	font-size: 0.82rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 0.9rem 1rem;
	text-align: left;
}
.policy-table td {
	padding: 0.85rem 1rem;
	border-bottom: 1px solid var(--cream-dark);
	font-size: 0.9rem;
	color: var(--text-mid);
}
.policy-table tr:last-child td {
	border-bottom: none;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
	background: linear-gradient(135deg, var(--sage-dark) 0%, #3d5247 100%);
	color: rgba(255, 255, 255, 0.75);
	padding-top: 6rem;
	position: relative;
	overflow: hidden;
}

.site-footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.2),
		transparent
	);
}

.footer-grid {
	display: grid;
	grid-template-columns: 2.5fr 1fr 1fr;
	gap: 3.5rem;
	padding-bottom: 3.5rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	position: relative;
	z-index: 2;
}

.footer-brand .logo-text {
	color: var(--white);
	font-size: 1.8rem;
	font-weight: 700;
}

.footer-brand .logo-sub {
	color: var(--gold);
	font-size: 0.9rem;
	margin-top: 0.2rem;
}

.footer-brand p {
	font-size: 0.92rem;
	margin: 1.2rem 0 1.8rem;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.85);
	max-width: 320px;
}

.footer-social {
	display: flex;
	gap: 0.8rem;
	margin-top: 1.5rem;
}

.social-btn {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.3);
	background: rgba(255, 255, 255, 0.05);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	backdrop-filter: blur(10px);
}

.social-btn:hover {
	background: var(--gold);
	border-color: var(--gold);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(201, 169, 110, 0.3);
}

.social-btn svg {
	width: 18px;
	height: 18px;
	fill: rgba(255, 255, 255, 0.9);
	transition: fill 0.3s ease;
}

.social-btn:hover svg {
	fill: var(--sage-dark);
}

.footer-col h4 {
	color: var(--white);
	font-size: 0.82rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-family: var(--font-sans);
	font-weight: 700;
	margin-bottom: 1.5rem;
	position: relative;
	padding-bottom: 0.8rem;
}

.footer-col h4::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 30px;
	height: 2px;
	background: var(--gold);
	border-radius: 1px;
}

.footer-col ul li + li {
	margin-top: 0.8rem;
}

.footer-col ul li a {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.7);
	transition: all 0.3s ease;
	position: relative;
	display: inline-block;
}

.footer-col ul li a::before {
	content: '→';
	position: absolute;
	left: -15px;
	opacity: 0;
	transition: all 0.3s ease;
	color: var(--gold);
}

.footer-col ul li a:hover {
	color: var(--white);
	transform: translateX(5px);
}

.footer-col ul li a:hover::before {
	opacity: 1;
	left: -20px;
}

.footer-contact {
	background: rgba(255, 255, 255, 0.03);
	padding: 1.8rem;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

.footer-contact:hover {
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(255, 255, 255, 0.15);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.footer-contact h4 {
	margin-bottom: 1.2rem;
}

.footer-contact h4::after {
	width: 25px;
}

.footer-locations h4 {
	margin-bottom: 1.5rem;
}

.footer-locations h4::after {
	width: 35px;
}

.locations-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}

.location-card {
	background: rgba(255, 255, 255, 0.03);
	padding: 1.5rem;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

.location-card:hover {
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(255, 255, 255, 0.15);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.location-card h5 {
	color: var(--gold);
	font-size: 0.95rem;
	font-weight: 600;
	margin-bottom: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.location-card p {
	font-size: 0.85rem;
	margin-bottom: 0.6rem;
	display: flex;
	gap: 0.5rem;
	align-items: flex-start;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.5;
}

.location-card span {
	flex-shrink: 0;
	opacity: 0.8;
	font-size: 0.9rem;
}

.footer-contact p {
	font-size: 0.88rem;
	margin-bottom: 0.8rem;
	display: flex;
	gap: 0.6rem;
	align-items: flex-start;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.6;
}

.footer-contact span {
	flex-shrink: 0;
	opacity: 0.8;
	font-size: 0.95rem;
}

.footer-bottom {
	padding: 2rem 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	margin-top: 1rem;
}

.footer-locations-section {
	width: 100%;
	padding: 2rem 0;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	margin-top: 1rem;
}

.footer-locations-section h4 {
	color: var(--white);
	font-size: 0.82rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-family: var(--font-sans);
	font-weight: 700;
	margin-bottom: 1.5rem;
	text-align: center;
	position: relative;
	padding-bottom: 0.8rem;
}

.footer-locations-section h4::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 40px;
	height: 2px;
	background: var(--gold);
	border-radius: 1px;
}

.footer-locations-section .locations-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	max-width: 800px;
	margin: 0 auto;
}

.footer-locations-section .location-card {
	background: rgba(255, 255, 255, 0.03);
	padding: 1.5rem;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

.footer-locations-section .location-card:hover {
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(255, 255, 255, 0.15);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.footer-locations-section .location-card h5 {
	color: var(--gold);
	font-size: 0.95rem;
	font-weight: 600;
	margin-bottom: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.footer-locations-section .location-card p {
	font-size: 0.85rem;
	margin-bottom: 0.6rem;
	display: flex;
	gap: 0.5rem;
	align-items: flex-start;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.5;
}

.footer-locations-section .location-card span {
	flex-shrink: 0;
	opacity: 0.8;
	font-size: 0.9rem;
}

.footer-bottom p {
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.footer-bottom a {
	color: rgba(255, 255, 255, 0.6);
	transition: all 0.3s ease;
	font-size: 0.82rem;
	position: relative;
}

.footer-bottom a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 1px;
	background: var(--gold);
	transition: width 0.3s ease;
}

.footer-bottom a:hover {
	color: var(--white);
}

.footer-bottom a:hover::after {
	width: 100%;
}

/* Footer decorative elements */
.site-footer::after {
	content: '🌸';
	position: absolute;
	top: 20px;
	right: 50px;
	font-size: 2rem;
	opacity: 0.1;
	transform: rotate(-15deg);
}

/* Responsive adjustments */
@media (max-width: 992px) {
	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 2.5rem;
	}

	.footer-brand {
		grid-column: span 2;
	}

	.footer-locations-section .locations-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
}

@media (max-width: 768px) {
	.site-footer {
		padding-top: 4rem;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.footer-brand {
		grid-column: span 1;
	}

	.footer-contact {
		padding: 1.5rem;
	}

	.footer-locations-section .locations-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.footer-locations-section .location-card {
		padding: 1.2rem;
	}

	.footer-bottom {
		flex-direction: column;
		text-align: center;
	}
}

.footer-badges {
	display: flex;
	gap: 0.6rem;
	align-items: center;
}

.footer-badge {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 4px;
	padding: 0.25rem 0.65rem;
	font-size: 0.68rem;
	color: rgba(255, 255, 255, 0.55);
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

/* ============================================================
   CART DRAWER
   ============================================================ */
.cart-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1000;
	opacity: 0;
	pointer-events: none;
	transition: opacity var(--transition);
}
.cart-overlay.open {
	opacity: 1;
	pointer-events: all;
}
.cart-drawer {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: 400px;
	max-width: 100vw;
	background: var(--cream);
	z-index: 1001;
	box-shadow: var(--shadow-lg);
	transform: translateX(100%);
	transition: transform var(--transition);
	display: flex;
	flex-direction: column;
}
.cart-drawer.open {
	transform: translateX(0);
}
.cart-header {
	padding: 1.5rem;
	border-bottom: 1px solid var(--cream-dark);
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.cart-header h3 {
	font-size: 1.1rem;
}
.cart-close {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: none;
	background: var(--cream-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 1.1rem;
}
.cart-items {
	flex: 1;
	overflow-y: auto;
	padding: 1.5rem;
}
.cart-item {
	display: flex;
	gap: 1rem;
	padding: 1rem 0;
	border-bottom: 1px solid var(--cream-dark);
}
.cart-item-img {
	width: 70px;
	height: 70px;
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--sage-pale);
	flex-shrink: 0;
}
.cart-item-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.cart-item-name {
	font-family: var(--font-serif);
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--text);
	margin-bottom: 0.2rem;
}
.cart-item-price {
	font-size: 0.88rem;
	color: var(--sage-dark);
	font-weight: 700;
}
.qty-ctrl {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: 0.5rem;
}
.qty-btn {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	border: 1.5px solid var(--cream-dark);
	background: var(--white);
	cursor: pointer;
	font-size: 0.9rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
}
.qty-btn:hover {
	border-color: var(--sage);
	color: var(--sage-dark);
}
.qty-num {
	font-size: 0.9rem;
	font-weight: 700;
	min-width: 20px;
	text-align: center;
}
.cart-remove {
	margin-left: auto;
	background: none;
	border: none;
	cursor: pointer;
	color: var(--text-light);
	font-size: 0.85rem;
	transition: color var(--transition);
}
.cart-remove:hover {
	color: #c0392b;
}
.cart-footer {
	padding: 1.5rem;
	border-top: 1px solid var(--cream-dark);
}
.cart-total {
	display: flex;
	justify-content: space-between;
	margin-bottom: 1.2rem;
}
.cart-total span:first-child {
	font-size: 0.88rem;
	color: var(--text-light);
}
.cart-total span:last-child {
	font-family: var(--font-serif);
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--sage-dark);
}
.empty-cart {
	text-align: center;
	padding: 3rem 1rem;
	color: var(--text-light);
}
.empty-cart-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
}

/* ============================================================
   SUCCESS / TOAST
   ============================================================ */
.toast {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	z-index: 2000;
	background: var(--sage-dark);
	color: var(--white);
	padding: 1rem 1.5rem;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	display: flex;
	align-items: center;
	gap: 0.8rem;
	transform: translateY(120%);
	transition: transform var(--transition);
	font-size: 0.9rem;
	max-width: 320px;
}
.toast.show {
	transform: translateY(0);
}
.toast-icon {
	font-size: 1.2rem;
}

/* ============================================================
   MISC — loading skeleton, badges
   ============================================================ */
.skeleton {
	background: linear-gradient(
		90deg,
		var(--cream-dark) 25%,
		var(--cream) 50%,
		var(--cream-dark) 75%
	);
	background-size: 200% 100%;
	animation: shimmer 1.4s infinite;
	border-radius: var(--radius);
}
@keyframes shimmer {
	0% {
		background-position: 200% 0;
	}
	100% {
		background-position: -200% 0;
	}
}

.badge-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	background: var(--sage-pale);
	color: var(--sage-dark);
	border-radius: 100px;
	padding: 0.3rem 0.8rem;
	font-size: 0.75rem;
	font-weight: 700;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
	.shop-layout {
		grid-template-columns: 200px 1fr;
	}
	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}
	.gallery-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (max-width: 768px) {
	.main-nav {
		display: none;
	}
	.hamburger {
		display: flex;
	}
	.hero-content {
		margin-left: 1.5rem;
		padding: 3rem 1.5rem;
	}
	.hero-badge {
		display: none;
	}
	.shop-layout {
		grid-template-columns: 1fr;
	}
	.filter-panel {
		position: static;
	}
	.about-grid {
		grid-template-columns: 1fr;
	}
	.about-img-accent {
		display: none;
	}
	.contact-grid {
		grid-template-columns: 1fr;
	}
	.form-row {
		grid-template-columns: 1fr;
	}
	.about-banner {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.footer-grid {
		grid-template-columns: 1fr;
	}
	.cart-drawer {
		width: 100vw;
	}
	.section-pad {
		padding: 60px 0;
	}
	.gallery-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.newsletter {
		padding: 2rem 1.5rem;
	}
}
@media (max-width: 480px) {
	.product-grid {
		grid-template-columns: 1fr;
	}
	.features-grid {
		grid-template-columns: 1fr;
	}
	.hero h1 {
		font-size: 2rem;
	}
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition:
		opacity 0.6s ease,
		transform 0.6s ease;
}
.reveal.visible {
	opacity: 1;
	transform: translateY(0);
}
