﻿:root {
	--bg-main: #fffbf4;
	--bg-alt: #fffbf4;
	--text-main: #11120d;
	--text-muted: #565449;
	
	--card-bg: #fffbf4;
	--bone: #d8cfbc;
	--hover-text: #d8cfbc;
	--hover-support: #565449;
	--shadow-soft: 0 10px 30px rgba(22, 22, 22, 0.06);
	--radius-soft: 14px;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: "Montserrat", sans-serif;
	color: var(--text-main);
	background: #fffbf4;
	line-height: 1.6;
}

h1,
h2,
h3,
.logo,
.footer-logo {
	font-family: "Playfair Display", serif;
	letter-spacing: 0.02em;
}

a {
	text-decoration: none;
}


.hero {
	position: relative;
}

.hero .carousel,
.hero .carousel-inner,
.hero .carousel-item {
	min-height: clamp(460px, 76vh, 700px);
}

.hero-slide {
	min-height: clamp(460px, 76vh, 700px);
	position: relative;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.hero-slide::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.28));
}

.hero-slide-1 {
	background-image: url("../img/collection1.png");
}

.hero-slide-2 {
	background-image: url("../img/Tin collection.png");
}

.hero-slide-3 {
	background-image: url("../img/ritual bath.jpg");
}

.hero-content {
	max-width: 720px;
	padding-inline: 1rem;
	margin-top: clamp(250px, 30vh, 450px);
	z-index: 1;
}

.hero-kicker,
.section-kicker {
	text-transform: uppercase;
	letter-spacing: 0.16em;
	font-size: 0.75rem;
	font-weight: 600;
}

.hero-title {
	font-size: clamp(2.2rem, 5vw, 4rem);
	line-height: 1;
}

.hero-subtext {
	max-width: 560px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 1rem;
}

.btn-hero {
	border-radius: 0;
	color: #11120d;
	background-color: #fffbf4;
	padding: 0.68rem 1.7rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-size: 0.82rem;
	font-weight: 700;
	transition: all 0.25s ease;
}

.btn-hero:hover,
.btn-hero:focus-visible {
	background-color: #11120d;
	color: #fffbf4;
	border-color: #11120d;
}

.section-title {
	font-size: clamp(2rem, 3.2vw, 3rem);
	line-height: 1.05;
}

.product-card {
	display: block;
	border-radius: 0;
	overflow: hidden;
	background-color: transparent;
	/*box-shadow: 0 8px 24px rgba(18, 18, 18, 0.03)*/
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	color: inherit;
}

.product-card:hover,
.product-card:focus-visible {
	transform: translateY(-4px);
	box-shadow: var(--shadow-soft);
}

.product-image-wrap {
	overflow: hidden;
	aspect-ratio: 4 / 5;
	background-color: var(--bone);
}

.product-image-wrap a {
	display: block;
	width: 100%;
	height: 100%;
}

.product-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s ease;
}

.product-card:hover .product-image,
.product-card:focus-visible .product-image {
	transform: scale(1.06);
}

.product-meta {
	padding: 0.95rem 0 0;
	background-color: transparent;
}

.product-name {
	margin: 0;
	font-size: 1.2rem;
	line-height: 1.3;
	min-height: calc(1.3em * 2);
	padding-inline: 0.95rem;
}

.product-name a {
	color: inherit;
}

.product-price {
	margin: 0.35rem 0 0;
	color: var(--text-muted);
	font-size: 0.9rem;
	padding-inline: 0.95rem;
}

.product-actions {
	margin-top: 0.65rem;
}

.featured-add-btn {
	width: 100%;
	border: 1px solid #11120d;
	border-radius: 0;
	background-color: #11120d;
	color: #fffbf4;
	padding: 0.58rem 0.75rem;
	font-size: 0.77rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transition: transform 0.2s ease, background-color 0.2s ease;
}

.featured-add-btn:hover,
.featured-add-btn:focus-visible {
	background-color: #565449;
	transform: translateY(-1px);
}

.featured-add-btn:disabled {
	opacity: 0.8;
	cursor: default;
}

.btn-view-all {
	border-radius: 0;
	border: 1px solid var(--text-main);
	color: var(--text-main);
	background-color: transparent;
	padding: 0.62rem 1.55rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-size: 0.78rem;
	font-weight: 600;
	transition: all 0.25s ease;
}

.btn-view-all:hover,
.btn-view-all:focus-visible {
	background-color: var(--text-main);
	border-color: var(--text-main);
	color: #fffbf4;
	transform: translateY(-1px);
}

.our-story {
	background-color: var(--bg-alt);
}

.story-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 0.85rem;
}

.story-grid-item {
	border-radius: 0;
	overflow: hidden;
	box-shadow: 0 6px 22px rgba(20, 20, 20, 0.05);
}

.story-grid-item.tall {
	grid-row: span 2;
}

.story-grid-item img {
	width: 100%;
	height: 100%;
	min-height: 180px;
	object-fit: cover;
	aspect-ratio: 4 / 5;
}

.story-content {
	max-width: 520px;
}

.story-text {
	color: var(--text-muted);
	margin-bottom: 0.9rem;
}

@media (max-width: 767.98px) {
	/* mobile nav-link rules moved to css/navbar.css */

	.logo {
		font-size: 1.5rem;
	}

	.logo-image {
		height: clamp(26px, 7vw, 32px);
	}

	.hero {
		min-height: 530px;
	}

	.hero .carousel,
	.hero .carousel-inner,
	.hero .carousel-item,
	.hero-slide {
		min-height: 530px;
	}

	.hero-subtext {
		font-size: 0.95rem;
	}

	.section-title {
		font-size: 2.1rem;
	}

	.product-meta {
		padding: 0.95rem 0 1.05rem;
	}

	.story-grid {
		grid-template-columns: 1fr 1fr;
	}

	.story-grid-item.tall {
		grid-column: span 2;
		grid-row: auto;
	}
}

/* Toast Notifications */
.toast-container {
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 9999;
	display: flex;
	flex-direction: column;
	gap: 12px;
	max-width: 380px;
	pointer-events: none;
}

.toast {
	padding: 14px 18px;
	border-radius: 4px;
	font-size: 0.95rem;
	font-weight: 500;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	animation: slideIn 0.3s ease backwards;
	pointer-events: auto;
	word-break: break-word;
}

.toast-success {
	background-color: #11120d;
	color: #fffbf4;
	
}

.toast.show {
	opacity: 1;
}

.toast:not(.show) {
	opacity: 0;
	animation: slideOut 0.3s ease forwards;
}

@keyframes slideIn {
	from {
		transform: translateX(400px);
		opacity: 0;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes slideOut {
	from {
		transform: translateX(0);
		opacity: 1;
	}
	to {
		transform: translateX(400px);
		opacity: 0;
	}
}

@media (max-width: 480px) {
	.toast-container {
		left: 12px;
		right: 12px;
		max-width: none;
	}

	.toast {
		font-size: 0.9rem;
		padding: 12px 16px;
	}
}



