/*
Theme Name:   CELLKO Child
Theme URI:    https://shop.yeongjongdorealestate.shop
Description:  CELLKO GLOBAL B2B commerce child theme. All customization lives here — the Storefront parent is never modified.
Author:       CELLKO GLOBAL
Version:      1.0.0
Template:     storefront
Text Domain:  cellko
*/

/* ==========================================================================
   Design tokens
   ========================================================================== */
:root {
	--ck-navy:        #1B2A4A;
	--ck-navy-soft:   #2C4270;
	--ck-mint:        #7FD4C1;
	--ck-mint-dark:   #4FB39C;
	--ck-silver:      #C9CDD4;
	--ck-bg:          #F5F6F8;
	--ck-white:       #FFFFFF;
	--ck-text:        #1F2733;
	--ck-text-muted:  #6B7684;
	--ck-border:      #E3E6EB;
	--ck-radius:      10px;
	--ck-shadow:      0 1px 3px rgba(27, 42, 74, .06), 0 8px 24px rgba(27, 42, 74, .06);
	--ck-shadow-lg:   0 4px 12px rgba(27, 42, 74, .10), 0 16px 40px rgba(27, 42, 74, .10);
	--ck-max:         1200px;
}

/* ==========================================================================
   Base
   ========================================================================== */
body {
	background: var(--ck-white);
	color: var(--ck-text);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
	             "Helvetica Neue", Arial, "Noto Sans KR", sans-serif;
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
	color: var(--ck-navy);
	font-weight: 650;
	letter-spacing: -.015em;
	line-height: 1.25;
}

a { color: var(--ck-navy-soft); }
a:hover { color: var(--ck-mint-dark); }

.ck-wrap {
	max-width: var(--ck-max);
	margin-inline: auto;
	padding-inline: 20px;
}

/* Storefront overrides ---------------------------------------------------- */
.site-content { padding-top: 0; }
.storefront-full-width-content .site-main { margin-inline: 0; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.ck-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 13px 26px;
	border: 1px solid transparent;
	border-radius: var(--ck-radius);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	transition: background-color .18s ease, color .18s ease,
	            border-color .18s ease, transform .18s ease;
}
.ck-btn:hover { transform: translateY(-1px); text-decoration: none; }
.ck-btn:focus-visible { outline: 3px solid var(--ck-mint); outline-offset: 2px; }

