/* ==========================================================================
   DROPP — main stylesheet
   Fonts: Archivo Black (display) / Inter (body)
   Accent: var(--dropp-red) — set from Customizer (default #ff0000)
   ========================================================================== */

:root {
	--dropp-red: #ff0000;
	--dropp-black: #0a0a0a;
	--dropp-dark: #111111;
	--dropp-white: #ffffff;
	--dropp-grey: #f4f4f4;       /* product card backgrounds */
	--dropp-grey-2: #ececec;
	--dropp-text: #111111;
	--dropp-muted: #6b6b6b;
	--dropp-border: #e3e3e3;
	--dropp-border-dark: #2a2a2a;
	--font-display: 'Archivo Black', system-ui, sans-serif;
	--font-body: 'Inter', system-ui, -apple-system, sans-serif;
	--pad: clamp(16px, 4vw, 56px);
}

/* Reset / base ----------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html, body {
	width: 100%;
	max-width: 100%;
	overflow-x: hidden; /* fallback for browsers without clip support */
	overflow-x: clip;   /* hard stop for horizontal scroll */
}
body {
	margin: 0;
	position: relative;
	font-family: var(--font-body);
	font-size: 15px;
	line-height: 1.55;
	color: var(--dropp-text);
	background: var(--dropp-white);
	-webkit-font-smoothing: antialiased;
}
/* Second containment boundary for all page content */
#dropp-content {
	overflow-x: hidden;
	overflow-x: clip;
	max-width: 100%;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: inherit; }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden; clip: rect(0 0 0 0);
}
.skip-link:focus {
	position: fixed; top: 8px; left: 8px;
	z-index: 9999; padding: 8px 14px;
	background: var(--dropp-black); color: #fff;
	clip: auto; width: auto; height: auto;
}
:focus-visible { outline: 2px solid var(--dropp-red); outline-offset: 2px; }

/* ==========================================================================
   Header
   ========================================================================== */
.dropp-header {
	position: sticky; top: 0; z-index: 90;
	background: var(--dropp-white);
	border-bottom: 1px solid var(--dropp-border);
}
/* Dark header on shop / product / cart / any non-homepage page */
.dropp-header--dark {
	background: var(--dropp-black);
	border-bottom: 1px solid var(--dropp-border-dark);
}
/* Transparent overlay on homepage only */
.dropp-header--overlay {
	position: absolute; top: 0; left: 0; right: 0;
	background: transparent; border-bottom: 0;
}
.dropp-header-inner {
	display: flex; align-items: center; justify-content: space-between;
	padding: 0 var(--pad);
	height: 60px;
	overflow: visible;
}

/* Logo */
.dropp-logo {
	display: inline-flex; align-items: center;
	text-decoration: none; flex: none;
	max-height: 100%;
	line-height: 0;
}
.dropp-header-logo-img {
	height: 30px !important;
	max-height: 30px;
	width: auto !important;
	max-width: 180px;
	object-fit: contain;
	display: block;
}
.dropp-header-logo-text {
	font-family: var(--font-display);
	font-style: italic;
	font-size: 22px;
	color: #fff;
	letter-spacing: -0.02em;
}
/* WP custom logo img */
.dropp-logo .custom-logo {
	height: 30px !important;
	max-height: 30px;
	width: auto !important;
	max-width: 180px;
	object-fit: contain;
}
.dropp-logo--hidden { visibility: hidden; pointer-events: none; min-width: 1px; }

/* Right side: CART + Menu */
.dropp-header-right {
	display: flex; align-items: center; gap: clamp(16px, 2vw, 30px);
}
.dropp-cart-link {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	color: #fff;
	white-space: nowrap;
}
.dropp-cart-link:hover { opacity: .75; }
.dropp-cart-count { margin-left: 2px; }

.dropp-menu-toggle {
	background: none; border: 0; padding: 0;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #fff;
	cursor: pointer;
	min-height: 44px; min-width: 44px;
}
/* Homepage overlay: Menu is black text on red */
.dropp-header--overlay .dropp-menu-toggle {
	color: var(--dropp-black);
	font-family: 'Courier New', ui-monospace, monospace;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: capitalize;
}

