/* =========================================================================
   Dailey Card Co — dark navy theme inspired by modern TCG storefronts.
   ========================================================================= */

:root {
	--bg: #060619;
	--bg-alt: #0a0a26;
	--surface: #12122e;
	--surface-2: #191940;
	--border: rgba(255, 255, 255, 0.09);
	--text: #ffffff;
	--muted: #9c9cc3;
	--pink: #ff2e88;
	--pink-deep: #d61c6e;
	--cyan: #2ec9ff;
	--green: #3ddc84;
	--red: #ff5470;
	--grad: linear-gradient(90deg, var(--pink), var(--cyan));
	--radius: 14px;
	--radius-sm: 9px;
	--shadow: 0 10px 34px rgba(0, 0, 0, 0.45);
	--container: 1240px;
}

/* ---- Base ------------------------------------------------------------- */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: 'Nunito Sans', -apple-system, 'Segoe UI', sans-serif;
	font-size: 16px;
	line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--cyan); text-decoration: none; }
a:hover { color: #7fdcff; }
h1, h2, h3, h4 { line-height: 1.2; font-weight: 800; margin: 0 0 0.5em; }
h1 { font-size: clamp(1.9rem, 4.5vw, 3.1rem); font-weight: 900; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.1rem; }
p { margin: 0 0 1em; }
button { font-family: inherit; }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 2px; }

.dcc-container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.dcc-container--narrow { max-width: 860px; }
.dcc-section { padding: 64px 0; }
.dcc-section--alt { background: var(--bg-alt); }
.dcc-section__head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.dcc-section__head p { color: var(--muted); }
.dcc-section__head--row {
	display: flex; align-items: flex-end; justify-content: space-between;
	text-align: left; max-width: none; gap: 20px; flex-wrap: wrap;
}
.dcc-section__head--row p { margin: 0; }
.dcc-section__head h2 { position: relative; display: inline-block; }

