/* ==========================================================================
   ÇATIR STREET KITCHEN — Bold Graphic New Generation Street Food Restaurant
   Palette:
   --ct-dark:         #171717; (Deep bold black)
   --ct-dark-card:    #212121;
   --ct-paper:        #F4EBDD; (Warm street paper background)
   --ct-flame:        #E84B2C; (Electric orange-red flame punch)
   --ct-flame-hover:  #FF5A36;
   --ct-acid-yellow:  #E5E05A; (Acid yellow accent)
   --ct-olive:        #31473B; (Street olive tone)
   --ct-white:        #FFFDF7;
   --ct-text-dark:    #202020;
   --ct-border-dark:  #333333;
   --ct-border-paper: #E2D7C5;
   ========================================================================== */

:root {
	--ct-dark: #171717;
	--ct-dark-card: #212121;
	--ct-paper: #F4EBDD;
	--ct-flame: #E84B2C;
	--ct-flame-hover: #FF5A36;
	--ct-acid-yellow: #E5E05A;
	--ct-olive: #31473B;
	--ct-white: #FFFDF7;
	--ct-text-dark: #202020;
	--ct-border-dark: #333333;
	--ct-border-paper: #E2D7C5;
	--ct-font-display: 'Bebas Neue', 'Barlow Condensed', sans-serif;
	--ct-font-condensed: 'Barlow Condensed', sans-serif;
	--ct-font-mono: 'Space Grotesk', monospace;
	--ct-font-sans: 'Plus Jakarta Sans', sans-serif;
}

/* Reset & Base */
.page-template-page-demo-catir-street-kitchen {
	margin: 0;
	padding: 0;
	background-color: var(--ct-paper);
	color: var(--ct-text-dark);
	font-family: var(--ct-font-sans);
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	box-sizing: border-box;
}

.page-template-page-demo-catir-street-kitchen *,
.page-template-page-demo-catir-street-kitchen *::before,
.page-template-page-demo-catir-street-kitchen *::after {
	box-sizing: border-box;
}

.catir-app-wrapper {
	width: 100%;
	min-height: 100vh;
	background-color: var(--ct-paper);
	color: var(--ct-text-dark);
	overflow-x: hidden;
}

.ct-container {
	max-width: 1360px;
	margin: 0 auto;
	padding: 0 30px;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--ct-font-display);
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin: 0 0 12px 0;
	line-height: 0.95;
}

p {
	margin: 0 0 16px 0;
	color: #554F47;
}

a {
	text-decoration: none;
	color: inherit;
	transition: all 0.2s ease;
}

/* Street Badges */
.ct-badge-tag {
	display: inline-block;
	background: var(--ct-flame);
	color: #FFF;
	font-family: var(--ct-font-mono);
	font-size: 11px;
	font-weight: 700;
	padding: 4px 10px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.ct-badge-tag-yellow {
	display: inline-block;
	background: var(--ct-acid-yellow);
	color: var(--ct-dark);
	font-family: var(--ct-font-mono);
	font-size: 11px;
	font-weight: 700;
	padding: 4px 10px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: 12px;
}

/* Buttons */
.btn-ct-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background-color: var(--ct-flame);
	color: #FFF;
	padding: 13px 26px;
	font-family: var(--ct-font-condensed);
	font-size: 16px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border: 2px solid var(--ct-flame);
	cursor: pointer;
	transition: all 0.2s ease;
}

.btn-ct-primary:hover {
	background-color: var(--ct-flame-hover);
	border-color: var(--ct-flame-hover);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(232, 75, 44, 0.4);
}

.btn-ct-primary.sm {
	padding: 8px 18px;
	font-size: 13px;
}

.btn-ct-ghost {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background-color: transparent;
	color: var(--ct-white);
	padding: 13px 26px;
	font-family: var(--ct-font-condensed);
	font-size: 16px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border: 2px solid rgba(255, 255, 255, 0.4);
	cursor: pointer;
	transition: all 0.2s ease;
}

.btn-ct-ghost:hover {
	border-color: var(--ct-white);
	background-color: rgba(255, 255, 255, 0.1);
}