/* Drawer menu — white panel, slides in from the right */
.dropp-drawer {
	position: fixed; top: 0; right: 0; bottom: 0;
	width: min(420px, 90vw);
	background: #fff; color: #1c1c1c;
	z-index: 200; padding: 14px 24px 30px;
	overflow-y: auto;
	transform: translateX(100%);
	transition: transform .3s ease;
	box-shadow: 0 0 40px rgba(0,0,0,.12);
}
.dropp-drawer.is-open { transform: translateX(0); }
.dropp-drawer-top {
	display: flex; justify-content: flex-start; align-items: center;
	margin-bottom: 14px;
}
.dropp-drawer-close {
	background: none; border: 0; color: #1c1c1c;
	padding: 10px 10px 10px 0; line-height: 0;
}
.dropp-drawer-menu { list-style: none; margin: 0; padding: 0; }
.dropp-drawer-menu li {
	display: flex; flex-wrap: wrap; align-items: center;
}
.dropp-drawer-menu li a {
	flex: 1;
	display: block;
	padding: 17px 0;
	font-size: 15.5px;
	font-weight: 400;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	text-decoration: none;
	color: #1c1c1c;
}
.dropp-drawer-menu li a:hover { color: #000; }

/* Chevron toggle for items with sub-menus */
.dropp-sub-toggle {
	background: none; border: 0; color: #777;
	padding: 14px 2px 14px 18px; line-height: 0;
	flex: none;
}
.dropp-sub-toggle svg { transition: transform .2s ease; }
.dropp-drawer-menu li.is-open > .dropp-sub-toggle svg { transform: rotate(90deg); }

/* Sub-menus: hidden until toggled */
.dropp-drawer-menu .sub-menu {
	list-style: none; margin: 0; padding: 0 0 6px 16px;
	width: 100%;
	display: none;
}
.dropp-drawer-menu li.is-open > .sub-menu { display: block; }
.dropp-drawer-menu .sub-menu li a {
	font-size: 14px;
	padding: 12px 0;
	color: #444;
	text-transform: uppercase;
}
.dropp-drawer-backdrop {
	position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 150;
}

/* ==========================================================================
   1. Hero banner
   ========================================================================== */
.dropp-hero {
	background: var(--dropp-red);
	display: flex;
	flex-direction: column;
	padding: 0;
}
/* Desktop: the red text area alone fills the first screen (like the mock);
   tiles sit at the red's bottom edge, revealed on scroll. */
.dropp-hero-center {
	min-height: 92vh;
	min-height: 92svh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 70px var(--pad) 46px;
}
.dropp-hero-title {
	margin: 0;
	font-family: var(--font-display);
	font-style: italic;
	font-size: clamp(58px, 13.5vw, 270px);
	line-height: .9;
	letter-spacing: -0.03em;
	color: var(--dropp-black);
	text-transform: uppercase;
	max-width: 100%;
}
.dropp-hero-title--logo { line-height: 0; }
.dropp-hero-logo {
	width: clamp(260px, 46vw, 900px);
	height: auto;
	display: inline-block;
}
.dropp-hero-tagline {
	margin: clamp(16px, 1.6vw, 30px) 0 0;
	font-family: 'Courier New', ui-monospace, monospace;
	font-size: clamp(11px, 0.9vw, 14px);
	font-weight: 600;
	letter-spacing: 0.32em;
	text-transform: capitalize;
	color: rgba(0,0,0,.8);
}
.dropp-hero-tagline a,
.dropp-hero-tagline span {
	color: inherit;
	text-decoration: none;
	margin: 0 0.4em;
}
.dropp-hero-tagline a:hover { text-decoration: underline; text-underline-offset: 4px; }

/* Tiles: flush to the red's bottom edge — red shows only in the gaps */
.dropp-hero-tiles {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 8px;
	padding: 0 8px 8px;
}
.dropp-hero-tile {
	aspect-ratio: 3/4;
	background: var(--dropp-grey-2);
	border: 2px solid var(--dropp-black);
	overflow: hidden;
	min-width: 0;
}
.dropp-hero-tile img { width: 100%; height: 100%; object-fit: cover; }
.dropp-tile-placeholder { display: block; width: 100%; height: 100%; }

/* First section after the hero */
.dropp-best { margin-top: clamp(44px, 6vw, 84px); }

/* ==========================================================================
   2. Bestsellers
   ========================================================================== */
.dropp-best { padding: 0 var(--pad); max-width: 100%; }
.dropp-best-carousel { min-width: 0; max-width: 100%; }
.dropp-best-head {
	display: flex; align-items: flex-end; justify-content: space-between;
	margin-bottom: 26px;
}
.dropp-eyebrow {
	margin: 0 0 8px;
	font-size: 11px; font-weight: 600;
	letter-spacing: 0.18em; text-transform: uppercase;
}
.dropp-best-title {
	margin: 0;
	font-family: var(--font-body);
	font-size: 17px;
	font-weight: 700;
	letter-spacing: 0;
}
.dropp-viewall-link {
	font-size: 13px; font-weight: 500;
	text-decoration: none; white-space: nowrap;
}
.dropp-viewall-link:hover { text-decoration: underline; }

.dropp-best-track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc((100% - 3 * 16px) / 4);
	gap: 16px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	-ms-overflow-style: none;
}
.dropp-best-track::-webkit-scrollbar { display: none; }
.dropp-best-card {
	scroll-snap-align: start;
	text-decoration: none;
}
.dropp-best-media {
	position: relative;
	aspect-ratio: 1/1;
	background: var(--dropp-grey);
	border: 1px solid var(--dropp-border);
	overflow: hidden;
	margin-bottom: 14px;
}
.dropp-best-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.dropp-best-card:hover .dropp-best-media img { transform: scale(1.04); }
.dropp-best-card .dropp-card-name {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.02em;
	margin-bottom: 5px;
}
.dropp-best-card .dropp-card-price { font-size: 14px; }
.dropp-best-card .dropp-card-price del { color: var(--dropp-muted); margin-left: 8px; font-weight: 400; }
.dropp-best-card .dropp-card-price ins { text-decoration: none; font-weight: 400; }

