/* ============================================================
   Croxton Media CMS — Public Site Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@300;400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── Tokens ── */
:root {
  --gold:       #e8a020;
  --gold-light: #f5c050;
  --gold-bg:    rgba(232,160,32,.10);
  --navy:       #0d1f3c;
  --navy-mid:   #16325a;
  --navy-light: #1e4080;
  --white:      #fff;
  --body-bg:    #f4f6fa;
  --grey-lt:    #eef0f5;
  --grey-mid:   #c8ccda;
  --grey-dk:    #6b7280;
  --border:     #dde1ea;
  --ink:        #1a1a2e;
  --shadow-sm:  0 2px 8px rgba(13,31,60,.08);
  --shadow-md:  0 6px 24px rgba(13,31,60,.12);
  --shadow-lg:  0 16px 48px rgba(13,31,60,.18);
  --radius:     6px;
  --radius-lg:  12px;
  --container:  1200px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; background: var(--body-bg); color: var(--ink); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4,h5 { font-family: 'Montserrat', sans-serif; }
button, input, textarea, select { font-family: inherit; }

/* ── Container ── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 13px 28px; border-radius: var(--radius); font-weight: 700;
  font-size: .875rem; cursor: pointer; border: none; transition: all .18s;
  font-family: 'Montserrat', sans-serif; letter-spacing: .02em; text-decoration: none;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,160,32,.3); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-ghost { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.35); }
.btn-ghost:hover { border-color: rgba(255,255,255,.75); background: rgba(255,255,255,.08); }
.btn-sm { padding: 8px 16px; font-size: .8rem; }

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
#site-header {
  background: var(--navy);
  position: sticky; top: 0; z-index: 200;
  box-shadow: 0 2px 14px rgba(0,0,0,.25);
}

/* Top row */
.site-nav-top {
  max-width: var(--container); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px; height: 68px; gap: 20px;
}
.site-logo { display: flex; align-items: center; gap: 10px; cursor: pointer; flex-shrink: 0; text-decoration: none; }
.site-logo-img { height: 46px; width: auto; max-width: 200px; object-fit: contain; }
.site-logo-text-wrap { display: flex; flex-direction: column; gap: 1px; }
.logo-name { font-family: 'Montserrat', sans-serif; font-size: 1.15rem; font-weight: 700; color: var(--white); line-height: 1.1; }
.logo-tag  { font-size: .6rem; font-weight: 500; color: rgba(255,255,255,.5); letter-spacing: .07em; text-transform: uppercase; }
.nav-top-right { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.nav-search-wrap { position: relative; }
.nav-search-icon { position: absolute; left: 11px; top: 50%; transform: translateY(-50%); color: rgba(255,255,255,.4); pointer-events: none; }
.nav-search {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px; padding: 7px 14px 7px 34px;
  font-size: .825rem; outline: none; width: 160px; color: var(--white);
  transition: width .2s, background .2s, border-color .2s;
}
.nav-search:focus { background: rgba(255,255,255,.16); border-color: var(--gold); width: 220px; }
.nav-search::placeholder { color: rgba(255,255,255,.38); }

/* Nav bar row */
.site-nav-bar { background: rgba(0,0,0,.2); border-top: 1px solid rgba(255,255,255,.07); }
.site-nav-bar-inner { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.nav-list { display: flex; list-style: none; gap: 0; margin: 0; padding: 0; }
.nav-list > li { position: relative; }
.nav-list > li > a {
  display: flex; align-items: center; gap: 4px;
  color: rgba(255,255,255,.78); font-size: .845rem; font-weight: 500;
  padding: 0 16px; height: 44px; transition: all .15s;
  border-bottom: 2px solid transparent; white-space: nowrap;
}
.nav-list > li > a:hover,
.nav-list > li > a.active { color: var(--white); border-bottom-color: var(--gold); }
.sub-arrow { font-size: .65rem; opacity: .6; transition: transform .2s; }
.has-children:hover .sub-arrow { transform: rotate(180deg); }

/* Dropdown */
.sub-menu {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--navy-mid); border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-md); list-style: none; padding: 6px 0;
  min-width: 200px; z-index: 300;
  border-top: 2px solid var(--gold);
}
.has-children:hover > .sub-menu { display: block; }
.sub-menu li a {
  display: block; padding: 10px 18px; color: rgba(255,255,255,.8);
  font-size: .845rem; font-weight: 500; transition: all .13s; white-space: nowrap;
}
.sub-menu li a:hover { color: var(--white); background: rgba(255,255,255,.07); padding-left: 24px; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  align-items: center; gap: 5px; width: 40px; height: 40px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius); cursor: pointer; flex-shrink: 0;
}
.hamburger span { display: block; width: 18px; height: 2px; background: var(--white); border-radius: 2px; transition: all .25s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  position: fixed; top: 0; left: 0; width: 82%; max-width: 320px; height: 100vh;
  background: var(--navy); z-index: 400; transform: translateX(-100%);
  transition: transform .28s ease; overflow-y: auto;
  box-shadow: 4px 0 24px rgba(0,0,0,.4); display: flex; flex-direction: column;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-header {
  padding: 18px 20px; border-bottom: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: space-between; flex-shrink: 0;
}
.mobile-menu-logo { display: flex; align-items: center; gap: 8px; }
.mobile-menu-logo span { font-family: 'Montserrat', sans-serif; font-size: .95rem; font-weight: 700; color: var(--white); }
.mobile-close { background: rgba(255,255,255,.1); border: none; color: var(--white); width: 32px; height: 32px; border-radius: 50%; cursor: pointer; font-size: .95rem; }
.mobile-nav { flex: 1; }
.mobile-nav .nav-list { flex-direction: column; }
.mobile-nav .nav-list > li > a {
  height: auto; padding: 13px 22px; border-bottom: 1px solid rgba(255,255,255,.06);
  border-left: 3px solid transparent; color: rgba(255,255,255,.82);
  font-size: .9rem;
}
.mobile-nav .nav-list > li > a:hover { color: var(--white); border-left-color: var(--gold); background: rgba(255,255,255,.05); }
.mobile-nav .sub-menu { position: static; display: none; box-shadow: none; border-top: none; border-radius: 0; background: rgba(0,0,0,.2); padding: 0; }
.mobile-nav .has-children.mob-open > .sub-menu { display: block; }
.mobile-nav .sub-menu li a { padding: 10px 20px 10px 36px; color: rgba(255,255,255,.65); font-size: .84rem; }
.mobile-menu-footer { padding: 16px 20px; border-top: 1px solid rgba(255,255,255,.1); flex-shrink: 0; }
.mobile-search-wrap { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 9px 12px; }
.mobile-search-wrap svg { color: rgba(255,255,255,.4); flex-shrink: 0; }
#mobile-search { background: none; border: none; outline: none; color: var(--white); font-size: .875rem; flex: 1; width: 100%; }
#mobile-search::placeholder { color: rgba(255,255,255,.35); }
.mobile-backdrop { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 399; }
.mobile-backdrop.show { display: block; }

/* Search overlay */
.search-overlay {
  position: fixed; inset: 0; background: rgba(13,31,60,.96); z-index: 500;
  display: none; padding: 60px 20px; overflow-y: auto;
}
.search-overlay.open { display: block; animation: fadeIn .18s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.search-overlay-inner { max-width: 760px; margin: 0 auto; }
.search-overlay-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.search-overlay-header h2 { font-size: 1.5rem; color: var(--white); }
.search-close { background: none; border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.7); width: 36px; height: 36px; border-radius: 50%; cursor: pointer; font-size: 1rem; }
.search-close:hover { background: rgba(255,255,255,.1); color: var(--white); }
.search-results { display: flex; flex-direction: column; gap: 12px; }
.search-result-item { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 18px 22px; cursor: pointer; transition: all .15s; text-decoration: none; display: block; }
.search-result-item:hover { border-color: var(--gold); background: rgba(255,255,255,.12); }
.search-result-item h3 { font-size: 1rem; color: var(--white); margin-bottom: 4px; }
.search-result-item p { font-size: .825rem; color: rgba(255,255,255,.6); }
.search-empty { text-align: center; color: rgba(255,255,255,.5); padding: 40px; }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  background: var(--navy);
  background-image: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, var(--navy-light) 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner { max-width: var(--container); margin: 0 auto; padding: 80px 32px 90px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(232,160,32,.15); border: 1px solid rgba(232,160,32,.3); color: var(--gold); padding: 5px 14px; border-radius: 20px; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 20px; }
.hero-content h1 { font-size: 3rem; line-height: 1.1; color: var(--white); margin-bottom: 20px; font-weight: 800; }
.hero-content h1 em { font-style: normal; color: var(--gold); }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,.72); line-height: 1.75; margin-bottom: 36px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); box-shadow: var(--shadow-lg); display: flex; align-items: center; justify-content: center; }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual-ph { display: flex; flex-direction: column; align-items: center; justify-content: center; color: rgba(255,255,255,.25); gap: 10px; }
.hero-visual-ph p { font-size: .8rem; }