/* Sections */
.catir-section {
	padding: 95px 0;
	border-bottom: 2px solid var(--ct-dark);
	position: relative;
}

.bg-paper {
	background-color: var(--ct-paper);
}

.bg-dark {
	background-color: var(--ct-dark);
	color: var(--ct-white);
}

.text-white {
	color: var(--ct-white) !important;
}

.text-muted {
	color: #A39B90 !important;
}

.ct-section-heading {
	text-align: center;
	max-width: 760px;
	margin: 0 auto 55px auto;
}

.ct-sec-h2 {
	font-size: 56px;
	margin-bottom: 12px;
}

.ct-sec-lead {
	font-size: 16px;
	line-height: 1.6;
	margin: 0;
}

/* 1. TOP TICKER STRIP */
.catir-topbar-strip {
	background-color: var(--ct-acid-yellow);
	color: var(--ct-dark);
	padding: 6px 0;
	overflow: hidden;
	font-family: var(--ct-font-condensed);
	font-weight: 800;
	font-size: 13px;
	letter-spacing: 0.1em;
	white-space: nowrap;
	border-bottom: 2px solid var(--ct-dark);
}

.catir-ticker-track {
	display: inline-block;
	animation: tickerAnim 25s linear infinite;
}

@keyframes tickerAnim {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

/* 2. BOLD HEADER */
.catir-header {
	background-color: var(--ct-dark);
	border-bottom: 2px solid var(--ct-dark);
	position: sticky;
	top: 0;
	z-index: 100;
	padding: 14px 0;
}

.ct-header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.ct-brand-logo {
	display: flex;
	align-items: center;
}

.ct-logo-badge {
	background: var(--ct-flame);
	color: #FFF;
	padding: 6px 14px;
	display: flex;
	flex-direction: column;
	border: 2px solid #000;
	box-shadow: 3px 3px 0 #000;
}

.ct-logo-main {
	font-family: var(--ct-font-display);
	font-size: 32px;
	line-height: 0.85;
	letter-spacing: 0.08em;
}

.ct-logo-sub {
	font-family: var(--ct-font-mono);
	font-size: 8px;
	font-weight: 700;
	letter-spacing: 0.2em;
	color: var(--ct-acid-yellow);
	margin-top: 3px;
}

.ct-nav {
	display: flex;
	align-items: center;
	gap: 22px;
}

.ct-nav-link {
	font-family: var(--ct-font-condensed);
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: #D6CCC0;
	text-transform: uppercase;
}

.ct-nav-link:hover {
	color: var(--ct-flame);
}

/* 3. HERO CUT & CRUNCH SLIDER */
.catir-hero-cinema {
	position: relative;
	width: 100%;
	height: 760px;
	background-color: var(--ct-dark);
	overflow: hidden;
}

.ct-cinema-slider {
	position: relative;
	width: 100%;
	height: 100%;
}

.ct-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.6s ease, visibility 0.6s;
	display: flex;
	align-items: center;
}

.ct-slide.active {
	opacity: 1;
	visibility: visible;
	z-index: 2;
}

/* Split Hero Slide */
.ct-slide-split {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	width: 100%;
	height: 100%;
}

.ct-split-content {
	background: var(--ct-dark);
	color: var(--ct-white);
	padding: 80px 60px 120px 80px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	z-index: 5;
}

.ct-split-visual {
	background-size: cover;
	background-position: center;
	position: relative;
	border-left: 2px solid var(--ct-dark);
}

.ct-vis-stamp {
	position: absolute;
	top: 30px;
	right: 30px;
	background: var(--ct-acid-yellow);
	color: var(--ct-dark);
	font-family: var(--ct-font-mono);
	font-size: 11px;
	font-weight: 700;
	padding: 8px 14px;
	border: 2px solid #000;
	box-shadow: 3px 3px 0 #000;
}

/* Fullscreen Slides */
.ct-slide-full {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	position: relative;
	display: flex;
	align-items: center;
}