.dropp-badge {
	position: absolute; top: 10px; left: 10px; z-index: 2;
	background: var(--dropp-red); color: #fff;
	font-size: 11px; font-weight: 700;
	letter-spacing: 0.04em; text-transform: uppercase;
	padding: 5px 9px;
}

.dropp-best-nav {
	display: flex; align-items: center; justify-content: space-between;
	margin-top: 24px;
}
.dropp-best-counter { font-size: 15px; color: var(--dropp-text); }
.dropp-best-arrows { display: flex; gap: 26px; }
.dropp-arrow {
	background: none;
	border: 0;
	padding: 4px 0;
	color: var(--dropp-text);
	display: inline-flex;
	align-items: center;
	transition: opacity .2s ease, transform .2s ease;
}
.dropp-arrow:hover { transform: translateX(0) scale(1.05); }
.dropp-arrow:disabled { opacity: .25; pointer-events: none; }

/* ==========================================================================
   3. Collection banner
   ========================================================================== */
.dropp-collection-banner { margin-top: clamp(48px, 7vw, 110px); }
.dropp-banner-wrap { display: block; }
.dropp-banner-img { width: 100%; object-fit: cover; }
.dropp-banner-img--mobile { display: none; }

/* ==========================================================================
   4. Story strip
   ========================================================================== */
.dropp-story {
	max-width: 640px; margin: 0 auto;
	padding: clamp(44px, 6vw, 84px) var(--pad);
	text-align: center;
}
.dropp-story-heading {
	margin: 0 0 14px;
	font-size: clamp(16px, 2vw, 19px);
	font-weight: 800;
	letter-spacing: 0.01em;
	text-transform: uppercase;
}
.dropp-story-text { margin: 0; font-size: 13.5px; color: var(--dropp-muted); }
.dropp-story-text a { color: var(--dropp-text); font-weight: 600; }

/* ==========================================================================
   5. Shop All grid (homepage, light)
   ========================================================================== */
.dropp-shopall { padding: 0 var(--pad) clamp(50px, 7vw, 100px); }
.dropp-shopall-head {
	display: flex; align-items: center; justify-content: space-between;
	margin-bottom: 18px;
}
.dropp-shopall-title { margin: 0; font-size: 15px; font-weight: 700; }
.dropp-viewall-btn {
	font-size: 12px; font-weight: 500;
	text-decoration: none;
	border: 1px solid var(--dropp-text);
	padding: 7px 16px; border-radius: 999px;
	transition: background .2s ease, color .2s ease;
}
.dropp-viewall-btn:hover { background: var(--dropp-black); color: #fff; }

/* Shared grid ------------------------------------------------------------ */
.dropp-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 8px;
	row-gap: 30px;
}
.dropp-card-link { text-decoration: none; display: block; }
.dropp-card-media {
	position: relative;
	aspect-ratio: 4/5;
	background: var(--dropp-grey);
	overflow: hidden;
	margin-bottom: 10px;
}
.dropp-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.dropp-card-link:hover .dropp-card-media img { transform: scale(1.04); }
.dropp-card-name {
	margin: 0 0 4px;
	font-size: 11.5px; font-weight: 600;
	letter-spacing: 0.03em; text-transform: uppercase;
}
.dropp-card-price { font-size: 12.5px; }
.dropp-card-price del { color: var(--dropp-muted); margin-left: 6px; }
.dropp-card-price ins { text-decoration: none; font-weight: 600; }
.dropp-card-soldout { margin: 0; font-size: 12px; color: var(--dropp-muted); }