/* Stats bar */
.hero-stats { background: var(--gold); }
.hero-stats-inner { max-width: var(--container); margin: 0 auto; padding: 0 32px; display: flex; }
.hero-stat { flex: 1; padding: 20px 24px; border-right: 1px solid rgba(13,31,60,.15); }
.hero-stat:last-child { border-right: none; }
.hero-stat-val { font-family: 'Montserrat', sans-serif; font-size: 1.6rem; font-weight: 800; color: var(--navy); line-height: 1; }
.hero-stat-label { font-size: .75rem; font-weight: 600; color: rgba(13,31,60,.65); margin-top: 2px; text-transform: uppercase; letter-spacing: .05em; }

/* Services */
.services-strip { background: var(--white); padding: 56px 0; border-bottom: 1px solid var(--border); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.service-card { border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; background: var(--body-bg); transition: all .18s; }
.service-card:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.service-icon { font-size: 1.8rem; margin-bottom: 14px; }
.service-card h3 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
.service-card p { font-size: .82rem; color: var(--grey-dk); line-height: 1.6; }

/* ══════════════════════════════════════
   CAROUSELS
══════════════════════════════════════ */
.carousel-section { padding: 64px 0; overflow: hidden; }
.carousel-inner { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.carousel-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 36px; gap: 16px; flex-wrap: wrap; }
.carousel-eyebrow { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.carousel-title { font-size: 1.75rem; font-weight: 800; }
.carousel-nav { display: flex; gap: 8px; flex-shrink: 0; }
.carousel-prev, .carousel-next {
  width: 42px; height: 42px; border-radius: 50%; border: 2px solid var(--border);
  background: var(--white); color: var(--navy); cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
  transition: all .18s; flex-shrink: 0;
}
.carousel-prev:hover, .carousel-next:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
/* Dark section arrow overrides applied via inline style on section */
.carousel-track-wrap { overflow: hidden; position: relative; }
.carousel-track { display: flex; gap: 24px; transition: transform .45s cubic-bezier(.25,.46,.45,.94); will-change: transform; }
.carousel-card { flex-shrink: 0; }
.carousel-dots { display: flex; justify-content: center; gap: 6px; margin-top: 24px; }
.carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); border: none; cursor: pointer; transition: all .2s; padding: 0; }
.carousel-dot.active { background: var(--gold); width: 22px; border-radius: 4px; }
.carousel-empty { text-align: center; padding: 40px; color: var(--grey-dk); border: 2px dashed var(--border); border-radius: var(--radius-lg); width: 100%; }

