/* ============================================================
   Hamoom — Fashion & Beauty | Main Stylesheet
   Fonts: Playfair Display (headings) · Jost (body)
   Palette: Gold #c9a14a · Blush #f3dede · Cream #faf6f1 · Charcoal #2e2a26
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --gold:    #c9a14a;
  --gold-dk: #a07c30;
  --blush:   #f3dede;
  --cream:   #faf6f1;
  --white:   #ffffff;
  --charcoal:#2e2a26;
  --mid:     #6b6460;
  --border:  #e8e1d9;
  --wa-green:#25d366;
  --radius:  6px;
  --radius-lg:12px;
  --shadow:  0 2px 16px rgba(0,0,0,.08);
  --shadow-hover: 0 6px 28px rgba(0,0,0,.13);
  --transition: .22s ease;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Jost', system-ui, -apple-system, sans-serif;
  --max-w: 1280px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 600; line-height: 1.25; color: var(--charcoal); }
h1 { font-size: clamp(1.6rem, 4vw, 2.6rem); }
h2 { font-size: clamp(1.3rem, 3vw, 2rem); }
h3 { font-size: clamp(1rem, 2.5vw, 1.3rem); }

/* ---------- Layout helpers ---------- */
.container { width: min(100%, var(--max-w)); margin-inline: auto; padding-inline: clamp(16px, 4vw, 48px); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--radius);
  font-family: var(--font-sans); font-size: .9rem; font-weight: 500; letter-spacing: .06em;
  text-transform: uppercase; transition: var(--transition); cursor: pointer;
}
.btn-primary  { background: var(--charcoal); color: var(--white); }
.btn-primary:hover { background: var(--gold); }
.btn-outline  { background: transparent; color: var(--charcoal); border: 1.5px solid var(--charcoal); }
.btn-outline:hover { background: var(--charcoal); color: var(--white); }
.btn-whatsapp { background: var(--wa-green); color: var(--white); }
.btn-whatsapp:hover { background: #1ebe5d; }
.btn-full { width: 100%; }
.btn-lg   { padding: 16px 36px; font-size: 1rem; }
.btn-sm   { padding: 8px 18px; font-size: .82rem; }
.btn[disabled] { opacity: .45; pointer-events: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: var(--white); border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0,0,0,.05);
}
.header-inner {
  display: flex; align-items: center; gap: 24px;
  height: 68px;
}
.site-logo img { height: 44px; width: auto; }
.main-nav { flex: 1; }
.main-nav > ul { display: flex; gap: 4px; }
.main-nav a {
  display: block; padding: 8px 14px; font-size: .88rem;
  font-weight: 500; letter-spacing: .04em; border-radius: var(--radius);
  transition: var(--transition);
}
.main-nav a:hover, .main-nav .active > a { color: var(--gold); }
.has-dropdown { position: relative; }
.dropdown {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 200px; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 8px 0; z-index: 800;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown li a { padding: 9px 20px; font-size: .87rem; }
.dropdown li a:hover { background: var(--cream); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.header-search { display: flex; align-items: center; border: 1.5px solid var(--border); border-radius: 50px; overflow: hidden; }
.header-search input { border: none; outline: none; padding: 7px 14px; font-size: .87rem; font-family: inherit; width: 180px; background: transparent; }
.header-search button { padding: 7px 12px; background: transparent; border: none; }

.cart-icon { position: relative; font-size: 1.1rem; }
.cart-count {
  position: absolute; top: -8px; right: -10px;
  background: var(--gold); color: var(--white); border-radius: 50%;
  font-size: .68rem; font-weight: 700; width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center;
}

.mobile-nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.mobile-nav-toggle span { display: block; width: 22px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: var(--transition); }

/* ---------- Hero Slider ---------- */
.hero-slider { position: relative; height: clamp(380px, 60vh, 680px); overflow: hidden; }
.hero-slide {
  position: absolute; inset: 0; display: none;
  background-size: cover; background-position: center;
  align-items: center; justify-content: center;
}
.hero-slide.active { display: flex; }
.hero-slide::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom right, rgba(0,0,0,.42), rgba(0,0,0,.15)); }
.hero-content { position: relative; z-index: 2; text-align: center; color: var(--white); max-width: 640px; padding: 24px; }
.hero-content h1 { font-size: clamp(1.8rem, 5vw, 3.4rem); color: var(--white); margin-bottom: 16px; }
.hero-content p  { font-size: clamp(.95rem, 2vw, 1.15rem); margin-bottom: 28px; opacity: .9; }
.hero-placeholder .hero-content { background: rgba(0,0,0,.38); border-radius: var(--radius-lg); padding: 40px; }

