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

/* ---------------- Variables ---------------- */
:root {
    --max-w: 1100px;
    --bg: #ffffff;
    --beige: #f6efe6;
    --terracotta: #d58e88;
    --dark: #243b2b;
	--lighter: #33533d;
    --muted: #7a6f67;
    --radius: 14px;
    --gap: 24px;
	--section-padding: 28px;
}

/* ---------------- Global ---------------- */
body {
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--dark);
    background-color: var(--bg);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

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

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

.grid {
    display: grid;
    gap: 30px;
}

.clz-section {
    padding: 0 var(--section-padding);
}

/* ---------------- Buttons ---------------- */
button, .button, .clz-btn {
    border: none;
    padding: 0.75em 1.5em;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
}

.clz-btn-primary {
    background-color: var(--dark);
    color: #fff;
}

.clz-btn-alt {
    background-color: transparent;
    border: 2px solid var(--dark);
    color: var(--dark);
}

button:hover:not(.clz-menu-toggle), .clz-btn:hover, button:hover, .button:hover {
    background-color: var(--lighter);
}

.clz-menu-toggle, .clz-menu-toggle:hover, .clz-menu-toggle:focus, .clz-menu-toggle:active, .clz-menu-toggle:focus-visible, .clz-menu-toggle.open {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  -webkit-tap-highlight-color: transparent !important;
}

.clz-menu-toggle::before, .clz-menu-toggle::after {
  background: transparent !important;
  content: none !important;
}

.clz-page-title {
    font-family: "Playfair Display", serif;
    font-size: 2.4rem;
    margin: 28px 0 18px;
}

/* ---------------- Header ---------------- */
.clz-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 6px 16px;
  position: relative;
  z-index: 100;
  background: var(--bg);
}

.clz-brand {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.6px;
}

.clz-nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

.clz-nav a {
  padding: 8px 10px;
  border-radius: 8px;
  font-weight: 600;
}

.clz-nav a:hover {
  color: var(--terracotta);
  background: rgba(20,48,35,0.03);
}

/* ---------------- Hamburger ---------------- */
.clz-menu-toggle {
  display: none;
  position: relative;
  width: 40px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1002;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.clz-menu-toggle span {
  position: absolute;
  width: 70%;
  height: 3px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.clz-menu-toggle span:nth-child(1) { top: 8px; }
.clz-menu-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.clz-menu-toggle span:nth-child(3) { bottom: 8px; }

.clz-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 50%;
}
.clz-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.clz-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 50%;
}

/* ----------Home Page Hero ---------------- */
.clz-hp-hero-full {
	position: relative;
	height: 100vh;
	width: 100%;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.clz-hp-hero-bg {
	position: absolute;
	inset: 0;
	display: flex;
	width: 100%;
	height: 100%;
}

.clz-hp-hero-bg img {
	width: 50%;
	height: 100%;
	object-fit: cover;
}

.clz-hp-hero-bg img:first-child {
	object-position: center 0%;
}

.clz-hp-hero-bg img:last-child {
	object-position: center 20%;
}

.clz-hp-hero-full::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.35);
	z-index: 1;
}

.clz-hp-hero-overlay {
	position: relative;
	z-index: 2;
	text-align: center;
	color: #fff;
}

.clz-hp-hero-overlay h1 {
	font-family: "Playfair Display", serif;
	font-size: clamp(2rem, 6vw, 4rem);
	line-height: 1.1;
	margin-bottom: 1.5rem;
}

.clz-hp-hero-overlay .title-highlight {
	color: var(--terracotta);
}

.clz-hp-kicker {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--terracotta);
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 8px;
}

.clz-hp-hero h1 {
    font-family: "Playfair Display", serif;
    font-size: 44px;
    line-height: 1.04;
    margin: 0 0 24px;
}

.clz-hp-hero p {
    color: var(--muted);
    max-width: 520px;
    margin: 0 0 18px;
}

.clz-cta {
    display: inline-flex;
    justify-content: center;    
    flex-wrap: wrap;
	gap: 12px;
	padding-left: 6px;
}

/* ---------------- Reusable Hero ---------------- */
.clz-hero {
    width: 100%;
    height: 300px;
    border-radius: 18px;
    margin-bottom: 32px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.clz-section > .clz-hero {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100vw - (var(--section-padding) * 2));
    max-width: 100vw;
    margin-left: 0;
    margin-right: 0;
}