.ct-slide-overlay-dark {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(23, 23, 23, 0.95) 0%, rgba(23, 23, 23, 0.75) 50%, rgba(23, 23, 23, 0.4) 100%);
}

.ct-slide-overlay-tint {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(23, 23, 23, 0.95) 0%, rgba(49, 71, 59, 0.75) 60%, rgba(23, 23, 23, 0.4) 100%);
}

.ct-slide-caption {
	position: relative;
	z-index: 5;
	max-width: 680px;
	color: var(--ct-white);
}

.ct-micro-tag {
	font-family: var(--ct-font-mono);
	font-size: 11.5px;
	font-weight: 700;
	color: var(--ct-acid-yellow);
	letter-spacing: 0.15em;
	margin-bottom: 16px;
}

.ct-hero-title {
	font-size: 78px;
	line-height: 0.92;
	margin-bottom: 22px;
}

.ct-heavy {
	display: block;
	color: var(--ct-white);
}

.ct-accent-txt {
	display: block;
	color: var(--ct-flame);
}

.ct-yellow-txt {
	display: block;
	color: var(--ct-acid-yellow);
}

.ct-hero-p {
	font-size: 16.5px;
	color: #D1C7BA;
	line-height: 1.6;
	margin-bottom: 30px;
	max-width: 520px;
}

.ct-hero-ctas {
	display: flex;
	gap: 16px;
	margin-bottom: 24px;
}

.ct-hero-spec-tag {
	font-family: var(--ct-font-mono);
	font-size: 11px;
	color: #9C9387;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	padding-top: 14px;
}

.ct-slider-strip {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 10;
	background: var(--ct-dark);
	border-top: 2px solid rgba(255, 255, 255, 0.15);
	padding: 16px 0;
}

.ct-slider-strip-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.ct-slider-tabs {
	display: flex;
	gap: 14px;
}

.ct-tab-btn {
	background: transparent;
	border: none;
	color: #8C8276;
	font-family: var(--ct-font-condensed);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.05em;
	cursor: pointer;
	padding: 4px 8px;
	border-bottom: 2px solid transparent;
	transition: all 0.2s ease;
}

.c-num {
	color: var(--ct-flame);
	margin-right: 4px;
}

.ct-tab-btn.active, .ct-tab-btn:hover {
	color: #FFF;
	border-bottom-color: var(--ct-flame);
}

.ct-slider-navs {
	display: flex;
	align-items: center;
	gap: 12px;
}

.ct-nav-arr {
	width: 36px;
	height: 36px;
	background: #2B2B2B;
	border: 1px solid #444;
	color: #FFF;
	cursor: pointer;
	font-size: 14px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
}

.ct-nav-arr:hover {
	background: var(--ct-flame);
	border-color: var(--ct-flame);
}

.ct-slide-counter {
	font-family: var(--ct-font-mono);
	font-size: 12px;
	color: #BDB3A6;
}

/* 4. EXPLODED BURGER (İçinde Ne Var?) */
.exploded-controls-row {
	display: flex;
	justify-content: center;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 30px;
}

.eb-btn {
	background: var(--ct-white);
	border: 2px solid var(--ct-dark);
	color: var(--ct-dark);
	padding: 8px 16px;
	font-family: var(--ct-font-condensed);
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0.05em;
	cursor: pointer;
	transition: all 0.2s ease;
	box-shadow: 2px 2px 0 var(--ct-dark);
}

.eb-btn.active, .eb-btn:hover {
	background: var(--ct-flame);
	border-color: var(--ct-dark);
	color: #FFF;
}

.exploded-visual-box {
	display: flex;
	flex-direction: column;
	gap: 8px;
	max-width: 680px;
	margin: 0 auto 36px auto;
	background: var(--ct-white);
	border: 2px solid var(--ct-dark);
	padding: 24px;
	box-shadow: 6px 6px 0 var(--ct-dark);
}

.layer-item {
	padding: 14px 20px;
	border: 2px solid var(--ct-dark);
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-family: var(--ct-font-condensed);
	font-size: 16px;
	font-weight: 800;
	transition: all 0.25s ease;
}