/* ---------- Section titles ---------- */
.section-title {
  text-align: center; margin-bottom: 40px;
  position: relative; padding-bottom: 14px;
}
.section-title::after {
  content: ''; display: block; width: 52px; height: 2px;
  background: var(--gold); margin: 12px auto 0;
}
.product-section { padding-block: 64px; }
.alt-bg { background: var(--cream); }

/* ---------- Category Grid (homepage) ---------- */
.category-grid-section { padding-block: 64px; }
.category-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.category-card {
  display: block; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); transition: var(--transition); text-align: center;
}
.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.category-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.category-card span { display: block; padding: 14px; font-family: var(--font-serif); font-size: 1rem; }

/* ---------- Product Grid ---------- */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 28px; }
.product-card { display: block; border-radius: var(--radius-lg); overflow: hidden; background: var(--white); box-shadow: var(--shadow); transition: var(--transition); }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.product-card-img { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.product-card:hover .product-card-img img { transform: scale(1.04); }
.badge { position: absolute; top: 10px; left: 10px; padding: 4px 10px; font-size: .72rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; border-radius: 50px; }
.badge-new       { background: var(--charcoal); color: var(--white); }
.badge-bestseller{ background: var(--gold); color: var(--white); }
.badge-sold-out  { background: var(--blush); color: var(--charcoal); }
.product-card-info { padding: 14px 16px 18px; }
.product-card-info h3 { font-size: .95rem; margin-bottom: 6px; }
.price .sale-price { color: var(--gold); font-weight: 600; }
.strikethrough { text-decoration: line-through; color: var(--mid); margin-left: 6px; }

/* ---------- Product Detail ---------- */
.product-page { padding-block: 48px; }
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; margin-block: 32px; }
.gallery-main img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: var(--radius-lg); }
.gallery-thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.gallery-thumb { width: 72px; height: 90px; object-fit: cover; border-radius: var(--radius); cursor: pointer; border: 2px solid transparent; transition: border-color var(--transition); }
.gallery-thumb:hover { border-color: var(--gold); }
.product-info h1 { margin-bottom: 8px; }
.sku { color: var(--mid); font-size: .82rem; margin-bottom: 16px; }
.price-block { margin-bottom: 12px; }
.current-price { font-family: var(--font-serif); font-size: 1.6rem; color: var(--charcoal); }
.stock-status { font-size: .85rem; font-weight: 600; margin-bottom: 20px; letter-spacing: .05em; }
.in-stock  { color: #2a8a4a; }
.out-of-stock { color: #c0392b; }
.short-description { color: var(--mid); margin-bottom: 24px; line-height: 1.8; }
.variant-group { margin-bottom: 20px; }
.variant-label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: 8px; }
.variant-options { display: flex; gap: 8px; flex-wrap: wrap; }
.variant-option-pill input[type=radio] { display: none; }
.variant-option-pill span {
  display: block; padding: 7px 16px; border: 1.5px solid var(--border); border-radius: 50px;
  font-size: .85rem; cursor: pointer; transition: var(--transition);
}
.variant-option-pill input:checked + span { border-color: var(--charcoal); background: var(--charcoal); color: var(--white); }
.variant-option-pill input:disabled + span { opacity: .45; cursor: not-allowed; text-decoration: line-through; }
.qty-group { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.qty-group label { font-weight: 600; font-size: .88rem; }
.qty-group input { width: 72px; padding: 9px 12px; border: 1.5px solid var(--border); border-radius: var(--radius); text-align: center; font-size: .95rem; }
.product-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }
.product-whatsapp-btn { flex: 1; }
.cod-note { font-size: .8rem; color: var(--mid); padding: 12px; background: var(--cream); border-radius: var(--radius); border-left: 3px solid var(--gold); }
.product-full-description { margin-top: 48px; padding-top: 40px; border-top: 1px solid var(--border); }
.product-full-description h2 { margin-bottom: 20px; }

/* ---------- Share Widget ---------- */
.share-widget { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--border); }
.share-label { font-size: .82rem; font-weight: 600; color: var(--mid); margin-right: 4px; }
.share-btn {
  padding: 7px 14px; font-size: .8rem; font-weight: 500;
  border-radius: 50px; border: 1.5px solid var(--border); cursor: pointer;
  transition: var(--transition); background: transparent; color: var(--charcoal);
}
.share-btn:hover { border-color: var(--gold); color: var(--gold); }
.share-btn.share-whatsapp:hover  { background: var(--wa-green); color: #fff; border-color: var(--wa-green); }
.share-btn.share-facebook:hover  { background: #1877f2; color: #fff; border-color: #1877f2; }
.share-btn.share-telegram:hover  { background: #2CA5E0; color: #fff; border-color: #2CA5E0; }
.share-btn.share-pinterest:hover { background: #E60023; color: #fff; border-color: #E60023; }
.share-btn.share-copy.copied    { background: #2a8a4a; color: #fff; border-color: #2a8a4a; }

/* ---------- Subcategory pills ---------- */
.subcategory-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.pill { padding: 8px 20px; border: 1.5px solid var(--border); border-radius: 50px; font-size: .87rem; transition: var(--transition); }
.pill:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- Pagination ---------- */
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 48px; flex-wrap: wrap; }
.page-link { padding: 8px 16px; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: .88rem; transition: var(--transition); }
.page-link:hover, .page-link.active { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }

/* ---------- Breadcrumb ---------- */
.breadcrumb { font-size: .82rem; color: var(--mid); margin-bottom: 24px; }
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }

/* ---------- Cart ---------- */
.cart-page { padding-block: 56px; }
.page-heading { margin-bottom: 36px; }
.cart-table { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 16px; }
.cart-table-head, .cart-row {
  display: grid; grid-template-columns: 2fr 1fr .8fr .6fr .8fr 40px;
  align-items: center; gap: 16px; padding: 14px 20px;
}
.cart-table-head { background: var(--cream); font-weight: 600; font-size: .84rem; }
.cart-row { border-top: 1px solid var(--border); }
.cart-product { display: flex; align-items: center; gap: 14px; }
.cart-product img { border-radius: var(--radius); width: 64px; height: 64px; object-fit: cover; }
.cart-product a { font-weight: 500; }
.cart-remove button { color: var(--mid); font-size: 1rem; padding: 4px; }
.cart-remove button:hover { color: #c0392b; }
.cart-qty input { width: 56px; padding: 6px; border: 1px solid var(--border); border-radius: var(--radius); text-align: center; }
.cart-summary { max-width: 380px; margin-left: auto; margin-top: 32px; background: var(--cream); padding: 28px; border-radius: var(--radius-lg); }
.cart-subtotal { display: flex; justify-content: space-between; font-size: 1.1rem; margin-bottom: 16px; }
.cart-summary .cod-note { margin-bottom: 24px; }
.cart-summary .btn { margin-top: 10px; }
.empty-cart { text-align: center; padding: 80px 20px; }
.empty-cart p { font-size: 1.1rem; margin-bottom: 24px; }

/* ---------- Checkout ---------- */
.checkout-page { padding-block: 56px; }
.checkout-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; margin-top: 32px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: 7px; }
.form-group input {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--border);
  border-radius: var(--radius); font-size: .95rem; font-family: inherit;
  transition: border-color var(--transition);
}
.form-group input:focus { outline: none; border-color: var(--gold); }
.checkout-note { font-size: .85rem; color: var(--mid); background: var(--cream); padding: 12px; border-radius: var(--radius); margin-bottom: 24px; border-left: 3px solid var(--gold); }
.checkout-summary { background: var(--cream); padding: 28px; border-radius: var(--radius-lg); }
.checkout-summary h2 { margin-bottom: 20px; }
.checkout-item { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.checkout-item img { border-radius: var(--radius); width: 56px; height: 56px; object-fit: cover; }
.checkout-item div { flex: 1; }
.checkout-item div small { display: block; color: var(--mid); font-size: .8rem; }
.checkout-subtotal { display: flex; justify-content: space-between; font-size: 1.1rem; border-top: 1px solid var(--border); padding-top: 16px; margin-top: 8px; }
.thank-you-page { text-align: center; padding: 80px 20px; max-width: 560px; margin-inline: auto; }
.ty-icon { font-size: 3rem; margin-bottom: 24px; }
.thank-you-page h1 { margin-bottom: 16px; }
.thank-you-page p { margin-bottom: 24px; color: var(--mid); }
.ty-note { font-size: .85rem; color: var(--mid); margin-block: 20px; }

/* ---------- Testimonials ---------- */
.testimonial-section { padding-block: 64px; }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.testimonial-card { background: var(--cream); padding: 28px; border-radius: var(--radius-lg); border-top: 3px solid var(--gold); }
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 10px; }
.testimonial-card p { font-style: italic; margin-bottom: 14px; }

/* ---------- Blog ---------- */
.blog-list-page { padding-block: 56px; }
.page-subtitle { text-align: center; color: var(--mid); margin-bottom: 48px; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 28px; }
.blog-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); display: block; transition: var(--transition); }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.blog-card-img img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.blog-card-body { padding: 20px; }
.blog-card-body time { font-size: .78rem; color: var(--mid); }
.blog-card-body h2 { font-size: 1.1rem; margin: 6px 0 10px; }
.blog-card-body p { font-size: .88rem; color: var(--mid); }
.read-more { font-size: .83rem; font-weight: 600; color: var(--gold); display: inline-block; margin-top: 12px; }