/* Testimonial cards */
.testimonial-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); position: relative; }
.testimonial-card::before { content: '\201C'; font-family: 'Montserrat', sans-serif; font-size: 4rem; color: var(--gold); line-height: .8; position: absolute; top: 16px; right: 20px; opacity: .25; }
.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { font-size: .925rem; line-height: 1.75; color: var(--grey-dk); margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gold-bg); border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .9rem; color: var(--navy); flex-shrink: 0; overflow: hidden; }
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name { font-weight: 700; font-size: .875rem; color: var(--navy); }
.testimonial-role { font-size: .775rem; color: var(--grey-dk); }

/* Client cards */
.client-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px 16px; display: flex; align-items: center; justify-content: center; min-height: 90px; transition: all .2s; }
.client-card:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.client-card img { max-height: 50px; max-width: 100%; object-fit: contain; filter: grayscale(1); opacity: .6; transition: all .2s; }
.client-card:hover img { filter: grayscale(0); opacity: 1; }
.client-name { font-weight: 700; font-size: .8rem; color: var(--grey-dk); text-align: center; }

/* Portfolio cards */
.portfolio-card { border-radius: var(--radius-lg); overflow: hidden; background: var(--navy-mid); box-shadow: var(--shadow-md); transition: transform .2s; }
.portfolio-card:hover { transform: translateY(-4px); }
.portfolio-link { text-decoration: none; color: inherit; display: block; }
.portfolio-img { height: 200px; overflow: hidden; position: relative; background: var(--navy); }
.portfolio-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.portfolio-card:hover .portfolio-img img { transform: scale(1.05); }
.portfolio-img-ph { display: flex; align-items: center; justify-content: center; height: 100%; font-size: 2rem; color: rgba(255,255,255,.2); }
.portfolio-tag { position: absolute; bottom: 10px; left: 10px; background: var(--gold); color: var(--navy); padding: 3px 10px; border-radius: 20px; font-size: .65rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.portfolio-body { padding: 20px; }
.portfolio-body h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 6px; line-height: 1.3; }
.portfolio-body p { font-size: .82rem; color: rgba(255,255,255,.6); line-height: 1.6; margin-bottom: 10px; }
.portfolio-link-label { font-size: .78rem; color: var(--gold); font-weight: 700; }

/* General carousel */
.general-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.general-card img { width: 100%; height: 180px; object-fit: cover; }
.general-body { padding: 18px; }
.general-body h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.general-body p { font-size: .82rem; color: var(--grey-dk); line-height: 1.6; margin-bottom: 10px; }
.general-sub { color: var(--gold) !important; font-weight: 600; font-size: .8rem !important; }