/* ---- Buttons ----------------------------------------------------------- */
.dcc-btn {
	display: inline-block; padding: 12px 26px; border-radius: 999px;
	font-weight: 800; font-size: 0.95rem; letter-spacing: 0.01em;
	border: 2px solid transparent; cursor: pointer; transition: all 0.18s ease;
	text-align: center;
}
.dcc-btn--primary { background: var(--pink); color: #fff; box-shadow: 0 6px 22px rgba(255, 46, 136, 0.35); }
.dcc-btn--primary:hover { background: var(--pink-deep); color: #fff; transform: translateY(-1px); }
.dcc-btn--ghost { border-color: rgba(255, 255, 255, 0.35); color: #fff; background: rgba(255, 255, 255, 0.04); }
.dcc-btn--ghost:hover { border-color: var(--cyan); color: var(--cyan); }
.dcc-btn--card {
	display: block; padding: 10px 14px; border-radius: var(--radius-sm);
	background: var(--surface-2); color: #fff; font-size: 0.88rem;
	border: 1px solid var(--border);
}
.dcc-btn--card:hover { background: var(--pink); border-color: var(--pink); color: #fff; }

/* ---- Announcement bar --------------------------------------------------- */
.dcc-announcement {
	background: var(--grad); color: #fff; font-weight: 800; font-size: 0.85rem;
	text-align: center; position: relative; height: 38px; overflow: hidden;
}
.dcc-announcement__track p {
	position: absolute; inset: 0; margin: 0; line-height: 38px;
	opacity: 0; transition: opacity 0.5s ease; padding: 0 16px;
	white-space: nowrap; text-overflow: ellipsis; overflow: hidden;
}
.dcc-announcement__track p.is-active { opacity: 1; }
.dcc-announcement a { color: #fff; text-decoration: underline; }

/* ---- Header ------------------------------------------------------------- */
.dcc-header { position: sticky; top: 0; z-index: 100; background: rgba(6, 6, 25, 0.92); backdrop-filter: blur(12px); }
.dcc-header.is-stuck { box-shadow: 0 8px 30px rgba(0, 0, 0, 0.55); }
.dcc-header__main { border-bottom: 1px solid var(--border); }
.dcc-header__row { display: flex; align-items: center; gap: 22px; padding-top: 14px; padding-bottom: 14px; }
.dcc-logo img { width: 170px; height: auto; }
.dcc-search { flex: 1; display: flex; max-width: 560px; margin: 0 auto; }
.dcc-search input {
	flex: 1; min-width: 0; background: var(--surface); border: 1px solid var(--border);
	border-right: 0; border-radius: 999px 0 0 999px; padding: 11px 20px;
	color: var(--text); font-family: inherit; font-size: 0.95rem;
}
.dcc-search input::placeholder { color: var(--muted); }
.dcc-search input:focus { outline: none; border-color: var(--cyan); }
.dcc-search button {
	background: var(--pink); border: 0; border-radius: 0 999px 999px 0;
	padding: 0 20px; color: #fff; cursor: pointer;
}
.dcc-search button svg { width: 19px; height: 19px; }
.dcc-search button:hover { background: var(--pink-deep); }
.dcc-header__actions { display: flex; align-items: center; gap: 8px; }
.dcc-icon-btn {
	position: relative; display: inline-flex; align-items: center; justify-content: center;
	width: 42px; height: 42px; border-radius: 50%; color: #fff;
	border: 1px solid var(--border); background: var(--surface);
}
.dcc-icon-btn:hover { border-color: var(--cyan); color: var(--cyan); }
.dcc-icon-btn svg { width: 20px; height: 20px; }
.dcc-cart-count {
	position: absolute; top: -5px; right: -5px; background: var(--pink); color: #fff;
	font-size: 0.68rem; font-weight: 900; min-width: 18px; height: 18px;
	border-radius: 999px; display: flex; align-items: center; justify-content: center;
	padding: 0 4px;
}

/* Primary nav */
.dcc-nav { border-bottom: 1px solid var(--border); }
.dcc-menu { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; }
.dcc-menu > li { position: relative; }
.dcc-menu > li > a {
	display: block; padding: 13px 16px; color: #fff; font-weight: 800; font-size: 0.92rem;
	border-bottom: 3px solid transparent;
}
.dcc-menu > li > a:hover { color: var(--cyan); border-bottom-color: var(--pink); }
.dcc-menu .sub-menu {
	list-style: none; margin: 0; padding: 8px; position: absolute; top: 100%; left: 0;
	min-width: 230px; background: var(--surface); border: 1px solid var(--border);
	border-radius: var(--radius-sm); box-shadow: var(--shadow);
	opacity: 0; visibility: hidden; transform: translateY(8px); transition: all 0.18s ease;
	z-index: 60;
}
.dcc-menu li:hover > .sub-menu,
.dcc-menu li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dcc-menu .sub-menu a { display: block; padding: 9px 12px; color: var(--text); border-radius: 7px; font-weight: 600; font-size: 0.9rem; }
.dcc-menu .sub-menu a:hover { background: var(--surface-2); color: var(--cyan); }

/* Mobile nav */
.dcc-nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.dcc-nav-toggle span { display: block; width: 24px; height: 2.5px; background: #fff; margin: 5px 0; border-radius: 2px; transition: 0.2s; }
.dcc-mobile-nav {
	display: none; background: var(--bg-alt); border-bottom: 1px solid var(--border);
	padding: 12px 20px 20px; max-height: calc(100vh - 120px); overflow: auto;
}
.dcc-mobile-nav:not([hidden]) { display: block; }
.dcc-mobile-menu { list-style: none; margin: 0; padding: 0; }
.dcc-mobile-menu li { border-bottom: 1px solid var(--border); display: flex; flex-wrap: wrap; align-items: center; }
.dcc-mobile-menu li a { flex: 1; padding: 13px 4px; color: #fff; font-weight: 700; }
.dcc-mobile-menu .sub-menu { display: none; width: 100%; list-style: none; padding: 0 0 8px 16px; margin: 0; }
.dcc-mobile-menu li.is-open > .sub-menu { display: block; }
.dcc-mobile-menu .sub-menu li { border: 0; }
.dcc-submenu-toggle {
	background: var(--surface); color: #fff; border: 1px solid var(--border);
	width: 32px; height: 32px; border-radius: 8px; font-size: 1.1rem; cursor: pointer;
}
.dcc-mobile-nav__meta { padding-top: 14px; display: flex; flex-direction: column; gap: 4px; color: var(--muted); font-size: 0.9rem; }

/* ---- Hero ---------------------------------------------------------------- */
.dcc-hero { position: relative; min-height: 560px; display: flex; align-items: center; overflow: hidden; }
.dcc-hero__slides { position: absolute; inset: 0; }
.dcc-hero__slide {
	position: absolute; inset: 0; background-size: cover; background-position: center;
	opacity: 0; transition: opacity 1s ease; transform: scale(1.04);
}
.dcc-hero__slide.is-active { opacity: 1; transform: scale(1); transition: opacity 1s ease, transform 7s linear; }
.dcc-hero__overlay {
	position: absolute; inset: 0;
	background: linear-gradient(100deg, rgba(6, 6, 25, 0.94) 20%, rgba(6, 6, 25, 0.55) 60%, rgba(6, 6, 25, 0.35));
}
.dcc-hero__content { position: relative; z-index: 2; max-width: var(--container); width: 100%; padding-top: 70px; padding-bottom: 70px; }
.dcc-hero__kicker {
	display: inline-block; font-weight: 900; font-size: 0.8rem; letter-spacing: 0.18em;
	text-transform: uppercase; background: var(--grad);
	-webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 10px;
}
.dcc-hero__content h1 { max-width: 640px; margin-bottom: 14px; }
.dcc-hero__sub { color: #d9d9ef; font-size: 1.15rem; max-width: 520px; }
.dcc-hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.dcc-hero__dots { position: absolute; z-index: 3; bottom: 22px; left: 50%; transform: translateX(-50%); display: flex; gap: 9px; }
.dcc-hero__dots button {
	width: 10px; height: 10px; border-radius: 50%; border: 0; cursor: pointer;
	background: rgba(255, 255, 255, 0.35); transition: 0.2s; padding: 0;
}
.dcc-hero__dots button.is-active { background: var(--pink); transform: scale(1.25); }

/* ---- Category tiles ------------------------------------------------------ */
.dcc-cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 18px; }
.dcc-cat-tile {
	position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 1;
	display: block; border: 1px solid var(--border); background: var(--surface);
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.dcc-cat-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--pink); }
.dcc-cat-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.dcc-cat-tile:hover img { transform: scale(1.06); }
.dcc-cat-tile--gradient { background: linear-gradient(140deg, #2a1140, #0c2b4d); display: flex; align-items: center; justify-content: center; }

/* Logo tiles: brand wordmark centered on the site's dark background (no photo/label). */
.dcc-cat-tile--logo {
	display: flex; align-items: center; justify-content: center; padding: 20px;
	background: radial-gradient(circle at 50% 42%, #15153c, #070719);
}
.dcc-cat-tile--logo .dcc-cat-tile__logo {
	width: 100%; height: 100%; max-width: 88%; max-height: 74%;
	object-fit: contain; object-position: center;
	filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.45));
	transition: transform 0.3s ease;
}
.dcc-cat-tile--logo:hover .dcc-cat-tile__logo { transform: scale(1.05); }
.dcc-cat-tile__wordmark {
	color: #fff; font-weight: 900; line-height: 1.12; text-align: center;
	font-size: clamp(1.1rem, 2.4vw, 1.55rem); letter-spacing: 0.01em;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55); padding: 0 6px;
	transition: transform 0.3s ease;
}
.dcc-cat-tile--logo:hover .dcc-cat-tile__wordmark { transform: scale(1.05); }
.dcc-cat-tile__emoji { font-size: 4.4rem; filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.5)); }
.dcc-cat-tile__shade {
	position: absolute; inset: 0;
	background: linear-gradient(to top, rgba(6, 6, 25, 0.95) 8%, rgba(6, 6, 25, 0.25) 45%, transparent 70%);
}
.dcc-cat-tile__label { position: absolute; left: 14px; right: 14px; bottom: 12px; }
.dcc-cat-tile__label strong { display: block; color: #fff; font-size: 1.02rem; font-weight: 900; }
.dcc-cat-tile__label small { color: var(--muted); font-size: 0.78rem; line-height: 1.35; display: block; margin-top: 2px; }

/* ---- Product cards ------------------------------------------------------- */
.dcc-product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 18px; }
.dcc-product-card {
	background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
	overflow: hidden; display: flex; flex-direction: column; height: 100%;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.dcc-product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(46, 201, 255, 0.5); }
.dcc-product-card__media { position: relative; display: block; background: #fff; }
.dcc-product-card__media img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.dcc-badge {
	position: absolute; z-index: 2; top: 10px; left: 10px; padding: 4px 11px;
	border-radius: 999px; font-size: 0.72rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.05em;
}
.dcc-badge--sale { background: var(--pink); color: #fff; }
.dcc-product-card__body { padding: 14px 14px 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.dcc-product-card__cat { font-size: 0.74rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }
.dcc-product-card__cat a { color: var(--cyan); }
.dcc-product-card__title { font-size: 0.98rem; margin: 0; line-height: 1.35; }
.dcc-product-card__title a { color: #fff; }
.dcc-product-card__title a:hover { color: var(--cyan); }
.dcc-stock { font-size: 0.8rem; font-weight: 800; }
.dcc-stock--in { color: var(--green); }
.dcc-stock--out { color: var(--red); }
.dcc-product-card__price { margin-top: auto; font-weight: 900; font-size: 1.06rem; }
.dcc-product-card__price del { color: var(--muted); font-weight: 600; margin-right: 8px; }
.dcc-product-card__price ins { text-decoration: none; color: var(--pink); }

/* ---- Buylist section ------------------------------------------------------ */
.dcc-buylist__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 44px; align-items: center; }
.dcc-buylist__imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.dcc-buylist__imgs img { border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow); }
.dcc-buylist__imgs img:nth-child(2) { transform: translateY(24px); }
.dcc-checklist, .dcc-steps { margin: 0 0 1.4em; padding: 0 0 0 2px; list-style: none; }
.dcc-checklist li { padding-left: 30px; position: relative; margin-bottom: 9px; color: #e6e6f7; }
.dcc-checklist li::before {
	content: '✓'; position: absolute; left: 0; top: 0;
	color: var(--green); font-weight: 900;
	background: rgba(61, 220, 132, 0.12); border-radius: 6px;
	width: 21px; height: 21px; display: flex; align-items: center; justify-content: center; font-size: 0.8rem;
}
.dcc-steps { counter-reset: step; }
.dcc-steps li { counter-increment: step; padding-left: 34px; position: relative; margin-bottom: 10px; color: #e6e6f7; }
.dcc-steps li::before {
	content: counter(step); position: absolute; left: 0; top: 1px;
	background: var(--grad); color: #fff; font-weight: 900; font-size: 0.78rem;
	width: 23px; height: 23px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
}

/* ---- Play area / features -------------------------------------------------- */
.dcc-play { background-size: cover; background-position: center; }
.dcc-feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 16px; }
.dcc-feature {
	background: rgba(18, 18, 46, 0.82); border: 1px solid var(--border); border-radius: var(--radius);
	padding: 26px 20px; text-align: center; backdrop-filter: blur(6px);
}
.dcc-feature span { font-size: 2.1rem; display: block; margin-bottom: 10px; }
.dcc-feature h3 { margin-bottom: 6px; }
.dcc-feature p { color: var(--muted); font-size: 0.9rem; margin: 0; }
.dcc-play__cta { justify-content: center; margin-top: 34px; }

/* Events list */
.dcc-events { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; margin-bottom: 34px; }
.dcc-event-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; display: flex; flex-direction: column; gap: 8px; }
.dcc-event-card__when { display: flex; align-items: baseline; gap: 10px; }
.dcc-event-card__day { color: var(--pink); font-weight: 900; text-transform: uppercase; letter-spacing: 0.04em; font-size: 0.9rem; }
.dcc-event-card__time { color: var(--muted); font-weight: 700; font-size: 0.85rem; }
.dcc-event-card h3 { margin: 0; font-size: 1.05rem; }
.dcc-event-card p { margin: 0; color: var(--muted); font-size: 0.92rem; }
.dcc-event-card__cost { align-self: flex-start; margin-top: 2px; background: var(--surface-2); border: 1px solid var(--border); border-radius: 999px; padding: 3px 12px; font-size: 0.8rem; font-weight: 800; color: var(--green); }

/* ---- Blog ------------------------------------------------------------------ */
.dcc-blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 18px; }
.dcc-blog-grid--archive { grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); }
.dcc-blog-card {
	background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
	overflow: hidden; display: flex; flex-direction: column;
}
.dcc-blog-card__media img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.dcc-blog-card__body { padding: 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.dcc-blog-card time { color: var(--muted); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.dcc-blog-card h3 { margin: 0; font-size: 1.08rem; }
.dcc-blog-card h3 a { color: #fff; }
.dcc-blog-card h3 a:hover { color: var(--cyan); }
.dcc-blog-card p { color: var(--muted); font-size: 0.92rem; margin: 0; }
.dcc-readmore { font-weight: 800; font-size: 0.9rem; margin-top: auto; }

/* ---- Trust strip ------------------------------------------------------------ */
.dcc-trust { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-alt); }
.dcc-trust__row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 10px; padding-top: 26px; padding-bottom: 26px; }
.dcc-trust__item { display: flex; align-items: center; gap: 12px; justify-content: center; text-align: left; }
.dcc-trust__item span { font-size: 1.6rem; }
.dcc-trust__item p { margin: 0; font-weight: 800; font-size: 0.88rem; }

/* ---- Newsletter -------------------------------------------------------------- */
.dcc-newsletter__box {
	background: linear-gradient(135deg, rgba(255, 46, 136, 0.14), rgba(46, 201, 255, 0.12)), var(--surface);
	border: 1px solid var(--border); border-radius: 22px; text-align: center;
	padding: 54px 30px; max-width: 880px;
}
.dcc-newsletter__box p { color: var(--muted); max-width: 520px; margin: 0 auto 22px; }
.dcc-newsletter__form { display: flex; gap: 10px; max-width: 480px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.dcc-newsletter__form input {
	flex: 1; min-width: 220px; background: var(--bg); border: 1px solid var(--border);
	border-radius: 999px; padding: 13px 22px; color: var(--text); font-family: inherit;
}
.dcc-newsletter__form input:focus { outline: none; border-color: var(--cyan); }
.dcc-newsletter__note { font-size: 0.78rem; margin-top: 16px; opacity: 0.65; }

/* ---- Page hero / CTA panel ----------------------------------------------------- */
.dcc-pagehero { background-size: cover; background-position: center; padding: 90px 0; text-align: center; }
.dcc-pagehero p { color: #d9d9ef; font-size: 1.1rem; margin: 0; }
.dcc-cta-panel {
	margin-top: 50px; text-align: center; background: var(--surface);
	border: 1px solid var(--border); border-radius: 22px; padding: 44px 26px;
}
.dcc-cta-panel .dcc-hero__cta { justify-content: center; }

/* ---- Contact ---------------------------------------------------------------------- */
.dcc-contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.dcc-contact__card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; }
.dcc-contact__list dt { color: var(--muted); font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 16px; }
.dcc-contact__list dd { margin: 4px 0 0; font-weight: 700; }
.dcc-hours { width: 100%; border-collapse: collapse; }
.dcc-hours td { padding: 7px 0; border-bottom: 1px dashed var(--border); font-size: 0.92rem; }
.dcc-hours td:last-child { text-align: right; color: var(--green); font-weight: 800; }
.dcc-socials { display: flex; gap: 12px; margin-top: 20px; }
.dcc-socials a {
	display: inline-flex; align-items: center; justify-content: center; gap: 6px;
	min-width: 42px; height: 42px; padding: 0 14px; border-radius: 999px;
	background: var(--surface-2); border: 1px solid var(--border); color: #fff; font-weight: 700; font-size: 0.85rem;
}
.dcc-socials a:hover { border-color: var(--pink); color: var(--pink); }
.dcc-socials svg { width: 19px; height: 19px; }

/* ---- Footer --------------------------------------------------------------------------- */
.dcc-footer { background: #04040f; border-top: 1px solid var(--border); padding: 60px 0 24px; margin-top: 0; }
.dcc-footer__grid { display: grid; grid-template-columns: 1.4fr 0.8fr 0.8fr 1.2fr; gap: 36px; }
.dcc-footer__logo { width: 150px; margin-bottom: 16px; }
.dcc-footer__about p { color: var(--muted); font-size: 0.92rem; }
.dcc-footer h3 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.12em; color: #fff; margin-bottom: 16px; }
.dcc-footer__menu { list-style: none; margin: 0; padding: 0; }
.dcc-footer__menu li { margin-bottom: 9px; }
.dcc-footer__menu a { color: var(--muted); font-size: 0.92rem; }
.dcc-footer__menu a:hover { color: var(--cyan); }
.dcc-footer address { font-style: normal; margin-bottom: 10px; }
.dcc-footer address a, .dcc-footer__contactline a { color: var(--muted); font-size: 0.92rem; }
.dcc-footer address a:hover, .dcc-footer__contactline a:hover { color: var(--cyan); }
.dcc-footer__note { color: var(--muted); font-size: 0.78rem; margin-top: 10px; }
.dcc-footer__bottom {
	border-top: 1px solid var(--border); margin-top: 44px; padding-top: 20px;
	display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap;
}
.dcc-footer__bottom p { margin: 0; color: var(--muted); font-size: 0.84rem; }
.dcc-payments { display: flex; gap: 8px; flex-wrap: wrap; }
.dcc-payments span {
	border: 1px solid var(--border); border-radius: 6px; padding: 3px 10px;
	font-size: 0.72rem; font-weight: 800; color: var(--muted);
}

/* ---- Prose / entry -------------------------------------------------------------------------- */
.dcc-prose { color: #e2e2f2; }
.dcc-prose--pad { margin-top: 40px; }
.dcc-prose h2, .dcc-prose h3 { margin-top: 1.4em; }
.dcc-prose img { border-radius: var(--radius); }
.dcc-prose blockquote { border-left: 3px solid var(--pink); margin: 1.5em 0; padding: 4px 0 4px 20px; color: var(--muted); }
.dcc-entry__head { text-align: center; margin-bottom: 30px; }
.dcc-entry__head time { color: var(--muted); font-weight: 700; text-transform: uppercase; font-size: 0.82rem; letter-spacing: 0.08em; }
.dcc-entry__thumb img { border-radius: var(--radius); margin: 0 auto 30px; }
.dcc-404 { text-align: center; }
.dcc-404 .dcc-search { margin: 24px auto; }
.dcc-pagination { text-align: center; margin-top: 36px; }
.dcc-pagination .page-numbers {
	display: inline-flex; min-width: 38px; height: 38px; align-items: center; justify-content: center;
	border: 1px solid var(--border); border-radius: 10px; margin: 0 3px; padding: 0 10px; color: #fff; font-weight: 700;
}
.dcc-pagination .page-numbers.current { background: var(--pink); border-color: var(--pink); }

/* =========================================================================
   WooCommerce — dark theme overrides
   ========================================================================= */
.dcc-breadcrumb { color: var(--muted); font-size: 0.85rem; margin-bottom: 26px; }
.dcc-breadcrumb a { color: var(--muted); }
.dcc-breadcrumb a:hover { color: var(--cyan); }
.dcc-breadcrumb__sep { opacity: 0.5; margin: 0 2px; }

.woocommerce-products-header { text-align: center; margin-bottom: 30px; }
.woocommerce-products-header .woocommerce-products-header__title { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
.term-description { color: var(--muted); max-width: 640px; margin: 0 auto; text-align: center; }

/* Shop toolbar */
.woocommerce-result-count { color: var(--muted); font-size: 0.9rem; float: left; margin: 6px 0 20px; }
.woocommerce-ordering { float: right; margin: 0 0 20px; }
.woocommerce-ordering select,
.woocommerce select,
.variations select {
	background: var(--surface); color: var(--text); border: 1px solid var(--border);
	border-radius: var(--radius-sm); padding: 9px 14px; font-family: inherit;
}

/* Product loop grid */
ul.products { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; clear: both; }
/* WooCommerce core adds a ::before/::after clearfix on ul.products. In a grid
   those pseudo-elements become phantom grid cells, leaving an empty first slot
   and pushing products right. Remove them. */
.woocommerce ul.products::before, .woocommerce ul.products::after,
.woocommerce-page ul.products::before, .woocommerce-page ul.products::after,
ul.products::before, ul.products::after { content: none; display: none; }
ul.products.columns-4 { grid-template-columns: repeat(4, 1fr); }
ul.products.columns-3 { grid-template-columns: repeat(3, 1fr); }
/* WooCommerce core CSS floats loop items at 22% width — neutralize it so each
   card fills its grid track (core rule: .woocommerce ul.products li.product). */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
.woocommerce ul.products[class*='columns-'] li.product,
.woocommerce-page ul.products[class*='columns-'] li.product,
li.dcc-product-li {
	float: none;
	width: 100%;
	margin: 0;
	clear: none;
}
li.dcc-product-li .dcc-product-card { height: 100%; }

/* Notices */
.woocommerce-message, .woocommerce-info, .woocommerce-error {
	list-style: none; background: var(--surface); border: 1px solid var(--border);
	border-left: 4px solid var(--cyan); border-radius: var(--radius-sm);
	padding: 15px 20px; margin: 0 0 24px; color: var(--text);
}
.woocommerce-message { border-left-color: var(--green); }
.woocommerce-error { border-left-color: var(--red); }
.woocommerce-message a.button, .woocommerce-info a.button, .woocommerce-error a.button { float: right; margin-left: 14px; }

/* Buttons (Woo generic) */
.woocommerce button.button, .woocommerce a.button, .woocommerce input.button,
.woocommerce #respond input#submit, .wc-block-components-button {
	background: var(--pink); color: #fff; border: 0; border-radius: 999px;
	font-weight: 800; padding: 11px 24px; cursor: pointer; font-family: inherit;
	transition: background 0.18s ease;
}
.woocommerce button.button:hover, .woocommerce a.button:hover, .woocommerce input.button:hover { background: var(--pink-deep); color: #fff; }
.woocommerce button.button:disabled, .woocommerce button.button[disabled] { background: var(--surface-2); color: var(--muted); }
.woocommerce a.button.alt, .woocommerce button.button.alt { background: var(--pink); }
.woocommerce a.added_to_cart { display: inline-block; margin-top: 8px; font-weight: 700; font-size: 0.85rem; }

/* Single product */
.woocommerce div.product { position: relative; }
.woocommerce div.product div.summary { color: var(--text); }
.woocommerce div.product .product_title { font-size: clamp(1.5rem, 3vw, 2.2rem); }
.woocommerce div.product p.price { color: var(--pink); font-size: 1.6rem; font-weight: 900; }
.woocommerce div.product p.price del { color: var(--muted); font-weight: 600; }
.woocommerce div.product p.price ins { text-decoration: none; }
.woocommerce div.product .woocommerce-product-details__short-description { color: var(--muted); }
.woocommerce div.product .stock.in-stock { color: var(--green); font-weight: 800; }
.woocommerce div.product .stock.out-of-stock { color: var(--red); font-weight: 800; }
.woocommerce div.product div.images img { border-radius: var(--radius); }
.woocommerce div.product div.images .woocommerce-product-gallery__wrapper { background: #fff; border-radius: var(--radius); overflow: hidden; }
.woocommerce div.product form.cart { margin: 24px 0; display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.woocommerce div.product form.cart div.quantity { display: inline-flex; align-items: center; gap: 4px; }
.woocommerce .quantity .qty {
	width: 64px; text-align: center; background: var(--surface); color: var(--text);
	border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 10px 6px; font-family: inherit;
}
.dcc-qty-btn {
	width: 38px; height: 42px; background: var(--surface-2); color: #fff;
	border: 1px solid var(--border); border-radius: var(--radius-sm); cursor: pointer; font-size: 1.1rem;
}
.dcc-qty-btn:hover { border-color: var(--cyan); }
.product_meta { color: var(--muted); font-size: 0.88rem; border-top: 1px solid var(--border); padding-top: 16px; }
.product_meta > span { display: block; margin-bottom: 4px; }

/* Tabs */
.woocommerce div.product .woocommerce-tabs ul.tabs {
	list-style: none; margin: 40px 0 0; padding: 0; display: flex; gap: 6px; border-bottom: 1px solid var(--border);
}
.woocommerce div.product .woocommerce-tabs ul.tabs li { margin: 0; }
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
	display: block; padding: 11px 20px; color: var(--muted); font-weight: 800;
	border: 1px solid transparent; border-radius: 10px 10px 0 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a { color: #fff; background: var(--surface); border-color: var(--border); border-bottom-color: var(--surface); }
.woocommerce div.product .woocommerce-tabs .panel { background: var(--surface); border: 1px solid var(--border); border-top: 0; border-radius: 0 0 var(--radius) var(--radius); padding: 26px; }
.related.products, .upsells.products { margin-top: 56px; }
.related.products > h2, .upsells.products > h2 { margin-bottom: 22px; }

/* Forms (checkout, account, coupon) */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form input[type='text'],
.woocommerce form input[type='email'],
.woocommerce form input[type='tel'],
.woocommerce form input[type='password'],
.woocommerce-cart table.cart td.actions .coupon .input-text {
	background: var(--surface); color: var(--text); border: 1px solid var(--border);
	border-radius: var(--radius-sm); padding: 11px 14px; font-family: inherit; width: 100%;
}
.woocommerce form .form-row input:focus, .woocommerce form .form-row textarea:focus { outline: none; border-color: var(--cyan); }
.woocommerce form .form-row label { color: var(--muted); font-weight: 700; font-size: 0.88rem; }
.select2-container--default .select2-selection--single { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); height: 44px; }
.select2-container--default .select2-selection--single .select2-selection__rendered { color: var(--text); line-height: 42px; padding-left: 14px; }
.select2-dropdown { background: var(--surface); border: 1px solid var(--border); color: var(--text); }
.select2-container--default .select2-results__option--highlighted[aria-selected] { background: var(--pink); }
.select2-search--dropdown .select2-search__field { background: var(--bg); color: var(--text); border: 1px solid var(--border); }

/* Cart */
.woocommerce table.shop_table {
	border: 1px solid var(--border); border-radius: var(--radius); border-collapse: separate; border-spacing: 0;
	width: 100%; overflow: hidden;
}
.woocommerce table.shop_table th { background: var(--surface-2); color: #fff; padding: 13px 14px; text-align: left; }
.woocommerce table.shop_table td { padding: 13px 14px; border-top: 1px solid var(--border); color: var(--text); vertical-align: middle; }
.woocommerce table.shop_table td a { color: #fff; font-weight: 700; }
.woocommerce table.shop_table td a:hover { color: var(--cyan); }
.woocommerce table.shop_table td.product-remove a { color: var(--red); font-size: 1.3rem; font-weight: 900; }
.woocommerce-cart table.cart img { width: 68px; border-radius: 8px; background: #fff; }
.cart_totals, .woocommerce-checkout-review-order {
	background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px;
}
.cart_totals h2, #order_review_heading { font-size: 1.2rem; }
.cart_totals table.shop_table, .woocommerce-checkout-review-order table.shop_table { border: 0; }
.wc-proceed-to-checkout a.checkout-button { display: block; text-align: center; font-size: 1.05rem; }

/* Checkout */
.woocommerce-checkout #payment { background: var(--surface-2); border-radius: var(--radius); border: 1px solid var(--border); }
.woocommerce-checkout #payment ul.payment_methods { list-style: none; margin: 0; padding: 18px; border-bottom: 1px solid var(--border); }
.woocommerce-checkout #payment div.payment_box { background: var(--bg-alt); color: var(--muted); border-radius: var(--radius-sm); padding: 14px 16px; margin-top: 10px; position: relative; }
.woocommerce-checkout #payment div.place-order { padding: 18px; }
#place_order { width: 100%; font-size: 1.05rem; }

/* Account */
.woocommerce-MyAccount-navigation ul { list-style: none; margin: 0; padding: 0; }
.woocommerce-MyAccount-navigation li a {
	display: block; padding: 11px 16px; color: var(--muted); font-weight: 700;
	border: 1px solid transparent; border-radius: var(--radius-sm); margin-bottom: 4px;
}
.woocommerce-MyAccount-navigation li.is-active a, .woocommerce-MyAccount-navigation li a:hover { background: var(--surface); color: #fff; border-color: var(--border); }
.woocommerce-account .woocommerce-MyAccount-content { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; }
.woocommerce-account .woocommerce { display: grid; grid-template-columns: 230px 1fr; gap: 24px; align-items: start; }
.woocommerce-account .woocommerce > .woocommerce-notices-wrapper,
.woocommerce-account .woocommerce > form { grid-column: 1 / -1; }
.woocommerce-form-login, .woocommerce-form-register {
	background: var(--surface); border: 1px solid var(--border) !important; border-radius: var(--radius) !important;
	padding: 26px !important; max-width: 460px;
}

/* Star ratings */
.woocommerce .star-rating span::before, .woocommerce .star-rating::before { color: #ffc83d; }
.woocommerce p.stars a { color: #ffc83d; }

/* Price in loops fallback */
.woocommerce ul.products li.product .price { color: var(--pink); font-weight: 900; }
.onsale { display: none; } /* replaced by .dcc-badge--sale */

/* ---- WooCommerce Blocks (cart & checkout) -------------------------------- */
.wc-block-components-text-input input,
.wc-block-components-combobox .wc-block-components-combobox-control input,
.wc-block-components-select .components-custom-select-control__button,
.wc-block-components-form .wc-block-components-select select,
.wc-block-components-country-input select,
.wc-block-components-state-input select {
	background: var(--surface) !important; color: var(--text) !important;
	border-color: var(--border) !important;
}
.wc-block-components-text-input label,
.wc-block-components-combobox label,
.wc-block-components-select label { color: var(--muted) !important; }
.wc-block-components-checkout-step__description,
.wc-block-components-totals-item__description { color: var(--muted); }
.wc-block-components-panel, .wc-block-components-card,
.wc-block-cart-items, .wp-block-woocommerce-checkout-order-summary-block {
	border-color: var(--border) !important;
}
.wc-block-components-sidebar .wp-block-woocommerce-checkout-order-summary-block,
.wp-block-woocommerce-cart-totals-block {
	background: var(--surface); border-radius: var(--radius); padding: 18px;
	border: 1px solid var(--border);
}
.wc-block-components-quantity-selector {
	background: var(--surface); border: 1px solid var(--border) !important; border-radius: var(--radius-sm);
}
.wc-block-components-quantity-selector input,
.wc-block-components-quantity-selector button { color: var(--text) !important; background: transparent; }
.wc-block-components-button:not(.is-link) {
	background: var(--pink) !important; color: #fff !important; border-radius: 999px !important;
	font-weight: 800 !important;
}
.wc-block-components-button:not(.is-link):hover { background: var(--pink-deep) !important; }
.wc-block-components-product-badge { border-color: var(--border); color: var(--muted); }
.wc-block-components-radio-control__option { border-color: var(--border) !important; }
.wc-block-cart-item__prominent-link, .wc-block-components-product-name { color: #fff !important; font-weight: 700; }
.wc-block-components-sale-badge { background: var(--pink); color: #fff; border: 0; }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 1024px) {
	ul.products.columns-4 { grid-template-columns: repeat(3, 1fr); }
	.dcc-footer__grid { grid-template-columns: 1fr 1fr; }
	.dcc-buylist__grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 860px) {
	.dcc-nav { display: none; }
	.dcc-nav-toggle { display: block; }
	.dcc-header__row { flex-wrap: wrap; gap: 12px; }
	.dcc-logo { order: 1; margin-right: auto; }
	.dcc-logo img { width: 132px; }
	.dcc-nav-toggle { order: 0; }
	.dcc-header__actions { order: 2; }
	.dcc-search { order: 3; flex-basis: 100%; max-width: none; }
	.dcc-hero { min-height: 480px; }
	.woocommerce-account .woocommerce { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
	.dcc-section { padding: 44px 0; }
	ul.products.columns-4, ul.products.columns-3 { grid-template-columns: repeat(2, 1fr); }
	.dcc-product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
	.dcc-cat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
	.dcc-contact__grid { grid-template-columns: 1fr; }
	.dcc-footer__grid { grid-template-columns: 1fr; gap: 28px; }
	.dcc-buylist__imgs img:nth-child(2) { transform: none; }
	.dcc-section__head--row { flex-direction: column; align-items: flex-start; }
	.woocommerce-result-count, .woocommerce-ordering { float: none; }
}