/* ==========================================================================
   Shop archive — DARK
   ========================================================================== */
body.dropp-dark { background: var(--dropp-black); color: #fff; }

.dropp-shop { padding: 26px var(--pad) 70px; }
.dropp-shop-title {
	font-family: var(--font-display);
	font-size: clamp(26px, 3.5vw, 42px);
	text-transform: uppercase;
	margin: 0 0 26px;
}

/* Filter bar */
.dropp-filterbar {
	display: flex; align-items: center; justify-content: space-between;
	gap: 16px;
	margin-bottom: 30px;
	font-size: 13px;
}
.dropp-filterbar-left, .dropp-filterbar-right { display: flex; align-items: center; gap: 18px; }
.dropp-filter-label { color: #bdbdbd; }

.dropp-fdrop { position: relative; }
.dropp-fdrop-btn {
	background: none; border: 0; color: #fff;
	font-size: 13px; display: flex; align-items: center; gap: 6px;
	padding: 4px 0;
}
.dropp-caret {
	width: 7px; height: 7px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate(45deg) translateY(-2px);
}
.dropp-fdrop-panel {
	position: absolute; top: calc(100% + 10px); left: 0; z-index: 60;
	min-width: 200px;
	background: var(--dropp-dark);
	border: 1px solid var(--dropp-border-dark);
	padding: 14px;
}
.dropp-fcheck {
	display: flex; align-items: center; gap: 9px;
	padding: 6px 0; cursor: pointer; font-size: 13px;
}
.dropp-price-row { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.dropp-price-row input {
	width: 80px; padding: 7px 8px;
	background: var(--dropp-black); color: #fff;
	border: 1px solid var(--dropp-border-dark);
}
.dropp-price-apply {
	width: 100%; padding: 8px;
	background: #fff; color: var(--dropp-black);
	border: 0; font-weight: 600; font-size: 12.5px;
}
.dropp-sort {
	background: transparent; color: #fff;
	border: 0; border-bottom: 1px solid var(--dropp-border-dark);
	padding: 4px 2px; font-size: 13px;
}
.dropp-sort option { color: var(--dropp-black); }
.dropp-count { color: #bdbdbd; white-space: nowrap; }

/* Mobile filter trigger */
.dropp-mfilter-btn {
	display: none;
	align-items: center; gap: 8px;
	background: none; border: 0; color: inherit;
	font-size: 13.5px; padding: 4px 0; margin-bottom: 20px;
}

/* Dark grid card adjustments */
.dropp-grid--dark { gap: 14px; row-gap: 38px; }
.dropp-grid--dark .dropp-card-media { background: var(--dropp-dark); }
.dropp-grid--dark .dropp-card-name { text-align: center; font-weight: 600; }
.dropp-grid--dark .dropp-card-price,
.dropp-grid--dark .dropp-card-soldout { text-align: center; }
.dropp-grid--dark .dropp-card-price del { color: #8a8a8a; }
.dropp-noresults { grid-column: 1 / -1; text-align: center; color: #bdbdbd; }

/* Load more */
.dropp-loadmore-wrap { text-align: center; margin-top: 48px; }
.dropp-loadmore {
	background: none; border: 1px solid #fff; color: #fff;
	padding: 12px 38px; font-size: 13px; font-weight: 600;
	letter-spacing: 0.05em; text-transform: uppercase;
	transition: background .2s ease, color .2s ease;
}
.dropp-loadmore:hover { background: #fff; color: var(--dropp-black); }
.dropp-loadmore.is-loading { opacity: .5; pointer-events: none; }
.dropp-grid.is-loading { opacity: .45; transition: opacity .15s ease; }

/* ==========================================================================
   Single product
   ========================================================================== */
.dropp-woo-main { padding: 30px var(--pad) 60px; }
.single-product div.product {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
	gap: clamp(24px, 4vw, 64px);
	position: relative;
}
.single-product div.product .woocommerce-product-gallery { margin: 0; }
.single-product div.product .woocommerce-product-gallery img { width: 100%; }
.single-product div.product .summary { margin: 0; }

.single-product .product_title {
	font-family: var(--font-display);
	font-size: clamp(22px, 2.6vw, 32px);
	text-transform: uppercase;
	margin: 0 0 10px;
}
.single-product .summary .price { font-size: 17px; margin-bottom: 14px; display: block; }
.single-product .summary .price del { color: var(--dropp-muted); }
.single-product .summary .price ins { text-decoration: none; font-weight: 700; }

.dropp-sizechart-link {
	display: inline-flex; align-items: center; gap: 7px;
	background: none; border: 0; padding: 0;
	font-size: 13px; text-decoration: underline; text-underline-offset: 3px;
	margin-bottom: 16px;
}

/* Size pills (built from the variation <select> by JS) */
.dropp-size-pills { display: flex; flex-wrap: wrap; gap: 9px; margin: 6px 0 16px; }
.dropp-size-pill {
	min-width: 46px; padding: 9px 13px;
	background: none;
	border: 1px solid var(--dropp-text);
	font-size: 13px; font-weight: 600; text-align: center;
	transition: background .15s ease, color .15s ease;
}
.dropp-size-pill[aria-pressed="true"] { background: var(--dropp-black); color: #fff; }
.dropp-size-pill:disabled { opacity: .3; text-decoration: line-through; cursor: not-allowed; }
.variations select.dropp-hidden-select { position: absolute; opacity: 0; pointer-events: none; height: 0; }
.single-product table.variations { border: 0; margin: 0; }
.single-product table.variations td, .single-product table.variations th { padding: 0; border: 0; }
.single-product table.variations .label { font-size: 12.5px; font-weight: 600; text-transform: uppercase; }
.single-product .reset_variations { font-size: 12px; }

/* Cart buttons */
.single-product form.cart { margin: 8px 0 22px; }
.single-product form.cart .quantity { display: none; } /* design has no qty on PDP */
.single-product form.cart .single_add_to_cart_button {
	display: block; width: 100%;
	background: none; color: var(--dropp-text);
	border: 1px solid var(--dropp-text); border-radius: 0;
	padding: 14px; font-size: 13.5px; font-weight: 600;
	letter-spacing: 0.03em;
	margin-bottom: 10px;
	transition: background .2s ease, color .2s ease;
}
.single-product form.cart .single_add_to_cart_button:hover { background: var(--dropp-grey-2); }
.dropp-buy-now {
	display: block; width: 100%;
	background: var(--dropp-black); color: #fff;
	border: 1px solid var(--dropp-black);
	padding: 14px; font-size: 13.5px; font-weight: 700;
	letter-spacing: 0.06em; text-transform: uppercase;
	transition: opacity .2s ease;
}
.dropp-buy-now:hover { opacity: .85; }

/* Description + accordions */
.dropp-prod-desc { font-size: 14px; margin: 18px 0 6px; }
.dropp-prod-desc strong { font-weight: 800; }
.dropp-acc { border-top: 1px solid var(--dropp-border); }
.dropp-acc:last-child { border-bottom: 1px solid var(--dropp-border); }
.dropp-acc-head {
	width: 100%; display: flex; align-items: center; justify-content: space-between;
	background: none; border: 0; padding: 15px 0;
	font-size: 13.5px; font-weight: 500; text-align: left;
}
.dropp-acc-icon { position: relative; width: 13px; height: 13px; flex: none; }
.dropp-acc-icon::before, .dropp-acc-icon::after {
	content: ""; position: absolute; background: currentColor;
}
.dropp-acc-icon::before { left: 0; right: 0; top: 6px; height: 1.5px; }
.dropp-acc-icon::after { top: 0; bottom: 0; left: 6px; width: 1.5px; transition: transform .2s ease; }
.dropp-acc-head[aria-expanded="true"] .dropp-acc-icon::after { transform: scaleY(0); }
.dropp-acc-body { padding: 0 0 16px; font-size: 13.5px; color: #444; }

/* FAQs */
.dropp-faqs { max-width: 760px; margin: clamp(40px, 6vw, 70px) auto 0; }
.dropp-faqs-title { text-align: center; font-size: 17px; font-weight: 700; margin: 0 0 18px; }

/* Related — CHECKOUT THESE TOO */
.single-product .related.products { margin-top: clamp(44px, 6vw, 80px); }
.single-product .related.products > h2 {
	font-size: 14px; font-weight: 800;
	letter-spacing: 0.06em; text-transform: uppercase;
	margin: 0 0 20px;
}
.single-product .related.products ul.products {
	display: grid; grid-template-columns: repeat(4, 1fr);
	gap: 8px; row-gap: 26px;
	list-style: none; margin: 0; padding: 0;
}
.single-product .related.products ul.products li.product { width: auto; margin: 0; }

/* Size chart modal */
.dropp-modal { position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; }
.dropp-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.6); }
.dropp-modal-box {
	position: relative; z-index: 2;
	background: #fff; padding: 18px;
	max-width: min(720px, 92vw); max-height: 88vh; overflow: auto;
}
.dropp-modal-close {
	position: absolute; top: 6px; right: 10px;
	background: none; border: 0; font-size: 28px; line-height: 1;
}

/* ==========================================================================
   Cart page
   ========================================================================== */
.dropp-page { padding: 36px var(--pad) 70px; max-width: 1280px; margin: 0 auto; }
.dropp-page-title { font-family: var(--font-display); text-transform: uppercase; }

.dropp-cart-head {
	display: flex; align-items: baseline; justify-content: space-between;
	margin-bottom: 26px;
}
.dropp-cart-title {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(24px, 3vw, 34px);
}
.dropp-continue { font-size: 13px; }

/* Cart table */
.woocommerce-cart .dropp-cart-page table.shop_table {
	width: 100%; border: 0; border-collapse: collapse;
}
.woocommerce-cart table.shop_table thead th {
	font-size: 10.5px; font-weight: 600; letter-spacing: 0.1em;
	text-transform: uppercase; color: var(--dropp-muted);
	border: 0; border-bottom: 1px solid var(--dropp-border);
	padding: 0 0 12px; text-align: left;
}
.woocommerce-cart table.shop_table td {
	border: 0; border-bottom: 1px solid var(--dropp-border);
	padding: 20px 12px 20px 0; vertical-align: middle;
	background: none;
}
.woocommerce-cart table.shop_table td.product-thumbnail { width: 84px; }
.woocommerce-cart table.shop_table td.product-thumbnail img { width: 76px; background: var(--dropp-grey); }
.woocommerce-cart table.shop_table td.product-name a {
	font-weight: 700; font-size: 14px; text-decoration: none;
}
.woocommerce-cart table.shop_table dl.variation { font-size: 12px; color: var(--dropp-muted); margin: 4px 0 0; }
.woocommerce-cart table.shop_table dl.variation dt, .woocommerce-cart table.shop_table dl.variation dd { display: inline; margin: 0; font-weight: 400; }

/* Quantity stepper */
.dropp-qty {
	display: inline-flex; align-items: center;
	border: 1px solid var(--dropp-text);
}
.dropp-qty button {
	width: 34px; height: 38px;
	background: none; border: 0; font-size: 16px;
}
.dropp-qty input.qty {
	width: 38px; height: 38px; text-align: center;
	border: 0; -moz-appearance: textfield;
}
.dropp-qty input.qty::-webkit-outer-spin-button,
.dropp-qty input.qty::-webkit-inner-spin-button { -webkit-appearance: none; }
.woocommerce-cart td.product-remove a.remove {
	color: var(--dropp-text) !important; font-size: 18px;
	width: auto; height: auto;
}
.woocommerce-cart td.product-remove a.remove:hover { background: none; color: var(--dropp-red) !important; }

/* Totals — right aligned card like the mock */
.woocommerce-cart .cart-collaterals { display: flex; justify-content: flex-end; margin-top: 28px; }
.woocommerce-cart .cart-collaterals .cart_totals { width: min(380px, 100%); float: none; }
.woocommerce-cart .cart_totals h2 { font-size: 14px; font-weight: 700; margin: 0 0 8px; }
.woocommerce-cart .cart_totals table.shop_table td,
.woocommerce-cart .cart_totals table.shop_table th { border: 0; padding: 6px 0; font-size: 14px; }
.woocommerce-cart .cart_totals .order-total .amount { font-weight: 700; }
.woocommerce-cart .wc-proceed-to-checkout { padding: 14px 0 0; }
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
	display: block; text-align: center;
	background: #16213a; color: #fff;
	border-radius: 0; font-size: 13.5px; font-weight: 600;
	padding: 14px; text-decoration: none;
}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover { background: var(--dropp-black); }
.woocommerce-cart .coupon { display: flex; gap: 8px; margin-top: 14px; }
.woocommerce-cart .coupon input.input-text { border: 1px solid var(--dropp-border); padding: 9px 10px; }
.woocommerce-cart .coupon button { background: var(--dropp-black); color: #fff; border: 0; padding: 9px 16px; font-size: 12.5px; }

/* ==========================================================================
   Checkout
   ========================================================================== */
.woocommerce-checkout .dropp-checkout-page form.checkout {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
	gap: clamp(24px, 4vw, 60px);
	align-items: start;
}
.woocommerce-checkout #customer_details { grid-column: 1; }
.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #order_review { grid-column: 2; }
.woocommerce-checkout #order_review_heading {
	font-size: 14px; font-weight: 700; margin: 0 0 12px;
}
.woocommerce-checkout #order_review {
	background: #fff;
	border: 1px solid var(--dropp-border);
	border-radius: 10px;
	padding: 22px;
	box-shadow: 0 6px 22px rgba(0,0,0,.05);
}
.woocommerce-checkout #order_review table.shop_table { border: 0; width: 100%; }
.woocommerce-checkout #order_review table.shop_table th,
.woocommerce-checkout #order_review table.shop_table td {
	border: 0; padding: 7px 0; font-size: 13.5px; background: none;
}
.woocommerce-checkout #order_review .order-total td,
.woocommerce-checkout #order_review .order-total th { font-weight: 700; border-top: 1px solid var(--dropp-border); padding-top: 12px; }
.woocommerce-checkout form .form-row input.input-text,
.woocommerce-checkout form .form-row textarea,
.woocommerce-checkout form .form-row select {
	border: 1px solid var(--dropp-border);
	padding: 11px 12px; border-radius: 6px;
}
.woocommerce-checkout form .form-row label { font-size: 12.5px; font-weight: 500; }
.woocommerce-checkout #place_order {
	width: 100%;
	background: var(--dropp-black); color: #fff;
	border: 0; border-radius: 6px;
	padding: 14px; font-size: 13.5px; font-weight: 700;
	letter-spacing: 0.03em;
}
.woocommerce-checkout #place_order:hover { opacity: .88; }

/* ==========================================================================
   Footer — dark, all pages
   ========================================================================== */
.dropp-footer {
	background: #0d0d0d;
	color: #fff;
	padding: clamp(40px, 5vw, 64px) var(--pad) 28px;
	margin-top: clamp(40px, 6vw, 80px);
}
body.dropp-dark .dropp-footer { border-top: 1px solid var(--dropp-border-dark); margin-top: 0; }

.dropp-newsletter { text-align: center; padding: 0 0 clamp(36px, 5vw, 56px); }
.dropp-newsletter-title { margin: 0 0 18px; font-size: 14.5px; font-weight: 600; }
.dropp-newsletter-form {
	display: inline-flex; align-items: stretch;
	border: 1px solid rgba(255,255,255,.55);
	width: min(360px, 100%);
}
.dropp-newsletter-input {
	flex: 1; border: 0; background: transparent; color: inherit;
	padding: 12px 14px; font-size: 13.5px;
}
.dropp-newsletter-input::placeholder { color: inherit; opacity: .55; }
.dropp-newsletter-btn { background: none; border: 0; color: inherit; padding: 0 16px; font-size: 16px; }

.dropp-footer-main {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 32px;
	align-items: start;
}
.dropp-footer-brand { display: flex; flex-direction: column; }
.dropp-footer-logo { display: inline-block; text-decoration: none; }
.dropp-footer-logo img { max-width: 200px; height: auto; }
.dropp-footer-wordmark {
	font-family: var(--font-display);
	font-style: italic;
	font-size: 26px;
	color: #fff;
}
.dropp-footer-socials {
	grid-column: 1;
	display: flex; align-items: center; gap: 22px;
	margin-top: clamp(16px, 2.5vw, 40px);
}
.dropp-footer-socials a { color: #fff; display: inline-flex; opacity: .95; }
.dropp-footer-socials a:hover { opacity: .6; }

.dropp-footer-col-title {
	margin: 0 0 22px;
	font-size: 14px;
	font-weight: 700;
	color: #fff;
}
.dropp-footer-links { list-style: none; margin: 0; padding: 0; }
.dropp-footer-links li { margin: 0 0 16px; }
.dropp-footer-links a {
	font-size: 14px;
	color: #d9d9d9;
	text-decoration: none;
}
.dropp-footer-links a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

.dropp-footer-credit {
	margin: clamp(32px, 4vw, 52px) 0 0;
	font-size: 12px;
	color: #bdbdbd;
}

/* ==========================================================================
   Notices
   ========================================================================== */
.woocommerce-message, .woocommerce-info, .woocommerce-error {
	border-top: 2px solid var(--dropp-black);
	background: var(--dropp-grey);
	padding: 14px 18px;
	margin: 0 0 22px;
	list-style: none;
	font-size: 13.5px;
}
.woocommerce-error { border-top-color: var(--dropp-red); }
.woocommerce-message a.button, .woocommerce-info a.button {
	float: right; background: none; border: 0;
	text-decoration: underline; font-size: 13px; padding: 0; color: inherit;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
	.dropp-grid { grid-template-columns: repeat(3, 1fr); }
	.dropp-best-track { grid-auto-columns: calc((100% - 2 * 14px) / 3); }
	.single-product .related.products ul.products { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
	/* Menu link: matches the mock with a full tap target */
	.dropp-header-inner { padding: 0 18px; height: 56px; }
	.dropp-header-logo-img,
	.dropp-logo .custom-logo { height: 26px !important; max-height: 26px; max-width: 150px; }
	.dropp-menu-toggle { font-size: 13px; font-weight: 700; }
	.dropp-header--overlay .dropp-menu-toggle { font-size: 14px; letter-spacing: 0.04em; }

	/* Mobile mock: hero is one full screen WITH the tiles visible at the bottom */
	.dropp-hero { min-height: 100vh; min-height: 100svh; }
	.dropp-hero-center { min-height: 0; flex: 1; padding: 60px var(--pad) 30px; }
	.dropp-hero-title { font-size: clamp(56px, 19vw, 110px); }
	.dropp-hero-logo { width: min(82vw, 420px); }
	.dropp-hero-tagline { font-size: 12px; letter-spacing: 0.2em; margin-top: 18px; }
	.dropp-hero-tiles { gap: 6px; padding: 0 6px 6px; }
	.dropp-hero-tile { aspect-ratio: 3/4; border-radius: 8px; border-width: 1.5px; }
	.dropp-best { margin-top: clamp(32px, 9vw, 56px); }

	/* Mobile bestsellers: peeking carousel like the mock (1/6 + arrows) */
	.dropp-best-track { grid-auto-columns: 78%; }

	.dropp-grid { grid-template-columns: repeat(2, 1fr); }
	.dropp-grid--dark { gap: 8px; row-gap: 28px; }

	.dropp-banner-img--desktop { display: none; }
	.dropp-banner-img--mobile { display: block; }
	/* if no mobile image set, keep desktop visible */
	.dropp-banner-img--desktop:only-child { display: block; }

	/* Shop: hide desktop filter bar, show "Filter and sort" */
	.dropp-filterbar { display: none; }
	.dropp-filterbar.is-mobile-open {
		display: flex; flex-direction: column; align-items: stretch;
		gap: 18px;
		border: 1px solid var(--dropp-border-dark);
		padding: 16px; margin-bottom: 22px;
	}
	.dropp-filterbar.is-mobile-open .dropp-filterbar-left,
	.dropp-filterbar.is-mobile-open .dropp-filterbar-right { flex-wrap: wrap; }
	.dropp-mfilter-btn { display: inline-flex; }

	/* Product page stacks */
	.single-product div.product { grid-template-columns: 1fr; }

	/* Checkout stacks, summary card first like the mobile mock */
	.woocommerce-checkout .dropp-checkout-page form.checkout { grid-template-columns: 1fr; }
	.woocommerce-checkout #order_review_heading, .woocommerce-checkout #order_review { grid-column: 1; }
	.woocommerce-checkout #order_review { order: -1; }
	.woocommerce-checkout #order_review_heading { order: -2; }

	/* Footer stacks like the mobile mock */
	.dropp-footer-main { grid-template-columns: 1fr 1fr; gap: 26px; }
	.dropp-footer-brand { grid-column: 1 / -1; margin-bottom: 14px; }
	.dropp-footer-col:nth-of-type(4) { grid-column: 1 / -1; }
	.dropp-footer-socials { grid-column: 1 / -1; margin-top: 10px; }

	/* Cart table simplifies */
	.woocommerce-cart table.shop_table thead { display: none; }
	.woocommerce-cart table.shop_table td { display: block; padding: 6px 0; border: 0; }
	.woocommerce-cart table.shop_table tr.woocommerce-cart-form__cart-item {
		display: grid;
		grid-template-columns: 84px 1fr;
		gap: 0 14px;
		border-bottom: 1px solid var(--dropp-border);
		padding: 16px 0;
	}
	.woocommerce-cart table.shop_table td.product-thumbnail { grid-row: 1 / span 4; }
	.woocommerce-cart .cart-collaterals { justify-content: stretch; }
	.woocommerce-cart .cart-collaterals .cart_totals { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}