/* ══════════════════════════════════════
   PAGES GRID
══════════════════════════════════════ */
.pages-section { padding: 56px 0 80px; }
.section-header { display: flex; align-items: baseline; gap: 16px; margin-bottom: 20px; }
.section-header h2 { font-size: 1.75rem; font-weight: 800; color: var(--navy); }
.section-count { font-size: .825rem; color: var(--grey-dk); }
.cat-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.cat-btn { background: var(--white); border: 1.5px solid var(--border); color: var(--grey-dk); padding: 6px 16px; border-radius: 20px; font-size: .8rem; font-weight: 600; cursor: pointer; transition: all .15s; }
.cat-btn:hover, .cat-btn.active { background: var(--navy); border-color: var(--navy); color: var(--white); }
.pages-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; }
.page-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all .2s; box-shadow: var(--shadow-sm); text-decoration: none; color: inherit; display: flex; flex-direction: column; }
.page-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.page-card-thumb { height: 180px; background: var(--grey-lt); overflow: hidden; display: flex; align-items: center; justify-content: center; position: relative; flex-shrink: 0; }
.page-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.page-card:hover .page-card-thumb img { transform: scale(1.04); }
.page-card-thumb-ph { color: var(--grey-mid); font-size: .75rem; opacity: .6; }
.page-card-tag { position: absolute; top: 10px; left: 10px; background: var(--navy); color: var(--white); padding: 3px 10px; border-radius: 20px; font-size: .65rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.page-card-body { padding: 18px 20px 14px; flex: 1; }
.page-card-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 7px; line-height: 1.35; }
.page-card-body p { font-size: .825rem; color: var(--grey-dk); line-height: 1.6; }
.page-card-footer { padding: 10px 20px; border-top: 1px solid var(--grey-lt); display: flex; justify-content: space-between; align-items: center; flex-shrink: 0; }
.page-card-date { font-size: .72rem; color: var(--grey-dk); }
.page-card-read { font-size: .75rem; color: var(--gold); font-weight: 700; }