.blog-post-page { padding-block: 56px; max-width: 780px; }
.blog-hero-img { margin-block: 24px; border-radius: var(--radius-lg); overflow: hidden; }
.blog-hero-img img { width: 100%; aspect-ratio: 16/7; object-fit: cover; }
.blog-article header time { font-size: .82rem; color: var(--mid); }
.blog-article header h1 { margin: 8px 0 32px; }
.article-body { color: var(--charcoal); line-height: 1.9; }
.article-body h2, .article-body h3 { margin: 32px 0 14px; }
.article-body p { margin-bottom: 16px; }
.article-body img { border-radius: var(--radius); margin-block: 20px; }

/* ---------- Static pages ---------- */
.static-page { padding-block: 56px; max-width: 800px; }
.page-content { line-height: 1.9; }
.page-content h2, .page-content h3 { margin: 28px 0 12px; }
.page-content p { margin-bottom: 14px; }
.contact-block { margin-top: 40px; padding: 28px; background: var(--cream); border-radius: var(--radius-lg); }
.contact-block h2 { margin-bottom: 16px; }

/* ---------- Instagram CTA ---------- */
.instagram-cta { background: var(--blush); padding-block: 56px; text-align: center; }

/* ---------- Search ---------- */
.search-page { padding-block: 56px; }
.search-bar-large { display: flex; gap: 12px; margin-block: 32px; max-width: 560px; }
.search-bar-large input { flex: 1; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: .95rem; }
.result-count { color: var(--mid); font-size: .88rem; margin-bottom: 24px; }