.l-bun-top, .l-bun-bottom {
	background: #E8C28A;
	color: var(--ct-dark);
}

.l-sauce {
	background: #E84B2C;
	color: #FFF;
}

.l-pickle {
	background: #7DA87B;
	color: var(--ct-dark);
}

.l-cheese-1, .l-cheese-2 {
	background: #F4C430;
	color: var(--ct-dark);
}

.l-patty-1, .l-patty-2 {
	background: #4A332D;
	color: #FFF;
}

.layer-item.dimmed {
	opacity: 0.2;
	transform: scale(0.98);
}

.exploded-info-footer {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
	max-width: 680px;
	margin: 0 auto;
}

.eif-metric {
	background: var(--ct-dark);
	color: var(--ct-white);
	padding: 12px;
	text-align: center;
	font-family: var(--ct-font-condensed);
	font-size: 13px;
	border: 2px solid var(--ct-dark);
}

.eif-metric strong {
	display: block;
	font-family: var(--ct-font-display);
	font-size: 26px;
	color: var(--ct-acid-yellow);
}

/* 5. CRUNCH LEVEL */
.crunch-pills-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	max-width: 860px;
	margin: 0 auto 30px auto;
}

.crunch-pill-btn {
	background: var(--ct-dark-card);
	border: 2px solid var(--ct-border-dark);
	color: var(--ct-white);
	padding: 18px 20px;
	text-align: left;
	cursor: pointer;
	transition: all 0.2s ease;
	position: relative;
}

.cp-num {
	font-family: var(--ct-font-mono);
	font-size: 11px;
	color: var(--ct-flame);
	display: block;
	margin-bottom: 4px;
}

.crunch-pill-btn strong {
	font-family: var(--ct-font-display);
	font-size: 24px;
	display: block;
	line-height: 1;
}

.cp-fav {
	font-size: 10.5px !important;
	color: var(--ct-acid-yellow);
	letter-spacing: 0.1em;
	margin: 4px 0;
}

.crunch-pill-btn small {
	font-size: 12px;
	color: #9C9387;
	display: block;
	margin-top: 4px;
}

.crunch-pill-btn.active {
	border-color: var(--ct-acid-yellow);
	background: #2C2A20;
}

.crunch-stage-card {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	background: var(--ct-dark-card);
	border: 2px solid var(--ct-border-dark);
	max-width: 860px;
	margin: 0 auto;
	overflow: hidden;
}

.csc-img {
	min-height: 280px;
	background-size: cover;
	background-position: center;
	position: relative;
	padding: 16px;
}

.csc-badge {
	background: var(--ct-flame);
	color: #FFF;
	font-family: var(--ct-font-mono);
	font-size: 11px;
	font-weight: 700;
	padding: 4px 10px;
}

