:root {
  --brand-dark: #2e2a39;
  --brand-rose: #e96c69;
  --brand-rose-dark: #db3734;
  --brand-yellow-light: #fff2f2;
  --brand-yellow-soft: #f2cece;
  --brand-gold: #e3a17f;
  --text-dark: #2e2a39;
  --text-muted: #6f6878;
  --bg-body: #ffffff;
  --bg-card: #ffffff;
  --border-color: #f1dddd;
  --radius-lg: 24px;
  --radius-md: 12px;
  --shadow-subtle: 10px 12px 35px rgba(46, 42, 57, .05);
  --shadow-glossy: 10px 16px 40px rgba(46, 42, 57, .12);
  --glass-bg: rgba(250, 238, 232, .96);
  --glass-border: rgba(227, 161, 127, .28);
}

body, button, input, select, textarea { font-family: 'Montserrat', sans-serif; }
h1, h2, h3, h4, .serif { font-family: 'Montserrat', sans-serif; letter-spacing: -.03em; }
body { background: #fff; color: var(--text-dark); }

.announcement-bar {
  min-height: 36px;
  background: #f2cece;
  color: #2e2a39;
  border: 0;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .03em;
  padding: 8px 20px;
}
.announcement-divider { opacity: .45; }

.reference-navbar {
  background: #faeee8;
  border-bottom: 0;
  box-shadow: none;
  padding: 12px max(3%, calc((100vw - 1200px)/2));
}
.reference-navbar .nav-brand { min-width: 210px; }
.reference-navbar .nav-logo { width: 52px; height: 52px; border: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-size: 1.35rem; text-transform: uppercase; letter-spacing: .12em; }
.brand-text small { font-size: .58rem; color: #756b74; text-transform: uppercase; letter-spacing: .16em; margin-top: 6px; }
.reference-navbar .nav-menu { gap: 20px; }
.reference-navbar .nav-menu a { font-size: .76rem; font-weight: 600; }
.nav-utilities { display: flex; align-items: center; gap: 7px; }
.nav-icon { width: 38px; height: 38px; display: grid; place-items: center; border: 0; background: transparent; color: #2e2a39; cursor: pointer; border-radius: 50%; }
.nav-icon:hover { background: rgba(233,108,105,.12); color: var(--brand-rose-dark); }

.reference-hero {
  min-height: min(650px, 72vh);
  position: relative;
  display: grid;
  place-items: end center;
  overflow: hidden;
  background: #f9e4e2;
}
.reference-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.reference-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(46,42,57,.05) 28%, rgba(46,42,57,.72) 100%); }
.hero-panel { position: relative; z-index: 1; width: min(760px, 90%); color: #fff; text-align: center; padding: 48px 20px; }
.hero-panel .eyebrow { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .18em; font-weight: 700; margin-bottom: 12px; }
.hero-panel h1 { font-size: clamp(2.25rem, 5vw, 4.7rem); line-height: 1.02; margin: 0 0 16px; color: #fff; }
.hero-panel p { font-size: clamp(.9rem, 1.5vw, 1.05rem); max-width: 620px; margin: 0 auto 24px; }
.reference-button { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 12px 25px; background: #e96c69; color: #fff; border: 0; border-radius: 10px; font-weight: 700; font-size: .82rem; }
.reference-button:hover { background: #db3734; transform: translateY(-2px); }

.reference-section { max-width: 1200px; margin: 0 auto; padding: 70px 24px; }
.reference-heading { text-align: center; margin-bottom: 34px; }
.reference-heading .eyebrow { color: var(--brand-rose-dark); font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .17em; }
.reference-heading h2 { font-size: clamp(1.8rem, 3vw, 2.7rem); margin: 7px 0 8px; }
.reference-heading p { color: var(--text-muted); max-width: 650px; margin: auto; }

.collection-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.collection-card { display: block; text-align: center; }
.collection-image { aspect-ratio: 1; overflow: hidden; border-radius: 18px; background: #fff2f2; box-shadow: var(--shadow-subtle); }
.collection-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.collection-card:hover img { transform: scale(1.045); }
.collection-card h3 { font-size: .98rem; margin: 13px 0 4px; }
.collection-card p { color: var(--text-muted); font-size: .72rem; line-height: 1.45; }

.promise-strip { background: #faeee8; }
.promise-grid { max-width: 1100px; margin: auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 30px 24px; }
.promise-item { display: flex; align-items: center; gap: 12px; }
.promise-item i { font-size: 1.25rem; color: var(--brand-rose-dark); }
.promise-item strong { display: block; font-size: .78rem; }
.promise-item span { color: var(--text-muted); font-size: .68rem; }

.products-section { max-width: 1200px; padding: 70px 24px; }
.product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.product-card { border: 0; border-radius: 10px; box-shadow: 10px 12px 35px rgba(46,42,57,.06); overflow: hidden; }
.product-card:hover { transform: translateY(-5px); box-shadow: 10px 16px 38px rgba(46,42,57,.12); }
.product-media { height: auto; aspect-ratio: 1 / 1.15; background: #fff2f2; padding: 0; }
.product-media img { width: 100%; height: 100%; object-fit: cover; }
.product-details { text-align: center; padding: 16px 14px 18px; }
.product-category { color: var(--brand-rose-dark); }
.product-bottom { border-top: 0; padding-top: 12px; flex-direction: column; gap: 12px; }
.card-actions { width: 100%; }
.btn-sm-buy, .btn-sm-enquire { border-radius: 8px; flex: 1; text-align: center; justify-content: center; }
.btn-sm-buy, .btn-primary { background: #e96c69; }
.btn-sm-buy:hover, .btn-primary:hover { background: #db3734; }

.story-band { background: linear-gradient(145deg, #fff2f2, #fff); }
.story-inner { max-width: 1100px; margin: auto; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 54px; padding: 72px 24px; }
.story-image { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-glossy); aspect-ratio: 4/3; }
.story-image img { width: 100%; height: 100%; object-fit: cover; }
.story-copy h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); line-height: 1.08; margin-bottom: 18px; }
.story-copy p { color: var(--text-muted); margin-bottom: 22px; }

.catalog-hero { background: linear-gradient(145deg, #fff2f2, #faeee8); text-align: center; padding: 64px 24px 44px; }
.catalog-hero h1 { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 10px; }
.catalog-hero p { max-width: 660px; margin: auto; color: var(--text-muted); }
.category-filter { background: #fff; border: 0; padding: 24px; }
.filter-btn { border-color: #edcece; background: #fff; }
.filter-btn:hover, .filter-btn.active { background: #e96c69; border-color: #e96c69; color: #fff; }

footer { background: #2e2a39; }
.admin-container { background: #fff8f7; min-height: 100vh; }
.admin-header, .admin-table-card { border-color: #efdcdc; box-shadow: var(--shadow-subtle); }
.admin-header { border-top: 4px solid #e96c69; }
.form-control:focus { border-color: #e96c69; box-shadow: 0 0 0 3px rgba(233,108,105,.12); }

@media (max-width: 1100px) {
  .reference-navbar .nav-menu { gap: 12px; }
  .reference-navbar .nav-menu a { font-size: .68rem; }
  .collection-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
}
@media (max-width: 768px) {
  .announcement-divider, .announcement-bar span:last-child { display: none; }
  .reference-navbar { padding: 9px 16px; }
  .reference-navbar .nav-brand { min-width: 0; }
  .brand-text small { display: none; }
  .nav-icon { display: none; }
  .reference-navbar .nav-menu { background: #faeee8; top: 70px; }
  .reference-hero { min-height: 540px; }
  .collection-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .collection-card:last-child { grid-column: span 2; width: calc(50% - 8px); justify-self: center; }
  .promise-grid { grid-template-columns: repeat(2,1fr); }
  .product-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .story-inner { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .brand-text strong { font-size: 1rem; }
  .reference-hero { min-height: 470px; }
  .hero-panel { padding-bottom: 34px; }
  .reference-section, .products-section { padding: 50px 16px; }
  .collection-card p { display: none; }
  .promise-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .product-media { aspect-ratio: 1; }
}

/* Knotera feminine premium refresh */
:root {
  --brand-dark:#4b2e43;--brand-rose:#e96f98;--brand-rose-dark:#ce447d;
  --brand-yellow-light:#fff7fb;--brand-yellow-soft:#f9d8e6;--brand-gold:#d7a36a;
  --text-dark:#4b2e43;--text-muted:#806a79;--bg-body:#fff9fc;--border-color:#f2dce7;
  --shadow-subtle:0 14px 40px rgba(129,62,99,.08);--shadow-glossy:0 24px 60px rgba(129,62,99,.16);
}
body{background:radial-gradient(circle at 8% 12%,rgba(255,210,228,.48),transparent 28%),radial-gradient(circle at 92% 28%,rgba(226,209,255,.42),transparent 30%),linear-gradient(180deg,#fffafd 0%,#fff7fb 46%,#fdf7ff 100%);color:var(--text-dark)}
h1,h2,h3,h4,.serif,.reference-heading h2,.hero-panel h1,.story-copy h2{font-family:'Playfair Display',Georgia,serif;letter-spacing:-.025em}
.announcement-bar{background:linear-gradient(90deg,#f8bfd4,#f5d2e4 48%,#e8d7f8);color:#613750;box-shadow:inset 0 -1px rgba(255,255,255,.55)}
.reference-navbar{background:rgba(255,248,252,.92);border-bottom:1px solid rgba(225,178,202,.38);box-shadow:0 10px 35px rgba(113,58,88,.07)}
.reference-navbar .nav-logo{border:3px solid #fff;box-shadow:0 0 0 2px #efb7d0,0 8px 20px rgba(190,83,137,.17)}
.brand-text strong{color:#60334f}.brand-text small{color:#c24f83}.reference-navbar .nav-menu a{color:#633f58}
.reference-navbar .nav-menu a:hover,.reference-navbar .nav-menu a.active{color:#d44f86}
.reference-navbar .nav-menu a::after{height:3px;border-radius:10px;background:linear-gradient(90deg,#e96f98,#b989d7)}
.nav-icon{color:#784560}.nav-icon:hover{background:#fde5ef;color:#d44f86}
.reference-hero{min-height:min(700px,78vh);background:#f7d9e5}.reference-hero::after{background:linear-gradient(180deg,rgba(77,34,61,.04) 18%,rgba(88,38,69,.28) 55%,rgba(65,29,52,.72) 100%)}
.hero-panel{width:min(800px,90%);margin-bottom:36px;padding:38px 34px;border:1px solid rgba(255,255,255,.42);border-radius:30px;background:linear-gradient(135deg,rgba(93,41,70,.32),rgba(143,73,111,.20));backdrop-filter:blur(12px);box-shadow:0 25px 70px rgba(52,22,42,.26)}
.hero-panel::before,.hero-panel::after{position:absolute;color:#ffe5f0;font-size:1.25rem;filter:drop-shadow(0 4px 8px rgba(77,31,58,.22))}.hero-panel::before{content:'✦';top:22px;left:27px}.hero-panel::after{content:'♡';right:30px;bottom:24px}
.hero-panel .eyebrow{display:inline-flex;padding:7px 14px;border-radius:99px;background:rgba(255,230,240,.18);border:1px solid rgba(255,255,255,.28)}.hero-panel h1{text-shadow:0 6px 24px rgba(58,20,43,.28)}
.reference-button,.btn-primary,.btn-sm-buy{background:linear-gradient(135deg,#eb759d,#d84f87 60%,#b96fc9 120%);border:0;color:#fff;box-shadow:0 12px 28px rgba(211,72,130,.25)}
.reference-button:hover,.btn-primary:hover,.btn-sm-buy:hover{background:linear-gradient(135deg,#df5d8e,#c23f79 65%,#aa5dbd 120%);transform:translateY(-3px);box-shadow:0 17px 34px rgba(196,59,119,.32)}
.reference-heading .eyebrow,.product-category{color:#cf4d82}.reference-heading .eyebrow{display:inline-flex;align-items:center;gap:8px;padding:6px 13px;border-radius:99px;background:#fff0f6;border:1px solid #f4cedf}.reference-heading .eyebrow::before{content:'✦';color:#b879cc}.reference-heading h2{color:#56334a}
.collection-card{padding:10px 8px 18px;border-radius:24px;transition:.3s}.collection-card:hover{transform:translateY(-7px);background:rgba(255,255,255,.7)}
.collection-image{border-radius:48% 48% 42% 42%;border:7px solid #fff;outline:1px solid #f0cbdc;box-shadow:0 18px 40px rgba(141,66,106,.14)}.collection-card:nth-child(even) .collection-image{border-radius:42% 50% 45% 50%}.collection-card h3{color:#5f3650;font-family:'Playfair Display',Georgia,serif;font-size:1.08rem}
.promise-strip{background:linear-gradient(105deg,#ffe8f1,#fff5f9 46%,#f1e7fb);border-block:1px solid rgba(236,184,210,.45)}.promise-item{padding:15px;border-radius:18px;background:rgba(255,255,255,.52);border:1px solid rgba(255,255,255,.8)}.promise-item i{color:#d44f86}
.product-card{border:1px solid rgba(239,203,220,.75);border-radius:20px;background:rgba(255,255,255,.94);box-shadow:0 15px 40px rgba(121,56,91,.09)}.product-card:hover{box-shadow:0 24px 55px rgba(130,56,96,.18)}.product-media{border-radius:19px 19px 0 0;overflow:hidden;background:#fff0f6}.craft-time-tag{background:rgba(255,244,249,.92);color:#a93f70;border:1px solid #f4c9dc}.product-title{color:#56334a}.product-price{color:#bd416f}
.btn-sm-enquire{border-color:#e9a9c5;color:#b83f70;background:#fff5f9}.btn-sm-enquire:hover{background:#fde1ed;border-color:#db77a1}
.catalog-hero{background:radial-gradient(circle at 14% 20%,rgba(255,255,255,.9),transparent 20%),linear-gradient(135deg,#ffe8f2,#fff6fa 50%,#f1e7fb);border-bottom:1px solid #efd4e2}.filter-btn{border-color:#edc4d7;color:#70455e;background:rgba(255,255,255,.8)}.filter-btn:hover,.filter-btn.active{background:linear-gradient(135deg,#e96f98,#ca568d);border-color:transparent;color:#fff;box-shadow:0 8px 18px rgba(204,76,133,.20)}
.story-band{background:linear-gradient(145deg,#fff0f6,#fffafd 58%,#f5edfc)}.story-image{border:8px solid #fff;outline:1px solid #efcadd}
.modal-overlay,.side-drawer-overlay{background:rgba(69,34,55,.48)}.modal-card,.side-drawer-card{background:rgba(255,250,253,.98);border:1px solid #efcade;box-shadow:0 28px 80px rgba(76,31,59,.25)}.form-control{border-color:#ecd2df;background:#fffafd}.form-control:focus{border-color:#dd6e9c;box-shadow:0 0 0 4px rgba(221,110,156,.12)}
footer{background:linear-gradient(135deg,#4b2e43,#683751 55%,#51345f)}.floating-btn-drawer{background:linear-gradient(135deg,#6b3955,#a64776)}
.admin-container{background:linear-gradient(145deg,#fff8fb,#fbf4ff)}.admin-header{background:rgba(255,255,255,.92);border-top-color:#df6594}.admin-table-card{background:rgba(255,255,255,.94);border-color:#efd9e4}
@media(max-width:768px){.hero-panel{margin-bottom:20px;padding:30px 20px;border-radius:24px}.reference-navbar .nav-menu{background:rgba(255,248,252,.98)}.collection-image{border-width:5px}.promise-item{padding:12px}}

/* Admin-managed baby pink announcement ticker */
.baby-announcement {
  position: sticky;
  top: 0;
  z-index: 1200;
  min-height: 38px;
  padding: 0;
  overflow: hidden;
  justify-content: flex-start;
  background: linear-gradient(90deg, #ffe0eb 0%, #ffd5e5 50%, #fbe2ef 100%);
  border-bottom: 1px solid rgba(214, 127, 166, .18);
  box-shadow: 0 5px 18px rgba(167, 82, 123, .08);
}
.baby-announcement + .reference-navbar { top: 38px; }
.announcement-track {
  display: flex;
  align-items: center;
  width: max-content;
  min-width: 200%;
  animation: knoteraTicker 30s linear infinite;
  will-change: transform;
}
.baby-announcement:hover .announcement-track { animation-play-state: paused; }
.announcement-item {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 7px 42px;
  color: #75405b;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .055em;
  white-space: nowrap;
  text-transform: uppercase;
}
.announcement-item > span { color: #d96191; font-size: .82rem; }
a.announcement-item:hover { color: #c64078; }
@keyframes knoteraTicker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (max-width: 768px) {
  .baby-announcement + .reference-navbar { top: 36px; }
  .baby-announcement, .announcement-item { min-height: 36px; }
  .announcement-item { padding: 6px 28px; font-size: .66rem; }
  .announcement-track { animation-duration: 24s; }
}
@media (prefers-reduced-motion: reduce) {
  .announcement-track { animation: none; min-width: max-content; }
  .baby-announcement { overflow-x: auto; }
}

/* Neat responsive menu bar refresh */
.reference-navbar {
  display: block;
  width: 100%;
  padding: 0 24px;
}
.navbar-inner {
  width: 100%;
  max-width: 1440px;
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.navbar-inner .nav-brand { flex: 0 0 auto; min-width: 205px; }
.navbar-inner .nav-menu {
  flex: 1 1 auto;
  justify-content: center;
  gap: 5px;
  min-width: 0;
}
.navbar-inner .nav-menu > li { position: relative; }
.navbar-inner .nav-menu > li > a,
.nav-dropdown-label {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 12px;
  border-radius: 12px;
  color: #633f58;
  font-size: .76rem;
  font-weight: 650;
  white-space: nowrap;
  cursor: pointer;
  transition: background .25s ease,color .25s ease,transform .25s ease;
}
.navbar-inner .nav-menu > li > a:hover,
.nav-dropdown:hover .nav-dropdown-label,
.navbar-inner .nav-menu > li > a.active {
  color: #c94078;
  background: rgba(255,225,237,.72);
}
.navbar-inner .nav-menu > li > a::after { display: none; }
.navbar-inner .nav-shop-link {
  padding-inline: 16px !important;
  color: #fff !important;
  background: linear-gradient(135deg,#ed7aa1,#d65389) !important;
  box-shadow: 0 8px 20px rgba(203,67,124,.18);
}
.navbar-inner .nav-shop-link:hover { transform: translateY(-2px); box-shadow: 0 12px 25px rgba(203,67,124,.27); }
.nav-dropdown-label i { font-size: .58rem; transition: transform .25s ease; }
.nav-dropdown:hover .nav-dropdown-label i { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 9px);
  left: 50%;
  z-index: 1300;
  width: 280px;
  padding: 12px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  list-style: none;
  background: rgba(255,250,253,.98);
  border: 1px solid #f0d3e1;
  border-radius: 18px;
  box-shadow: 0 22px 55px rgba(86,43,67,.18);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%,8px);
  transition: opacity .22s ease,transform .22s ease,visibility .22s ease;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translate(-50%,0); }
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  color: #684057;
  font-size: .78rem;
  font-weight: 600;
}
.nav-dropdown-menu a:hover { background: #fde8f1; color: #c53e75; transform: translateX(3px); }
.nav-category-dot { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: #f9dce8; color: #d54f87; }
.navbar-inner .nav-utilities { flex: 0 0 auto; min-width: 92px; justify-content: flex-end; }
.navbar-inner .nav-icon { width: 40px; height: 40px; border: 1px solid rgba(235,194,214,.65); background: rgba(255,255,255,.62); }
@media (max-width:1280px) {
  .reference-navbar { padding: 0 18px; }
  .navbar-inner { min-height: 70px; gap: 14px; }
  .navbar-inner .nav-brand { min-width: 0; }
  .navbar-inner .nav-menu {
    display: none;
    position: fixed !important;
    top: 116px !important;
    left: 12px !important;
    right: 12px !important;
    width: calc(100% - 24px) !important;
    max-height: calc(100vh - 130px);
    overflow-y: auto;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 5px !important;
    padding: 16px !important;
    background: rgba(255,249,252,.99) !important;
    border: 1px solid #efcfdf;
    border-radius: 20px;
    box-shadow: 0 25px 65px rgba(80,37,62,.20) !important;
  }
  .navbar-inner .nav-menu > li > a,.nav-dropdown-label { width: 100%; justify-content: flex-start; padding: 11px 13px; font-size: .8rem; }
  .navbar-inner .nav-shop-link { justify-content: center !important; }
  .nav-dropdown-label i { margin-left: auto; }
  .nav-dropdown-menu {
    position: static;
    width: 100%;
    margin-top: 4px;
    padding: 7px 8px 7px 18px;
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    opacity: 1;
    visibility: visible;
    transform: none;
    border: 0;
    border-radius: 12px;
    box-shadow: none;
    background: #fff2f7;
  }
  .nav-dropdown:hover .nav-dropdown-menu,.nav-dropdown:focus-within .nav-dropdown-menu { transform:none; }
  .mobile-nav-toggle { display: grid; place-items: center; }
}
@media (max-width:768px) {
  .reference-navbar { padding: 0 14px; }
  .navbar-inner { min-height: 66px; }
  .navbar-inner .nav-logo { width: 43px; height: 43px; }
  .navbar-inner .brand-text strong { font-size: 1.05rem; }
  .navbar-inner .nav-menu { top: 104px !important; max-height: calc(100vh - 116px); }
  .navbar-inner .nav-utilities { min-width: 48px; }
  .navbar-inner .nav-icon { display: none; }
}
@media (max-width:520px) {
  .reference-navbar { padding-inline: 11px; }
  .navbar-inner { gap: 8px; }
  .navbar-inner .nav-menu { left: 8px !important; right: 8px !important; width: calc(100% - 16px) !important; padding: 12px !important; }
  .nav-dropdown-menu { grid-template-columns: 1fr; }
  .navbar-inner .brand-text strong { font-size: .96rem; letter-spacing: .09em; }
  .mobile-nav-toggle { width: 40px; height: 40px; }
}

/* Direct menu and working search bar */
.navbar-inner .nav-menu{gap:3px}
.navbar-inner .nav-menu>li>a{padding-inline:9px;font-size:.72rem}
.navbar-inner .nav-utilities{min-width:260px;gap:8px}
.nav-search-form{
  width:210px;height:42px;display:flex;align-items:center;overflow:hidden;
  background:rgba(255,255,255,.86);border:1px solid #ebc5d8;border-radius:99px;
  box-shadow:0 7px 20px rgba(133,59,98,.08);transition:border-color .22s ease,box-shadow .22s ease,background .22s ease;
}
.nav-search-form:focus-within{background:#fff;border-color:#db75a0;box-shadow:0 0 0 4px rgba(219,117,160,.12),0 9px 24px rgba(133,59,98,.11)}
.nav-search-form input{flex:1;min-width:0;height:100%;padding:0 4px 0 16px;border:0;outline:0;background:transparent;color:#56334a;font:600 .72rem 'Montserrat',sans-serif}
.nav-search-form input::placeholder{color:#a38496;font-weight:500}
.nav-search-form button{width:39px;height:39px;flex:0 0 39px;display:grid;place-items:center;border:0;border-radius:50%;background:transparent;color:#c64b7d;cursor:pointer;transition:.2s}
.nav-search-form button:hover{background:#f9dce8;color:#a93467}
.search-empty-state{max-width:620px;margin:30px auto 70px;padding:48px 30px;text-align:center;border:1px solid #efd3e1;border-radius:28px;background:rgba(255,255,255,.88);box-shadow:var(--shadow-subtle)}
.search-empty-state i{width:64px;height:64px;display:grid;place-items:center;margin:0 auto 15px;border-radius:50%;background:#fde5ef;color:#d55087;font-size:1.65rem}
.search-empty-state h2{margin-bottom:8px;color:#56334a}.search-empty-state p{margin-bottom:22px;color:var(--text-muted)}
@media(max-width:1360px){.navbar-inner .nav-menu>li>a{padding-inline:7px;font-size:.68rem}.nav-search-form{width:180px}.navbar-inner .nav-utilities{min-width:230px}}
@media(max-width:1280px){.navbar-inner .nav-menu>li>a{padding:11px 13px;font-size:.8rem}.navbar-inner .nav-utilities{min-width:270px}.nav-search-form{width:215px}}
@media(max-width:768px){.navbar-inner .nav-utilities{min-width:205px;gap:6px}.nav-search-form{width:150px;height:40px}.nav-search-form input{padding-left:13px;font-size:.68rem}.nav-search-form button{width:36px;height:36px;flex-basis:36px}.nav-inquiry-icon{display:none!important}}
@media(max-width:520px){.navbar-inner .nav-utilities{min-width:158px}.nav-search-form{width:112px}.nav-search-form input{padding-left:11px}.nav-search-form input::placeholder{font-size:0}.nav-search-form input::placeholder{color:transparent}.search-empty-state{padding:38px 20px}}

/* Final search alignment polish */
.navbar-inner{align-items:center}
.navbar-inner .nav-utilities{height:42px;display:flex;align-items:center;justify-content:flex-end;align-self:center;margin:0}
.nav-search-form{align-self:center;margin:0;padding:0;box-sizing:border-box}
.nav-search-form input{margin:0!important;border-radius:0;-webkit-appearance:none;appearance:none;line-height:1.2;box-shadow:none!important}
.nav-search-form input::-webkit-search-decoration{display:none}.nav-search-form input::-webkit-search-cancel-button{cursor:pointer;opacity:.55}
.nav-search-form button{margin:0;padding:0;line-height:1;box-sizing:border-box}
.mobile-nav-toggle{margin:0;align-self:center}
@media(max-width:1280px){
  .navbar-inner .nav-menu{display:none;position:fixed!important;top:116px!important;left:12px!important;right:12px!important;width:calc(100% - 24px)!important;max-height:calc(100vh - 130px);overflow-y:auto;flex-direction:column!important;align-items:stretch!important;gap:5px!important;padding:16px!important;background:rgba(255,249,252,.99)!important;border:1px solid #efcfdf;border-radius:20px;box-shadow:0 25px 65px rgba(80,37,62,.20)!important}
  .navbar-inner .nav-menu>li>a{width:100%;justify-content:flex-start;padding:11px 13px;font-size:.8rem}
  .navbar-inner .nav-shop-link{justify-content:center!important}
  .mobile-nav-toggle{display:grid;place-items:center}
  .navbar-inner .nav-utilities{min-width:270px}
  .nav-search-form{width:215px}
}
@media(max-width:768px){
  .navbar-inner{width:100%;gap:10px}
  .navbar-inner .nav-brand{flex:0 1 auto;min-width:0}
  .navbar-inner .nav-utilities{flex:1 1 auto;min-width:0;max-width:225px;height:40px}
  .nav-search-form{flex:1 1 auto;width:auto;min-width:120px;max-width:175px;height:40px}
  .nav-search-form input{width:100%;padding-left:13px;font-size:.7rem}
  .nav-search-form input::placeholder{color:#a38496;font-size:.67rem}
  .nav-search-form button{width:36px;height:36px;flex-basis:36px}
}
@media(max-width:480px){
  .navbar-inner .brand-text{display:none}
  .navbar-inner .nav-brand{flex:0 0 45px}
  .navbar-inner .nav-utilities{max-width:none}
  .nav-search-form{max-width:none;min-width:0}
  .nav-search-form input::placeholder{color:#a38496;font-size:.65rem}
}

/* Prevent crowded desktop navigation on laptops and compact displays. */
@media (max-width:1480px) and (min-width:1281px) {
  .reference-navbar { padding-inline:18px; }
  .navbar-inner { min-height:70px; gap:14px; }
  .navbar-inner .nav-brand { min-width:0; }
  .navbar-inner .nav-menu {
    display:none;
    position:fixed!important;
    top:108px!important;
    left:12px!important;
    right:12px!important;
    width:calc(100% - 24px)!important;
    max-height:calc(100vh - 122px);
    overflow-y:auto;
    flex-direction:column!important;
    align-items:stretch!important;
    gap:5px!important;
    padding:16px!important;
    background:rgba(255,249,252,.99)!important;
    border:1px solid #efcfdf;
    border-radius:20px;
    box-shadow:0 25px 65px rgba(80,37,62,.20)!important;
  }
  .navbar-inner .nav-menu.active { display:flex; }
  .navbar-inner .nav-menu>li>a { width:100%; justify-content:flex-start; padding:11px 13px; font-size:.8rem; }
  .navbar-inner .nav-shop-link { justify-content:center!important; }
  .navbar-inner .nav-utilities { min-width:270px; }
  .nav-search-form { width:215px; }
  .mobile-nav-toggle { display:grid; place-items:center; }
}

/* Two-row laptop navigation: keep every menu name visible without collisions. */
@media (min-width:1025px) and (max-width:1600px) {
  .reference-navbar { padding-inline:20px; }
  .navbar-inner {
    width:100%;
    max-width:1380px;
    min-height:0;
    padding:9px 0 8px;
    display:grid;
    grid-template-columns:minmax(210px,auto) minmax(300px,1fr);
    grid-template-rows:52px auto;
    column-gap:24px;
    row-gap:5px;
    align-items:center;
  }
  .navbar-inner .nav-brand {
    grid-column:1;
    grid-row:1;
    min-width:0;
    justify-self:start;
  }
  .navbar-inner .nav-utilities {
    grid-column:2;
    grid-row:1;
    width:auto;
    min-width:285px;
    height:42px;
    justify-self:end;
    align-self:center;
  }
  .nav-search-form {
    width:220px;
    height:42px;
    flex:0 0 220px;
  }
  .navbar-inner .nav-menu,
  .navbar-inner .nav-menu.active {
    grid-column:1 / -1;
    grid-row:2;
    display:flex!important;
    position:static!important;
    inset:auto!important;
    width:100%!important;
    max-height:none;
    margin:0!important;
    padding:7px 0 0!important;
    overflow:visible;
    flex-direction:row!important;
    align-items:center!important;
    justify-content:center!important;
    gap:4px!important;
    background:transparent!important;
    border:0;
    border-top:1px solid rgba(235,194,214,.48);
    border-radius:0;
    box-shadow:none!important;
  }
  .navbar-inner .nav-menu>li { flex:0 0 auto; }
  .navbar-inner .nav-menu>li>a {
    width:auto!important;
    min-height:38px;
    justify-content:center;
    padding:8px 10px;
    font-size:.71rem;
  }
  .navbar-inner .nav-shop-link { padding-inline:15px!important; }
  .mobile-nav-toggle { display:none!important; }
}

/* Final permanent desktop menu strip — never hide or collide above tablet size. */
@media (min-width:1025px) {
  .reference-navbar { padding:0 20px 10px; }
  .navbar-inner {
    width:100%;
    max-width:1440px;
    min-height:0;
    margin:0 auto;
    padding-top:8px;
    display:flex!important;
    flex-flow:row wrap!important;
    align-items:center!important;
    justify-content:flex-start!important;
    gap:6px 20px!important;
  }
  .navbar-inner .nav-brand {
    order:1;
    flex:0 0 auto;
    min-width:210px;
  }
  .navbar-inner .nav-utilities {
    order:2;
    flex:0 0 auto;
    width:auto;
    min-width:278px;
    height:44px;
    margin-left:auto;
    justify-content:flex-end;
  }
  .nav-search-form {
    width:220px;
    height:42px;
    flex:0 0 220px;
  }
  .nav-search-form input {
    display:block;
    width:100%;
    min-width:0;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
  }
  .nav-search-form button {
    flex:0 0 40px;
    width:40px;
    height:40px;
    overflow:hidden;
    font-size:0!important;
  }
  .nav-search-form button i {
    display:block;
    font-size:.88rem;
    line-height:1;
  }
  .nav-search-form button .visually-hidden {
    position:absolute!important;
    width:1px!important;
    height:1px!important;
    padding:0!important;
    margin:-1px!important;
    overflow:hidden!important;
    clip:rect(0,0,0,0)!important;
    white-space:nowrap!important;
    border:0!important;
  }
  .navbar-inner .nav-menu,
  .navbar-inner .nav-menu.active {
    order:3;
    flex:0 0 100%;
    display:flex!important;
    position:static!important;
    inset:auto!important;
    width:100%!important;
    max-height:none!important;
    margin:2px 0 0!important;
    padding:5px 8px!important;
    overflow:visible!important;
    flex-direction:row!important;
    align-items:center!important;
    justify-content:center!important;
    gap:3px!important;
    background:linear-gradient(90deg,rgba(255,240,247,.94),rgba(250,242,251,.94))!important;
    border:1px solid rgba(235,194,214,.58)!important;
    border-radius:15px!important;
    box-shadow:0 7px 20px rgba(113,51,84,.06)!important;
  }
  .navbar-inner .nav-menu>li { flex:0 0 auto; }
  .navbar-inner .nav-menu>li>a {
    width:auto!important;
    min-height:36px;
    padding:7px 10px;
    justify-content:center;
    font-size:.71rem;
    line-height:1.2;
  }
  .navbar-inner .nav-shop-link { padding-inline:15px!important; }
  .mobile-nav-toggle { display:none!important; }
}
@media (min-width:1025px) and (max-width:1160px) {
  .reference-navbar { padding-inline:12px; }
  .navbar-inner .nav-menu { gap:1px!important; padding-inline:4px!important; }
  .navbar-inner .nav-menu>li>a { padding-inline:7px; font-size:.67rem; }
}

/* Global accessible text hiding and search alignment — applies on every device. */
.visually-hidden,
.nav-search-form > label,
.nav-search-form button .visually-hidden {
  position:absolute!important;
  width:1px!important;
  height:1px!important;
  padding:0!important;
  margin:-1px!important;
  overflow:hidden!important;
  clip:rect(0,0,0,0)!important;
  clip-path:inset(50%)!important;
  white-space:nowrap!important;
  border:0!important;
}
.nav-search-form {
  position:relative;
  flex-wrap:nowrap!important;
  align-items:center!important;
}
.nav-search-form input {
  display:block!important;
  min-width:0!important;
  height:100%!important;
  margin:0!important;
  white-space:nowrap!important;
  line-height:1!important;
}
.nav-search-form button {
  position:relative;
  overflow:hidden!important;
  font-size:0!important;
  line-height:1!important;
}
.nav-search-form button i {
  display:block!important;
  font-size:.88rem!important;
  line-height:1!important;
}

/* Compact reference-style collections and category product listing */
.collections-showcase {
  max-width: 1180px;
  padding-top: 54px;
  padding-bottom: 48px;
}
.collections-heading { margin-bottom: 24px; }
.collections-heading h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
.collection-grid.collection-carousel { gap: 18px !important; }
.collection-carousel .collection-card {
  flex-basis: clamp(170px, 17vw, 220px);
  padding-bottom: 10px;
}
.collection-carousel .collection-image,
.collection-carousel .collection-card:nth-child(even) .collection-image {
  border-width: 5px;
  box-shadow: 0 12px 30px rgba(111,50,84,.11);
}
.collection-carousel .collection-card h3 {
  min-height: 42px;
  margin: 12px 5px 2px;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}
.collection-arrow { font-size: 1.25rem; }
.collection-carousel .collection-card p { margin-inline: 5px; font-size: .6rem; }
.collection-controls { margin-top: 10px; }
.collection-control { width: 36px; height: 36px; }

@media (max-width: 768px) {
  .collections-showcase { padding: 38px 0 40px 14px !important; }
  .collections-heading { margin: 0 14px 18px 0; }
  .collections-heading h2 { margin-top: 7px; font-size: 2rem; }
  .collections-heading p { font-size: .73rem; }
  .collection-grid.collection-carousel { gap: 14px !important; padding-bottom: 10px; }
  .collection-carousel .collection-card,
  .collection-carousel .collection-card:last-child {
    flex: 0 0 clamp(145px, 43vw, 172px);
    padding-bottom: 6px;
  }
  .collection-carousel .collection-image,
  .collection-carousel .collection-card:nth-child(even) .collection-image { border-width: 4px; }
  .collection-carousel .collection-card h3 {
    min-height: 38px;
    margin: 10px 4px 2px;
    font-size: 1rem;
  }
  .collection-arrow { font-size: 1.05rem; }
  .collection-carousel .collection-card p { margin-inline: 4px; font-size: .55rem; }
  .collection-controls { margin: 8px 14px 0 0; gap: 16px; }
  .collection-control { width: 34px; height: 34px; }

  .catalog-hero { padding: 34px 16px 24px; }
  .catalog-hero h1 { font-size: 1.75rem; }
  .catalog-hero p { font-size: .78rem; line-height: 1.55; }
  .category-filter {
    margin: 0;
    padding: 12px 12px 6px;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .category-filter::-webkit-scrollbar { display: none; }
  .category-filter .filter-btn { flex: 0 0 auto; padding: 7px 11px; font-size: .68rem; }
  .products-section { padding: 18px 10px 42px !important; }
  .products-section .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px 10px !important;
  }
  .products-section .product-card {
    min-width: 0;
    border-radius: 13px;
    box-shadow: 0 8px 22px rgba(121,56,91,.08);
  }
  .products-section .product-media {
    height: auto !important;
    aspect-ratio: 1 / 1.12 !important;
    border-radius: 12px 12px 0 0;
  }
  .products-section .craft-time-tag {
    top: 7px;
    right: 7px;
    padding: 3px 7px;
    font-size: .55rem;
  }
  .products-section .product-details { padding: 10px 9px 11px; text-align: left; }
  .products-section .product-category { font-size: .55rem; letter-spacing: .05em; }
  .products-section .product-title {
    min-height: 34px;
    margin: 4px 0 5px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: .82rem;
    line-height: 1.3;
  }
  .products-section .product-desc { display: none; }
  .products-section .product-bottom { align-items: stretch; gap: 8px; padding-top: 7px; }
  .products-section .product-price { font-size: .9rem; }
  .products-section .card-actions { display: grid; grid-template-columns: 1fr; gap: 6px; }
  .products-section .btn-sm-enquire,
  .products-section .btn-sm-buy {
    width: 100%;
    min-height: 32px;
    padding: 6px 5px;
    justify-content: center;
    border-radius: 8px;
    font-size: .64rem;
  }
}

@media (max-width: 380px) {
  .collection-carousel .collection-card,
  .collection-carousel .collection-card:last-child { flex-basis: 142px; }
  .products-section .product-grid { gap: 11px 8px !important; }
  .products-section .product-details { padding-inline: 7px; }
  .products-section .product-title { font-size: .76rem; }
  .products-section .btn-sm-enquire,
  .products-section .btn-sm-buy { font-size: .6rem; }
}

/* Extra compact sizing requested for every collection and product card */
.collections-showcase {
  max-width: 1040px;
  padding-top: 42px;
  padding-bottom: 38px;
}
.collections-heading { margin-bottom: 18px; }
.collections-heading h2 { font-size: clamp(1.75rem, 3vw, 2.45rem); }
.collections-heading p { font-size: .78rem; }
.collection-grid.collection-carousel { gap: 14px !important; }
.collection-carousel .collection-card {
  flex: 0 0 clamp(145px, 14.5vw, 185px);
}
.collection-carousel .collection-image,
.collection-carousel .collection-card:nth-child(even) .collection-image { border-width: 4px; }
.collection-carousel .collection-card h3 {
  min-height: 34px;
  margin-top: 9px;
  font-size: clamp(.88rem, 1.25vw, 1.05rem);
}
.collection-carousel .collection-card p { font-size: .52rem; }
.collection-controls { margin-top: 5px; }

.products-section {
  max-width: 1050px;
  padding: 40px 18px;
}
.products-section .product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.products-section .product-card { border-radius: 14px; }
.products-section .product-media { aspect-ratio: 1 / 1.05; }
.products-section .product-details { padding: 12px 11px 13px; }
.products-section .product-title { font-size: .9rem; line-height: 1.32; }
.products-section .product-desc {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: .68rem;
  line-height: 1.45;
}
.products-section .product-price { font-size: .96rem; }
.products-section .btn-sm-enquire,
.products-section .btn-sm-buy { min-height: 34px; padding: 6px 8px; font-size: .66rem; }

@media (max-width: 1024px) and (min-width: 769px) {
  .products-section { max-width: 820px; }
  .products-section .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 15px; }
}

@media (max-width: 768px) {
  .collections-showcase { padding: 30px 0 30px 12px !important; }
  .collections-heading { margin: 0 12px 14px 0; }
  .collections-heading h2 { font-size: 1.7rem; }
  .collections-heading p { max-width: 220px; font-size: .68rem; }
  .collection-grid.collection-carousel { gap: 11px !important; }
  .collection-carousel .collection-card,
  .collection-carousel .collection-card:last-child {
    flex: 0 0 clamp(118px, 36vw, 142px);
  }
  .collection-carousel .collection-card h3 {
    min-height: 30px;
    margin: 7px 3px 1px;
    font-size: .86rem;
  }
  .collection-arrow { font-size: .9rem; }
  .collection-carousel .collection-card p { margin-inline: 3px; font-size: .49rem; }
  .collection-controls { margin: 5px 12px 0 0; }
  .collection-control { width: 30px; height: 30px; font-size: .7rem; }
  .collection-position { font-size: .75rem; }

  .products-section { max-width: 560px; padding: 14px 8px 34px !important; }
  .products-section .product-grid { gap: 10px 8px !important; }
  .products-section .product-media { aspect-ratio: 1 / 1.02 !important; }
  .products-section .product-details { padding: 8px 7px 9px; }
  .products-section .product-category { font-size: .5rem; }
  .products-section .product-title {
    min-height: 30px;
    margin-block: 3px 4px;
    font-size: .74rem;
  }
  .products-section .product-price { font-size: .82rem; }
  .products-section .btn-sm-enquire,
  .products-section .btn-sm-buy {
    min-height: 29px;
    padding: 5px 4px;
    font-size: .58rem;
  }
}

@media (max-width: 360px) {
  .collection-carousel .collection-card,
  .collection-carousel .collection-card:last-child { flex-basis: 114px; }
  .products-section .product-grid { gap: 8px 6px !important; }
  .products-section .product-title { font-size: .7rem; }
}

/* Exact small collection-card scale from the supplied reference */
@media (max-width: 768px) {
  .collections-showcase { padding: 24px 0 25px 10px !important; }
  .collections-heading { margin: 0 10px 12px 0; }
  .collections-heading h2 { font-size: 1.55rem; }
  .collections-heading p { display: none; }
  .collection-grid.collection-carousel {
    gap: 9px !important;
    padding: 5px 10px 7px 0;
  }
  .collection-carousel .collection-card,
  .collection-carousel .collection-card:last-child {
    flex: 0 0 104px;
    padding: 1px 1px 5px;
  }
  .collection-carousel .collection-image,
  .collection-carousel .collection-card:nth-child(even) .collection-image {
    width: 96px;
    height: 96px;
    margin: 0 auto;
    border-width: 3px;
  }
  .collection-carousel .collection-card h3 {
    min-height: 34px;
    margin: 7px 2px 0;
    align-items: flex-start;
    gap: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: .79rem;
    font-weight: 600;
    line-height: 1.18;
  }
  .collection-arrow { margin-top: 0; font-size: .82rem; }
  .collection-carousel .collection-card p { display: none !important; }
  .collection-controls { margin: 5px 10px 0 0; }
  .collection-control { width: 28px; height: 28px; }
}

@media (max-width: 360px) {
  .collection-carousel .collection-card,
  .collection-carousel .collection-card:last-child { flex-basis: 100px; }
  .collection-carousel .collection-image,
  .collection-carousel .collection-card:nth-child(even) .collection-image {
    width: 92px;
    height: 92px;
  }
}

/* Balanced medium collection size from the clarified reference */
@media (max-width: 768px) {
  .collection-grid.collection-carousel { gap: 12px !important; }
  .collection-carousel .collection-card,
  .collection-carousel .collection-card:last-child {
    flex: 0 0 128px;
  }
  .collection-carousel .collection-image,
  .collection-carousel .collection-card:nth-child(even) .collection-image {
    width: 120px;
    height: 120px;
    border-width: 4px;
  }
  .collection-carousel .collection-card h3 {
    min-height: 38px;
    margin-top: 8px;
    font-size: .88rem;
    line-height: 1.2;
  }
  .collection-arrow { font-size: .9rem; }
}

@media (max-width: 360px) {
  .collection-carousel .collection-card,
  .collection-carousel .collection-card:last-child { flex-basis: 120px; }
  .collection-carousel .collection-image,
  .collection-carousel .collection-card:nth-child(even) .collection-image {
    width: 112px;
    height: 112px;
  }
}

/* FINAL desktop geometry: force equal dimensions after every legacy rule */
@media (min-width: 769px) {
  .collection-carousel .collection-card,
  .collection-carousel .collection-card:last-child {
    flex: 0 0 clamp(165px, 15vw, 195px) !important;
  }
  .collection-carousel .collection-image,
  .collection-carousel .collection-card:nth-child(even) .collection-image {
    width: clamp(155px, 14vw, 185px) !important;
    height: clamp(155px, 14vw, 185px) !important;
    min-width: 0 !important;
    min-height: 0 !important;
    aspect-ratio: 1 / 1 !important;
    margin-inline: auto !important;
    border-radius: 50% !important;
  }
  .collection-carousel .collection-image img {
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: 1 / 1 !important;
    border-radius: 50% !important;
    object-fit: cover !important;
  }
}

/* Desktop collection images must remain perfect circles, never ovals */
@media (min-width: 769px) {
  .collection-carousel .collection-card,
  .collection-carousel .collection-card:last-child {
    flex: 0 0 clamp(165px, 15vw, 195px);
  }
  .collection-carousel .collection-image,
  .collection-carousel .collection-card:nth-child(even) .collection-image {
    width: clamp(155px, 14vw, 185px) !important;
    height: clamp(155px, 14vw, 185px) !important;
    aspect-ratio: 1 / 1 !important;
    margin-inline: auto;
    border-radius: 50% !important;
  }
  .collection-carousel .collection-image img {
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: 1 / 1 !important;
    border-radius: 50% !important;
    object-fit: cover !important;
  }
}

/* Reference-inspired dynamic collections carousel */
.collections-showcase {
  max-width:1320px;
  padding-top:76px;
  padding-bottom:72px;
  overflow:hidden;
}
.collections-heading {
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:24px;
  margin-bottom:34px;
}
.collections-heading .eyebrow {
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 13px;
  border:1px solid #f4cedf;
  border-radius:99px;
  background:#fff0f6;
  color:#cf4d82;
  font-size:.7rem;
  font-weight:700;
  letter-spacing:.17em;
  text-transform:uppercase;
}
.collections-heading .eyebrow::before { content:'✦'; color:#b879cc; }
.collections-heading h2 {
  margin:10px 0 6px;
  color:#4f3146;
  font-family:'Playfair Display',Georgia,serif;
  font-size:clamp(2.3rem,4.5vw,4rem);
  line-height:1;
}
.collections-heading p { color:#8b7080; font-size:.88rem; }
.collections-view-all {
  display:inline-flex;
  align-items:center;
  gap:9px;
  padding:10px 16px;
  border:1px solid #edbfd4;
  border-radius:99px;
  color:#a83f6c;
  background:#fff8fb;
  font-size:.76rem;
  font-weight:700;
  white-space:nowrap;
}
.collections-view-all:hover { background:#fde7f0; color:#c43d75; transform:translateY(-2px); }
.collection-carousel-wrap {
  position:relative;
  margin-inline:-10px;
}
.collection-grid.collection-carousel {
  display:flex!important;
  grid-template-columns:none!important;
  gap:clamp(18px,2.2vw,30px)!important;
  width:100%;
  padding:12px 10px 20px;
  overflow-x:auto;
  overflow-y:hidden;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  overscroll-behavior-inline:contain;
  scrollbar-width:none;
  -ms-overflow-style:none;
}
.collection-grid.collection-carousel::-webkit-scrollbar { display:none; }
.collection-carousel .collection-card {
  flex:0 0 clamp(220px,22.5vw,292px);
  width:auto!important;
  padding:4px 4px 16px;
  display:block;
  text-align:left;
  scroll-snap-align:start;
  border-radius:28px;
  background:transparent;
  transition:transform .3s ease;
}
.collection-carousel .collection-card:hover { transform:translateY(-6px); background:transparent; }
.collection-carousel .collection-image,
.collection-carousel .collection-card:nth-child(even) .collection-image {
  width:100%;
  aspect-ratio:1;
  overflow:hidden;
  border:8px solid #fff;
  outline:1px solid rgba(231,184,208,.72);
  border-radius:50%;
  background:linear-gradient(145deg,#ffedf5,#f3e8fa);
  box-shadow:0 20px 48px rgba(111,50,84,.13);
}
.collection-carousel .collection-image img {
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  transition:transform .55s cubic-bezier(.2,.7,.2,1);
}
.collection-carousel .collection-card:hover .collection-image img { transform:scale(1.055); }
.collection-carousel .collection-card h3 {
  min-height:58px;
  margin:18px 7px 4px;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  color:#4d3245;
  font-family:'Playfair Display',Georgia,serif;
  font-size:clamp(1.22rem,2vw,1.72rem);
  font-weight:600;
  line-height:1.08;
}
.collection-arrow {
  flex:0 0 auto;
  margin-top:-2px;
  color:#c6497b;
  font-family:'Montserrat',sans-serif;
  font-size:1.65rem;
  font-weight:400;
  transition:transform .25s ease;
}
.collection-card:hover .collection-arrow { transform:translateX(5px); }
.collection-carousel .collection-card p {
  margin:0 7px;
  color:#9a7a8c;
  font-size:.7rem;
  font-weight:600;
  letter-spacing:.04em;
  text-transform:uppercase;
}
.collection-controls {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:24px;
  margin-top:20px;
}
.collection-control {
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border:1px solid #e9c6d7;
  border-radius:50%;
  background:#fff;
  color:#6c465c;
  cursor:pointer;
  transition:background .2s ease,color .2s ease,transform .2s ease,opacity .2s ease;
}
.collection-control:hover:not(:disabled) {
  color:#fff;
  background:#d95488;
  border-color:#d95488;
  transform:translateY(-2px);
}
.collection-control:disabled { opacity:.3; cursor:not-allowed; }
.collection-position {
  min-width:58px;
  color:#6f5665;
  font-size:.86rem;
  font-weight:600;
  text-align:center;
}
@media (max-width:768px) {
  .collections-showcase { padding:54px 0 58px 18px!important; }
  .collections-heading { align-items:flex-start; margin:0 18px 26px 0; }
  .collections-heading h2 { font-size:2.65rem; }
  .collections-heading p { max-width:250px; font-size:.8rem; }
  .collections-view-all { display:none; }
  .collection-carousel-wrap { margin:0; }
  .collection-grid.collection-carousel {
    gap:18px!important;
    padding:8px 18px 18px 0;
    scroll-padding-left:0;
  }
  .collection-carousel .collection-card,
  .collection-carousel .collection-card:last-child {
    flex:0 0 min(72vw,285px);
    width:auto!important;
    grid-column:auto!important;
    justify-self:auto!important;
    padding-inline:2px;
  }
  .collection-carousel .collection-image,
  .collection-carousel .collection-card:nth-child(even) .collection-image { border-width:6px; }
  .collection-carousel .collection-card h3 {
    min-height:54px;
    margin-top:15px;
    font-size:1.45rem;
  }
  .collection-carousel .collection-card p { display:block; font-size:.64rem; }
  .collection-controls { margin:14px 18px 0 0; gap:20px; }
}
@media (max-width:420px) {
  .collections-showcase { padding-left:14px!important; }
  .collections-heading { margin-right:14px; }
  .collections-heading h2 { font-size:2.35rem; }
  .collection-carousel .collection-card,
  .collection-carousel .collection-card:last-child { flex-basis:76vw; }
}

/* FINAL collection scale: stable medium reference size */
.collections-showcase {
  max-width: 1080px;
  padding-top: 42px;
  padding-bottom: 38px;
}
.collections-heading { margin-bottom: 18px; }
.collections-heading h2 { font-size: clamp(1.85rem, 3vw, 2.6rem); }
.collection-grid.collection-carousel { gap: 16px !important; }
.collection-carousel .collection-card,
.collection-carousel .collection-card:last-child {
  flex: 0 0 clamp(155px, 15vw, 195px);
  width: auto !important;
  padding-bottom: 8px;
}
.collection-carousel .collection-image,
.collection-carousel .collection-card:nth-child(even) .collection-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  border-width: 4px;
}
.collection-carousel .collection-card h3 {
  min-height: 36px;
  margin: 10px 4px 1px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
}
.collection-arrow { font-size: 1rem; }
.collection-carousel .collection-card p { display: none !important; }
.collection-controls { margin-top: 8px; }

@media (max-width: 768px) {
  .collections-showcase { padding: 28px 0 30px 12px !important; }
  .collections-heading { margin: 0 12px 15px 0; }
  .collections-heading h2 { font-size: 1.75rem; }
  .collections-heading p { display: none; }
  .collection-grid.collection-carousel {
    gap: 12px !important;
    padding: 5px 12px 9px 0;
  }
  .collection-carousel .collection-card,
  .collection-carousel .collection-card:last-child {
    flex: 0 0 128px;
    padding: 1px 1px 5px;
  }
  .collection-carousel .collection-image,
  .collection-carousel .collection-card:nth-child(even) .collection-image {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    border-width: 4px;
  }
  .collection-carousel .collection-card h3 {
    min-height: 38px;
    margin: 8px 3px 0;
    font-size: .88rem;
    line-height: 1.2;
  }
  .collection-arrow { font-size: .9rem; }
  .collection-carousel .collection-card p { display: none !important; }
  .collection-controls { margin: 7px 12px 0 0; }
  .collection-control { width: 30px; height: 30px; }
}

@media (max-width: 360px) {
  .collection-carousel .collection-card,
  .collection-carousel .collection-card:last-child { flex-basis: 120px; }
  .collection-carousel .collection-image,
  .collection-carousel .collection-card:nth-child(even) .collection-image {
    width: 112px;
    height: 112px;
  }
}

/* ABSOLUTE FINAL desktop circle lock */
@media (min-width: 769px) {
  .collection-carousel .collection-card,
  .collection-carousel .collection-card:last-child {
    flex: 0 0 clamp(165px, 15vw, 195px) !important;
  }
  .collection-carousel .collection-image,
  .collection-carousel .collection-card:nth-child(even) .collection-image {
    width: clamp(155px, 14vw, 185px) !important;
    height: clamp(155px, 14vw, 185px) !important;
    min-width: 0 !important;
    min-height: 0 !important;
    aspect-ratio: 1 / 1 !important;
    margin-inline: auto !important;
    border-radius: 50% !important;
  }
  .collection-carousel .collection-image img {
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: 1 / 1 !important;
    border-radius: 50% !important;
    object-fit: cover !important;
  }
}