.clz-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

.clz-hero-content {
    position: relative;
    text-align: center;
    padding: 20px 40px;
    color: #fff;
    max-width: 600px;
}

.clz-hero h1 {
    font-family: "Playfair Display", serif;
    font-size: 2.8rem;
    margin: 0 0 10px;
}

.clz-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

.clz-hero-btn {
    font-size: 1rem;
    padding: 10px 20px;
}

/* ---------------- Shop by Category ---------------- */
.clz-shopby-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px;
}

.clz-tile {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 170px;
    box-shadow: 0 10px 30px rgba(20,48,35,0.05);
    cursor: pointer;
    transition: transform 0.36s, box-shadow 0.36s;
    background-size: cover;
    background-position: center;
}

.clz-tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(20,48,35,0.08);
}

.clz-tile .label {
    position: absolute;
    left: 16px;
    bottom: 14px;
    color: #fff;
    font-weight: 800;
    font-size: 18px;
    text-shadow: 0 6px 18px rgba(0,0,0,0.45);
}

/* ---------------- Featured Boutiques ---------------- */
.clz-boutiques-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
}

.clz-boutique-list {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(20,48,35,0.06);
    transition: transform 0.28s;
}

.clz-boutique-list:hover {
    transform: translateY(-6px);
}

.clz-boutique-list .photo {
    height: 240px;
    overflow: hidden;
}

.clz-boutique-list .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.clz-boutique-list .meta {
    padding: 14px;
}

.clz-boutique-list h4 {
    margin: 0 0 8px;
    font-family: "Playfair Display", serif;
}

.clz-boutique-list p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

/* --------------------Shop-------------------- */
.clz-shop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
	margin-top: 20px;
}

.clz-shop {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(20,48,35,0.06);
    display: flex;
    flex-direction: column;
    transition: transform 0.28s;
}

.clz-shop:hover {
    transform: translateY(-6px);
}

.clz-shop .photo {
    height: 200px;
    overflow: hidden;
	position: relative;
}

.clz-shop .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.clz-shop .meta {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.clz-shop h4 {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: 1.1rem;
}

.clz-shop p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    flex: 1;
}

.clz-shop .clz-btn {
    margin-top: auto;
    align-self: flex-start;
}

.clz-shop-section {
    padding: 0 28px;
}

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

.clz-shop-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.clz-filter-btn {
    padding: 6px 12px;
    border: 1px solid var(--dark);
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.clz-filter-btn.active,
.clz-filter-btn:hover {
    background-color: var(--dark);
    color: #fff;
}

.clz-shop-sort {
    display: flex;
    align-items: center;
    gap: 6px;
}

.clz-shop-sort select {
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid rgba(0,0,0,0.1);
}

.clz-shop-card {
    display: block;
    text-decoration: none;
    color: inherit;
}

.clz-shop-card:hover {
    transform: translateY(-6px);
}

.clz-shop-card .meta h4,
.clz-shop-card .meta p {
    pointer-events: none;
}

.clz-price-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255,255,255,0.85);
    color: var(--dark);
    padding: 6px 10px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    backdrop-filter: blur(5px);
}

/* ---------------Product Detail -------------- */
.clz-product-page {
    max-width: 1200px;
    margin: 0 auto;
}

.clz-breadcrumbs {
    font-size: 13px;
    margin-bottom: 20px;
    color: #777;
}

.clz-breadcrumbs a {
    color: inherit;
    text-decoration: none;
}

.clz-breadcrumbs span {
    margin: 0 6px;
}

.clz-product-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: start;
}

.clz-product-media img {
    width: 100%;
    max-height: 75vh; 
    object-fit: contain;
	border-radius: 14px;
}

.clz-product-info {
    position: sticky;
    top: 120px;
}

.clz-product-title {
    font-size: 28px;
    margin-bottom: 20px;
}

.clz-product-price {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

.clz-product-option {
    margin-bottom: 24px;
}

.clz-product-option label {
    display: block;
    font-size: 13px;
    margin-bottom: 6px;
}

.clz-product-option select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
	border-radius: 10px;
}

.clz-addtocart {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 14px;
    font-size: 14px;
}

.clz-product-details {
    margin-top: 80px;
    max-width: 700px;
}

.clz-product-description {
    font-size: 16px;
	font-weight: 400;
    margin-bottom: 40px;
	color: var(--muted);
}