.csc-desc-box {
	padding: 36px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.csc-title {
	font-size: 32px;
	color: var(--ct-white);
	margin-bottom: 12px;
}

.csc-p {
	font-size: 14.5px;
	color: #C2B7AC;
	line-height: 1.6;
	margin-bottom: 22px;
}

.csc-specs {
	border-top: 1px solid var(--ct-border-dark);
	padding-top: 16px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: 13px;
	color: #8C8276;
}

.csc-specs strong {
	color: var(--ct-acid-yellow);
}

/* 6. ÇATIR FOOD POSTER WALL MENÜ */
.catir-menu-poster-wall {
	display: grid;
	grid-template-columns: 240px 1fr 340px;
	gap: 28px;
	background: var(--ct-white);
	border: 2px solid var(--ct-dark);
	padding: 30px;
	box-shadow: 6px 6px 0 var(--ct-dark);
}

.poster-cat-col {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.p-cat-btn {
	background: var(--ct-paper);
	border: 2px solid var(--ct-dark);
	color: var(--ct-dark);
	padding: 12px 14px;
	text-align: left;
	font-family: var(--ct-font-display);
	font-size: 20px;
	cursor: pointer;
	transition: all 0.2s ease;
}

.p-cat-btn span {
	font-family: var(--ct-font-mono);
	font-size: 11px;
	color: var(--ct-flame);
	margin-right: 6px;
}

.p-cat-btn.active, .p-cat-btn:hover {
	background: var(--ct-dark);
	color: var(--ct-acid-yellow);
}

.poster-items-col {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 0 10px;
}

.poster-item-card {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	border-bottom: 2px dashed var(--ct-border-paper);
	padding-bottom: 12px;
}

.pic-info h4 {
	font-size: 24px;
	margin: 0 0 2px 0;
	color: var(--ct-dark);
}

.pic-info p {
	font-size: 13px;
	color: #6E665D;
	margin: 0;
}

.pic-price {
	font-family: var(--ct-font-display);
	font-size: 28px;
	color: var(--ct-flame);
	white-space: nowrap;
	margin-left: 14px;
}

.poster-visual-col {
	border: 2px solid var(--ct-dark);
	overflow: hidden;
}

.p-hero-img {
	height: 100%;
	min-height: 420px;
	background-size: cover;
	background-position: center;
	position: relative;
	display: flex;
	align-items: flex-end;
	padding: 24px;
}

.p-hero-overlay {
	background: var(--ct-dark);
	color: var(--ct-white);
	padding: 16px 20px;
	border: 2px solid #000;
	width: 100%;
}

.pho-cat {
	font-family: var(--ct-font-mono);
	font-size: 10px;
	color: var(--ct-acid-yellow);
	letter-spacing: 0.12em;
	display: block;
	margin-bottom: 2px;
}

.pho-title {
	font-size: 26px;
	margin: 0 0 4px 0;
}

.pho-price {
	font-family: var(--ct-font-display);
	font-size: 22px;
	color: var(--ct-flame);
}

/* 7. QUIZ (Bugün Ne Yesen?) */
.quiz-match-box {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 30px;
	background: var(--ct-dark-card);
	border: 2px solid var(--ct-border-dark);
	padding: 40px;
	max-width: 960px;
	margin: 0 auto;
}

.quiz-questions-grid {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.q-label {
	display: block;
	font-family: var(--ct-font-condensed);
	font-size: 15px;
	font-weight: 800;
	color: var(--ct-acid-yellow);
	margin-bottom: 8px;
	letter-spacing: 0.05em;
}

.q-options {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.q-opt-btn {
	background: #171717;
	border: 1px solid #444;
	color: var(--ct-white);
	padding: 10px 16px;
	font-family: var(--ct-font-condensed);
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.2s ease;
}

.q-opt-btn.active {
	background: var(--ct-flame);
	border-color: var(--ct-flame);
	color: #FFF;
}

.quiz-result-card {
	background: #171717;
	border: 2px solid var(--ct-flame);
	padding: 30px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}

.qrc-badge {
	font-family: var(--ct-font-mono);
	font-size: 10.5px;
	color: var(--ct-acid-yellow);
	letter-spacing: 0.12em;
	margin-bottom: 8px;
}

.qrc-name {
	font-size: 36px;
	color: var(--ct-white);
	margin-bottom: 10px;
}

.qrc-desc {
	font-size: 13.5px;
	color: #B5AA9E;
	line-height: 1.6;
	margin-bottom: 18px;
}

.qrc-price-tag {
	font-family: var(--ct-font-display);
	font-size: 34px;
	color: var(--ct-flame);
	margin-bottom: 18px;
}

/* 8. SOS LAB */
.sauce-picks-row {
	display: flex;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 30px;
}

.sauce-btn {
	background: var(--ct-white);
	border: 2px solid var(--ct-dark);
	color: var(--ct-dark);
	padding: 10px 18px;
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: var(--ct-font-condensed);
	font-size: 15px;
	font-weight: 800;
	cursor: pointer;
	box-shadow: 2px 2px 0 var(--ct-dark);
	transition: all 0.2s ease;
}

.sb-color {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: 1px solid #000;
}

.catir-red { background: #E84B2C; }
.spicy-orange { background: #FF7A00; }
.truffle-black { background: #2B2B2B; }
.bbq-brown { background: #613426; }
.honey-gold { background: #E5B234; }

.sauce-btn.active, .sauce-btn:hover {
	background: var(--ct-dark);
	color: var(--ct-acid-yellow);
}

.sauce-stage-card {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	background: var(--ct-white);
	border: 2px solid var(--ct-dark);
	box-shadow: 6px 6px 0 var(--ct-dark);
	max-width: 860px;
	margin: 0 auto;
	overflow: hidden;
}

.ssc-img {
	min-height: 260px;
	background-size: cover;
	background-position: center;
	position: relative;
	padding: 16px;
}

.ssc-tag {
	background: var(--ct-dark);
	color: var(--ct-acid-yellow);
	font-family: var(--ct-font-mono);
	font-size: 10.5px;
	padding: 4px 8px;
}

.ssc-info {
	padding: 34px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.ssc-title {
	font-size: 28px;
	margin-bottom: 10px;
	color: var(--ct-dark);
}

.ssc-desc {
	font-size: 14px;
	color: #61584F;
	line-height: 1.6;
	margin-bottom: 18px;
}

.ssc-pair {
	border-top: 1px solid var(--ct-border-paper);
	padding-top: 14px;
	font-size: 13px;
	color: #8C8175;
}

.ssc-pair strong {
	color: var(--ct-flame);
}

/* 9. SMASH STEPS */
.smash-steps-timeline {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
	gap: 14px;
}

.ss-step {
	background: var(--ct-dark-card);
	border: 2px solid var(--ct-border-dark);
	padding: 22px;
	border-top: 3px solid var(--ct-flame);
}

.ss-num {
	font-family: var(--ct-font-mono);
	font-size: 13px;
	font-weight: 700;
	color: var(--ct-acid-yellow);
	display: block;
	margin-bottom: 6px;
}

.ss-title {
	font-family: var(--ct-font-display);
	font-size: 20px;
	color: var(--ct-white);
	display: block;
	margin-bottom: 6px;
}

.ss-desc {
	font-size: 12.5px;
	color: #A39B90;
	line-height: 1.5;
	margin: 0;
}

/* 10. LIMITED DROP */
.limited-drop-card {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	background: var(--ct-white);
	border: 2px solid var(--ct-dark);
	box-shadow: 8px 8px 0 var(--ct-dark);
	max-width: 960px;
	margin: 0 auto;
	overflow: hidden;
}

.ldc-text-side {
	padding: 50px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.ldc-tag {
	font-family: var(--ct-font-mono);
	font-size: 11px;
	font-weight: 700;
	color: var(--ct-flame);
	letter-spacing: 0.12em;
	display: block;
	margin-bottom: 6px;
}

.ldc-title {
	font-size: 54px;
	margin-bottom: 4px;
	color: var(--ct-dark);
}

.ldc-subtitle {
	font-family: var(--ct-font-condensed);
	font-size: 16px;
	font-weight: 700;
	color: #8C8175;
	display: block;
	margin-bottom: 18px;
}

.ldc-desc {
	font-size: 14.5px;
	color: #5C544B;
	line-height: 1.6;
	margin-bottom: 24px;
}

.ldc-price-box {
	display: flex;
	align-items: baseline;
	gap: 14px;
}

.ldc-price {
	font-family: var(--ct-font-display);
	font-size: 40px;
	color: var(--ct-flame);
}

.ldc-note {
	font-size: 12px;
	color: #8C8175;
}

.ldc-img-side {
	min-height: 340px;
	background-size: cover;
	background-position: center;
	position: relative;
	border-left: 2px solid var(--ct-dark);
	padding: 20px;
}

.ldc-stamp {
	background: var(--ct-acid-yellow);
	color: var(--ct-dark);
	font-family: var(--ct-font-mono);
	font-size: 11px;
	font-weight: 700;
	padding: 6px 12px;
	border: 2px solid #000;
	box-shadow: 2px 2px 0 #000;
}

/* 11. MEKÂN & AFTER HOURS */
.street-places-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
	margin-bottom: 40px;
}

.sp-card {
	background: var(--ct-dark-card);
	border: 2px solid var(--ct-border-dark);
	overflow: hidden;
}

.spc-img {
	height: 200px;
	background-size: cover;
	background-position: center;
}

.spc-info {
	padding: 22px;
}

.spc-code {
	font-family: var(--ct-font-mono);
	font-size: 10px;
	color: var(--ct-acid-yellow);
	letter-spacing: 0.1em;
	display: block;
	margin-bottom: 4px;
}

.spc-info h4 {
	font-size: 22px;
	color: var(--ct-white);
	margin-bottom: 6px;
}

.spc-info p {
	font-size: 13px;
	color: #A39B90;
	margin: 0;
}

.after-hours-banner {
	background: #0E0E0E;
	border: 2px solid var(--ct-flame);
	padding: 30px 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
}

.ahb-badge {
	background: var(--ct-flame);
	color: #FFF;
	font-family: var(--ct-font-mono);
	font-size: 10.5px;
	font-weight: 700;
	padding: 4px 8px;
	display: inline-block;
	margin-bottom: 6px;
}

.ahb-text h3 {
	font-size: 28px;
	color: var(--ct-white);
	margin-bottom: 4px;
}

.ahb-text p {
	font-size: 13.5px;
	color: #A39B90;
	margin: 0;
}

.ahb-hours {
	display: flex;
	flex-direction: column;
	gap: 4px;
	font-family: var(--ct-font-condensed);
	font-size: 15px;
	color: #FFF;
	white-space: nowrap;
	text-align: right;
}

.ahb-hours strong {
	color: var(--ct-acid-yellow);
	font-size: 18px;
}

/* 12. FOOTER */
.catir-footer {
	background: #0D0D0D;
	color: var(--ct-white);
	border-top: 2px solid var(--ct-dark);
	padding: 70px 0 30px 0;
	font-size: 13.5px;
}

.ct-footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
	gap: 40px;
	margin-bottom: 50px;
}

.cf-desc {
	font-size: 13px;
	color: #8C8175;
	margin-top: 14px;
	max-width: 320px;
}

.cf-title {
	font-family: var(--ct-font-display);
	font-size: 20px;
	letter-spacing: 0.08em;
	color: var(--ct-acid-yellow);
	margin-bottom: 16px;
}

.cf-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.cf-links li {
	margin-bottom: 8px;
}

.cf-links a {
	color: #A39B90;
	font-family: var(--ct-font-condensed);
	font-size: 14px;
	font-weight: 700;
}

.cf-links a:hover {
	color: var(--ct-flame);
}

.cf-info {
	font-size: 13px;
	color: #A39B90;
	margin-bottom: 6px;
}

.ct-footer-bottom {
	border-top: 1px solid #242424;
	padding-top: 22px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-family: var(--ct-font-mono);
	font-size: 12px;
	color: #7A7268;
}

.cf-badge {
	color: var(--ct-flame);
	font-weight: 700;
}

/* Responsive */
@media (max-width: 1024px) {
	.ct-nav {
		display: none;
	}
	.ct-slide-split,
	.catir-menu-poster-wall,
	.quiz-match-box,
	.sauce-stage-card,
	.limited-drop-card,
	.crunch-stage-card {
		grid-template-columns: 1fr;
	}
	.poster-visual-col {
		min-height: 280px;
	}
	.after-hours-banner {
		flex-direction: column;
		text-align: left;
		align-items: flex-start;
	}
	.ahb-hours {
		text-align: left;
	}
	.ct-footer-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 768px) {
	.ct-hero-title {
		font-size: 48px;
	}
	.ct-sec-h2 {
		font-size: 40px;
	}
	.ct-slider-tabs {
		display: none;
	}
	.crunch-pills-row {
		grid-template-columns: 1fr;
	}
	.exploded-info-footer {
		grid-template-columns: 1fr 1fr;
	}
	.ct-footer-grid {
		grid-template-columns: 1fr;
	}
	.ct-footer-bottom {
		flex-direction: column;
		gap: 10px;
		text-align: center;
	}
}
