/* ===========================================================
   WP NIAGA MODERN — main.css
   Tema: DARK LUXURY (hitam & emas) — fokus jualan via WhatsApp.
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600;700;800&display=swap');

/* -----------------------------------------------------------
   1. DESIGN TOKENS
   ----------------------------------------------------------- */
:root{
	--font-heading: 'Fraunces', Georgia, 'Times New Roman', serif;
	--font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

	--c-bg: #0A0A0B;            /* latar utama, hitam pekat sedikit hangat */
	--c-footer: #050505;        /* footer sedikit lebih gelap untuk layering */
	--c-surface: #15151A;       /* kartu / panel terangkat */
	--c-surface-2: #1C1C22;     /* hover / elemen lebih terang lagi */

	--c-ink: #F3EFE6;           /* warna teks utama (krem keputihan) */
	--c-ink-soft: rgba(243,239,230,.72);
	--c-muted: rgba(243,239,230,.5);

	--c-line: rgba(255,255,255,.14);
	--c-line-soft: rgba(255,255,255,.08);

	--c-gold: #D4AF37;          /* aksen emas khas Dark Luxury */
	--c-gold-bright: #E8C765;
	--c-gold-ink: #1B1605;      /* teks gelap di atas elemen emas */
	--c-accent: var(--c-gold);
	--c-accent-soft: rgba(212,175,55,.12);

	--c-wa: #25D366;
	--c-wa-dark: #1DA851;

	--c-danger: #E2574C;
	--c-danger-soft: rgba(226,87,76,.16);

	--radius-sm: 8px;
	--radius-md: 14px;
	--radius-lg: 22px;
	--radius-pill: 999px;

	--shadow-sm: 0 1px 2px rgba(0,0,0,.5);
	--shadow-md: 0 16px 34px -14px rgba(0,0,0,.65);
	--shadow-lg: 0 28px 56px -18px rgba(0,0,0,.7);
	--shadow-gold: 0 18px 38px -16px rgba(212,175,55,.35);

	--container: 1220px;
	--gap: 28px;
	--header-h: 80px;
}

/* -----------------------------------------------------------
   2. RESET
   ----------------------------------------------------------- */
*,*::before,*::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
body{
	margin:0;
	background:var(--c-bg);
	color:var(--c-ink);
	font-family:var(--font-body);
	font-size:16px;
	line-height:1.65;
	-webkit-font-smoothing:antialiased;
}
img{ max-width:100%; height:auto; display:block; }
ul,ol{ margin:0; padding:0; list-style:none; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; }
input,textarea,select{ font-family:inherit; font-size:16px; color:var(--c-ink); }
h1,h2,h3,h4,h5,h6{
	font-family:var(--font-heading);
	font-weight:600;
	line-height:1.2;
	margin:0 0 .5em;
	color:var(--c-ink);
	letter-spacing:-.01em;
}
p{ margin:0 0 1em; }
.screen-reader-text{
	position:absolute !important; width:1px;height:1px;overflow:hidden;
	clip:rect(1px,1px,1px,1px); white-space:nowrap;
}
a.skip-link{
	position:absolute; left:-9999px; top:0; z-index:9999;
	background:var(--c-gold); color:var(--c-gold-ink); padding:12px 18px; border-radius:0 0 8px 0;
}
a.skip-link:focus{ left:0; }
:focus-visible{ outline:2px solid var(--c-gold); outline-offset:2px; }

/* -----------------------------------------------------------
   3. LAYOUT / UTILITIES
   ----------------------------------------------------------- */
.wrap{ max-width:var(--container); margin:0 auto; padding:0 24px; }
.section{ padding:64px 0; }
.section-tight{ padding:40px 0; }
.flex{ display:flex; }
.flex-between{ display:flex; align-items:center; justify-content:space-between; }
.text-center{ text-align:center; }
.muted{ color:var(--c-ink-soft); }
.eyebrow{
	display:inline-flex; align-items:center; gap:8px;
	font-size:13px; font-weight:700; letter-spacing:.12em; text-transform:uppercase;
	color:var(--c-gold); margin-bottom:10px;
}
.eyebrow::before{ content:''; width:18px; height:2px; background:var(--c-gold); display:inline-block; }
.section-head{ max-width:640px; margin:0 0 36px; }
.section-head.center{ margin-inline:auto; text-align:center; }
.section-head h2{ font-size:clamp(26px,3vw,36px); margin-bottom:10px; }
.section-head p{ color:var(--c-ink-soft); margin:0; }