/* CTA Banner */
.cta-banner { background: var(--navy); padding: 64px 32px; text-align: center; }
.cta-banner h2 { font-size: 2rem; font-weight: 800; color: var(--white); margin-bottom: 14px; }
.cta-banner p { font-size: 1rem; color: rgba(255,255,255,.7); margin-bottom: 32px; line-height: 1.7; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ══════════════════════════════════════
   INNER PAGES
══════════════════════════════════════ */
.inner-page-hero { min-height: 340px; background-size: cover; background-position: center; position: relative; }
.inner-page-hero-overlay { position: absolute; inset: 0; background: rgba(13,31,60,.65); display: flex; align-items: flex-end; padding-bottom: 48px; }
.inner-page-hero-overlay .container { width: 100%; }
.inner-page-hero-overlay h1 { font-size: 2.5rem; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.inner-page-header { background: var(--navy); padding: 56px 0 48px; }
.inner-page-header h1 { font-size: 2.5rem; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.sp-tag { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.page-meta { display: flex; align-items: center; gap: 12px; font-size: .78rem; color: rgba(255,255,255,.6); }
.meta-dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,.3); }
.inner-page-body { padding: 56px 0 80px; }

/* Page sections (from block renderer) */
.page-section { width: 100%; }
.section-container { max-width: var(--container); margin: 0 auto; padding: 0 32px; display: flex; gap: 32px; flex-wrap: wrap; }
.section-container.cols-1 .section-col { flex: 1; min-width: 0; }
.section-container.cols-2 .section-col { flex: 1; min-width: min(300px, 100%); }
.section-container.cols-3 .section-col { flex: 1; min-width: min(240px, 100%); }
.section-container.cols-4 .section-col { flex: 1; min-width: min(200px, 100%); }
.section-col { min-width: 0; }

/* Content blocks */
.block-heading { margin: 24px 0 12px; line-height: 1.2; }
.block-heading:first-child { margin-top: 0; }
.block-text { font-size: 1.05rem; line-height: 1.82; color: #2a2a3a; margin-bottom: 16px; }
.block-text p { margin-bottom: 14px; }
.block-text a { color: var(--navy-light); text-decoration: underline; }
.block-image { margin: 22px 0; }
.block-image figcaption { font-size: .78rem; color: var(--grey-dk); text-align: center; margin-top: 6px; font-style: italic; }
.block-image img { border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.block-button-wrap { margin: 16px 0; }
.block-video { margin: 22px 0; }
.video-wrap { position: relative; padding-bottom: 56.25%; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.block-divider { border: none; border-top: 1px solid var(--border); margin: 32px 0; }
.block-spacer { display: block; }
.block-quote { border-left: 4px solid var(--gold); padding: 6px 22px; margin: 24px 0; background: var(--grey-lt); border-radius: 0 var(--radius) var(--radius) 0; }
.block-quote p { font-style: italic; color: var(--grey-dk); font-size: 1.05rem; line-height: 1.75; }
.block-quote cite { display: block; font-size: .8rem; color: var(--navy); font-weight: 600; margin-top: 8px; font-style: normal; }
.block-callout { display: flex; gap: 12px; align-items: flex-start; background: var(--gold-bg); border: 1px solid rgba(232,160,32,.25); border-radius: var(--radius); padding: 16px 18px; margin: 20px 0; }
.callout-icon { font-size: 1.2rem; flex-shrink: 0; }
.block-callout p { font-size: .95rem; line-height: 1.65; margin: 0; }
.block-code { background: var(--navy); color: #c8e6a0; padding: 20px 24px; border-radius: var(--radius); font-family: 'JetBrains Mono', monospace; font-size: .875rem; overflow-x: auto; margin: 22px 0; line-height: 1.65; }
.block-map { margin: 22px 0; }
.block-html { margin: 16px 0; }

/* Contact form */
.block-contact-form { max-width: 600px; }
.cms-form { display: flex; flex-direction: column; gap: 18px; }
.form-title { font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.form-desc { font-size: .9rem; color: var(--grey-dk); line-height: 1.6; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .825rem; font-weight: 600; color: var(--navy); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 11px 14px; font-size: .925rem; outline: none;
  transition: border-color .15s; background: var(--white); color: var(--ink);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }
.required { color: #e05050; }
.checkbox-label, .radio-label { display: flex; align-items: center; gap: 8px; font-size: .875rem; cursor: pointer; }
.checkbox-label input, .radio-label input { width: 16px; height: 16px; accent-color: var(--gold); cursor: pointer; }
.form-submit { align-self: flex-start; }
.form-messages { min-height: 20px; font-size: .875rem; padding: 4px 0; }
.form-messages.success { color: #2e7d52; }
.form-messages.error { color: #b03030; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
#site-footer { background: var(--navy); color: rgba(255,255,255,.65); padding: 48px 0 24px; margin-top: 0; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-logo { display: flex; align-items: center; gap: 9px; }
.footer-logo-text { font-family: 'Montserrat', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--white); }
.footer-desc { font-size: .825rem; line-height: 1.7; color: rgba(255,255,255,.55); max-width: 280px; }
.footer-col h4 { font-size: .75rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 14px; }
.footer-col a { display: block; font-size: .825rem; color: rgba(255,255,255,.65); margin-bottom: 9px; cursor: pointer; transition: color .13s; text-decoration: none; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; font-size: .78rem; color: rgba(255,255,255,.4); }

/* ══════════════════════════════════════
   ERROR 404
══════════════════════════════════════ */
.error-404 { padding: 100px 32px; text-align: center; }
.error-404 h1 { font-size: 5rem; font-weight: 800; color: var(--navy); margin-bottom: 16px; }
.error-404 p { font-size: 1.1rem; color: var(--grey-dk); margin-bottom: 32px; }

/* ══════════════════════════════════════
   TOAST
══════════════════════════════════════ */
.toast { position: fixed; bottom: 20px; right: 20px; background: var(--navy); color: var(--white); border-left: 3px solid var(--gold); padding: 12px 18px; border-radius: var(--radius); font-size: .84rem; font-weight: 500; transform: translateY(60px); opacity: 0; transition: all .25s; z-index: 9999; box-shadow: var(--shadow-md); max-width: 320px; }
.toast.show { transform: translateY(0); opacity: 1; }
.toast.error { border-left-color: #e05050; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .testimonial-card, .portfolio-card { min-width: calc(50% - 12px); }
  .client-card { min-width: calc(25% - 18px); }
}
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; padding: 60px 24px 56px; }
  .hero-visual { display: none; }
  .hero-content h1 { font-size: 2.3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hero-stats-inner { flex-wrap: wrap; }
  .hero-stat { min-width: 50%; }
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-search-wrap { display: none; }
  .site-nav-bar { display: none; }
  .testimonial-card, .portfolio-card { min-width: 100%; }
  .client-card { min-width: calc(50% - 12px); }
}
@media (max-width: 640px) {
  .site-nav-top { padding: 0 16px; height: 60px; }
  .hero-inner { padding: 44px 16px 48px; }
  .hero-content h1 { font-size: 1.9rem; }
  .hero-stats-inner { flex-direction: column; }
  .hero-stat { border-right: none; border-bottom: 1px solid rgba(13,31,60,.15); }
  .container { padding: 0 16px; }
  .carousel-inner { padding: 0 16px; }
  .pages-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .inner-page-hero-overlay h1, .inner-page-header h1 { font-size: 1.9rem; }
  .client-card { min-width: calc(50% - 12px); }
}

/* ══════════════════════════════════════
   BLOG STYLES (Batch 4)
══════════════════════════════════════ */

/* Blog layout */
.blog-main { padding: 60px 0; background: #f4f6fa; min-height: 60vh; }
.blog-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.blog-hero { text-align: center; margin-bottom: 48px; }
.blog-hero-title { font-size: 2.5rem; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.blog-hero-desc { font-size: 1.1rem; color: #6b7280; max-width: 600px; margin: 0 auto; }
.archive-type-label { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.archive-count { font-size: .875rem; color: #9ca3af; margin-top: 8px; }
.archive-author-avatar { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; margin: 0 auto 16px; display: block; }

/* Blog layout grid */
.blog-layout { display: grid; grid-template-columns: 1fr 280px; gap: 40px; align-items: start; }

/* Blog cards */
.blog-posts { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.blog-card { background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 1px 4px rgba(0,0,0,.08); transition: all .2s; }
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.12); }
.blog-card-img-wrap { display: block; overflow: hidden; aspect-ratio: 16/9; }
.blog-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.blog-card:hover .blog-card-img { transform: scale(1.04); }
.blog-card-body { padding: 20px; }
.blog-card-cats { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 8px; }
.blog-cat-link { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--gold); text-decoration: none; }
.blog-cat-link:hover { color: var(--navy); }
.blog-card-title { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.35; }
.blog-card-title a { color: inherit; text-decoration: none; }
.blog-card-title a:hover { color: var(--gold); }
.blog-card-excerpt { font-size: .875rem; color: #6b7280; line-height: 1.6; margin-bottom: 14px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card-meta { display: flex; align-items: center; gap: 10px; font-size: .78rem; color: #9ca3af; flex-wrap: wrap; }
.blog-meta-author a { color: #6b7280; text-decoration: none; font-weight: 600; }
.blog-meta-author a:hover { color: var(--navy); }
.blog-meta-date::before { content: '·'; margin-right: 10px; }
.blog-meta-read::before { content: '·'; margin-right: 10px; }
.blog-empty { text-align: center; padding: 60px; color: #9ca3af; }

/* Sidebar */
.blog-sidebar { position: sticky; top: 24px; }
.post-sidebar { position: sticky; top: 24px; }
.blog-widget { background: #fff; border-radius: 10px; padding: 20px; margin-bottom: 20px; box-shadow: 0 1px 4px rgba(0,0,0,.06); }
.blog-widget-title { font-size: .85rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--navy); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--gold); }
.blog-cat-list { list-style: none; padding: 0; margin: 0; }
.blog-cat-list li { display: flex; align-items: center; justify-content: space-between; padding: 7px 0; border-bottom: 1px solid #f0f0f5; font-size: .875rem; }
.blog-cat-list li:last-child { border-bottom: none; }
.blog-cat-list a { color: #374151; text-decoration: none; font-weight: 500; }
.blog-cat-list a:hover { color: var(--gold); }
.blog-cat-count { background: #f3f4f6; color: #6b7280; border-radius: 20px; padding: 1px 8px; font-size: .72rem; font-weight: 600; }
.blog-tag-cloud { display: flex; flex-wrap: wrap; gap: 6px; }
.blog-tag { background: #f3f4f6; color: #374151; padding: 4px 12px; border-radius: 20px; font-size: .78rem; text-decoration: none; font-weight: 500; transition: all .15s; }
.blog-tag:hover { background: var(--gold); color: var(--navy); }

/* Sidebar post mini cards */
.sidebar-post { display: flex; gap: 10px; margin-bottom: 12px; align-items: flex-start; }
.sidebar-post:last-child { margin-bottom: 0; }
.sidebar-post-img { width: 64px; height: 48px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.sidebar-post-title { font-size: .82rem; font-weight: 600; color: var(--navy); text-decoration: none; display: block; line-height: 1.35; }
.sidebar-post-title:hover { color: var(--gold); }
.sidebar-post-date { font-size: .72rem; color: #9ca3af; margin-top: 3px; }

/* Pagination */
.blog-pagination { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 40px; grid-column: 1/-1; }
.blog-page-btn { background: #fff; border: 1px solid #e5e7eb; color: var(--navy); padding: 10px 20px; border-radius: 6px; text-decoration: none; font-weight: 600; font-size: .875rem; transition: all .15s; }
.blog-page-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.blog-page-info { font-size: .875rem; color: #6b7280; }

/* Single post */
.post-main { padding: 60px 0; background: #f4f6fa; }
.post-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.post-layout { display: grid; grid-template-columns: 1fr 280px; gap: 40px; align-items: start; }
.post-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: #9ca3af; margin-bottom: 32px; flex-wrap: wrap; }
.post-breadcrumb a { color: #6b7280; text-decoration: none; }
.post-breadcrumb a:hover { color: var(--navy); }
.post-article { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 1px 4px rgba(0,0,0,.06); }
.post-header { padding: 40px 40px 0; }
.post-cats { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.post-title { font-size: 2.2rem; font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 20px; }
.post-meta { margin-bottom: 24px; }
.post-meta-author { display: flex; align-items: center; gap: 12px; }
.post-author-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.post-author-initials { background: var(--gold); color: var(--navy); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem; }
.post-author-name { font-weight: 700; font-size: .9rem; color: var(--navy); }
.post-author-name a { color: inherit; text-decoration: none; }
.post-author-name a:hover { color: var(--gold); }
.post-meta-details { font-size: .8rem; color: #9ca3af; margin-top: 2px; }
.post-meta-details span { margin-left: 6px; }
.post-featured-img { width: 100%; margin: 24px 0 0; }
.post-featured-img img { width: 100%; max-height: 480px; object-fit: cover; display: block; }
.post-content { padding: 36px 40px; font-size: 1.05rem; line-height: 1.8; color: #374151; }
.post-content h2 { font-size: 1.6rem; font-weight: 700; color: var(--navy); margin: 36px 0 14px; }
.post-content h3 { font-size: 1.3rem; font-weight: 700; color: var(--navy); margin: 28px 0 12px; }
.post-content p { margin-bottom: 20px; }
.post-content img { max-width: 100%; border-radius: 8px; margin: 20px 0; }
.post-content a { color: var(--gold); }
.post-content blockquote { border-left: 4px solid var(--gold); padding: 10px 20px; margin: 24px 0; background: #fef9ee; border-radius: 0 8px 8px 0; }
.post-content ul, .post-content ol { padding-left: 24px; margin-bottom: 20px; }
.post-content li { margin-bottom: 6px; }
.post-tags { padding: 0 40px 24px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.post-tags-label { font-size: .82rem; font-weight: 700; color: #6b7280; }
.post-author-bio { margin: 0 40px 32px; padding: 20px; background: #f9fafb; border-radius: 10px; display: flex; gap: 16px; align-items: flex-start; }
.post-bio-avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.post-bio-name { font-weight: 700; font-size: .95rem; color: var(--navy); margin-bottom: 6px; }
.post-bio-text { font-size: .875rem; color: #6b7280; line-height: 1.6; margin-bottom: 8px; }
.post-bio-links { display: flex; gap: 10px; }
.post-bio-link { font-size: .78rem; color: var(--gold); font-weight: 600; text-decoration: none; }
.post-share { padding: 20px 40px 36px; display: flex; align-items: center; gap: 10px; border-top: 1px solid #f0f0f5; }
.post-share-label { font-size: .82rem; font-weight: 700; color: #6b7280; }
.share-btn { padding: 7px 16px; border-radius: 6px; font-size: .78rem; font-weight: 700; text-decoration: none; transition: all .15s; }
.share-twitter  { background: #1da1f2; color: #fff; }
.share-linkedin { background: #0077b5; color: #fff; }
.share-facebook { background: #1877f2; color: #fff; }
.share-btn:hover { opacity: .85; }

/* Related posts */
.related-posts { margin-top: 48px; }
.related-posts-title { font-size: 1.4rem; font-weight: 800; color: var(--navy); margin-bottom: 24px; }
.related-posts-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

/* Responsive */
@media (max-width: 900px) {
  .blog-layout, .post-layout { grid-template-columns: 1fr; }
  .blog-sidebar, .post-sidebar { position: static; }
  .post-header, .post-content, .post-tags, .post-author-bio, .post-share { padding-left: 24px; padding-right: 24px; }
  .post-title { font-size: 1.7rem; }
  .related-posts-grid { grid-template-columns: 1fr 1fr; }
  .blog-posts { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .related-posts-grid { grid-template-columns: 1fr; }
  .blog-hero-title { font-size: 1.8rem; }
  .post-header, .post-content, .post-tags, .post-author-bio, .post-share { padding-left: 16px; padding-right: 16px; }
}

/* ══════════════════════════════════════
   BATCH 7 — MARKETING STYLES
══════════════════════════════════════ */

/* Newsletter footer widget */
.footer-newsletter {
  grid-column: 1/-1;
  background: rgba(255,255,255,.04);
  border-radius: 10px;
  padding: 28px 32px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-newsletter-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
}
.footer-newsletter-sub {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  margin: 0;
}
.footer-newsletter-form {
  display: flex;
  gap: 8px;
  flex: 1;
  min-width: 260px;
  flex-wrap: wrap;
}
.footer-newsletter-input {
  flex: 1;
  padding: 11px 14px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: .875rem;
  outline: none;
  min-width: 180px;
}
.footer-newsletter-input::placeholder { color: rgba(255,255,255,.4); }
.footer-newsletter-input:focus { border-color: var(--gold); }
.footer-newsletter-btn {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 11px 22px;
  border-radius: 6px;
  font-weight: 700;
  font-size: .875rem;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  white-space: nowrap;
  transition: background .15s;
}
.footer-newsletter-btn:hover { background: var(--gold-lt); }
.footer-newsletter-btn:disabled { opacity: .6; cursor: not-allowed; }
.footer-newsletter-msg {
  font-size: .82rem;
  margin-top: 8px;
  font-weight: 600;
}

@media (max-width: 640px) {
  .footer-newsletter { flex-direction: column; padding: 20px; }
  .footer-newsletter-form { width: 100%; }
}

/* ══════════════════════════════════════
   BATCH 8 — SHOP STYLES
══════════════════════════════════════ */
.shop-main      { padding: 60px 0; background: #f4f6fa; min-height: 60vh; }
.shop-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.shop-layout    { display: grid; grid-template-columns: 260px 1fr; gap: 32px; align-items: start; }
.shop-grid      { display: grid; grid-template-columns: repeat(auto-fill,minmax(240px,1fr)); gap: 20px; }

/* Product card */
.shop-card { background:#fff; border-radius:10px; overflow:hidden; box-shadow:0 1px 4px rgba(0,0,0,.08); transition:all .2s; display:flex; flex-direction:column; }
.shop-card:hover { transform:translateY(-3px); box-shadow:0 8px 24px rgba(0,0,0,.12); }
.shop-card-img-wrap { display:block; aspect-ratio:4/3; overflow:hidden; background:#f4f6fa; position:relative; }
.shop-card-img  { width:100%; height:100%; object-fit:cover; transition:transform .3s; display:block; }
.shop-card:hover .shop-card-img { transform:scale(1.04); }
.shop-card-placeholder { display:flex; align-items:center; justify-content:center; height:100%; font-size:3rem; color:#9ca3af; }
.shop-badge-sale { position:absolute; top:10px; left:10px; background:#e8a020; color:#0d1f3c; font-size:.68rem; font-weight:800; padding:3px 9px; border-radius:20px; text-transform:uppercase; letter-spacing:.06em; }
.shop-badge-feat { position:absolute; top:10px; right:10px; background:#0d1f3c; color:#e8a020; font-size:.68rem; font-weight:700; padding:3px 9px; border-radius:20px; }
.shop-card-body { padding:16px; flex:1; display:flex; flex-direction:column; }
.shop-card-name { font-size:1rem; font-weight:700; color:var(--navy); margin:6px 0 6px; line-height:1.3; }
.shop-card-name a { color:inherit; text-decoration:none; }
.shop-card-name a:hover { color:var(--gold); }
.shop-card-desc { font-size:.82rem; color:#6b7280; line-height:1.55; margin-bottom:12px; flex:1; display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; }
.shop-card-footer { display:flex; align-items:center; justify-content:space-between; gap:10px; margin-top:auto; }
.shop-price { display:flex; flex-direction:column; }
.shop-price-main { font-size:1.15rem; font-weight:800; color:var(--navy); }
.shop-price-sale { font-size:1.15rem; font-weight:800; color:var(--gold); }
.shop-price-orig { font-size:.8rem; color:#9ca3af; text-decoration:line-through; }
.shop-add-btn    { padding:8px 14px; font-size:.8rem; flex-shrink:0; }
.shop-out-of-stock { font-size:.78rem; color:#e57373; font-weight:600; }

/* Single product */
.shop-product-layout { display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:start; }
.shop-product-images { display:flex; flex-direction:column; gap:10px; }
.shop-product-main-img { width:100%; border-radius:10px; object-fit:cover; aspect-ratio:4/3; }
.shop-product-thumbs { display:flex; gap:8px; }
.shop-product-thumb { width:70px; height:70px; object-fit:cover; border-radius:6px; cursor:pointer; border:2px solid transparent; transition:border-color .15s; }
.shop-product-thumb.active { border-color:var(--gold); }
.shop-product-info h1 { font-size:1.8rem; font-weight:800; color:var(--navy); margin-bottom:10px; }
.shop-product-price { margin-bottom:20px; }
.shop-product-price-main { font-size:2rem; font-weight:800; color:var(--navy); }
.shop-product-price-sale { font-size:2rem; font-weight:800; color:var(--gold); }
.shop-product-price-orig { font-size:1rem; color:#9ca3af; text-decoration:line-through; margin-left:8px; }
.shop-product-desc { color:#374151; line-height:1.7; margin-bottom:20px; }
.shop-product-features { list-style:none; padding:0; margin-bottom:24px; }
.shop-product-features li { padding:5px 0; color:#374151; font-size:.9rem; }
.shop-product-features li::before { content:'✓ '; color:var(--gold); font-weight:700; }
.shop-qty-wrap { display:flex; align-items:center; gap:12px; margin-bottom:16px; }
.shop-qty-btn { width:36px; height:36px; border:1px solid #e5e7eb; background:none; border-radius:6px; cursor:pointer; font-size:1.2rem; display:flex; align-items:center; justify-content:center; transition:background .13s; }
.shop-qty-btn:hover { background:#f4f6fa; }
.shop-qty-input { width:50px; text-align:center; font-size:1rem; font-weight:700; border:1px solid #e5e7eb; border-radius:6px; padding:8px; }
.shop-add-to-basket { padding:14px 32px; font-size:1rem; display:inline-flex; align-items:center; gap:8px; }

@media (max-width:900px) {
  .shop-layout          { grid-template-columns:1fr; }
  .shop-product-layout  { grid-template-columns:1fr; }
}
@media (max-width:600px) {
  .shop-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width:400px) {
  .shop-grid { grid-template-columns:1fr; }
}