.clz-product-option select,
.clz-addtocart,
.clz-product-boutique-info,
.clz-product-boutique-label,
.clz-product-boutique-name,
.clz-product-boutique-location,
.clz-product-boutique-mood {
    width: 100%;
    box-sizing: border-box;
	display: block;
}

.clz-product-boutique-info {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.clz-product-boutique-label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 4px;
}

.clz-product-boutique-name {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
    margin-bottom: 2px;
}

.clz-product-boutique-name:hover {
    color: var(--terracotta);
}

.clz-product-boutique-location {
    font-size: 13px;
    color: var(--muted);
    margin: 0;
}

.clz-product-boutique-mood {
    font-size: 13px;
    line-height: 1.5;
    color: var(--muted);
    margin-top: 14px;
	width: 100%
}

/* ---------------- Newsletter ---------------- */
.clz-news {
    margin-top: 34px;
    background: var(--beige);
    padding: 18px;
    border-radius: 12px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.clz-news input {
    flex: 1;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid rgba(20,48,35,0.06);
}

.clz-news button {
    padding: 12px 16px;
    border-radius: 10px;
    background: var(--terracotta);
    color: #fff;
    border: 0;
    font-weight: 700;
    cursor: pointer;
}

/* ---------------- Footer ---------------- */
.clz-footer {
    margin-top: 28px;
    padding: 18px;
    text-align: center;
    color: #fff;
    background: var(--dark);
    border-radius: 10px;
}

/* ---------------- Responsive ---------------- */
@media (max-width: 1000px) {
	.clz-section > .clz-hero { width: calc(100vw - (var(--section-padding) * 2)); }
	.clz-hero { grid-template-columns: 1fr; }
	.clz-shopby-grid { grid-template-columns: repeat(2,1fr); }
	.clz-boutiques-grid { grid-template-columns: repeat(2,1fr); }
	.clz-hero h1 { font-size: 34px; }
	.clz-shop-grid { grid-template-columns: repeat(2, 1fr); }
	.clz-filter-btn { color: var(--dark); }
	.clz-cta { padding-left: none }

	.clz-shop-sort select { 
		color: var(--dark);
		border: 1px solid var(--dark);
	}

	.clz-filter-btn.active,
	.clz-filter-btn:hover {
		color: #fff;
	}
}

@media (max-width: 768px) {
	.clz-section > .clz-hero { width: calc(100vw - (var(--section-padding) * 2)); }
	.clz-shopby-grid { grid-template-columns: 1fr; }
	.clz-boutiques-grid { grid-template-columns: 1fr; }
	.clz-hero h1 { font-size: 28px; }
	.clz-hero { padding: 20px; }
	.clz-hero-bg { flex-direction: column;}
	.clz-shop-grid { grid-template-columns: 1fr; }
	.clz-shop-filters { gap: 6px; }
	.clz-shop-sort { margin-top: 10px; }
	.clz-filter-btn { color: var(--dark); }
	.clz-cta { padding-left: none }

	.clz-shop-sort select { 
		color: var(--dark);
		border: 1px solid var(--dark);
	}


	.clz-filter-btn.active,
	.clz-filter-btn:hover {
		color: #fff;
	}

	.clz-shop-toolbar {
		flex-direction: column;
		align-items: flex-start;
	}

	.clz-hero-bg img {
		width: 100%;
		height: 50%;
	}

	.clz-menu-toggle {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.clz-nav {
		position: absolute;
		top: 60px;
		left: 0;
		width: 100%;
		flex-direction: column;
		align-items: center;
		gap: 14px;
		padding: 20px 0;
		background: var(--bg);
		transform: translateY(-120%);
		opacity: 0;
		pointer-events: none;
		transition: all 0.3s ease;
		z-index: 1000;
		border-top: 1px solid rgba(0,0,0,0.05);
	}

	.clz-nav.open {
		transform: translateY(0);
		opacity: 1;
		pointer-events: all;
	}

	.clz-nav a {
		font-size: 1.1rem;
	}

	.clz-product-price {
		font-size: 1.5rem;
		margin: 10px 0 16px;
	}

	.clz-product-detail {
		flex-direction: column;
		padding: 20px;
	}

	.clz-product-media,
	.clz-product-content {
		max-width: 100%;
	}

	.clz-breadcrumbs {
		text-align: left;
		margin-bottom: 12px;
	}
	
	.clz-product-layout {
		display: block;

	}
}