/* Kagani Atelier theme — main stylesheet.
   Tokens first; edit colors/spacing here and the whole site follows. */
:root {
	--makl-bg: #f8f5ef;
	--makl-ink: #12100c;
	--makl-muted: #565049;
	--makl-brand: #2b1c0e;
	--makl-brand-dark: #1a1109;
	--makl-accent: #b08428;
	--makl-line: #ddd2c0;
	--makl-radius: 4px;
	--makl-font-head: "Cormorant Garamond", Georgia, serif;
	--makl-font-body: "Inter", -apple-system, sans-serif;
}

* { box-sizing: border-box; }
body {
	margin: 0;
	font-family: var(--makl-font-body);
	color: var(--makl-ink);
	background: var(--makl-bg);
	font-size: 14px;
	line-height: 1.55;
}
h1, h2, h3, h4 { font-family: var(--makl-font-head); font-weight: 600; line-height: 1.2; }
a { color: var(--makl-brand); text-decoration: none; }
a:hover { color: var(--makl-brand-dark); }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
.skip-link { position: absolute; left: -9999px; }

/* Topbar + header */
.makl-topbar {
	background: var(--makl-brand-dark);
	color: #e8dcc8;
	text-align: center;
	font-size: 11px;
	padding: 6px 12px;
	letter-spacing: .06em;
	text-transform: uppercase;
}
.site-header { background: #fff; border-bottom: 1px solid var(--makl-line); position: sticky; top: 0; z-index: 50; }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; min-height: 64px; padding: 0 20px; }
.makl-logo { font-family: var(--makl-font-head); font-size: 24px; color: var(--makl-ink); letter-spacing: .02em; }
.makl-logo span { color: var(--makl-brand); font-style: italic; }
.site-nav { flex: 1; display: flex; justify-content: center; }
.site-nav__list { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }
.site-nav__list a { color: var(--makl-ink); font-size: 13px; font-weight: 500; letter-spacing: .04em; text-transform: uppercase; }
.site-nav__list a:hover { color: var(--makl-brand); }
.site-header__tools { display: flex; gap: 18px; align-items: center; }
.makl-tool { position: relative; color: var(--makl-ink); display: inline-flex; align-items: center; }
.makl-tool svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.makl-tool:hover { color: var(--makl-brand); }
.makl-cart-count {
	position: absolute; top: -6px; right: -8px;
	background: var(--makl-brand); color: #fff;
	border-radius: 999px; font-size: 10px; min-width: 16px; height: 16px;
	display: inline-flex; align-items: center; justify-content: center; padding: 0 3px;
}
/* Language switcher: TR | EN pill */
ul.makl-lang { list-style: none; margin: 0; padding: 2px; display: inline-flex; gap: 2px; border: 1px solid var(--makl-line); border-radius: 999px; }
ul.makl-lang li { display: inline-flex; }
ul.makl-lang a { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--makl-muted); padding: 4px 10px; border-radius: 999px; line-height: 1; }
ul.makl-lang .current-lang a { color: #fff; background: var(--makl-brand); }
ul.makl-lang li:not(.current-lang) a:hover { color: var(--makl-brand); }

.makl-nav-toggle { display: none; }

/* Hero */
.makl-hero {
	background: linear-gradient(120deg, var(--makl-brand-dark), var(--makl-brand));
	color: #f0e5d4;
	padding: 80px 0;
	text-align: center;
}
.makl-hero h1 { font-size: clamp(28px, 4.5vw, 48px); margin: 0 0 10px; letter-spacing: .02em; }
.makl-hero p { max-width: 520px; margin: 0 auto 24px; color: #d8c9b0; font-size: 14px; }

.makl-btn {
	display: inline-block;
	background: var(--makl-accent);
	color: #fff;
	padding: 11px 30px;
	border-radius: var(--makl-radius);
	font-weight: 600;
	font-size: 12px;
	letter-spacing: .06em;
	text-transform: uppercase;
}
.makl-btn:hover { background: #8f6a1e; color: #fff; }

/* Sections */
.makl-section { padding: 36px 0 12px; }
.makl-section__title { font-size: 26px; margin: 0 0 16px; text-align: center; letter-spacing: .02em; }

/* Category tiles */
.makl-tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.makl-tile {
	position: relative; overflow: hidden; border-radius: var(--makl-radius);
	background: #fff; border: 1px solid var(--makl-line); aspect-ratio: 1;
	display: flex; align-items: flex-end;
}
.makl-tile img { width: 100%; height: 100%; object-fit: cover; }
.makl-tile__label {
	position: absolute; inset: auto 0 0 0;
	background: linear-gradient(transparent, rgba(43,33,26,.85));
	color: #fff; padding: 26px 14px 12px; font-weight: 600;
}
.makl-tile__label em { font-style: normal; opacity: .7; font-weight: 400; margin-left: 6px; }

/* WooCommerce grid polish */
.woocommerce ul.products li.product {
	background: #fff; border: 1px solid var(--makl-line); border-radius: var(--makl-radius);
	padding: 0 0 10px; overflow: hidden; text-align: center;
}
.woocommerce ul.products li.product .woocommerce-LoopProduct-link { display: flex; flex-direction: column; }
.woocommerce ul.products li.product .woocommerce-loop-product__title {
	font-family: var(--makl-font-body); font-size: 13px; font-weight: 500; padding: 8px 10px 2px;
}
.woocommerce ul.products li.product .price { color: var(--makl-brand); font-weight: 600; font-size: 13px; }
.woocommerce ul.products li.product .button,
.woocommerce a.button, .woocommerce button.button.alt, .woocommerce .button.alt,
.woocommerce #respond input#submit {
	background: var(--makl-brand); color: #fff; border-radius: var(--makl-radius);
}
.woocommerce a.button:hover, .woocommerce button.button.alt:hover { background: var(--makl-brand-dark); }
.woocommerce div.product p.price, .woocommerce div.product span.price { color: var(--makl-brand); }

/* Pages & posts */
.makl-page { max-width: 860px; padding-top: 40px; padding-bottom: 60px; }
.makl-page__title { font-size: 32px; }
.makl-meta { color: var(--makl-muted); font-size: 13px; }
.makl-post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; padding: 40px 0; }
.makl-card { background: #fff; border: 1px solid var(--makl-line); border-radius: var(--makl-radius); overflow: hidden; }
.makl-card h2 { font-size: 17px; padding: 12px 16px 0; margin: 0; }
.makl-card__excerpt { padding: 4px 16px 16px; color: var(--makl-muted); font-size: 13px; }

/* Benefits band (above footer, sitewide) */
.makl-benefits { background: #fff; border-top: 1px solid var(--makl-line); margin-top: 48px; }
.makl-benefits__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 34px 20px; text-align: center; }
.makl-benefit svg { width: 26px; height: 26px; stroke: var(--makl-accent); fill: none; stroke-width: 1.4; margin: 0 auto 8px; display: block; }
.makl-benefit h4 { margin: 0 0 3px; font-family: var(--makl-font-body); font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.makl-benefit p { margin: 0; font-size: 12px; color: var(--makl-muted); }

/* Footer */
.site-footer { background: var(--makl-brand-dark); color: #d9c9b2; }
.site-footer a { color: #f0e3cd; }
.site-footer a:hover { color: #fff; }
.site-footer__news { border-bottom: 1px solid rgba(255,255,255,.1); }
.site-footer__news-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 34px 20px; flex-wrap: wrap; }
.site-footer__news h3 { color: #fff; font-size: 22px; margin: 0 0 4px; }
.site-footer__news p { margin: 0; font-size: 13px; color: #b8a890; max-width: 420px; }
.makl-news-form { display: flex; gap: 8px; flex: 1; max-width: 420px; min-width: 260px; }
.makl-news-form input { flex: 1; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.2); border-radius: 999px; padding: 11px 18px; color: #fff; font: inherit; font-size: 13px; }
.makl-news-form input::placeholder { color: #b8a890; }
.makl-news-form button { background: var(--makl-accent); color: #fff; border: 0; border-radius: 999px; padding: 11px 24px; font: inherit; font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; cursor: pointer; }
.makl-news-form button:hover { background: #b8903e; }
.site-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding: 48px 20px 34px; }
.site-footer .makl-logo { color: #fff; }
.site-footer__brand p { font-size: 13px; margin: 12px 0 8px; }
.site-footer__brand address { font-style: normal; font-size: 13px; color: #b8a890; line-height: 1.6; margin-bottom: 14px; }
.site-footer h4 { color: #fff; margin: 0 0 12px; font-family: var(--makl-font-body); font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.footer-menu { list-style: none; margin: 0; padding: 0; }
.footer-menu li { margin-bottom: 8px; font-size: 13px; }
.site-footer__bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 16px 20px; font-size: 12px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.makl-payments { display: flex; gap: 6px; }
.makl-pay { border: 1px solid rgba(255,255,255,.22); border-radius: 4px; padding: 3px 9px; font-size: 10px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: #d9c9b2; }
.makl-lang--footer ul.makl-lang { border-color: rgba(255,255,255,.25); }
.makl-lang--footer ul.makl-lang a { color: #b8a890; }
.makl-lang--footer ul.makl-lang .current-lang a { color: var(--makl-brand-dark); background: #e8dcc8; }

/* Mobile */
@media (max-width: 860px) {
	.makl-nav-toggle {
		display: inline-flex; flex-direction: column; gap: 4px;
		background: none; border: 1px solid var(--makl-line); border-radius: var(--makl-radius); padding: 8px 7px; cursor: pointer;
	}
	.makl-nav-toggle span { width: 18px; height: 1.5px; background: var(--makl-ink); }
	.site-nav__list {
		display: none; position: absolute; left: 0; right: 0; top: 100%;
		background: #fff; border-bottom: 1px solid var(--makl-line);
		flex-direction: column; padding: 16px 20px; gap: 12px;
	}
	.site-nav.is-open .site-nav__list { display: flex; }
	.makl-tiles { grid-template-columns: repeat(2, 1fr); }
	.makl-post-grid { grid-template-columns: 1fr; }
	.site-footer__grid { grid-template-columns: 1fr; gap: 24px; }
}

/* Strap Designer */
.makl-designer { max-width: 1240px; padding-top: 34px; }
.makl-designer__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: start; }
.makl-designer__preview { position: sticky; top: 96px; background: #fff; border: 1px solid var(--makl-line); border-radius: var(--makl-radius); padding: 18px; }
.makl-designer__preview img { width: 100%; border-radius: var(--makl-radius); }
.makl-designer__summary { margin-top: 14px; font-size: 14px; }
.makl-designer__summary div { display: flex; justify-content: space-between; gap: 12px; padding: 5px 0; border-bottom: 1px dashed var(--makl-line); }
.makl-group { border: 1px solid var(--makl-line); border-radius: var(--makl-radius); background: #fff; margin: 0 0 16px; padding: 14px 16px; }
.makl-group legend { font-family: var(--makl-font-head); font-size: 20px; padding: 0 6px; }
.makl-choices { display: flex; flex-wrap: wrap; gap: 8px; align-items: stretch; }
.makl-choice input { position: absolute; opacity: 0; }
/* Style only the direct pill wrapper; wc_price() nests its own spans inside. */
.makl-choice > span { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--makl-line); border-radius: 999px; padding: 7px 14px; font-size: 13.5px; cursor: pointer; background: var(--makl-bg); }
.makl-choice > span span, .makl-choice > span bdi { display: inline; border: 0; padding: 0; background: none; font: inherit; }
.makl-choice input:checked + span { border-color: var(--makl-brand); background: var(--makl-brand); color: #fff; }
.makl-choice input:checked + span em { color: var(--makl-accent); }
.makl-choice > span em { font-style: normal; color: var(--makl-muted); white-space: nowrap; }
/* Swatch cards: fixed width, equal height, name area flexes so price rows align. */
.makl-choice--swatch { display: flex; }
.makl-choice--swatch > span { flex-direction: column; justify-content: flex-start; border-radius: var(--makl-radius); padding: 8px; width: 118px; text-align: center; gap: 6px; height: 100%; }
.makl-choice--swatch > span > em { margin-top: auto; }
.makl-choice--swatch img { width: 100%; height: 68px; object-fit: cover; border-radius: 4px; }
.makl-group select { width: 100%; padding: 10px; border: 1px solid var(--makl-line); border-radius: var(--makl-radius); font: inherit; }
.makl-designer__bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; background: #fff; border: 1px solid var(--makl-line); border-radius: var(--makl-radius); padding: 14px 16px; position: sticky; bottom: 12px; }
.makl-designer__total { font-family: var(--makl-font-head); font-size: 24px; color: var(--makl-brand); }
.makl-designer__msg { color: #a33; min-height: 1.2em; }
@media (max-width: 900px) { .makl-designer__grid { grid-template-columns: 1fr; } .makl-designer__preview { position: static; } }

/* Video hero */
.makl-hero--video { position: relative; overflow: hidden; padding: 150px 0; }
.makl-hero__media { position: absolute; inset: 0; pointer-events: none; }
/* Oversize the iframe so a 16:9 video always covers the hero. */
.makl-hero__media iframe {
	position: absolute; top: 50%; left: 50%;
	width: 100vw; height: 56.25vw;      /* 16:9 of viewport width */
	min-height: 100%; min-width: 177.78vh;
	transform: translate(-50%, -50%);
	border: 0;
}
.makl-hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(18,12,6,.45), rgba(18,12,6,.68)); }
.makl-hero__content { position: relative; z-index: 1; }
.makl-btn--ghost { background: transparent; border: 1px solid var(--makl-accent); color: #f7efe2; margin-left: 10px; }
.makl-btn--ghost:hover { background: var(--makl-accent); color: var(--makl-brand-dark); }

/* Craftsmanship section */
.makl-craft { background: #fff; border-top: 1px solid var(--makl-line); border-bottom: 1px solid var(--makl-line); margin-top: 24px; padding: 40px 0; }
.makl-craft__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.makl-craft__text h2 { font-size: 28px; margin-top: 0; }
.makl-craft__addr { color: var(--makl-muted); font-size: 14px; }
.makl-craft__images { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.makl-craft__images img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--makl-radius); }
@media (max-width: 900px) {
	.makl-craft__grid { grid-template-columns: 1fr; }
	.makl-craft { padding: 28px 0; margin-top: 16px; }
	.makl-craft__images { grid-template-columns: repeat(4, 1fr); gap: 8px; }
	.makl-hero--video { padding: 90px 0; }
	.makl-btn--ghost { margin-left: 0; margin-top: 10px; }
}

/* Custom logo image — square monogram plaque */
.custom-logo-link { display: inline-flex; align-items: center; }
.custom-logo { width: 58px; height: 58px; border-radius: 2px; object-fit: cover; box-shadow: 0 1px 6px rgba(26,17,9,.14); }
.site-footer .custom-logo { width: 72px; height: 72px; box-shadow: none; }
.makl-lang--footer { margin-top: 12px; }
.makl-lang--footer a { color: #b8a890; }
.makl-lang--footer .current-lang a { color: #fff; background: rgba(255,255,255,.12); }

/* ---- Designed static pages ---- */
/* Page hero */
.makl-phero { position: relative; background: var(--makl-brand-dark) center/cover no-repeat; padding: 110px 0; color: #fff; text-align: center; }
.makl-phero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(30,20,10,.45), rgba(30,20,10,.65)); }
.makl-phero .container { position: relative; }
.makl-phero h1 { font-size: clamp(28px, 4.5vw, 44px); margin: 0 0 8px; letter-spacing: .02em; }
.makl-phero p { max-width: 580px; margin: 0 auto; color: #ddd0b8; font-size: 14px; }

/* Story */
.makl-story { padding: 64px 20px 20px; }
.makl-story__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }
.makl-story__grid h2 { font-size: 28px; margin-top: 0; }
.makl-story__img { margin: 0; }
.makl-story__img img { border-radius: var(--makl-radius); width: 100%; }

/* Video */
.makl-video { padding: 56px 0 12px; }
.makl-video__frame { position: relative; aspect-ratio: 16/9; max-width: 960px; margin: 0 auto; border-radius: var(--makl-radius); overflow: hidden; box-shadow: 0 18px 50px rgba(43,33,26,.25); }
.makl-video__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Values */
.makl-values { padding-top: 56px; }
.makl-values__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.makl-value { background: #fff; border: 1px solid var(--makl-line); border-radius: var(--makl-radius); padding: 26px 20px; text-align: center; }
.makl-value span { font-size: 24px; }
.makl-value h3 { font-size: 17px; margin: 10px 0 6px; }
.makl-value p { font-size: 13px; color: var(--makl-muted); margin: 0; }

/* Gallery strip */
.makl-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; padding-top: 48px; padding-bottom: 8px; }
.makl-gallery img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--makl-radius); }

/* CTA band */
.makl-cta { background: linear-gradient(120deg, var(--makl-brand-dark), var(--makl-brand)); color: #f7efe2; text-align: center; padding: 64px 20px; margin-top: 64px; }
.makl-cta h2 { font-size: 26px; margin: 0 0 16px; }

/* Contact */
.makl-contact { padding: 56px 20px 0; }
.makl-contact__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 36px; }
.makl-ccard { background: #fff; border: 1px solid var(--makl-line); border-radius: var(--makl-radius); padding: 28px 22px; text-align: center; }
.makl-ccard span { font-size: 24px; }
.makl-ccard h3 { font-size: 18px; margin: 10px 0 6px; }
.makl-ccard p { color: var(--makl-muted); font-size: 13px; margin: 0; }
.makl-contact__map iframe { width: 100%; height: 420px; border: 0; border-radius: var(--makl-radius); }

/* Size guide */
.makl-sizes { padding: 56px 20px 20px; max-width: 980px; }
.makl-sizes__steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 40px; }
.makl-step { background: #fff; border: 1px solid var(--makl-line); border-radius: var(--makl-radius); padding: 24px 20px; position: relative; }
.makl-step b { display: inline-flex; width: 34px; height: 34px; align-items: center; justify-content: center; background: var(--makl-accent); color: var(--makl-brand-dark); border-radius: 50%; font-size: 17px; }
.makl-step h3 { font-size: 20px; margin: 12px 0 6px; }
.makl-step p { font-size: 14px; color: var(--makl-muted); margin: 0; }
.makl-table-wrap { overflow-x: auto; }
.makl-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--makl-line); border-radius: var(--makl-radius); overflow: hidden; }
.makl-table th { background: var(--makl-brand-dark); color: #f5ead9; text-align: left; padding: 12px 18px; font-weight: 600; }
.makl-table td { padding: 11px 18px; border-top: 1px solid var(--makl-line); }
.makl-table tbody tr:nth-child(even) { background: var(--makl-bg); }
.makl-note { text-align: center; margin-top: 36px; }
.makl-note p { max-width: 640px; margin: 0 auto 18px; color: var(--makl-muted); }

/* Lookbooks */
.makl-look { padding-top: 56px; }
.makl-look__head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.makl-look__head h2 { font-size: 24px; margin: 0; }
.makl-look__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.makl-look__item { overflow: hidden; border-radius: var(--makl-radius); border: 1px solid var(--makl-line); background: #fff; }
.makl-look__item img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform .35s ease; }
.makl-look__item:hover img { transform: scale(1.05); }

@media (max-width: 900px) {
	.makl-story__grid, .makl-contact__cards, .makl-sizes__steps { grid-template-columns: 1fr; }
	.makl-values__grid, .makl-gallery, .makl-look__grid { grid-template-columns: repeat(2, 1fr); }
	.makl-phero { padding: 70px 0; }
}

/* ---- Shop pages in Designer language ---- */
/* Archive: card grid like the Designer swatch cards */
.woocommerce ul.products { display: grid !important; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 12px 0 28px !important; align-items: stretch; }
.woocommerce ul.products::before, .woocommerce ul.products::after { content: none !important; display: none !important; }
.woocommerce ul.products li.product { width: auto !important; margin: 0 !important; float: none !important; clear: none !important; display: flex; flex-direction: column; border: 0; box-shadow: 0 1px 3px rgba(26,17,9,.06); transition: box-shadow .3s ease, transform .3s ease; }
.woocommerce ul.products li.product:hover { box-shadow: 0 16px 36px rgba(26,17,9,.14); transform: translateY(-3px); }
.woocommerce ul.products li.product .price { font-family: var(--makl-font-head); font-size: 15px !important; }
/* Image frame: fixed square; main image + second image stacked in the SAME
   frame — the hover image sits on top, invisible until hover. */
.woocommerce ul.products li.product .woocommerce-LoopProduct-link { position: relative; flex: 1; }
.woocommerce ul.products li.product a img { margin: 0 !important; aspect-ratio: 1/1; height: auto; width: 100%; object-fit: cover; }
.woocommerce ul.products li.product img.makl-hover-img {
	position: absolute; top: 0; left: 0; width: 100%; aspect-ratio: 1/1; object-fit: cover;
	opacity: 0; transition: opacity .3s ease; pointer-events: none;
}
.woocommerce ul.products li.product:hover img.makl-hover-img { opacity: 1; }
.woocommerce ul.products li.product .price { margin-top: auto; padding: 2px 10px 4px; }
.woocommerce ul.products li.product .button { margin: 4px 10px 0; border-radius: 999px; padding: 8px 16px; font-size: 12px; }
/* Variable-product note under cards: keep it subtle and short */
.woocommerce ul.products li.product .woocommerce-loop-product__title { min-height: 2.6em; }

/* Category filter chips above the grid */
.makl-filter-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 10px; }
.makl-chip {
	border: 1px solid var(--makl-line); border-radius: 999px; background: #fff;
	padding: 7px 15px; font-size: 12px; font-weight: 500; color: var(--makl-ink);
	letter-spacing: .02em; transition: all .2s ease;
}
.makl-chip:hover { border-color: var(--makl-brand); color: var(--makl-brand); }
.makl-chip.is-active { background: var(--makl-brand); border-color: var(--makl-brand); color: #fff; }

/* Product-page trust row */
.makl-trust { list-style: none; margin: 16px 0 0; padding: 14px 0 0; border-top: 1px dashed var(--makl-line); display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; }
.makl-trust li { font-size: 12.5px; color: var(--makl-muted); display: flex; align-items: center; gap: 7px; }

/* Recently viewed */
.makl-recent { margin-top: 40px; }
.makl-recent > h2 { font-size: 24px; text-align: center; margin: 0 0 6px; }
.woocommerce .woocommerce-result-count { color: var(--makl-muted); }
.woocommerce .woocommerce-ordering select { padding: 9px 12px; border: 1px solid var(--makl-line); border-radius: 999px; background: #fff; font: inherit; }
.woocommerce nav.woocommerce-pagination ul { border: 0; }
.woocommerce nav.woocommerce-pagination ul li { border: 0; margin: 0 3px; }
.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span {
	border: 1px solid var(--makl-line); border-radius: 999px; padding: 8px 14px; background: #fff; color: var(--makl-ink);
}
.woocommerce nav.woocommerce-pagination ul li span.current, .woocommerce nav.woocommerce-pagination ul li a:hover { background: var(--makl-brand); color: #fff; border-color: var(--makl-brand); }
.woocommerce .page-title { font-size: 28px; margin: 30px 0 4px; }

/* Single product: Designer-style two-panel layout */
.woocommerce div.product { margin-top: 30px; }
.woocommerce div.product div.images { background: #fff; border: 1px solid var(--makl-line); border-radius: var(--makl-radius); padding: 16px; }
.woocommerce div.product div.images img { border-radius: var(--makl-radius); }
.woocommerce div.product .product_title { font-size: 28px; }
.woocommerce div.product p.price { font-family: var(--makl-font-head); font-size: 24px; }
.woocommerce div.product form.cart { background: #fff; border: 1px solid var(--makl-line); border-radius: var(--makl-radius); padding: 18px; }
.woocommerce div.product form.cart .variations { margin-bottom: 6px; }
.woocommerce div.product form.cart .variations td, .woocommerce div.product form.cart .variations th { display: block; width: 100%; padding: 0; }
.woocommerce div.product form.cart .variations label { font-family: var(--makl-font-head); font-size: 20px; }
.woocommerce div.product form.cart .variations .reset_variations { font-size: 13px; color: var(--makl-muted); }
.makl-var-pills { margin: 8px 0 14px; }
.woocommerce div.product form.cart div.quantity .qty { height: 44px; border: 1px solid var(--makl-line); border-radius: var(--makl-radius); }
.woocommerce div.product form.cart .button, .woocommerce div.product form.cart .single_add_to_cart_button {
	height: 44px; padding: 0 34px; border-radius: var(--makl-radius); background: var(--makl-accent); color: var(--makl-brand-dark); font-weight: 600;
}
.woocommerce div.product form.cart .single_add_to_cart_button:hover { background: #d8b075; }
.woocommerce div.product .woocommerce-variation-price { margin-bottom: 12px; }
.woocommerce div.product .product_meta { border-top: 1px dashed var(--makl-line); margin-top: 16px; padding-top: 12px; font-size: 14px; color: var(--makl-muted); }

/* Tabs & description like the Designer summary card */
.woocommerce div.product .woocommerce-tabs { margin-top: 40px; }
.woocommerce div.product .woocommerce-tabs ul.tabs { padding: 0; margin: 0 0 -1px; border: 0; }
.woocommerce div.product .woocommerce-tabs ul.tabs::before { border-color: var(--makl-line); }
.woocommerce div.product .woocommerce-tabs ul.tabs li { background: var(--makl-bg); border: 1px solid var(--makl-line); border-radius: 999px 999px 0 0; margin-right: 6px; }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active { background: #fff; }
.woocommerce div.product .woocommerce-tabs ul.tabs li a { font-family: var(--makl-font-head); font-size: 18px; color: var(--makl-ink); }
.woocommerce div.product .woocommerce-tabs .panel { background: #fff; border: 1px solid var(--makl-line); border-radius: 0 var(--makl-radius) var(--makl-radius) var(--makl-radius); padding: 24px 26px; }
.related.products > h2, .upsells.products > h2 { font-size: 24px; text-align: center; margin: 40px 0 6px; }

/* Cart & checkout cards */
.woocommerce-cart .site-main, .woocommerce-checkout .site-main { padding-top: 30px; }
.woocommerce table.shop_table { border: 1px solid var(--makl-line); border-radius: var(--makl-radius); background: #fff; }
.woocommerce table.shop_table th { background: var(--makl-brand-dark); color: #f5ead9; }
.woocommerce table.shop_table td { border-top: 1px solid var(--makl-line); }

@media (max-width: 900px) {
	.woocommerce ul.products { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* ---- Homepage redesign: rhythm & new sections ---- */
.makl-section { padding: 60px 0; }
.makl-section__title { font-size: 32px; margin: 0 0 12px; }
/* Gold rule under every section title */
.makl-section__title::after,
.makl-process .makl-section__title::after,
.makl-quotes .makl-section__title::after {
	content: ""; display: block; width: 52px; height: 2px;
	background: var(--makl-accent); margin: 14px auto 26px;
}
.makl-section__more { text-align: center; margin: 22px 0 0; }
.makl-eyebrow {
	display: block; text-align: center; font-size: 11px; font-weight: 600;
	letter-spacing: .22em; text-transform: uppercase; color: var(--makl-accent); margin-bottom: 8px;
}
.makl-eyebrow--light { color: #cfa963; }

/* Hero refinements */
.makl-hero__kicker { display: block; font-size: 11px; letter-spacing: .28em; text-transform: uppercase; color: #cfa963; margin-bottom: 14px; }
.makl-btn--line { background: transparent; border: 1px solid var(--makl-brand); color: var(--makl-brand); }
.makl-btn--line:hover { background: var(--makl-brand); color: #fff; }

/* Brand statement + pillars */
.makl-pillars { background: #fff; border-top: 1px solid var(--makl-line); border-bottom: 1px solid var(--makl-line); padding: 56px 0; }
.makl-pillars__statement {
	font-family: var(--makl-font-head); font-size: clamp(22px, 3vw, 32px); font-style: italic;
	text-align: center; max-width: 640px; margin: 0 auto 40px; color: var(--makl-brand); line-height: 1.35;
}
.makl-pillars__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.makl-pillar { text-align: left; border-top: 2px solid var(--makl-accent); padding-top: 16px; }
.makl-pillar__no { font-family: var(--makl-font-head); font-size: 15px; color: var(--makl-accent); letter-spacing: .1em; }
.makl-pillar h3 { font-size: 19px; margin: 6px 0 8px; }
.makl-pillar p { font-size: 13px; color: var(--makl-muted); margin: 0; line-height: 1.65; }

/* Artisan process (dark band) */
.makl-process { background: var(--makl-brand-dark); color: #e8dcc8; padding: 56px 0; }
.makl-process .makl-section__title { color: #fff; }
.makl-process__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px 32px; margin-top: 10px; }
.makl-pstep { border-top: 1px solid rgba(255,255,255,.15); padding-top: 14px; }
.makl-pstep b {
	display: inline-flex; width: 30px; height: 30px; align-items: center; justify-content: center;
	border: 1px solid var(--makl-accent); color: var(--makl-accent); border-radius: 50%;
	font-family: var(--makl-font-head); font-size: 15px;
}
.makl-pstep h3 { color: #fff; font-size: 18px; margin: 10px 0 5px; }
.makl-pstep p { font-size: 13px; color: #b8a890; margin: 0; line-height: 1.6; }

/* Testimonials */
.makl-quotes { padding: 52px 0 8px; }
.makl-quotes__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.makl-quote { background: #fff; border: 1px solid var(--makl-line); border-radius: var(--makl-radius); padding: 26px 24px; margin: 0; }
.makl-quote blockquote { margin: 0 0 14px; font-family: var(--makl-font-head); font-size: 17px; font-style: italic; line-height: 1.5; color: var(--makl-ink); }
.makl-quote figcaption { font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--makl-muted); }

/* Shop hero band + breadcrumbs */
.makl-phero--shop { padding: 64px 0; text-align: left; }
.makl-phero--shop h1 { font-size: clamp(26px, 3.6vw, 38px); margin: 6px 0 0; }
.makl-phero__desc { max-width: 640px; color: #ddd0b8; font-size: 13px; margin-top: 8px; }
.makl-phero__desc p { margin: 0; }
.makl-crumbs { font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; color: #cbb695; }
.makl-crumbs a { color: #cbb695; }
.makl-crumbs a:hover { color: #fff; }
.makl-crumbs span { margin: 0 7px; opacity: .5; }

/* ---- Kayış Tasarımcısı tanıtımı & Konfor bölümü (MAK düzeni) ---- */
.makl-eyebrow--left { text-align: left; }

.makl-designer-cta { background: #fff; border-top: 1px solid var(--makl-line); border-bottom: 1px solid var(--makl-line); padding: 56px 0; }
.makl-designer-cta__grid,
.makl-care__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.makl-designer-cta__media, .makl-care__media { margin: 0; }
.makl-designer-cta__media img, .makl-care__media img {
	width: 100%; aspect-ratio: 4/3; object-fit: cover;
	border-radius: var(--makl-radius); box-shadow: 0 18px 44px rgba(26,17,9,.16);
}
.makl-designer-cta__text h2, .makl-care__text h2 { font-size: 30px; margin: 6px 0 12px; }
.makl-designer-cta__text p, .makl-care__text p { color: var(--makl-muted); margin: 0 0 20px; line-height: 1.7; }

.makl-care { padding: 56px 0; }
.makl-care__list { list-style: none; margin: 0 0 22px; padding: 0; }
.makl-care__list li { position: relative; padding-left: 26px; margin-bottom: 9px; font-size: 13.5px; }
.makl-care__list li::before {
	content: ""; position: absolute; left: 0; top: 7px;
	width: 7px; height: 7px; transform: rotate(45deg); background: var(--makl-accent);
}

/* Kapanış çağrısı bandı */
.makl-cta__text { max-width: 560px; margin: 0 auto 22px; color: #d8c9b0; font-size: 14px; }
.makl-cta h2::after { content: ""; display: block; width: 52px; height: 2px; background: var(--makl-accent); margin: 14px auto 18px; }

@media (max-width: 900px) {
	.makl-designer-cta__grid, .makl-care__grid { grid-template-columns: 1fr; gap: 26px; }
	.makl-designer-cta { padding: 36px 0; }
	.makl-care { padding: 36px 0; }
	.makl-designer-cta__text h2, .makl-care__text h2 { font-size: 24px; }
	.makl-pillars__grid, .makl-quotes__grid { grid-template-columns: 1fr; gap: 22px; }
	.makl-process__grid { grid-template-columns: 1fr 1fr; }
	.makl-benefits__grid { grid-template-columns: 1fr 1fr; gap: 20px 12px; }
	.site-footer__grid { grid-template-columns: 1fr 1fr; }
	.makl-section { padding: 36px 0; }
	.makl-phero--shop { padding: 42px 0; }
	.site-footer__news-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
	.makl-process__grid { grid-template-columns: 1fr; }
	.site-footer__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Üç referans sitenin sentezi: mega menü, sekmeli vitrin,
   istatistik bandı, usta imzası, atölye günlüğü
   ============================================================ */

/* --- Topbar: çift mesaj --- */
.makl-topbar i { margin: 0 10px; opacity: .5; font-style: normal; }
@media (max-width: 640px) { .makl-topbar i + span { display: none; } }

/* --- Mega menü (Genteel) --- */
.site-nav__list li.makl-has-mega { position: static; }
.makl-mega {
	position: absolute; left: 0; right: 0; top: 100%;
	background: #fff; border-top: 1px solid var(--makl-line);
	border-bottom: 1px solid var(--makl-line);
	box-shadow: 0 22px 48px rgba(26,17,9,.14);
	opacity: 0; visibility: hidden; transform: translateY(-6px);
	transition: opacity .22s ease, transform .22s ease, visibility .22s;
	z-index: 60;
}
li.makl-has-mega:hover > .makl-mega,
li.makl-has-mega:focus-within > .makl-mega { opacity: 1; visibility: visible; transform: translateY(0); }
.makl-mega__inner { display: grid; grid-template-columns: repeat(3, 1fr) .9fr; gap: 34px; padding: 30px 20px 34px; }
.makl-mega__col h4 {
	font-family: var(--makl-font-body); font-size: 11px; font-weight: 700;
	letter-spacing: .14em; text-transform: uppercase; color: var(--makl-accent);
	margin: 0 0 12px; padding-bottom: 9px; border-bottom: 1px solid var(--makl-line);
}
.makl-mega__col ul { list-style: none; margin: 0; padding: 0; }
.makl-mega__col li { margin-bottom: 7px; }
.makl-mega__col a {
	display: flex; justify-content: space-between; align-items: baseline; gap: 10px;
	font-size: 13px; text-transform: none; letter-spacing: 0; color: var(--makl-ink);
}
.makl-mega__col a:hover { color: var(--makl-brand); }
.makl-mega__col a em { font-style: normal; font-size: 11px; color: var(--makl-muted); }
.makl-mega__feature { border-left: 1px solid var(--makl-line); padding-left: 28px; }
.makl-mega__feature img { width: 100%; aspect-ratio: 3/2; object-fit: cover; border-radius: var(--makl-radius); margin-bottom: 12px; }
.makl-mega__feature h4 { font-size: 17px; margin: 0 0 4px; }
.makl-mega__feature p { font-size: 12.5px; color: var(--makl-muted); margin: 0 0 12px; }
.makl-btn--sm { padding: 8px 18px; font-size: 11px; }
@media (max-width: 1024px) { .makl-mega { display: none; } }

/* --- Sekmeli ürün vitrini (Strap Tailor) --- */
.makl-tabs__nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 26px; }
.makl-tabs__btn {
	background: transparent; border: 1px solid var(--makl-line); border-radius: 999px;
	padding: 9px 20px; font: inherit; font-size: 12px; font-weight: 600;
	letter-spacing: .06em; text-transform: uppercase; color: var(--makl-muted);
	cursor: pointer; transition: all .22s ease;
}
.makl-tabs__btn:hover { border-color: var(--makl-brand); color: var(--makl-brand); }
.makl-tabs__btn.is-active { background: var(--makl-brand); border-color: var(--makl-brand); color: #fff; }
.makl-tabs__panel[hidden] { display: none; }

/* --- Sayılarla güven (Strap Tailor) --- */
.makl-stats { background: var(--makl-brand-dark); color: #e8dcc8; padding: 40px 0; }
.makl-stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.makl-stat strong {
	display: block; font-family: var(--makl-font-head); font-size: 40px;
	line-height: 1; color: var(--makl-accent); margin-bottom: 8px;
}
.makl-stat span { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: #b8a890; }

/* --- Usta imzası (Strap Tailor) --- */
.makl-founder { background: #fff; border-top: 1px solid var(--makl-line); border-bottom: 1px solid var(--makl-line); padding: 60px 0; }
.makl-founder__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 52px; align-items: center; }
.makl-founder__media { margin: 0; }
.makl-founder__media img {
	width: 100%; aspect-ratio: 4/3; object-fit: cover;
	border-radius: var(--makl-radius); box-shadow: 0 20px 46px rgba(26,17,9,.18);
}
.makl-founder__text h2 { font-size: 30px; margin: 6px 0 16px; }
.makl-founder__text blockquote {
	margin: 0 0 18px; padding-left: 20px; border-left: 2px solid var(--makl-accent);
	font-family: var(--makl-font-head); font-size: 21px; font-style: italic;
	line-height: 1.45; color: var(--makl-brand);
}
.makl-founder__text p { color: var(--makl-muted); line-height: 1.75; margin: 0 0 16px; }
.makl-founder__sign {
	font-family: var(--makl-font-head); font-size: 19px; color: var(--makl-ink) !important;
	margin: 0 !important; padding-top: 14px; border-top: 1px solid var(--makl-line);
}
.makl-founder__sign em {
	display: block; font-family: var(--makl-font-body); font-style: normal;
	font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
	color: var(--makl-muted); margin-top: 4px;
}

/* --- Atölye Günlüğü (Genteel) --- */
.makl-journal__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.makl-jcard { background: #fff; border-radius: var(--makl-radius); overflow: hidden; box-shadow: 0 1px 3px rgba(26,17,9,.06); transition: box-shadow .3s ease, transform .3s ease; }
.makl-jcard:hover { box-shadow: 0 16px 36px rgba(26,17,9,.14); transform: translateY(-3px); }
.makl-jcard__media { display: block; }
.makl-jcard__media img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.makl-jcard__body { padding: 20px 22px 24px; }
.makl-jcard__body h3 { font-size: 19px; margin: 0 0 8px; line-height: 1.3; }
.makl-jcard__body h3 a { color: var(--makl-ink); }
.makl-jcard__body h3 a:hover { color: var(--makl-brand); }
.makl-jcard__body p { font-size: 13px; color: var(--makl-muted); margin: 0 0 12px; line-height: 1.65; }
.makl-jcard__more { font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--makl-brand); }

@media (max-width: 900px) {
	.makl-stats__grid { grid-template-columns: 1fr 1fr; gap: 28px 16px; }
	.makl-stat strong { font-size: 32px; }
	.makl-founder__grid { grid-template-columns: 1fr; gap: 26px; }
	.makl-founder { padding: 38px 0; }
	.makl-founder__text h2 { font-size: 24px; }
	.makl-founder__media img { aspect-ratio: 4/3; }
	.makl-journal__grid { grid-template-columns: 1fr; }
}

/* --- Yüzen butonlar: yukarı çık + WhatsApp --- */
.makl-fab {
	position: fixed; bottom: 22px; z-index: 90;
	width: 52px; height: 52px; border-radius: 50%;
	display: inline-flex; align-items: center; justify-content: center;
	cursor: pointer; border: 0; padding: 0;
	transition: transform .25s ease, box-shadow .25s ease, opacity .3s ease;
}
.makl-fab:hover { transform: translateY(-3px); }

/* Yukarı çık — ilerleme halkalı */
.makl-fab--top {
	left: 22px; background: #fff;
	box-shadow: 0 6px 20px rgba(26,17,9,.16);
}
.makl-fab--top[hidden] { display: none; }
.makl-fab--top:hover { box-shadow: 0 10px 26px rgba(26,17,9,.24); }
.makl-fab__ring { position: absolute; inset: 0; width: 100%; height: 100%; transform: rotate(-90deg); }
.makl-fab__ring circle { fill: none; stroke-width: 2.5; }
.makl-fab__ring-bg { stroke: var(--makl-line); }
.makl-fab__ring-fg {
	stroke: var(--makl-brand);
	stroke-linecap: round;
	stroke-dasharray: 125.6;      /* 2πr, r=20 */
	stroke-dashoffset: 125.6;
	transition: stroke-dashoffset .1s linear;
}
.makl-fab__icon {
	position: relative; width: 19px; height: 19px;
	stroke: var(--makl-brand); fill: none; stroke-width: 2;
}

/* WhatsApp */
.makl-fab--wa {
	right: 22px; background: #25d366;
	box-shadow: 0 6px 20px rgba(37,211,102,.38);
}
.makl-fab--wa:hover { background: #1fb855; box-shadow: 0 10px 28px rgba(37,211,102,.5); }
.makl-fab--wa svg { width: 28px; height: 28px; color: #fff; }

@media (max-width: 600px) {
	.makl-fab { width: 46px; height: 46px; bottom: 16px; }
	.makl-fab--top { left: 16px; }
	.makl-fab--wa { right: 16px; }
	.makl-fab--wa svg { width: 24px; height: 24px; }
}

/* ============================================================
   Beden Rehberi — interaktif ölçü hesaplayıcı
   ============================================================ */
.makl-sg-step { text-align: center; max-width: 640px; margin: 0 auto 30px; }
.makl-sg-step__no {
	display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .18em;
	text-transform: uppercase; color: var(--makl-accent); margin-bottom: 8px;
}
.makl-sg-step h2 { font-size: 28px; margin: 0 0 10px; }
.makl-sg-step h2::after { content: ""; display: block; width: 46px; height: 2px; background: var(--makl-accent); margin: 12px auto 14px; }
.makl-sg-lede { color: var(--makl-muted); margin: 0; line-height: 1.7; }
.makl-sg-step--light h2, .makl-sg-step--light .makl-sg-step__no { color: #fff; }
.makl-sg-step--light h2::after { background: var(--makl-accent); }
.makl-sg-step--light .makl-sg-lede { color: #b8a890; }
.makl-sg-step--light .makl-sg-step__no { color: var(--makl-accent); }

/* Adım 1: diyagram + kulak seçici */
.makl-sg-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 46px; align-items: center; margin-bottom: 8px; }
.makl-sg-diagram { margin: 0; background: #fff; border: 1px solid var(--makl-line); border-radius: var(--makl-radius); padding: 20px; }
.makl-sg-diagram svg { width: 100%; height: auto; max-height: 260px; }
.makl-sg-diagram figcaption { text-align: center; font-size: 12px; color: var(--makl-muted); margin-top: 10px; }
.makl-sg-lugs__row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 16px; }
.makl-sg-lug {
	background: #fff; border: 1px solid var(--makl-line); border-radius: var(--makl-radius);
	padding: 16px 6px; font: inherit; font-size: 20px; font-family: var(--makl-font-head);
	color: var(--makl-ink); cursor: pointer; transition: all .2s ease; line-height: 1;
}
.makl-sg-lug em { display: block; font-family: var(--makl-font-body); font-style: normal; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--makl-muted); margin-top: 5px; }
.makl-sg-lug:hover { border-color: var(--makl-brand); }
.makl-sg-lug.is-active { background: var(--makl-brand); border-color: var(--makl-brand); color: #fff; }
.makl-sg-lug.is-active em { color: var(--makl-accent); }
.makl-sg-hint { font-size: 13px; color: var(--makl-muted); margin: 0 0 14px; }

/* Adım 2: hesaplayıcı bandı */
.makl-sg-calc { background: var(--makl-brand-dark); padding: 56px 0; margin: 46px 0; }
.makl-sg-calc__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 42px; align-items: center; }
.makl-sg-units { display: inline-flex; gap: 3px; padding: 3px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; margin-bottom: 26px; }
.makl-sg-unit {
	background: transparent; border: 0; border-radius: 999px; padding: 7px 20px;
	font: inherit; font-size: 12px; font-weight: 600; letter-spacing: .06em;
	text-transform: uppercase; color: #b8a890; cursor: pointer; transition: all .2s ease;
}
.makl-sg-unit.is-active { background: var(--makl-accent); color: #fff; }
.makl-sg-label { display: block; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: #b8a890; margin-bottom: 6px; }
.makl-sg-readout { font-family: var(--makl-font-head); color: #fff; margin-bottom: 14px; }
.makl-sg-readout output { font-size: 52px; line-height: 1; }
.makl-sg-readout span { font-size: 20px; color: var(--makl-accent); margin-left: 6px; }
#maklWrist {
	-webkit-appearance: none; appearance: none; width: 100%; height: 4px;
	background: rgba(255,255,255,.18); border-radius: 999px; outline: none;
}
#maklWrist::-webkit-slider-thumb {
	-webkit-appearance: none; appearance: none; width: 24px; height: 24px;
	border-radius: 50%; background: var(--makl-accent); cursor: pointer;
	border: 3px solid var(--makl-brand-dark); box-shadow: 0 0 0 1px var(--makl-accent);
}
#maklWrist::-moz-range-thumb {
	width: 24px; height: 24px; border-radius: 50%; background: var(--makl-accent);
	cursor: pointer; border: 3px solid var(--makl-brand-dark);
}
.makl-sg-scale { display: flex; justify-content: space-between; font-size: 11px; color: #8a7d6d; margin-top: 10px; letter-spacing: .06em; }

.makl-sg-result { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14); border-radius: var(--makl-radius); padding: 30px 28px; text-align: center; }
.makl-sg-result__cap { display: block; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: #b8a890; margin-bottom: 10px; }
.makl-sg-result strong { display: block; font-family: var(--makl-font-head); font-size: 40px; color: var(--makl-accent); line-height: 1; margin-bottom: 10px; }
.makl-sg-result p { font-size: 13px; color: #d9c9b2; margin: 0 0 18px; }
.makl-sg-result__meta { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 16px 0; margin-bottom: 18px; border-top: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); }
.makl-sg-result__meta em { display: block; font-style: normal; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: #8a7d6d; margin-bottom: 4px; }
.makl-sg-result__meta b { font-family: var(--makl-font-head); font-size: 20px; color: #fff; font-weight: 500; }

/* Adım 3: tabloda aktif satır */
.makl-table tbody tr.is-match { background: #fff6e2 !important; box-shadow: inset 3px 0 0 var(--makl-accent); }
.makl-table tbody tr.is-match td { font-weight: 600; }
.makl-note .makl-btn + .makl-btn { margin-left: 8px; }

@media (max-width: 900px) {
	.makl-sg-grid, .makl-sg-calc__grid { grid-template-columns: 1fr; gap: 26px; }
	.makl-sg-lugs__row { grid-template-columns: repeat(4, 1fr); }
	.makl-sg-calc { padding: 38px 0; margin: 30px 0; }
	.makl-sg-step h2 { font-size: 23px; }
	.makl-sg-readout output { font-size: 42px; }
	.makl-sg-result strong { font-size: 32px; }
	.makl-note .makl-btn + .makl-btn { margin: 8px 0 0; }
}

/* ============================================================
   SSS — aranabilir, kategorili akordeon
   ============================================================ */
.makl-faq { padding-top: 46px; padding-bottom: 20px; max-width: 900px; }
.makl-faq__tools { margin-bottom: 26px; }
.makl-faq__search { position: relative; margin-bottom: 16px; }
.makl-faq__search svg { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; stroke: var(--makl-muted); fill: none; stroke-width: 1.6; }
.makl-faq__search input {
	width: 100%; padding: 14px 18px 14px 46px; font: inherit; font-size: 14px;
	background: #fff; border: 1px solid var(--makl-line); border-radius: 999px; color: var(--makl-ink);
	transition: border-color .2s ease, box-shadow .2s ease;
}
.makl-faq__search input:focus { outline: none; border-color: var(--makl-accent); box-shadow: 0 0 0 3px rgba(176,132,40,.12); }
.makl-faq__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.makl-faq__chips .makl-chip { cursor: pointer; font: inherit; font-size: 12px; font-weight: 500; }
.makl-faq__chips .makl-chip em { font-style: normal; opacity: .6; margin-left: 4px; font-size: 11px; }

.makl-faq__item {
	background: #fff; border: 1px solid var(--makl-line); border-radius: var(--makl-radius);
	margin-bottom: 10px; overflow: hidden; transition: box-shadow .25s ease, border-color .25s ease;
}
.makl-faq__item[open] { border-color: var(--makl-accent); box-shadow: 0 8px 24px rgba(26,17,9,.08); }
.makl-faq__item[hidden] { display: none; }
.makl-faq__item summary {
	display: flex; align-items: center; gap: 14px; cursor: pointer;
	padding: 18px 20px; list-style: none; user-select: none;
}
.makl-faq__item summary::-webkit-details-marker { display: none; }
.makl-faq__q { flex: 1; font-family: var(--makl-font-head); font-size: 18px; line-height: 1.35; color: var(--makl-ink); }
.makl-faq__cat {
	font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--makl-muted);
	border: 1px solid var(--makl-line); border-radius: 999px; padding: 4px 10px; white-space: nowrap;
}
.makl-faq__chev { width: 18px; height: 18px; stroke: var(--makl-brand); fill: none; stroke-width: 2; transition: transform .25s ease; flex-shrink: 0; }
.makl-faq__item[open] .makl-faq__chev { transform: rotate(180deg); }
.makl-faq__a { padding: 0 20px 20px; }
.makl-faq__a p { margin: 0; color: var(--makl-muted); line-height: 1.75; font-size: 14px; }
.makl-faq__a a { color: var(--makl-brand); text-decoration: underline; text-underline-offset: 3px; }
.makl-faq__empty { text-align: center; color: var(--makl-muted); padding: 30px 0; font-size: 15px; }
.makl-faq__cta { margin-top: 36px; }
mark.makl-hit { background: #fff2d1; color: inherit; padding: 0 2px; border-radius: 2px; }

@media (max-width: 700px) {
	.makl-faq__cat { display: none; }
	.makl-faq__q { font-size: 16px; }
	.makl-faq__item summary { padding: 15px 16px; }
}

/* ============================================================
   İletişim — hızlı kanallar, canlı çalışma durumu
   ============================================================ */
.makl-contact { padding-top: 46px; }
.makl-cchannels { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.makl-cchannel {
	background: #fff; border: 1px solid var(--makl-line); border-radius: var(--makl-radius);
	padding: 26px 22px; text-align: center; color: var(--makl-ink);
	transition: box-shadow .28s ease, transform .28s ease, border-color .28s ease;
}
.makl-cchannel:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(26,17,9,.12); border-color: var(--makl-accent); color: var(--makl-ink); }
.makl-cchannel svg { width: 28px; height: 28px; stroke: var(--makl-accent); fill: none; stroke-width: 1.5; margin: 0 auto 12px; display: block; }
.makl-cchannel h3 { font-size: 19px; margin: 0 0 4px; }
.makl-cchannel p { font-size: 13px; color: var(--makl-ink); margin: 0 0 8px; word-break: break-word; }
.makl-cchannel em { font-style: normal; font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--makl-muted); }

/* Atölye ziyaret bandı */
.makl-cvisit { background: #fff; border-top: 1px solid var(--makl-line); border-bottom: 1px solid var(--makl-line); padding: 56px 0; margin-top: 52px; }
.makl-cvisit__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 48px; align-items: start; }
.makl-cvisit__info h2 { font-size: 30px; margin: 6px 0 12px; }
.makl-cvisit__info > p { color: var(--makl-muted); line-height: 1.75; margin: 0 0 22px; }

.makl-cstatus {
	display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
	background: var(--makl-bg); border: 1px solid var(--makl-line);
	border-radius: 999px; padding: 11px 20px; margin-bottom: 22px;
}
.makl-cstatus__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--makl-muted); flex-shrink: 0; }
.makl-cstatus.is-open .makl-cstatus__dot { background: #2fa84f; box-shadow: 0 0 0 4px rgba(47,168,79,.16); }
.makl-cstatus.is-closed .makl-cstatus__dot { background: #b6503f; box-shadow: 0 0 0 4px rgba(182,80,63,.14); }
.makl-cstatus strong { font-size: 13px; letter-spacing: .04em; }
.makl-cstatus em { font-style: normal; font-size: 12px; color: var(--makl-muted); }

.makl-chours { width: 100%; border-collapse: collapse; margin-bottom: 22px; }
.makl-chours th, .makl-chours td { padding: 9px 0; font-size: 13.5px; text-align: left; border-bottom: 1px dashed var(--makl-line); font-weight: 400; }
.makl-chours th { color: var(--makl-muted); }
.makl-chours td { text-align: right; font-family: var(--makl-font-head); font-size: 16px; }
.makl-chours td.is-closed { color: var(--makl-muted); font-family: var(--makl-font-body); font-size: 13px; }
.makl-chours tr.is-today th { color: var(--makl-ink); font-weight: 600; }
.makl-chours tr.is-today td { color: var(--makl-brand); font-weight: 600; }
.makl-caddr { font-style: normal; color: var(--makl-muted); line-height: 1.7; margin-bottom: 18px; font-size: 13.5px; }
.makl-contact__map iframe { width: 100%; height: 460px; border: 0; border-radius: var(--makl-radius); }
.makl-credit a { color: inherit; opacity: .75; }
.makl-credit a:hover { opacity: 1; color: #fff; }

@media (max-width: 900px) {
	.makl-cchannels { grid-template-columns: 1fr 1fr; }
	.makl-cvisit__grid { grid-template-columns: 1fr; gap: 30px; }
	.makl-cvisit { padding: 38px 0; margin-top: 34px; }
	.makl-cvisit__info h2 { font-size: 24px; }
	.makl-contact__map iframe { height: 320px; }
}
@media (max-width: 560px) { .makl-cchannels { grid-template-columns: 1fr; } }

/* ============================================================
   Hakkımızda zaman çizelgesi · Kargo süreç adımları · Politika kartları
   ============================================================ */
/* Ürün sayfası güven satırı — SVG ikonlar */
.makl-trust li svg { width: 16px; height: 16px; stroke: var(--makl-accent); fill: none; stroke-width: 1.6; flex-shrink: 0; }

/* Değer kartlarında SVG */
.makl-value svg { width: 28px; height: 28px; stroke: var(--makl-accent); fill: none; stroke-width: 1.5; margin: 0 auto 10px; display: block; }

/* Zaman çizelgesi */
.makl-timeline-wrap { padding-bottom: 20px; }
.makl-timeline { list-style: none; margin: 0; padding: 0; position: relative; max-width: 780px; margin-inline: auto; }
.makl-timeline::before {
	content: ""; position: absolute; left: 7px; top: 8px; bottom: 8px;
	width: 2px; background: linear-gradient(var(--makl-accent), var(--makl-line));
}
.makl-tl { position: relative; padding: 0 0 30px 38px; }
.makl-tl:last-child { padding-bottom: 0; }
.makl-tl__dot {
	position: absolute; left: 0; top: 6px; width: 16px; height: 16px;
	border-radius: 50%; background: #fff; border: 2px solid var(--makl-accent);
	box-shadow: 0 0 0 4px var(--makl-bg);
}
.makl-tl__body b {
	display: inline-block; font-family: var(--makl-font-body); font-size: 10px; font-weight: 700;
	letter-spacing: .16em; text-transform: uppercase; color: var(--makl-accent); margin-bottom: 5px;
}
.makl-tl__body h3 { font-size: 21px; margin: 0 0 7px; }
.makl-tl__body p { margin: 0; color: var(--makl-muted); line-height: 1.72; font-size: 14px; }

/* Kargo süreç adımları */
.makl-ship-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; position: relative; }
.makl-ship-step { background: #fff; border: 1px solid var(--makl-line); border-radius: var(--makl-radius); padding: 26px 22px; text-align: center; }
.makl-ship-step b {
	display: inline-flex; width: 40px; height: 40px; align-items: center; justify-content: center;
	border-radius: 50%; background: var(--makl-brand); color: var(--makl-accent);
	font-family: var(--makl-font-head); font-size: 19px; margin-bottom: 12px;
}
.makl-ship-step h3 { font-size: 19px; margin: 0 0 6px; }
.makl-ship-step p { font-size: 13px; color: var(--makl-muted); margin: 0; line-height: 1.65; }

/* Politika kartları */
.makl-policy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.makl-policy { background: #fff; border: 1px solid var(--makl-line); border-radius: var(--makl-radius); padding: 26px 24px; }
.makl-policy svg { width: 26px; height: 26px; stroke: var(--makl-accent); fill: none; stroke-width: 1.5; margin-bottom: 12px; }
.makl-policy h3 { font-size: 20px; margin: 0 0 8px; }
.makl-policy p { font-size: 13.5px; color: var(--makl-muted); line-height: 1.7; margin: 0; }
.makl-policy--yes { border-left: 3px solid #2fa84f; }
.makl-policy--no { border-left: 3px solid #b6503f; }
.makl-section .makl-policy-grid { grid-template-columns: repeat(2, 1fr); margin-top: 4px; }

@media (max-width: 900px) {
	.makl-ship-steps { grid-template-columns: 1fr 1fr; }
	.makl-policy-grid, .makl-section .makl-policy-grid { grid-template-columns: 1fr; }
	.makl-tl__body h3 { font-size: 18px; }
}
@media (max-width: 560px) { .makl-ship-steps { grid-template-columns: 1fr; } }

/* ============================================================
   Kombin Galerisi (filtreli + lightbox) · Hukuki sayfa düzeni
   ============================================================ */
.makl-look2__filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 26px; }
.makl-look2__filters .makl-chip { cursor: pointer; font: inherit; font-size: 12px; font-weight: 500; }
.makl-look2__filters .makl-chip em { font-style: normal; opacity: .6; margin-left: 4px; font-size: 11px; }

.makl-look2__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.makl-look2__item {
	position: relative; padding: 0; border: 0; background: #fff; cursor: pointer;
	border-radius: var(--makl-radius); overflow: hidden; display: block;
	box-shadow: 0 1px 3px rgba(26,17,9,.06); transition: transform .3s ease, box-shadow .3s ease;
}
.makl-look2__item[hidden] { display: none; }
.makl-look2__item img { width: 100%; aspect-ratio: 1/1; object-fit: cover; transition: transform .5s ease; }
.makl-look2__item:hover { box-shadow: 0 16px 34px rgba(26,17,9,.16); transform: translateY(-3px); }
.makl-look2__item:hover img { transform: scale(1.06); }
.makl-look2__cap {
	position: absolute; left: 10px; bottom: 10px;
	background: rgba(26,17,9,.82); color: #fff; font-size: 10px; font-weight: 600;
	letter-spacing: .1em; text-transform: uppercase; padding: 5px 11px; border-radius: 999px;
	opacity: 0; transform: translateY(6px); transition: all .3s ease;
}
.makl-look2__item:hover .makl-look2__cap { opacity: 1; transform: translateY(0); }

/* Lightbox */
.makl-lb {
	position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center;
	background: rgba(18,12,6,.94); padding: 40px 20px;
}
.makl-lb[hidden] { display: none; }
.makl-lb__box { margin: 0; max-width: 620px; width: 100%; text-align: center; }
.makl-lb__box img { width: 100%; max-height: 66vh; object-fit: contain; border-radius: var(--makl-radius); }
.makl-lb__box figcaption { margin-top: 18px; color: #fff; }
.makl-lb__box figcaption strong { display: block; font-family: var(--makl-font-head); font-size: 22px; margin-bottom: 4px; }
.makl-lb__box figcaption span { display: block; color: var(--makl-accent); font-family: var(--makl-font-head); font-size: 19px; margin-bottom: 14px; }
.makl-lb__close, .makl-lb__nav {
	position: absolute; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
	color: #fff; cursor: pointer; border-radius: 50%; transition: background .2s ease;
	display: inline-flex; align-items: center; justify-content: center;
}
.makl-lb__close:hover, .makl-lb__nav:hover { background: rgba(255,255,255,.22); }
.makl-lb__close { top: 22px; right: 22px; width: 42px; height: 42px; font-size: 26px; line-height: 1; }
.makl-lb__nav { top: 50%; transform: translateY(-50%); width: 46px; height: 46px; font-size: 30px; line-height: 1; }
.makl-lb__nav--prev { left: 22px; }
.makl-lb__nav--next { right: 22px; }
body.makl-lb-open { overflow: hidden; }

/* Hukuki sayfa (gizlilik vb.) */
.makl-legal { display: grid; grid-template-columns: 250px 1fr; gap: 50px; padding: 48px 20px 20px; align-items: start; }
.makl-legal__nav { position: sticky; top: 92px; background: #fff; border: 1px solid var(--makl-line); border-radius: var(--makl-radius); padding: 22px 20px; }
.makl-legal__nav h4 { font-family: var(--makl-font-body); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--makl-accent); margin: 0 0 12px; }
.makl-legal__nav ol { margin: 0; padding-left: 18px; }
.makl-legal__nav li { margin-bottom: 8px; font-size: 13px; line-height: 1.45; }
.makl-legal__nav a { color: var(--makl-muted); }
.makl-legal__nav a:hover { color: var(--makl-brand); }
.makl-legal__updated { font-size: 11px; color: var(--makl-muted); margin: 16px 0 0; padding-top: 14px; border-top: 1px solid var(--makl-line); }
.makl-legal__lede { font-size: 16px; line-height: 1.75; color: var(--makl-ink); padding-bottom: 22px; margin: 0 0 8px; border-bottom: 1px solid var(--makl-line); }
.makl-legal__sec { padding: 26px 0; border-bottom: 1px dashed var(--makl-line); scroll-margin-top: 96px; }
.makl-legal__sec h2 { font-size: 23px; margin: 0 0 12px; }
.makl-legal__sec p, .makl-legal__sec li { color: var(--makl-muted); line-height: 1.78; font-size: 14.5px; }
.makl-legal__sec p { margin: 0 0 12px; }
.makl-legal__sec ul { margin: 0 0 12px; padding-left: 20px; }
.makl-legal__sec li { margin-bottom: 7px; }
.makl-legal__sec strong { color: var(--makl-ink); }
.makl-legal__contact { background: #fff; border: 1px solid var(--makl-line); border-radius: var(--makl-radius); padding: 28px 26px; margin-top: 30px; text-align: center; }
.makl-legal__contact h3 { font-size: 21px; margin: 0 0 8px; }
.makl-legal__contact p { color: var(--makl-muted); margin: 0 0 16px; font-size: 14px; }

@media (max-width: 900px) {
	.makl-look2__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
	.makl-look2__cap { opacity: 1; transform: none; }
	.makl-legal { grid-template-columns: 1fr; gap: 26px; padding-top: 32px; }
	.makl-legal__nav { position: static; }
	.makl-lb__nav { width: 38px; height: 38px; font-size: 24px; }
	.makl-lb__nav--prev { left: 8px; }
	.makl-lb__nav--next { right: 8px; }
}

/* Astar renk kartelası */
.makl-lining { background: #fff; border-top: 1px solid var(--makl-line); border-bottom: 1px solid var(--makl-line); padding: 52px 0; margin-top: 46px; }
.makl-lining__lede { text-align: center; max-width: 620px; margin: 0 auto 26px; color: var(--makl-muted); line-height: 1.7; }
.makl-lining__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.makl-lining__item { margin: 0; border-radius: var(--makl-radius); overflow: hidden; background: var(--makl-bg); }
.makl-lining__item img { width: 100%; aspect-ratio: 1/1; object-fit: cover; transition: transform .4s ease; }
.makl-lining__item:hover img { transform: scale(1.05); }
@media (max-width: 900px) { .makl-lining__grid { grid-template-columns: repeat(3, 1fr); } .makl-lining { padding: 34px 0; margin-top: 30px; } }

/* ============================================================
   Strap Designer — bölümlü düzen
   ============================================================ */
.makl-designer .makl-sg-step { margin-bottom: 34px; }
.makl-designer .makl-sg-step h1 { font-size: clamp(26px, 3.6vw, 38px); margin: 0 0 10px; }
.makl-designer .makl-sg-step h1::after { content: ""; display: block; width: 46px; height: 2px; background: var(--makl-accent); margin: 14px auto 14px; }

.makl-dsec { margin-bottom: 30px; }
.makl-dsec__title {
	display: flex; align-items: center; gap: 12px;
	font-size: 20px; margin: 0 0 14px; padding-bottom: 12px;
	border-bottom: 1px solid var(--makl-line);
}
.makl-dsec__title span {
	display: inline-flex; width: 28px; height: 28px; flex-shrink: 0;
	align-items: center; justify-content: center; border-radius: 50%;
	background: var(--makl-brand); color: var(--makl-accent);
	font-family: var(--makl-font-body); font-size: 12px; font-weight: 700;
}

/* Çok seçenekli gruplarda daha sıkı yerleşim */
.makl-group legend { font-size: 17px; }
.makl-choices { gap: 7px; }
.makl-choice > span { font-size: 13px; padding: 6px 13px; }
.makl-choice--swatch > span { width: 104px; padding: 7px; }
.makl-choice--swatch img { height: 60px; }

/* Deri seçimi ızgarası — 20 seçenek için düzenli akış */
.makl-group[data-group="leather"] .makl-choices {
	display: grid; grid-template-columns: repeat(auto-fill, minmax(104px, 1fr)); gap: 9px;
}
.makl-group[data-group="leather"] .makl-choice--swatch,
.makl-group[data-group="leather"] .makl-choice--swatch > span { width: 100%; }

@media (max-width: 600px) {
	.makl-group[data-group="leather"] .makl-choices { grid-template-columns: repeat(auto-fill, minmax(92px, 1fr)); }
	.makl-dsec__title { font-size: 18px; }
}