/* reveal-on-scroll */
.reveal{ opacity:0; transform:translateY(18px); transition:opacity .6s ease, transform .6s ease; }
.reveal.is-visible{ opacity:1; transform:translateY(0); }
@media (prefers-reduced-motion: reduce){
	.reveal{ opacity:1; transform:none; transition:none; }
	html{ scroll-behavior:auto; }
}

/* -----------------------------------------------------------
   4. BUTTONS
   ----------------------------------------------------------- */
.btn{
	display:inline-flex; align-items:center; justify-content:center; gap:9px;
	padding:13px 26px; border-radius:var(--radius-pill);
	font-weight:600; font-size:15px; border:1px solid transparent;
	transition:transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
	white-space:nowrap;
}
.btn svg{ width:18px; height:18px; flex-shrink:0; }
.btn:hover{ transform:translateY(-2px); }
.btn-block{ width:100%; }

.btn-primary{ background:var(--c-gold); color:var(--c-gold-ink); }
.btn-primary:hover{ background:var(--c-gold-bright); box-shadow:var(--shadow-gold); }

.btn-outline{ background:transparent; color:var(--c-ink); border-color:var(--c-line); }
.btn-outline:hover{ border-color:var(--c-gold); color:var(--c-gold); }

.btn-outline-light{ background:rgba(255,255,255,.05); color:var(--c-ink); border-color:rgba(255,255,255,.3); }
.btn-outline-light:hover{ background:rgba(255,255,255,.1); border-color:var(--c-gold); color:var(--c-gold-bright); }