/* ---------- Alerts / empty states ---------- */
.alert { padding: 14px 18px; border-radius: var(--radius); margin-bottom: 20px; }
.alert-error { background: #fdecea; border-left: 4px solid #c0392b; color: #6b0f0f; }
.empty-state { text-align: center; padding: 64px 20px; color: var(--mid); font-size: 1rem; }

/* ---------- 404 ---------- */
.page-404 { text-align: center; padding: 100px 20px; }
.page-404 h1 { margin-bottom: 16px; }
.page-404 p { margin-bottom: 28px; color: var(--mid); }

/* ---------- WhatsApp floating bubble ---------- */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--wa-green); box-shadow: 0 4px 20px rgba(37,211,102,.45);
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.6); }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); color: #c5b99a; padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-col { }
.footer-col img { filter: brightness(0) invert(1); height: 40px; margin-bottom: 14px; }
.footer-col p { font-size: .87rem; margin-bottom: 16px; }
.footer-col h4 { font-family: var(--font-sans); font-weight: 600; font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; color: var(--white); margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: .87rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 14px; }
.footer-social a { font-size: .83rem; font-weight: 500; transition: color var(--transition); }
.footer-social a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-block: 20px; }
.footer-bottom .container { font-size: .82rem; text-align: center; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .product-detail-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .checkout-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .mobile-nav-toggle { display: flex; }
  .main-nav {
    display: none; position: fixed; inset: 0; top: 68px;
    background: var(--white); z-index: 850; overflow-y: auto;
    padding: 24px 20px;
  }
  .main-nav.open { display: block; }
  .main-nav > ul { flex-direction: column; gap: 0; }
  .main-nav a { padding: 13px 8px; font-size: 1rem; border-bottom: 1px solid var(--border); }
  .has-dropdown:hover .dropdown { display: none; }
  .dropdown { display: block; position: static; box-shadow: none; border: none; border-left: 3px solid var(--gold); margin-left: 16px; padding: 0; }
  .product-detail-grid { grid-template-columns: 1fr; gap: 28px; }
  .product-actions { flex-direction: column; }
  .product-actions .btn { width: 100%; }
  .cart-table-head { display: none; }
  .cart-row { grid-template-columns: 1fr; gap: 8px; padding: 16px; }
  .header-search { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .footer-grid { grid-template-columns: 1fr; }
  .whatsapp-float { bottom: 20px; right: 16px; width: 50px; height: 50px; }
}

/* ============================================================
   Product Page — Enhanced Styles (v2)
   ============================================================ */

/* Breadcrumb separator */
.bc-sep { margin: 0 6px; color: var(--mid); }

/* Gallery */
.gallery-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream);
}
.gallery-main img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  transition: opacity .25s ease;
}
.gallery-badge {
  position: absolute; top: 14px; left: 14px;
  padding: 5px 14px; border-radius: 50px;
  font-size: .75rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
}
.new-badge        { background: var(--charcoal); color: var(--white); }
.best-badge       { background: var(--gold);     color: var(--white); }
.sold-out-badge   { background: rgba(0,0,0,.55); color: var(--white); }