.ck-btn--primary { background: var(--ck-navy); color: #fff; }
.ck-btn--primary:hover { background: var(--ck-navy-soft); color: #fff; }

.ck-btn--mint { background: var(--ck-mint); color: var(--ck-navy); }
.ck-btn--mint:hover { background: var(--ck-mint-dark); color: #fff; }

.ck-btn--ghost {
	background: transparent;
	color: var(--ck-navy);
	border-color: var(--ck-border);
}
.ck-btn--ghost:hover { border-color: var(--ck-navy); background: var(--ck-bg); }

.ck-btn--light { background: #fff; color: var(--ck-navy); }
.ck-btn--light:hover { background: var(--ck-bg); }

/* ==========================================================================
   Section scaffolding
   ========================================================================== */
.ck-section { padding: 72px 0; }
.ck-section--tight { padding: 48px 0; }
.ck-section--alt { background: var(--ck-bg); }

.ck-section__head {
	max-width: 680px;
	margin: 0 auto 44px;
	text-align: center;
}
.ck-section__eyebrow {
	display: inline-block;
	margin-bottom: 12px;
	color: var(--ck-mint-dark);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
}
.ck-section__title {
	margin: 0 0 12px;
	font-size: clamp(26px, 3.4vw, 36px);
}
.ck-section__sub {
	margin: 0;
	color: var(--ck-text-muted);
	font-size: 16px;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.ck-hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 520px;
	background: linear-gradient(135deg, var(--ck-bg) 0%, #E8F4F1 100%);
	background-size: cover;
	background-position: center right;
	overflow: hidden;
}
.ck-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg,
	            rgba(255,255,255,.94) 0%,
	            rgba(255,255,255,.80) 38%,
	            rgba(255,255,255,0) 68%);
	pointer-events: none;
}
.ck-hero__inner {
	position: relative;
	z-index: 2;
	max-width: var(--ck-max);
	margin-inline: auto;
	padding: 72px 20px;
	width: 100%;
}
.ck-hero__content { max-width: 560px; }
.ck-hero__eyebrow {
	display: inline-block;
	margin-bottom: 16px;
	padding: 6px 14px;
	border-radius: 100px;
	background: rgba(127, 212, 193, .22);
	color: var(--ck-navy);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
}
.ck-hero__title {
	margin: 0 0 18px;
	font-size: clamp(32px, 5vw, 52px);
	line-height: 1.14;
	letter-spacing: -.025em;
}
.ck-hero__text {
	margin: 0 0 30px;
	color: var(--ck-text-muted);
	font-size: clamp(16px, 1.6vw, 18px);
	max-width: 480px;
}
.ck-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }

.ck-hero__stats {
	display: flex;
	flex-wrap: wrap;
	gap: 36px;
	margin-top: 44px;
	padding-top: 28px;
	border-top: 1px solid rgba(27, 42, 74, .10);
}
.ck-hero__stat b {
	display: block;
	color: var(--ck-navy);
	font-size: 26px;
	font-weight: 700;
	line-height: 1.1;
}
.ck-hero__stat span {
	font-size: 13px;
	color: var(--ck-text-muted);
}

/* ==========================================================================
   Trust strip
   ========================================================================== */
.ck-trust {
	background: var(--ck-navy);
	color: #fff;
	padding: 26px 0;
}
.ck-trust__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	text-align: center;
}
.ck-trust__item strong {
	display: block;
	font-size: 15px;
	font-weight: 650;
	margin-bottom: 3px;
}
.ck-trust__item span {
	font-size: 13px;
	color: rgba(255,255,255,.68);
}

/* ==========================================================================
   Category grid
   ========================================================================== */
.ck-cats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}
.ck-cat {
	display: block;
	background: #fff;
	border: 1px solid var(--ck-border);
	border-radius: var(--ck-radius);
	overflow: hidden;
	text-decoration: none;
	transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.ck-cat:hover {
	transform: translateY(-3px);
	box-shadow: var(--ck-shadow-lg);
	border-color: var(--ck-mint);
	text-decoration: none;
}
.ck-cat__media {
	position: relative;
	aspect-ratio: 4 / 3;
	background: var(--ck-bg);
	overflow: hidden;
}
.ck-cat__media img {
	width: 100%; height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .4s ease;
}
.ck-cat:hover .ck-cat__media img { transform: scale(1.04); }
.ck-cat__ph {
	position: absolute; inset: 0;
	display: flex; align-items: center; justify-content: center;
	color: var(--ck-silver);
	font-size: 12px;
	letter-spacing: .08em;
	text-transform: uppercase;
}
.ck-cat__body { padding: 16px 18px 20px; }
.ck-cat__name {
	margin: 0 0 4px;
	color: var(--ck-navy);
	font-size: 16px;
	font-weight: 650;
}
.ck-cat__count { color: var(--ck-text-muted); font-size: 13px; }

/* ==========================================================================
   Feature cards
   ========================================================================== */
.ck-features {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.ck-feature {
	padding: 30px 26px;
	background: #fff;
	border: 1px solid var(--ck-border);
	border-radius: var(--ck-radius);
}
.ck-feature__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 46px; height: 46px;
	margin-bottom: 18px;
	border-radius: 12px;
	background: rgba(127, 212, 193, .18);
	color: var(--ck-navy);
}
.ck-feature__icon svg { width: 24px; height: 24px; }
.ck-feature h3 { margin: 0 0 8px; font-size: 17px; }
.ck-feature p { margin: 0; color: var(--ck-text-muted); font-size: 15px; }

/* ==========================================================================
   Product grid (shared with WooCommerce loop)
   ========================================================================== */
.ck-products {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}
.ck-products .product {
	width: auto !important;
	float: none !important;
	margin: 0 !important;
	padding: 0;
	background: #fff;
	border: 1px solid var(--ck-border);
	border-radius: var(--ck-radius);
	overflow: hidden;
	transition: box-shadow .2s ease, transform .2s ease;
}
.ck-products .product:hover {
	transform: translateY(-3px);
	box-shadow: var(--ck-shadow-lg);
}
.ck-products .product > a { display: block; padding: 0 0 4px; }
.ck-products .product img { margin: 0 !important; }
.ck-products .product .woocommerce-loop-product__title {
	padding: 14px 16px 4px;
	font-size: 15px !important;
	font-weight: 600;
	color: var(--ck-navy);
}
.ck-products .product .price {
	display: block;
	padding: 0 16px 12px;
	color: var(--ck-navy) !important;
	font-weight: 650;
}
.ck-products .product .button {
	margin: 0 16px 16px !important;
	width: calc(100% - 32px);
	background: var(--ck-navy);
	color: #fff;
	border-radius: 8px;
	font-size: 14px;
}
.ck-products .product .button:hover { background: var(--ck-navy-soft); color: #fff; }

.ck-empty {
	grid-column: 1 / -1;
	padding: 56px 24px;
	text-align: center;
	background: var(--ck-bg);
	border: 1px dashed var(--ck-border);
	border-radius: var(--ck-radius);
	color: var(--ck-text-muted);
}

/* ==========================================================================
   Split CTA
   ========================================================================== */
.ck-split {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: 48px;
	align-items: center;
}
.ck-split__media {
	aspect-ratio: 5 / 3;
	border-radius: var(--ck-radius);
	background: var(--ck-bg);
	overflow: hidden;
	display: flex; align-items: center; justify-content: center;
	color: var(--ck-silver);
	font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
}
.ck-split__media img { width: 100%; height: 100%; object-fit: cover; }
.ck-split h2 { margin: 0 0 14px; font-size: clamp(24px, 3vw, 32px); }
.ck-split p { color: var(--ck-text-muted); margin: 0 0 20px; }
.ck-split ul { margin: 0 0 26px; padding: 0; list-style: none; }
.ck-split li {
	position: relative;
	padding-left: 28px;
	margin-bottom: 10px;
	font-size: 15px;
}
.ck-split li::before {
	content: "";
	position: absolute;
	left: 0; top: 7px;
	width: 16px; height: 16px;
	border-radius: 50%;
	background: var(--ck-mint);
}
.ck-split li::after {
	content: "";
	position: absolute;
	left: 5px; top: 11px;
	width: 5px; height: 8px;
	border: solid var(--ck-navy);
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

/* ==========================================================================
   Resources
   ========================================================================== */
.ck-posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ck-post {
	background: #fff;
	border: 1px solid var(--ck-border);
	border-radius: var(--ck-radius);
	overflow: hidden;
	transition: box-shadow .2s ease, transform .2s ease;
}
.ck-post:hover { transform: translateY(-3px); box-shadow: var(--ck-shadow-lg); }
.ck-post__media {
	aspect-ratio: 16 / 9;
	background: var(--ck-bg);
	display: flex; align-items: center; justify-content: center;
	color: var(--ck-silver); font-size: 12px;
	letter-spacing: .08em; text-transform: uppercase;
}
.ck-post__media img { width: 100%; height: 100%; object-fit: cover; }
.ck-post__body { padding: 20px 22px 24px; }
.ck-post__meta {
	color: var(--ck-mint-dark);
	font-size: 12px; font-weight: 700;
	letter-spacing: .1em; text-transform: uppercase;
}
.ck-post__title { margin: 8px 0 8px; font-size: 17px; line-height: 1.35; }
.ck-post__title a { color: var(--ck-navy); text-decoration: none; }
.ck-post__title a:hover { color: var(--ck-mint-dark); }
.ck-post__excerpt { margin: 0; color: var(--ck-text-muted); font-size: 14px; }

/* ==========================================================================
   Closing CTA band
   ========================================================================== */
.ck-cta {
	background: linear-gradient(135deg, var(--ck-navy) 0%, var(--ck-navy-soft) 100%);
	color: #fff;
	text-align: center;
	padding: 76px 20px;
}
.ck-cta h2 { color: #fff; margin: 0 0 12px; font-size: clamp(26px, 3.4vw, 36px); }
.ck-cta p {
	max-width: 560px;
	margin: 0 auto 28px;
	color: rgba(255,255,255,.78);
	font-size: 17px;
}
.ck-cta__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ==========================================================================
   Floating WhatsApp
   ========================================================================== */
.ck-wa {
	position: fixed;
	right: 22px; bottom: 22px;
	z-index: 9999;
	display: flex; align-items: center; justify-content: center;
	width: 56px; height: 56px;
	border-radius: 50%;
	background: #25D366;
	color: #fff;
	box-shadow: 0 6px 20px rgba(0,0,0,.20);
	transition: transform .18s ease;
}
.ck-wa:hover { transform: scale(1.07); color: #fff; }
.ck-wa svg { width: 30px; height: 30px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
	.ck-cats,
	.ck-products { grid-template-columns: repeat(3, 1fr); }
	.ck-split { grid-template-columns: 1fr; gap: 32px; }
	.ck-trust__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

@media (max-width: 768px) {
	.ck-section { padding: 52px 0; }
	.ck-hero { min-height: auto; }
	.ck-hero::after {
		background: linear-gradient(180deg,
		            rgba(255,255,255,.95) 0%,
		            rgba(255,255,255,.86) 55%,
		            rgba(255,255,255,.55) 100%);
	}
	.ck-cats,
	.ck-products,
	.ck-features,
	.ck-posts { grid-template-columns: repeat(2, 1fr); }
	.ck-hero__stats { gap: 22px; }
	.ck-hero__stat b { font-size: 21px; }
}

@media (max-width: 520px) {
	.ck-cats,
	.ck-products,
	.ck-features,
	.ck-posts { grid-template-columns: 1fr; }
	.ck-trust__grid { grid-template-columns: 1fr; text-align: left; }
	.ck-hero__actions .ck-btn { width: 100%; }
	.ck-wa { right: 16px; bottom: 16px; width: 50px; height: 50px; }
}

/* ==========================================================================
   Faceted filters
   ========================================================================== */
.ck-filters {
	padding: 22px;
	background: #fff;
	border: 1px solid var(--ck-border);
	border-radius: var(--ck-radius);
}
.ck-filters__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	margin-bottom: 16px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--ck-border);
}
.ck-filters__head h2 { margin: 0; font-size: 17px; }
.ck-filters__clear {
	font-size: 13px;
	color: var(--ck-text-muted);
	text-decoration: underline;
}
.ck-filters__clear:hover { color: var(--ck-mint-dark); }

/* Search box ------------------------------------------------------------- */
.ck-search { position: relative; margin-bottom: 20px; }
.ck-search input[type="search"] {
	width: 100%;
	padding: 11px 44px 11px 14px;
	border: 1px solid var(--ck-border);
	border-radius: 8px;
	font-size: 14px;
	background: #fff;
	color: var(--ck-text);
	-webkit-appearance: none;
}
.ck-search input:focus {
	outline: none;
	border-color: var(--ck-mint);
	box-shadow: 0 0 0 3px rgba(127, 212, 193, .25);
}
.ck-search button {
	position: absolute;
	right: 4px; top: 50%;
	transform: translateY(-50%);
	display: flex; align-items: center; justify-content: center;
	width: 34px; height: 34px;
	padding: 0;
	border: 0; border-radius: 6px;
	background: transparent;
	color: var(--ck-navy);
	cursor: pointer;
}
.ck-search button:hover { background: var(--ck-bg); }
.ck-search button svg { width: 18px; height: 18px; }

.ck-suggest {
	position: absolute;
	z-index: 50;
	top: calc(100% + 6px);
	left: 0; right: 0;
	max-height: 340px;
	overflow-y: auto;
	background: #fff;
	border: 1px solid var(--ck-border);
	border-radius: 10px;
	box-shadow: var(--ck-shadow-lg);
}
.ck-suggest a {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 14px;
	text-decoration: none;
	border-bottom: 1px solid var(--ck-border);
}
.ck-suggest a:last-child { border-bottom: 0; }
.ck-suggest a:hover,
.ck-suggest a.is-active { background: var(--ck-bg); }
.ck-suggest img {
	width: 36px; height: 36px;
	object-fit: cover;
	border-radius: 6px;
	flex: 0 0 auto;
}
.ck-suggest__ph {
	width: 36px; height: 36px;
	border-radius: 6px;
	background: var(--ck-bg);
	flex: 0 0 auto;
}
.ck-suggest__name {
	display: block;
	color: var(--ck-navy);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.3;
}
.ck-suggest__sku {
	display: block;
	color: var(--ck-text-muted);
	font-size: 12px;
}
.ck-suggest__empty {
	padding: 14px;
	color: var(--ck-text-muted);
	font-size: 14px;
	text-align: center;
}

/* Facet groups ----------------------------------------------------------- */
.ck-facet { border-bottom: 1px solid var(--ck-border); }
.ck-facet:last-of-type { border-bottom: 0; }
.ck-facet > summary {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 13px 0;
	color: var(--ck-navy);
	font-size: 14px;
	font-weight: 650;
	cursor: pointer;
	list-style: none;
}
.ck-facet > summary::-webkit-details-marker { display: none; }
.ck-facet > summary::after {
	content: "";
	margin-left: auto;
	width: 8px; height: 8px;
	border: solid var(--ck-text-muted);
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
	transition: transform .2s ease;
}
.ck-facet[open] > summary::after { transform: rotate(-135deg); }
.ck-facet__badge {
	display: inline-flex;
	align-items: center; justify-content: center;
	min-width: 18px; height: 18px;
	padding: 0 5px;
	border-radius: 100px;
	background: var(--ck-mint);
	color: var(--ck-navy);
	font-size: 11px;
	font-weight: 700;
}
.ck-facet__list {
	margin: 0 0 14px;
	padding: 0;
	list-style: none;
	max-height: 240px;
	overflow-y: auto;
}
.ck-facet__opt {
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 7px 0;
	color: var(--ck-text);
	font-size: 14px;
	text-decoration: none;
}
.ck-facet__opt:hover { color: var(--ck-navy); text-decoration: none; }
.ck-facet__opt:hover .ck-facet__box { border-color: var(--ck-mint-dark); }
.ck-facet__box {
	position: relative;
	flex: 0 0 auto;
	width: 17px; height: 17px;
	border: 1.5px solid var(--ck-silver);
	border-radius: 4px;
	background: #fff;
	transition: background-color .15s ease, border-color .15s ease;
}
.ck-facet__opt.is-on .ck-facet__box {
	background: var(--ck-navy);
	border-color: var(--ck-navy);
}
.ck-facet__opt.is-on .ck-facet__box::after {
	content: "";
	position: absolute;
	left: 5px; top: 1.5px;
	width: 4px; height: 9px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}
.ck-facet__label {
	flex: 1 1 auto;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.ck-facet__opt.is-on .ck-facet__label {
	color: var(--ck-navy);
	font-weight: 600;
}
.ck-facet__count {
	flex: 0 0 auto;
	color: var(--ck-text-muted);
	font-size: 12px;
	font-variant-numeric: tabular-nums;
}

/* Active filter chips ---------------------------------------------------- */
.ck-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 20px;
	width: 100%;
}
.ck-chip {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 6px 12px;
	border: 1px solid var(--ck-border);
	border-radius: 100px;
	background: var(--ck-bg);
	color: var(--ck-navy);
	font-size: 13px;
	text-decoration: none;
	transition: border-color .15s ease, background-color .15s ease;
}
.ck-chip:hover {
	border-color: var(--ck-navy);
	background: #fff;
	text-decoration: none;
}
.ck-chip span { color: var(--ck-text-muted); font-size: 15px; line-height: 1; }
.ck-chip--clear {
	background: transparent;
	border-style: dashed;
	color: var(--ck-text-muted);
}

@media (max-width: 768px) {
	.ck-filters { padding: 18px; }
	.ck-facet__list { max-height: 200px; }
}

/* ==========================================================================
   Site header

   Storefront ships a dark header, which swallowed the navy logo and left the
   nav at low contrast. Repaint it white so the brand mark reads and the menu
   meets contrast requirements.
   ========================================================================== */
.site-header {
	background-color: #fff !important;
	border-bottom: 1px solid var(--ck-border);
	padding-top: 18px;
	padding-bottom: 0;
}

/* Logo ------------------------------------------------------------------- */
.site-header .custom-logo-link { display: inline-block; }
.site-header .custom-logo {
	max-height: 46px;
	width: auto;
}
.site-header .site-branding,
.site-header .beta .site-branding { margin-bottom: 14px; }

.site-header .site-title a,
.site-header .site-title a:hover {
	color: var(--ck-navy);
	text-decoration: none;
}
.site-header .site-description { color: var(--ck-text-muted); }

/* Primary navigation ------------------------------------------------------ */
.storefront-primary-navigation,
.main-navigation,
.main-navigation ul.menu,
.main-navigation ul.nav-menu {
	background-color: #fff;
}
.main-navigation ul li a,
.secondary-navigation ul li a {
	color: var(--ck-text);
	font-size: 15px;
	font-weight: 550;
	padding-top: 14px;
	padding-bottom: 14px;
}
.main-navigation ul li a:hover,
.main-navigation ul li:hover > a {
	color: var(--ck-navy);
}
.main-navigation ul li.current-menu-item > a,
.main-navigation ul li.current_page_item > a {
	color: var(--ck-navy);
	font-weight: 700;
	box-shadow: inset 0 -2px 0 var(--ck-mint);
}
.main-navigation ul.menu ul.sub-menu,
.main-navigation ul.nav-menu ul.children {
	background-color: #fff;
	border: 1px solid var(--ck-border);
	box-shadow: var(--ck-shadow);
}
.main-navigation ul.menu ul li a,
.main-navigation ul.nav-menu ul li a { color: var(--ck-text); }

/* Mobile menu toggle ------------------------------------------------------ */
.menu-toggle,
.menu-toggle:hover {
	background-color: transparent;
	color: var(--ck-navy);
	border: 1px solid var(--ck-border);
	border-radius: 8px;
}

/* Header search ----------------------------------------------------------- */
.site-header .widget_product_search form,
.site-header .site-search .widget_product_search input[type="search"] {
	background: var(--ck-bg);
	border: 1px solid var(--ck-border);
	border-radius: 8px;
	color: var(--ck-text);
	box-shadow: none;
}
.site-header .widget_product_search input[type="search"]::placeholder {
	color: var(--ck-text-muted);
}

/* Cart contents ----------------------------------------------------------- */
.site-header-cart .cart-contents,
.site-header-cart .cart-contents:hover {
	color: var(--ck-navy);
	font-weight: 600;
}
.site-header-cart .widget_shopping_cart {
	background: #fff;
	border: 1px solid var(--ck-border);
	box-shadow: var(--ck-shadow);
}
.site-header .site-header-cart .cart-contents .amount { color: var(--ck-navy); }

/* Handheld footer bar (mobile sticky nav) --------------------------------- */
.storefront-handheld-footer-bar {
	background-color: var(--ck-navy);
	border-top: 0;
}
.storefront-handheld-footer-bar ul li > a { color: #fff; }
.storefront-handheld-footer-bar ul li.cart .count {
	background-color: var(--ck-mint);
	color: var(--ck-navy);
	border-color: var(--ck-navy);
}

/* Shop layout: give the filter sidebar a sensible width -------------------- */
@media (min-width: 768px) {
	.woocommerce-shop .content-area,
	.tax-product_cat .content-area { width: 74%; }
	.woocommerce-shop .widget-area,
	.tax-product_cat .widget-area { width: 23%; }
}