.btn-wa{ background:var(--c-wa); color:#fff; box-shadow:0 10px 22px -8px rgba(37,211,102,.5); }
.btn-wa:hover{ background:var(--c-wa-dark); }

.btn-sm{ padding:9px 18px; font-size:13px; }
.btn-lg{ padding:16px 30px; font-size:16px; }

/* -----------------------------------------------------------
   5. HEADER
   ----------------------------------------------------------- */
.site-header{
	position:sticky; top:0; z-index:300;
	background:rgba(10,10,11,.82);
	backdrop-filter:saturate(160%) blur(14px);
	border-bottom:1px solid var(--c-line-soft);
	transition:box-shadow .25s ease, border-color .25s ease;
}
.site-header.is-scrolled{ box-shadow:0 10px 26px -18px rgba(0,0,0,.8); border-bottom-color:rgba(212,175,55,.25); }
.header-inner{
	display:flex; align-items:center; justify-content:space-between;
	height:var(--header-h); gap:18px;
}
.site-branding{ display:flex; align-items:center; gap:12px; min-width:0; }
.site-branding img.custom-logo{ max-height:46px; width:auto; }
.site-branding .site-title{
	font-family:var(--font-heading); font-size:23px; font-weight:700; margin:0;
	white-space:nowrap;
}
.site-branding .site-title a{ color:var(--c-ink); }
.site-branding .site-description{ display:none; }

.primary-nav{ display:flex; }
.primary-nav ul{ display:flex; align-items:center; gap:30px; }
.primary-nav a{
	font-weight:600; font-size:14.5px; color:var(--c-ink-soft);
	position:relative; padding:6px 0;
}
.primary-nav a:hover, .primary-nav .current-menu-item > a{ color:var(--c-ink); }
.primary-nav .current-menu-item > a::after{
	content:''; position:absolute; left:0; right:0; bottom:-2px; height:2px; background:var(--c-gold);
}
.primary-nav .sub-menu{
	position:absolute; background:var(--c-surface); border:1px solid var(--c-line-soft);
	border-radius:var(--radius-sm); box-shadow:var(--shadow-md); padding:8px; min-width:200px;
	top:100%; opacity:0; visibility:hidden; transform:translateY(6px); transition:.2s ease;
}
.primary-nav li{ position:relative; }
.primary-nav li:hover > .sub-menu{ opacity:1; visibility:visible; transform:translateY(0); }
.primary-nav .sub-menu a{ display:block; padding:9px 12px; border-radius:6px; }
.primary-nav .sub-menu a:hover{ background:var(--c-accent-soft); color:var(--c-gold); }

.header-actions{ display:flex; align-items:center; gap:10px; }
.header-icon-btn{
	width:42px; height:42px; display:inline-flex; align-items:center; justify-content:center;
	border-radius:50%; border:1px solid var(--c-line); background:transparent; color:var(--c-ink);
	transition:.2s ease;
}
.header-icon-btn:hover{ background:var(--c-surface); border-color:var(--c-gold); color:var(--c-gold); }
.header-icon-btn svg{ width:19px; height:19px; }
.menu-toggle{ display:none; }
.header-wa-btn{ display:inline-flex; }
@media (max-width:640px){ .header-wa-btn{ display:none; } }

/* search overlay */
.search-overlay{
	position:fixed; inset:0; background:rgba(0,0,0,.75); backdrop-filter:blur(3px);
	z-index:500; display:flex; align-items:flex-start; justify-content:center;
	padding-top:14vh; opacity:0; visibility:hidden; transition:.25s ease;
}
.search-overlay.is-open{ opacity:1; visibility:visible; }
.search-overlay-box{
	background:var(--c-surface); width:min(560px,90vw); border-radius:var(--radius-md);
	padding:26px; box-shadow:var(--shadow-lg); position:relative; border:1px solid var(--c-line-soft);
}
.search-overlay-box form{ display:flex; gap:10px; }
.search-overlay-box input[type="search"]{
	flex:1; border:1px solid var(--c-line); border-radius:var(--radius-pill); padding:13px 20px; font-size:15px;
	background:var(--c-bg);
}
.search-overlay-close{
	position:absolute; top:-14px; right:-14px; width:34px; height:34px; border-radius:50%;
	background:var(--c-gold); color:var(--c-gold-ink); display:flex; align-items:center; justify-content:center; border:none;
}

/* mobile nav drawer */
@media (max-width:900px){
	.primary-nav{
		position:fixed; inset:0 12% 0 auto; left:auto; width:78%; max-width:340px;
		background:var(--c-surface); flex-direction:column; align-items:flex-start; padding:90px 28px 28px;
		transform:translateX(100%); transition:transform .3s ease; box-shadow:var(--shadow-lg); z-index:400;
		border-left:1px solid var(--c-line-soft);
	}
	.primary-nav.is-open{ transform:translateX(0); }
	.primary-nav ul{ flex-direction:column; align-items:flex-start; gap:6px; width:100%; }
	.primary-nav li{ width:100%; }
	.primary-nav a{ display:block; padding:12px 4px; font-size:16px; }
	.primary-nav .sub-menu{ position:static; opacity:1; visibility:visible; transform:none; box-shadow:none; border:none; padding-left:14px; display:none; background:transparent; }
	.primary-nav li.is-open > .sub-menu{ display:block; }
	.menu-toggle{
		display:inline-flex; align-items:center; justify-content:center; width:42px; height:42px;
		border-radius:50%; border:1px solid var(--c-line); background:transparent; position:relative; z-index:410;
	}
	.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after{
		content:''; display:block; width:18px; height:2px; background:var(--c-ink); position:relative; transition:.25s ease;
	}
	.menu-toggle span::before{ position:absolute; top:-6px; }
	.menu-toggle span::after{ position:absolute; top:6px; }
	.menu-toggle.is-active span{ background:transparent; }
	.menu-toggle.is-active span::before{ top:0; transform:rotate(45deg); background:var(--c-gold); }
	.menu-toggle.is-active span::after{ top:0; transform:rotate(-45deg); background:var(--c-gold); }
	.nav-backdrop{
		position:fixed; inset:0; background:rgba(0,0,0,.6); z-index:390; opacity:0; visibility:hidden; transition:.25s ease;
	}
	.nav-backdrop.is-open{ opacity:1; visibility:visible; }
}

/* -----------------------------------------------------------
   6. HERO
   ----------------------------------------------------------- */
.hero{
	position:relative; overflow:hidden; color:var(--c-ink);
	background:linear-gradient(155deg,#000000 0%,#15120A 55%,#0A0A0B 100%);
	padding:96px 0 110px;
}
.hero::before{
	content:''; position:absolute; inset:0; opacity:.6;
	background-image:radial-gradient(rgba(212,175,55,.16) 1.5px, transparent 1.5px);
	background-size:22px 22px;
	mask-image:linear-gradient(180deg, rgba(0,0,0,.9), transparent 80%);
}
.hero.has-image{ background-size:cover; background-position:center; }
.hero.has-image::after{
	content:''; position:absolute; inset:0;
	background:linear-gradient(155deg, rgba(0,0,0,.88) 10%, rgba(0,0,0,.6) 60%, rgba(0,0,0,.82) 100%);
}
.hero-inner{ position:relative; z-index:2; max-width:640px; }
.hero .eyebrow{ color:var(--c-gold); }
.hero .eyebrow::before{ background:var(--c-gold); }
.hero h1{ color:var(--c-ink); font-size:clamp(34px,5vw,58px); margin-bottom:18px; }
.hero p.lead{ color:rgba(243,239,230,.78); font-size:18px; max-width:520px; margin-bottom:30px; }
.hero-actions{ display:flex; gap:14px; flex-wrap:wrap; }

/* category pills */
.cat-pills{ display:flex; gap:10px; overflow-x:auto; padding:22px 0 6px; scrollbar-width:none; }
.cat-pills::-webkit-scrollbar{ display:none; }
.cat-pills a{
	flex-shrink:0; padding:10px 20px; border-radius:var(--radius-pill); border:1px solid var(--c-line);
	background:var(--c-surface); font-size:14px; font-weight:600; color:var(--c-ink-soft); transition:.2s ease;
}
.cat-pills a:hover, .cat-pills a.is-active{ background:var(--c-gold); color:var(--c-gold-ink); border-color:var(--c-gold); }

/* -----------------------------------------------------------
   7. PRODUCT GRID & CARD
   ----------------------------------------------------------- */
.product-grid{
	display:grid; grid-template-columns:repeat(auto-fill, minmax(248px,1fr)); gap:var(--gap);
}
.product-card{
	background:var(--c-surface); border:1px solid var(--c-line-soft); border-radius:var(--radius-md);
	overflow:hidden; transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease; display:flex; flex-direction:column;
}
.product-card:hover{ transform:translateY(-5px); box-shadow:var(--shadow-gold); border-color:rgba(212,175,55,.35); }
.product-card .card-media{
	position:relative; aspect-ratio:1/1; overflow:hidden; background:var(--c-accent-soft);
}
.product-card .card-media img{
	width:100%; height:100%; object-fit:cover; transition:transform .5s ease;
}
.product-card:hover .card-media img{ transform:scale(1.07); }
.product-card .card-media .no-image{
	width:100%; height:100%; display:flex; align-items:center; justify-content:center; color:var(--c-gold);
}
.product-card .card-media .no-image svg{ width:46px; height:46px; opacity:.5; }

.badge{
	display:inline-flex; align-items:center; padding:5px 12px; border-radius:var(--radius-pill);
	font-size:11.5px; font-weight:700; letter-spacing:.04em; text-transform:uppercase;
}
.badge-sale{ background:var(--c-danger-soft); color:#FF8B80; }
.badge-best{ background:rgba(212,175,55,.18); color:var(--c-gold-bright); }
.badge-new{ background:rgba(255,255,255,.12); color:var(--c-ink); }
.badge-limited{ background:var(--c-gold); color:var(--c-gold-ink); }
.badge-sold{ background:rgba(0,0,0,.72); color:#fff; border:1px solid rgba(255,255,255,.2); }

.card-media .badge{ position:absolute; top:12px; left:12px; z-index:2; }
.card-media.is-sold img{ filter:grayscale(.6) brightness(.7); opacity:.6; }
.card-media .badge-sold-overlay{
	position:absolute; inset:0; display:flex; align-items:center; justify-content:center; z-index:2;
}

.card-body{ padding:18px 18px 20px; display:flex; flex-direction:column; gap:8px; flex:1; }
.card-cat{ font-size:11.5px; font-weight:700; text-transform:uppercase; letter-spacing:.06em; color:var(--c-muted); }
.card-title{ font-size:17px; margin:0; font-weight:600; }
.card-title a{ color:var(--c-ink); }
.card-title a:hover{ color:var(--c-gold); }

.price{ display:flex; align-items:baseline; gap:8px; flex-wrap:wrap; }
.price .now{ font-family:var(--font-heading); font-weight:700; font-size:19px; color:var(--c-gold); }
.price .old{ font-size:13.5px; color:var(--c-muted); text-decoration:line-through; }
.price .percent{ font-size:11px; font-weight:700; color:#FF8B80; background:var(--c-danger-soft); padding:2px 7px; border-radius:6px; }
.price .cta{ font-size:13.5px; color:var(--c-muted); font-style:italic; }

.card-body .btn{ margin-top:6px; }
.stock-line{ font-size:12.5px; color:var(--c-gold); font-weight:600; display:flex; align-items:center; gap:6px; }
.stock-line svg{ width:13px; height:13px; }

.empty-state{
	text-align:center; padding:80px 20px; color:var(--c-ink-soft); border:1px dashed var(--c-line); border-radius:var(--radius-md);
}
.empty-state h2{ margin-bottom:8px; }

/* pagination */
.pagination{ display:flex; justify-content:center; gap:8px; margin-top:48px; flex-wrap:wrap; }
.pagination a, .pagination span{
	min-width:40px; height:40px; padding:0 8px; display:inline-flex; align-items:center; justify-content:center;
	border-radius:var(--radius-sm); border:1px solid var(--c-line); font-weight:600; font-size:14px; color:var(--c-ink-soft);
}
.pagination .current{ background:var(--c-gold); color:var(--c-gold-ink); border-color:var(--c-gold); }
.pagination a:hover{ border-color:var(--c-gold); color:var(--c-gold); }

/* breadcrumb */
.breadcrumb{ font-size:13px; color:var(--c-muted); display:flex; gap:6px; flex-wrap:wrap; margin-bottom:18px; }
.breadcrumb a{ color:var(--c-ink-soft); font-weight:600; }
.breadcrumb a:hover{ color:var(--c-gold); }

/* -----------------------------------------------------------
   8. SINGLE PRODUCT
   ----------------------------------------------------------- */
.product-single{ padding:44px 0 80px; }
.product-layout{ display:grid; grid-template-columns:1.05fr .95fr; gap:54px; align-items:flex-start; }

.gallery-main{
	position:relative; aspect-ratio:1/1; border-radius:var(--radius-lg); overflow:hidden;
	background:var(--c-accent-soft); border:1px solid var(--c-line-soft);
}
.gallery-main img{ width:100%; height:100%; object-fit:cover; }
.gallery-main .badge{ position:absolute; top:16px; left:16px; }
.gallery-thumbs{ display:flex; gap:10px; margin-top:14px; flex-wrap:wrap; }
.gallery-thumbs button{
	width:72px; height:72px; border-radius:var(--radius-sm); overflow:hidden; padding:0; border:2px solid transparent;
	background:var(--c-surface); opacity:.65; transition:.2s ease;
}
.gallery-thumbs button img{ width:100%; height:100%; object-fit:cover; }
.gallery-thumbs button:hover{ opacity:1; }
.gallery-thumbs button.is-active{ border-color:var(--c-gold); opacity:1; }

.product-info .cat-tag{ font-size:13px; font-weight:700; color:var(--c-gold); text-transform:uppercase; letter-spacing:.06em; }
.product-info h1{ font-size:clamp(28px,3.4vw,40px); margin:8px 0 14px; }
.product-info .badges-row{ display:flex; gap:8px; margin-bottom:14px; flex-wrap:wrap; }
.product-info .price{ font-size:15px; margin:10px 0 6px; }
.product-info .price .now{ font-size:30px; }
.product-info .price .old{ font-size:16px; }
.product-info .save-line{ color:#FF8B80; font-weight:600; font-size:13.5px; margin-bottom:18px; }
.product-info .meta-row{ display:flex; gap:18px; flex-wrap:wrap; margin:18px 0; padding:16px 0; border-top:1px solid var(--c-line-soft); border-bottom:1px solid var(--c-line-soft); font-size:14px; }
.product-info .meta-row .meta-item{ display:flex; flex-direction:column; gap:2px; }
.product-info .meta-row .meta-item span{ color:var(--c-muted); font-size:12px; text-transform:uppercase; letter-spacing:.04em; }
.product-info .actions{ display:flex; gap:12px; margin-top:24px; flex-wrap:wrap; }
.product-info .note-box{
	margin-top:22px; padding:16px 18px; background:var(--c-accent-soft); border:1px solid rgba(212,175,55,.25); border-radius:var(--radius-md); font-size:14px; color:var(--c-ink-soft);
	display:flex; gap:10px;
}
.product-info .note-box svg{ width:18px; height:18px; flex-shrink:0; margin-top:2px; color:var(--c-gold); }

.share-row{ display:flex; align-items:center; gap:10px; margin-top:28px; }
.share-row span{ font-size:13px; color:var(--c-muted); }
.share-row a, .share-row button{
	width:36px; height:36px; border-radius:50%; border:1px solid var(--c-line); display:flex; align-items:center; justify-content:center;
	background:var(--c-surface); color:var(--c-ink);
}
.share-row a:hover, .share-row button:hover{ border-color:var(--c-gold); color:var(--c-gold); }
.share-row svg{ width:16px; height:16px; }

.entry-content{ font-size:16px; color:var(--c-ink-soft); }
.entry-content h2, .entry-content h3{ color:var(--c-ink); margin-top:1.4em; }
.entry-content img{ border-radius:var(--radius-md); }
.entry-content blockquote{
	border-left:3px solid var(--c-gold); margin:1.4em 0; padding:4px 0 4px 22px; font-style:italic; color:var(--c-ink);
	font-family:var(--font-heading); font-size:19px;
}
.entry-content a{ color:var(--c-gold); text-decoration:underline; text-decoration-color:var(--c-line); }
.product-description{ margin-top:48px; padding-top:40px; border-top:1px solid var(--c-line-soft); }
.product-description h2{ font-size:22px; margin-bottom:16px; }

.related-products{ margin-top:64px; }

/* sticky mobile buy bar */
.mobile-buybar{
	position:fixed; left:0; right:0; bottom:0; z-index:350; background:var(--c-surface);
	border-top:1px solid var(--c-line); padding:12px 16px; display:none; align-items:center; gap:14px;
	box-shadow:0 -14px 30px -16px rgba(0,0,0,.7); transform:translateY(110%); transition:transform .3s ease;
}
.mobile-buybar.is-visible{ transform:translateY(0); }
.mobile-buybar .mb-price{ flex-shrink:0; }
.mobile-buybar .mb-price .now{ font-size:16px; }
.mobile-buybar .btn{ flex:1; }

/* -----------------------------------------------------------
   9. FLOATING WHATSAPP BUTTON
   ----------------------------------------------------------- */
.wa-float{
	position:fixed; bottom:26px; right:26px; z-index:360; width:60px; height:60px; border-radius:50%;
	background:var(--c-wa); color:#fff; display:flex; align-items:center; justify-content:center;
	box-shadow:0 14px 30px -10px rgba(29,168,81,.65); transition:transform .2s ease;
}
.wa-float:hover{ transform:scale(1.08); }
.wa-float svg{ width:30px; height:30px; }
.wa-float::before{
	content:''; position:absolute; inset:0; border-radius:50%; background:var(--c-wa); opacity:.55;
	animation:wa-pulse 2.4s ease-out infinite;
}
@keyframes wa-pulse{ 0%{ transform:scale(1); opacity:.55;} 70%{ transform:scale(1.7); opacity:0;} 100%{ opacity:0;} }
@media (prefers-reduced-motion: reduce){ .wa-float::before{ animation:none; } }

/* -----------------------------------------------------------
   10. PAGE / PROSE CONTENT
   ----------------------------------------------------------- */
.page-content{ max-width:760px; margin:0 auto; padding:64px 0 90px; }
.page-content h1{ font-size:clamp(28px,4vw,42px); margin-bottom:24px; }
.page-content .entry-content > *:first-child{ margin-top:0; }

/* -----------------------------------------------------------
   11. FOOTER
   ----------------------------------------------------------- */
.site-footer{ background:var(--c-footer); color:rgba(255,255,255,.7); margin-top:60px; border-top:1px solid rgba(212,175,55,.22); }
.footer-top{ padding:64px 0 40px; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:40px; }
.footer-col h3{ color:#fff; font-size:16px; margin-bottom:16px; }
.footer-brand{ color:var(--c-gold-bright); font-family:var(--font-heading); font-size:22px; margin-bottom:14px; display:block; }
.footer-col p{ font-size:14.5px; line-height:1.7; }
.footer-col ul{ display:flex; flex-direction:column; gap:10px; }
.footer-col a{ font-size:14.5px; color:rgba(255,255,255,.7); }
.footer-col a:hover{ color:var(--c-gold-bright); }
.footer-contact li{ display:flex; gap:10px; font-size:14.5px; align-items:flex-start; }
.footer-contact svg{ width:16px; height:16px; flex-shrink:0; margin-top:3px; color:var(--c-gold); }
.footer-social{ display:flex; gap:10px; margin-top:16px; }
.footer-social a{
	width:38px; height:38px; border-radius:50%; border:1px solid rgba(255,255,255,.2); display:flex; align-items:center; justify-content:center;
}
.footer-social a:hover{ background:rgba(212,175,55,.15); border-color:var(--c-gold); color:var(--c-gold-bright); }
.footer-social svg{ width:16px; height:16px; }
.footer-bottom{
	border-top:1px solid rgba(255,255,255,.12); padding:22px 0; font-size:13px;
	display:flex; justify-content:space-between; align-items:center; gap:12px; flex-wrap:wrap; color:rgba(255,255,255,.5);
}
.footer-bottom a{ color:rgba(255,255,255,.75); }

/* widgets generic */
.widget{ margin-bottom:28px; }
.widget h2,.widget h3{ font-size:16px; margin-bottom:14px; color:#fff; }
.widget ul{ display:flex; flex-direction:column; gap:8px; }

/* -----------------------------------------------------------
   12. RESPONSIVE
   ----------------------------------------------------------- */
@media (max-width:1080px){
	.product-layout{ grid-template-columns:1fr; gap:34px; }
	.footer-grid{ grid-template-columns:1fr 1fr; }
}
@media (max-width:768px){
	:root{ --header-h:68px; }
	.section{ padding:46px 0; }
	.hero{ padding:64px 0 70px; }
	.hero-actions{ flex-direction:column; align-items:stretch; }
	.hero-actions .btn{ width:100%; }
	.footer-grid{ grid-template-columns:1fr; gap:32px; }
	.product-grid{ grid-template-columns:repeat(auto-fill, minmax(155px,1fr)); gap:16px; }
	.card-body{ padding:13px 13px 16px; gap:6px; }
	.card-title{ font-size:14.5px; }
	.price .now{ font-size:16px; }
	.mobile-buybar{ display:flex; }
	.wa-float{ width:54px; height:54px; bottom:90px; right:18px; }
	.site-branding .site-title{ font-size:19px; }
}
@media (max-width:480px){
	.wrap{ padding:0 16px; }
	.product-grid{ grid-template-columns:repeat(2, 1fr); gap:14px; }
}