.gallery-thumbs {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px;
}
.gallery-thumb-btn {
  padding: 0; border: 2px solid transparent; border-radius: var(--radius);
  cursor: pointer; background: none; overflow: hidden; flex-shrink: 0;
  transition: border-color var(--transition);
}
.gallery-thumb-btn img {
  width: 68px; height: 84px; object-fit: cover; display: block;
}
.gallery-thumb-btn.active,
.gallery-thumb-btn:hover { border-color: var(--gold); }

/* Product name row */
.product-name-row { display: flex; align-items: flex-start; gap: 10px; flex-wrap: wrap; margin-bottom: 8px; }
.product-name-row h1 { flex: 1; min-width: 0; }
.info-badge { padding: 4px 10px; border-radius: 50px; font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; }
.info-badge.featured { background: #fff3cd; color: #856404; }

/* SKU */
.sku-line { font-size: .8rem; color: var(--mid); margin-bottom: 14px; }
.sku-line code { background: var(--cream); padding: 2px 6px; border-radius: 3px; }

/* Price block */
.price-block { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin-bottom: 10px; }
.current-price { font-family: var(--font-serif); font-size: 1.9rem; color: var(--charcoal); font-weight: 600; }
.discount-badge { background: #d4edda; color: #155724; font-size: .78rem; font-weight: 700; padding: 3px 10px; border-radius: 50px; }

/* Variant sold-out label */
.variant-sold-out { display: block; font-size: .68rem; color: #c0392b; text-align: center; margin-top: 2px; }

/* Quantity stepper */
.qty-group { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.qty-group label { font-weight: 600; font-size: .9rem; min-width: 60px; }
.qty-controls { display: flex; align-items: center; border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.qty-btn { width: 38px; height: 40px; font-size: 1.1rem; background: var(--cream); border: none; cursor: pointer; transition: background var(--transition); line-height: 1; }
.qty-btn:hover { background: var(--border); }
.qty-controls input[type=number] { width: 52px; height: 40px; text-align: center; border: none; border-left: 1.5px solid var(--border); border-right: 1.5px solid var(--border); font-size: 1rem; background: var(--white); -moz-appearance: textfield; }
.qty-controls input[type=number]::-webkit-inner-spin-button { -webkit-appearance: none; }

/* Action buttons */
.product-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.product-whatsapp-btn { flex: 1.2; min-width: 200px; font-size: .95rem; padding: 14px 20px; }
.add-to-cart-btn { flex: 1; min-width: 160px; font-size: .95rem; padding: 14px 20px; }
.btn-disabled { background: var(--border); color: var(--mid); cursor: not-allowed; padding: 14px 20px; border-radius: var(--radius); font-size: .95rem; border: none; width: 100%; }
.restock-note { font-size: .82rem; color: var(--mid); margin-top: 8px; }

/* COD note */
.cod-note {
  font-size: .82rem; color: var(--mid);
  background: var(--cream); border-left: 3px solid var(--gold);
  padding: 12px 14px; border-radius: var(--radius); margin-bottom: 22px; line-height: 1.6;
}

/* Full description section */
.product-description-section {
  margin-top: 48px; padding-top: 40px;
  border-top: 1px solid var(--border);
}
.product-description-body {
  max-width: 820px; line-height: 1.9; color: var(--charcoal);
}
.product-description-body h2,
.product-description-body h3 { font-family: var(--font-serif); margin: 28px 0 12px; }
.product-description-body p  { margin-bottom: 14px; }
.product-description-body ul,
.product-description-body ol { padding-left: 20px; margin-bottom: 14px; }
.product-description-body li { margin-bottom: 6px; }
.product-description-body img { border-radius: var(--radius); margin: 16px 0; max-width: 100%; }
.product-description-body table { width: 100%; border-collapse: collapse; margin-bottom: 16px; }
.product-description-body th,
.product-description-body td { border: 1px solid var(--border); padding: 9px 12px; text-align: left; }
.product-description-body th { background: var(--cream); font-weight: 600; }

/* Similar products section */
.similar-products-section {
  margin-top: 64px; padding-top: 48px;
  border-top: 1px solid var(--border);
  padding-bottom: 64px;
}

/* Share widget icon-style improvements */
.share-widget { margin-top: 0; }
.share-btn svg { vertical-align: middle; margin-right: 3px; }

/* ── Mobile overrides for product page ── */
@media (max-width: 768px) {
  .product-actions { flex-direction: column; }
  .product-whatsapp-btn,
  .add-to-cart-btn { flex: unset; width: 100%; min-width: unset; }
  .price-block { gap: 8px; }
  .current-price { font-size: 1.6rem; }
}

/* ============================================================
   Cart Page — v2 Styles
   ============================================================ */

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 36px;
  align-items: start;
  margin-top: 8px;
}

/* Cart table */
.cart-table { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 16px; }

.cart-table-head {
  display: grid;
  grid-template-columns: 2fr 1fr .6fr 1.5fr .9fr 44px;
  gap: 12px;
  padding: 12px 20px;
  background: var(--cream);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--mid);
}

.cart-row {
  display: grid;
  grid-template-columns: 2fr 1fr .6fr 1.5fr .9fr 44px;
  gap: 12px;
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  align-items: center;
}

.cart-product { display: flex; align-items: center; gap: 14px; min-width: 0; }
.cart-product-meta { min-width: 0; }
.cart-product-meta strong { display: block; font-size: .9rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-product-meta small { display: block; font-size: .75rem; color: var(--mid); margin-top: 2px; }

.cart-variant { font-size: .85rem; color: var(--mid); }
.cart-price   { font-size: .9rem; }
.cart-line-total { font-size: .9rem; font-weight: 600; }

.cart-qty input {
  width: 60px; padding: 7px 10px;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  text-align: center; font-size: .9rem;
  -moz-appearance: textfield;
}
.cart-qty input::-webkit-inner-spin-button { -webkit-appearance: none; }
.cart-qty input:focus { outline: none; border-color: var(--gold); }

/* Remove button — its own form */
.cart-remove form { margin: 0; }
.remove-btn {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1.5px solid var(--border); background: var(--white);
  color: var(--mid); font-size: .85rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.remove-btn:hover { background: #fdecea; border-color: #c0392b; color: #c0392b; }

/* Bottom actions bar */
.cart-actions-bar {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
}

/* Right summary column */
.cart-summary-box {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: 88px;
}
.cart-summary-box h2 { font-size: 1.1rem; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }

.summary-lines { margin-bottom: 16px; }
.summary-line { display: flex; justify-content: space-between; gap: 12px; font-size: .87rem; margin-bottom: 8px; color: var(--mid); }
.summary-line span:last-child { white-space: nowrap; font-weight: 500; color: var(--charcoal); }

.summary-divider { border: none; border-top: 1px solid var(--border); margin: 12px 0; }

.cart-subtotal-row { display: flex; justify-content: space-between; font-size: 1.05rem; margin-bottom: 16px; }
.cart-subtotal-row strong { font-size: 1.15rem; }

.cart-summary-box .cod-note { font-size: .8rem; color: var(--mid); background: var(--white); border-left: 3px solid var(--gold); padding: 10px 12px; border-radius: var(--radius); margin-bottom: 20px; }

/* Empty cart */
.empty-cart { text-align: center; padding: 80px 20px; }
.empty-cart-icon { font-size: 3rem; margin-bottom: 16px; }
.empty-cart p { font-size: 1.1rem; margin-bottom: 24px; color: var(--mid); }

/* ── Cart responsive ── */
@media (max-width: 900px) {
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary-box { position: static; }
}

@media (max-width: 640px) {
  .cart-table-head { display: none; }
  .cart-row {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 8px;
    padding: 14px 14px;
  }
  .cart-product  { grid-column: 1 / -1; }
  .cart-variant  { grid-column: 1 / -1; font-size: .8rem; }
  .cart-price    { }
  .cart-qty      { }
  .cart-line-total { text-align: right; font-weight: 700; }
  .cart-remove   { text-align: right; }
}

/* ============================================================
   Cart v3 — Qty Stepper & Live Update Styles
   ============================================================ */

/* Qty stepper */
.cart-qty-wrap {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  width: fit-content;
}
.qty-step {
  width: 36px; height: 38px;
  background: var(--cream); border: none;
  font-size: 1.1rem; line-height: 1;
  cursor: pointer; color: var(--charcoal);
  transition: background var(--transition), color var(--transition);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.qty-step:hover:not(:disabled) { background: var(--gold); color: #fff; }
.qty-step:active { transform: scale(.93); }
.cart-qty-input {
  width: 46px; height: 38px;
  border: none;
  border-left: 1.5px solid var(--border);
  border-right: 1.5px solid var(--border);
  text-align: center; font-size: .95rem;
  font-family: inherit; color: var(--charcoal);
  background: var(--white);
  -moz-appearance: textfield;
}
.cart-qty-input::-webkit-inner-spin-button,
.cart-qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }
.cart-qty-input:focus { outline: 2px solid var(--gold); outline-offset: -2px; }

/* Row flash on update */
.cart-row { transition: background .3s ease; }
.cart-row.row-updated { background: #fffbea; }

/* Updating indicator bar */
.cart-updating-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 0; font-size: .85rem; color: var(--mid);
}
.spinner {
  width: 14px; height: 14px; border-radius: 50%;
  border: 2px solid var(--border);
  border-top-color: var(--gold);
  animation: spin .6s linear infinite; display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Summary lines */
.summary-line { display: flex; justify-content: space-between; gap: 8px; font-size: .87rem; margin-bottom: 8px; }
.sumline-name  { color: var(--mid); flex: 1; }
.sumline-total { white-space: nowrap; font-weight: 500; }

/* Cart unit price column */
.cart-unit-price { font-size: .9rem; color: var(--mid); }

/* Responsive: stack to mobile */
@media (max-width: 640px) {
  .cart-table-head { display: none; }
  .cart-row {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 14px;
  }
  .cart-product    { grid-column: 1 / -1; }
  .cart-variant    { grid-column: 1 / -1; font-size: .82rem; }
  .cart-unit-price { font-size: .82rem; }
  .cart-line-total { font-weight: 700; text-align: right; }
  .cart-remove     { grid-column: 2; text-align: right; }
}

/* ============================================================
   Cart v3 — Targeted Fixes
   ============================================================ */

/* Ensure HTML hidden attribute always works */
[hidden] { display: none !important; }

/* Qty cell: guarantee enough room for the stepper */
.cart-qty-wrap { min-width: 116px; }

/* Cart summary buttons — compact, not full-height */
.cart-summary-box .btn {
  padding: 11px 20px;
  font-size: .88rem;
}
.cart-summary-box .btn-lg {
  padding: 13px 20px;
  font-size: .9rem;
}
.cart-summary-box .btn + .btn { margin-top: 8px; }

/* Prevent total text overflowing its cell */
.cart-line-total {
  white-space: nowrap;
  font-weight: 600;
}

/* Checkout address section */
.checkout-address-section {
  border-top: 1px solid var(--border);
  margin-top: 20px;
  padding-top: 20px;
}
.checkout-address-section h3 {
  font-size: 1rem;
  margin-bottom: 14px;
  color: var(--charcoal);
}
.form-grid-addr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 540px) {
  .form-grid-addr { grid-template-columns: 1fr; }
}

/* ============================================================
   Checkout v2 — Address Fields & Sizing
   ============================================================ */

.checkout-section-title {
  font-size: 1.1rem;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.checkout-pay-note {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 12px 14px;
  border-radius: var(--radius);
  font-size: .85rem;
  color: var(--mid);
  margin: 20px 0 24px;
  line-height: 1.6;
}

.checkout-submit-btn {
  padding: 15px 24px;
  font-size: .95rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Checkout summary */
.checkout-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.checkout-item:last-of-type { border-bottom: none; }
.checkout-item-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.checkout-item-meta strong { font-size: .9rem; }
.checkout-item-meta small  { font-size: .78rem; color: var(--mid); }
.checkout-item-qty         { font-size: .8rem; color: var(--mid); }
.checkout-item-price       { font-weight: 600; white-space: nowrap; font-size: .9rem; }

.checkout-subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 1.05rem;
  border-top: 2px solid var(--border);
  padding-top: 14px;
  margin-top: 6px;
}
.checkout-subtotal strong { font-size: 1.15rem; }
.checkout-shipping-note {
  font-size: .78rem;
  color: var(--mid);
  margin-top: 10px;
  text-align: center;
}

/* Form textarea in checkout */
.checkout-form-wrap textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .9rem;
  font-family: inherit;
  resize: vertical;
  transition: border-color var(--transition);
}
.checkout-form-wrap textarea:focus {
  outline: none;
  border-color: var(--gold);
}

/* Thank-you page */
.thank-you-page { text-align: center; padding: 80px 20px; max-width: 560px; margin-inline: auto; }
.ty-icon { font-size: 3.5rem; margin-bottom: 20px; }
.thank-you-page h1 { margin-bottom: 14px; }
.thank-you-page > p { color: var(--mid); margin-bottom: 28px; line-height: 1.8; }
.ty-note { font-size: .83rem; color: var(--mid); margin: 20px 0; }

/* ============================================================
   Add-to-Cart Toast Notification
   ============================================================ */

.cart-toast {
  position: fixed;
  top: 80px;
  right: 24px;
  z-index: 1100;
  display: none;                 /* hidden by default — JS sets display:flex */
  align-items: center;
  gap: 12px;
  background: var(--charcoal);
  color: var(--white);
  padding: 14px 16px;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0,0,0,.22);
  min-width: 300px;
  max-width: 380px;
  opacity: 0;
  transform: translateX(calc(100% + 32px));
  transition: opacity .28s ease, transform .28s cubic-bezier(.34,1.28,.64,1);
  pointer-events: none;
}

/* Visible state */
.cart-toast.toast-visible {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.toast-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.toast-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.toast-body strong {
  font-size: .9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--white);
}

.toast-body span {
  font-size: .78rem;
  color: rgba(255,255,255,.7);
}

.toast-view-cart {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  padding: 7px 14px;
  background: var(--gold);
  color: var(--white);
  border-radius: var(--radius);
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--transition);
  flex-shrink: 0;
}
.toast-view-cart:hover { background: var(--gold-dk); }

.toast-count {
  background: rgba(255,255,255,.25);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 700;
}

.toast-close {
  background: none;
  border: none;
  color: rgba(255,255,255,.55);
  font-size: .9rem;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  flex-shrink: 0;
  transition: color var(--transition);
}
.toast-close:hover { color: var(--white); }

@media (max-width: 480px) {
  .cart-toast {
    top: auto;
    bottom: 90px;
    right: 12px;
    left: 12px;
    max-width: none;
    min-width: 0;
    transform: translateY(calc(100% + 100px));
  }
  .cart-toast.toast-visible {
    transform: translateY(0);
  }
}

/* ============================================================
   Bundle Section
   ============================================================ */

.bundle-section {
  margin-top: 48px;
  padding: 32px;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #fffdf5 0%, #faf6f1 100%);
}

.bundle-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.bundle-title {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.bundle-subtitle {
  font-size: .88rem;
  color: var(--mid);
  margin: 0;
}

.bundle-badge {
  background: var(--gold);
  color: var(--white);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Product cards row */
.bundle-products {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.bundle-plus {
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

.bundle-product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 140px;
  flex-shrink: 0;
}

.bundle-product-card.is-current .bundle-img-link img {
  border: 2.5px solid var(--gold);
}

.bundle-img-link {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
}

.bundle-img-link img {
  width: 140px;
  height: 175px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  transition: transform var(--transition);
}

.bundle-img-link:hover img {
  transform: scale(1.03);
}

.bundle-this-badge {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: .68rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 50px;
  white-space: nowrap;
  letter-spacing: .05em;
}

.bundle-product-info {
  text-align: center;
}

.bundle-product-info a {
  font-size: .82rem;
  font-weight: 500;
  color: var(--charcoal);
  display: block;
  margin-bottom: 4px;
  line-height: 1.3;
}

.bundle-product-info a:hover {
  color: var(--gold);
}

.bundle-item-price strong {
  font-size: .9rem;
  color: var(--charcoal);
}

.bundle-item-price s {
  font-size: .78rem;
  color: var(--mid);
  margin-left: 4px;
}

/* Footer: pricing + CTA */
.bundle-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid rgba(201,161,74,.3);
}

.bundle-pricing {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.bundle-total-label   { font-size: .85rem; color: var(--mid); }
.bundle-total-original { font-size: .95rem; color: var(--mid); text-decoration: line-through; }
.bundle-arrow         { color: var(--gold); font-size: 1rem; }
.bundle-total-final   { font-size: 1.2rem; font-weight: 700; color: var(--charcoal); font-family: var(--font-serif); }
.bundle-save-note     { background: #d4edda; color: #155724; font-size: .78rem; font-weight: 700; padding: 3px 10px; border-radius: 50px; }

.bundle-add-btn {
  padding: 13px 28px;
  font-size: .95rem;
  flex-shrink: 0;
}

/* Similar products section refinement */
.similar-products-section {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
  padding-bottom: 64px;
}

/* ── Bundle responsive ── */
@media (max-width: 768px) {
  .bundle-section { padding: 20px 16px; }
  .bundle-products { gap: 8px; }
  .bundle-product-card { width: 110px; }
  .bundle-img-link img { width: 110px; height: 138px; }
  .bundle-footer { flex-direction: column; align-items: flex-start; }
  .bundle-add-btn { width: 100%; text-align: center; }
}

@media (max-width: 480px) {
  .bundle-product-card { width: 90px; }
  .bundle-img-link img { width: 90px; height: 112px; }
}

/* ============================================================
   Custom Select Dropdown — Premium Gold Chevron
   Replaces the OS-native dropdown arrow on all <select> elements
   ============================================================ */

select {
  /* Remove native OS arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  /* Base styling matching .form-group input */
  display: block;
  width: 100%;
  padding: 11px 42px 11px 14px;   /* extra right padding for the custom arrow */
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .95rem;
  font-family: var(--font-sans);
  color: var(--charcoal);
  background-color: var(--white);
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
  line-height: 1.5;

  /* Gold chevron arrow — inline SVG as background */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23c9a14a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  background-size: 18px 18px;
}

select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,161,74,.15);
}

select:hover {
  border-color: var(--gold);
}

/* Placeholder / default option styling */
select option[value=""] {
  color: var(--mid);
}

/* Fix for admin select (inside admin layout - keep consistent) */
.admin-layout select {
  padding: 9px 38px 9px 12px;
  font-size: .9rem;
  border: 1.5px solid var(--a-border, #e2ddd6);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23c9a14a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-position: right 11px center;
  background-size: 16px 16px;
}

.admin-layout select:focus {
  border-color: var(--a-gold, #c9a14a);
  box-shadow: 0 0 0 2px rgba(201,161,74,.12);
}
