:root{
  --burgundy:#6D2348;
  --dark-burgundy:#4A1730;
  --gold:#D8B56A;
  --light-gold:#E8CC8A;
  --ivory:#FBF8F2;
  --white:#fff;
  --ink:#292326;
  --muted:#766D72;
  --border:#E8DDE2;

  --shadow:
    0 18px 60px
    rgba(74,23,48,.08);

  --container-width:1160px;
  --section-padding:94px;
  --hero-gap:60px;
  --category-gap:14px;
  --social-gap:12px;
  --social-columns:6;
  --social-radius:12px;

  --radius:12px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  color:var(--ink);
  background:var(--ivory);
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height:1.6;
}

[hidden]{
  display:none !important;
}

img{
  max-width:100%;
}

a{
  color:inherit;
  text-decoration:none;
}

button,
input,
textarea,
select{
  font:inherit;
}

.container{
  width:min(
    var(--container-width),
    calc(100% - 40px)
  );
  margin:0 auto;
}

.announcement{
  min-height:34px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:7px 15px;
  text-align:center;
  background:var(--burgundy);
  color:#fff;
  font-size:12px;
  letter-spacing:.04em;
}

.site-header{
  min-height:82px;
  padding:
    0
    max(
      20px,
      calc(
        (100vw - var(--container-width))
        / 2
      )
    );
  display:flex;
  align-items:center;
  gap:28px;
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(
    251,
    248,
    242,
    .97
  );
  border-bottom:1px solid var(--border);
  backdrop-filter:blur(15px);
}

.brand{
  display:flex;
  align-items:center;
  min-width:160px;
}

.brand img{
  width:160px;
  max-height:62px;
  object-fit:contain;
  display:block;
}

.brand-fallback{
  display:none;
  font-family:
    Georgia,
    serif;
  font-size:25px;
  letter-spacing:.02em;
  color:var(--burgundy);
}

.brand-fallback span{
  color:var(--gold);
}

.desktop-nav{
  flex:1;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:26px;
}

.desktop-nav a{
  position:relative;
  padding:28px 0;
  font-size:14px;
  color:#554e52;
  transition:.2s;
}

.desktop-nav a:hover,
.desktop-nav a.active{
  color:var(--burgundy);
}

.desktop-nav a.active::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:20px;
  height:2px;
  border-radius:10px;
  background:var(--gold);
}

.header-actions{
  display:flex;
  align-items:center;
  gap:12px;
}

.icon-btn,
.menu-btn{
  border:0;
  background:transparent;
  color:var(--dark-burgundy);
  cursor:pointer;
}

.icon-btn{
  font-size:21px;
}

.menu-btn{
  display:none;
  font-size:21px;
}

.cart-link{
  font-size:14px;
  font-weight:700;
}

.count-pill{
  min-width:22px;
  height:22px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-left:4px;
  padding:0 6px;
  border-radius:99px;
  background:var(--gold);
  color:var(--dark-burgundy);
  font-size:11px;
}

.mobile-nav{
  display:none;
  padding:15px 20px;
  background:var(--ivory);
  border-bottom:1px solid var(--border);
}

.mobile-nav a{
  display:block;
  padding:10px 0;
  color:#554e52;
}

.eyebrow{
  display:inline-block;
  color:var(--burgundy);
  font-size:11px;
  font-weight:700;
  letter-spacing:.12em;
}

.gold-eyebrow{
  color:var(--light-gold);
}

h1,
h2,
h3{
  font-family:
    "Playfair Display",
    Georgia,
    serif;
}

h1,
h2,
h3,
p{
  margin-top:0;
}

.hero{
  min-height:640px;
  display:grid;
  grid-template-columns:
    1.02fr .98fr;
  align-items:center;
  gap:var(--hero-gap);
  padding:
    58px 0
    70px;
}

.hero h1{
  margin:18px 0 22px;
  font-size:
    clamp(
      44px,
      5.4vw,
      70px
    );
  line-height:1.06;
}

.hero p{
  max-width:590px;
  font-size:18px;
  color:var(--muted);
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:28px;
}

.hero-art{
  display:flex;
  justify-content:center;
}

.hero-frame{
  width:min(
    470px,
    100%
  );
  aspect-ratio:4/5;
  display:grid;
  place-items:center;
  overflow:hidden;
  border-radius:20px;
  background:
    linear-gradient(
      145deg,
      #f4ece3,
      #fff
    );
  box-shadow:var(--shadow);
}

.hero-frame img{
  width:100%;
  height:100%;
  object-fit:contain;
}

.btn{
  min-height:48px;
  display:inline-flex;
  justify-content:center;
  align-items:center;
  padding:0 20px;
  border:1px solid transparent;
  border-radius:9px;
  font-size:13px;
  font-weight:700;
  cursor:pointer;
  transition:.2s;
}

.btn-primary{
  background:var(--burgundy);
  color:#fff;
}

.btn-primary:hover{
  background:var(--dark-burgundy);
}

.btn-secondary{
  background:#fff;
  color:var(--burgundy);
  border-color:var(--border);
}

.btn-secondary:hover{
  border-color:var(--burgundy);
}

.btn-light{
  background:#fff;
  color:var(--dark-burgundy);
}

.btn-dark{
  background:var(--dark-burgundy);
  color:#fff;
}

.btn-danger{
  background:#fff1f2;
  color:#a23d45;
  border-color:#f2c5ca;
}

.small{
  min-height:38px;
  padding:0 12px;
  font-size:12px;
}

.section{
  padding:
    var(--section-padding)
    0;
}

.section-soft{
  background:#f7f1e9;
}

.section-tinted{
  background:#f4ecef;
}

.section-head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:20px;
  margin-bottom:34px;
}

.section-head.centered{
  justify-content:center;
  text-align:center;
}

.section-head h2{
  margin:8px 0 0;
  font-size:40px;
}

.text-link{
  color:var(--burgundy);
  font-size:13px;
  font-weight:700;
}

/* CATEGORY */

.category-grid{
  display:grid;
  grid-template-columns:
    repeat(
      6,
      minmax(0,1fr)
    );
  gap:var(--category-gap);
}

.category-card{
  display:flex;
  flex-direction:column;
  overflow:hidden;
  background:#fff;
  border:1px solid var(--border);
  border-radius:15px;
  box-shadow:
    0 8px 30px
    rgba(74,23,48,.05);
  transition:
    transform .25s,
    box-shadow .25s;
}

.category-card:hover{
  transform:translateY(-4px);
  box-shadow:
    0 16px 40px
    rgba(74,23,48,.09);
}

.category-image{
  width:100%;
  aspect-ratio:1/1;
  overflow:hidden;
  background:#f3ebe2;
}

.category-image img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  transition:.3s;
}

.category-card:hover
.category-image img{
  transform:scale(1.035);
}

.category-placeholder{
  width:100%;
  height:100%;
  display:grid;
  place-items:center;
  padding:20px;
  color:var(--burgundy);
  font-family:
    "Playfair Display",
    Georgia,
    serif;
  text-align:center;
  font-size:18px;
}

.category-card > span{
  padding:14px;
  text-align:center;
  font-size:13px;
  font-weight:700;
}

/* PRODUCTS */

.product-grid{
  display:grid;
  grid-template-columns:
    repeat(4,1fr);
  gap:22px;
}

.product-card{
  min-width:0;
}

.product-image-wrap{
  position:relative;
  display:block;
  aspect-ratio:1/1;
  overflow:hidden;
  border-radius:14px;
  background:#f6eee7;
}

.product-image-wrap img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.3s;
}

.product-image-wrap:hover img{
  transform:scale(1.035);
}

.product-badge{
  position:absolute;
  top:11px;
  left:11px;
  padding:5px 8px;
  background:var(--burgundy);
  color:#fff;
  border-radius:4px;
  font-size:9px;
  font-weight:700;
  letter-spacing:.08em;
}

.product-cat{
  margin-top:12px;
  color:var(--muted);
  font-size:10px;
  font-weight:600;
  letter-spacing:.13em;
  text-transform:uppercase;
}

.product-card h3{
  margin:5px 0 8px;
  font-size:16px;
}

.price-row{
  display:flex;
  align-items:center;
  gap:8px;
}

.price-row strong{
  font-size:15px;
}

.price-row del{
  color:#9b8f94;
  font-size:13px;
}

.quick-add{
  margin-top:9px;
  padding:0;
  border:0;
  background:transparent;
  color:var(--burgundy);
  font-size:12px;
  font-weight:700;
  cursor:pointer;
}

/* SHOP */

.shop-hero{
  padding:
    72px 0
    48px;
  text-align:center;
  background:
    radial-gradient(
      circle at top,
      #fff,
      #f7efe7 70%
    );
  border-bottom:1px solid var(--border);
}

.shop-hero h1{
  margin:10px 0 8px;
  font-size:56px;
}

.shop-hero p{
  margin:0;
  color:var(--muted);
}

.shop-controls-section{
  padding:45px 0 90px;
}

.shop-toolbar{
  position:relative;
  padding:18px;
  border:1px solid var(--border);
  border-radius:18px;
  background:rgba(
    255,
    255,
    255,
    .75
  );
  box-shadow:
    0 18px 50px
    rgba(74,23,48,.06);
  backdrop-filter:blur(10px);
}

.shop-search{
  position:relative;
  display:flex;
  align-items:center;
  min-height:56px;
  margin-bottom:18px;
  border:1px solid #e0d4da;
  border-radius:13px;
  background:#fff;
  box-shadow:
    inset 0 0 0 1px
    rgba(255,255,255,.7);
}

.shop-search:focus-within{
  border-color:var(--gold);
  box-shadow:
    0 0 0 4px
    rgba(216,181,106,.12);
}

.shop-search-icon{
  margin-left:17px;
  color:var(--burgundy);
  font-size:21px;
}

.shop-search input{
  flex:1;
  min-width:0;
  height:54px;
  padding:0 14px;
  border:0;
  outline:0;
  background:transparent;
  color:var(--ink);
  font-size:14px;
}

.clear-search{
  width:34px;
  height:34px;
  margin-right:9px;
  border:0;
  border-radius:50%;
  background:#f4ecee;
  color:var(--burgundy);
  cursor:pointer;
  font-size:19px;
}

.shop-filters{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:15px;
  flex-wrap:wrap;
}

.category-chips{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}

.category-chip{
  min-height:39px;
  padding:0 14px;
  border:1px solid #ded2d8;
  border-radius:999px;
  background:#fff;
  color:#60575c;
  font-size:12px;
  font-weight:700;
  cursor:pointer;
  transition:.2s;
}

.category-chip:hover{
  border-color:var(--gold);
  color:var(--burgundy);
}

.category-chip.active{
  border-color:var(--burgundy);
  background:var(--burgundy);
  color:#fff;
  box-shadow:
    0 5px 18px
    rgba(109,35,72,.16);
}

.filter-select{
  min-width:205px;
  display:grid;
  grid-template-columns:auto 1fr;
  align-items:center;
  gap:9px;
  padding:5px 7px 5px 13px;
  border:1px solid #ded2d8;
  border-radius:999px;
  background:#fff;
}

.filter-select span{
  color:var(--muted);
  font-size:11px;
  font-weight:700;
  letter-spacing:.05em;
  text-transform:uppercase;
}

.filter-select select{
  min-height:31px;
  border:0;
  outline:0;
  background:transparent;
  color:var(--ink);
  font-size:12px;
  font-weight:700;
  cursor:pointer;
}

.shop-result-bar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:15px;
  margin-top:16px;
  padding-top:14px;
  border-top:1px solid #eee5e8;
}

.shop-result-bar span{
  color:var(--muted);
  font-size:12px;
}

.clear-filters{
  border:0;
  background:transparent;
  color:var(--burgundy);
  font-size:12px;
  font-weight:700;
  cursor:pointer;
}

.shop-product-grid{
  margin-top:30px;
}

.empty-shop{
  max-width:560px;
  margin:50px auto;
  padding:60px 30px;
  text-align:center;
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  box-shadow:
    0 12px 35px
    rgba(74,23,48,.05);
}

.empty-shop-icon{
  width:55px;
  height:55px;
  margin:0 auto 15px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#f4e9ee;
  color:var(--burgundy);
}

/* COMBO */

.burgundy-section{
  background:var(--dark-burgundy);
  color:#fff;
}

.combo-editor-layout{
  display:grid;
  grid-template-columns:
    1.15fr .85fr;
  align-items:center;
  gap:55px;
}

.combo-editor-copy p{
  max-width:650px;
  color:#eadfe4;
}

.combo-card{
  overflow:hidden;
  border-radius:17px;
  background:
    linear-gradient(
      145deg,
      #f7eee6,
      #efdcd4
    );
}

.combo-card-content{
  padding:30px;
  color:var(--dark-burgundy);
}

.combo-image-wrap{
  width:100%;
  aspect-ratio:1/1;
  background:#efe5db;
}

.combo-image-wrap img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.combo-card-content > span{
  font-size:10px;
  font-weight:800;
  letter-spacing:.16em;
}

.combo-card-content h3{
  margin:10px 0;
  font-size:30px;
}

.combo-card-content p{
  color:var(--muted);
}

.combo-card-content strong{
  font-size:30px;
}

/* ABOUT / FAQ */

.story-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:70px;
}

.story-copy{
  color:var(--muted);
  font-size:17px;
}

.feature-row{
  display:grid;
  grid-template-columns:
    repeat(3,1fr);
  gap:18px;
  margin-top:28px;
}

.feature-row div{
  padding-top:14px;
  border-top:1px solid var(--border);
}

.feature-row strong{
  display:block;
  color:var(--burgundy);
}

.social-grid{
  display:grid;
  grid-template-columns:
    repeat(
      var(--social-columns),
      minmax(0,1fr)
    );
  gap:var(--social-gap);
}

.social-gallery-item{
  overflow:hidden;
  aspect-ratio:1/1;
  border-radius:var(--social-radius);
  background:#eee4da;
}

.social-gallery-item img{
  width:100%;
  height:100%;
  display:block;
}

.faq-page-hero{
  padding:76px 0 35px;
  text-align:center;
  background:
    linear-gradient(
      180deg,
      #fff,
      #f7efe7
    );
  border-bottom:1px solid var(--border);
}

.faq-page-hero h1{
  margin:10px 0;
  font-size:56px;
}

.faq-page-hero p{
  margin:0;
  color:var(--muted);
}

.faq-list{
  width:min(
    900px,
    100%
  );
  margin:0 auto;
  display:grid;
  gap:12px;
}

.faq-list details{
  overflow:hidden;
  border:1px solid var(--border);
  border-radius:15px;
  background:#fff;
  box-shadow:
    0 9px 30px
    rgba(74,23,48,.05);
}

.faq-list summary{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:22px 24px;
  list-style:none;
  cursor:pointer;
  font-weight:700;
}

.faq-list summary::-webkit-details-marker{
  display:none;
}

.faq-list summary b{
  width:30px;
  height:30px;
  flex:0 0 30px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#f4e8ed;
  color:var(--burgundy);
  transition:.25s;
}

.faq-list details[open]
summary b{
  transform:rotate(45deg);
  background:var(--burgundy);
  color:#fff;
}

.faq-answer{
  padding:
    0
    24px
    24px;
  color:var(--muted);
  line-height:1.8;
}

/* FOOTER */

.site-footer{
  padding:60px 0 20px;
  background:var(--dark-burgundy);
  color:#fff;
}

.footer-grid{
  display:grid;
  grid-template-columns:
    2fr 1fr 1fr 1fr;
  gap:35px;
}

.footer-brand{
  display:inline-flex;
  margin-bottom:12px;
}

.footer-brand img{
  width:170px;
  max-height:75px;
  object-fit:contain;
}

.footer-grid h4{
  margin:0 0 12px;
  font-size:13px;
  letter-spacing:.05em;
}

.footer-grid a:not(.footer-brand){
  display:block;
  margin:7px 0;
  color:#eadfe4;
  font-size:13px;
}

.footer-grid p{
  color:#eadfe4;
}

.footer-bottom{
  margin-top:35px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.14);
  color:#d9cbd2;
  font-size:12px;
}

/* ADMIN */

.admin-body{
  min-height:100vh;
  background:
    radial-gradient(
      circle at top,
      #fff,
      #f4ebe2 75%
    );
}

.admin-shell{
  width:min(
    1180px,
    calc(100% - 40px)
  );
  margin:40px auto 70px;
}

.admin-card{
  width:min(
    480px,
    100%
  );
  margin:60px auto;
  padding:35px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  box-shadow:var(--shadow);
}

.admin-brand-link{
  display:inline-flex;
  margin-bottom:15px;
}

.admin-logo{
  width:180px;
  max-height:70px;
  object-fit:contain;
}

.admin-card form{
  display:grid;
  gap:16px;
}

.admin-card label{
  display:grid;
  gap:7px;
  font-size:13px;
  font-weight:700;
}

.admin-card input{
  height:46px;
  border:1px solid var(--border);
  border-radius:9px;
  padding:0 12px;
  outline:0;
}

.admin-submit{
  width:100%;
}

.admin-loading{
  min-height:100vh;
  display:grid;
  place-items:center;
  padding:20px;
}

.admin-loading-card{
  width:min(
    380px,
    100%
  );
  padding:38px 28px;
  display:grid;
  justify-items:center;
  gap:12px;
  text-align:center;
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  box-shadow:var(--shadow);
}

.admin-loading-logo{
  width:175px;
  max-height:70px;
  object-fit:contain;
}

.admin-loading-card span{
  color:var(--muted);
  font-size:12px;
}

.loading-spinner{
  width:34px;
  height:34px;
  border:3px solid #eadde2;
  border-top-color:var(--burgundy);
  border-radius:50%;
  animation:spin .8s linear infinite;
}

@keyframes spin{
  to{
    transform:rotate(360deg);
  }
}

.admin-topbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  margin-bottom:25px;
}

.admin-topbar h1{
  margin:7px 0 0;
}

.admin-actions{
  display:flex;
  gap:10px;
}

.admin-tabs{
  display:flex;
  gap:5px;
  overflow:auto;
  margin-bottom:25px;
  border-bottom:1px solid var(--border);
}

.tab{
  min-height:45px;
  padding:0 16px;
  border:0;
  border-bottom:2px solid transparent;
  background:transparent;
  color:var(--muted);
  font-size:13px;
  font-weight:700;
  cursor:pointer;
}

.tab.active{
  color:var(--burgundy);
  border-bottom-color:var(--burgundy);
}

.stats-grid{
  display:grid;
  grid-template-columns:
    repeat(4,1fr);
  gap:16px;
}

.stat-card{
  padding:22px;
  border:1px solid var(--border);
  border-radius:14px;
  background:#fff;
}

.stat-card span{
  color:var(--muted);
  font-size:12px;
}

.stat-card strong{
  display:block;
  margin-top:3px;
  color:var(--burgundy);
  font-size:38px;
  font-family:
    "Playfair Display",
    Georgia,
    serif;
}

.admin-welcome-card{
  margin-top:18px;
  padding:28px;
  border-radius:15px;
  background:
    linear-gradient(
      135deg,
      var(--dark-burgundy),
      var(--burgundy)
    );
  color:#fff;
}

.admin-welcome-card p{
  color:#eadfe4;
  max-width:680px;
}

.admin-section-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:20px;
  margin-bottom:18px;
}

.admin-section-head h2{
  margin:5px 0 0;
}

.admin-list{
  display:grid;
  gap:12px;
}

.admin-row{
  display:flex;
  align-items:center;
  gap:14px;
  padding:13px;
  border:1px solid var(--border);
  border-radius:12px;
  background:#fff;
}

.admin-row img{
  width:68px;
  height:68px;
  object-fit:cover;
  border-radius:9px;
  background:#f5ece4;
}

.admin-row .grow{
  flex:1;
  display:grid;
  gap:3px;
}

.admin-row .grow span{
  color:var(--muted);
  font-size:12px;
}

.admin-order{
  padding:16px;
  border:1px solid var(--border);
  border-radius:12px;
  background:#fff;
}

.admin-order-head{
  display:flex;
  justify-content:space-between;
  gap:15px;
}

.admin-order p{
  margin:8px 0 0;
  color:var(--muted);
  font-size:13px;
}

.status{
  padding:4px 8px;
  border-radius:999px;
  background:#f2e6eb;
  color:var(--burgundy);
  font-size:10px;
  font-weight:700;
}

.order-actions{
  margin-top:12px;
}

.order-actions select{
  min-height:38px;
  padding:0 11px;
  border:1px solid var(--border);
  border-radius:8px;
  background:#fff;
}

.form-grid{
  display:grid;
  grid-template-columns:
    repeat(2,minmax(0,1fr));
  gap:16px;
}

.form-grid label{
  display:grid;
  gap:7px;
  font-size:13px;
  font-weight:700;
}

.form-grid label.full{
  grid-column:1/-1;
}

.form-grid input,
.form-grid textarea,
.form-grid select{
  width:100%;
  border:1px solid var(--border);
  border-radius:8px;
  padding:11px 12px;
  outline:0;
  background:#fff;
}

.form-grid input:focus,
.form-grid textarea:focus,
.form-grid select:focus{
  border-color:var(--gold);
}

.editor-intro,
.editor-section{
  padding:26px;
  margin-bottom:18px;
  border:1px solid var(--border);
  border-radius:15px;
  background:#fff;
}

.editor-intro h2{
  margin:7px 0;
}

.editor-intro p{
  max-width:760px;
  margin-bottom:0;
  color:var(--muted);
}

.editor-section-head{
  margin-bottom:18px;
}

.editor-section-head h3{
  margin:0 0 5px;
  font-size:23px;
}

.editor-grid{
  display:grid;
  grid-template-columns:
    repeat(2,minmax(0,1fr));
  gap:17px;
}

.editor-field{
  display:grid;
  gap:7px;
}

.editor-field > span{
  font-size:12px;
  font-weight:700;
}

.editor-field input,
.editor-field textarea,
.editor-field select{
  min-height:44px;
  width:100%;
  padding:10px 12px;
  border:1px solid var(--border);
  border-radius:8px;
  background:#fff;
  outline:0;
}

.editor-field textarea{
  resize:vertical;
}

.editor-field input[type="color"]{
  padding:4px;
  cursor:pointer;
}

.editor-media-list{
  margin-top:22px;
  padding-top:20px;
  border-top:1px solid var(--border);
}

.editor-media-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:15px;
  margin-bottom:13px;
}

.admin-image-preview{
  width:230px;
  min-height:160px;
  overflow:hidden;
  display:grid;
  place-items:center;
  border:1px solid var(--border);
  border-radius:12px;
  background:#f4ece3;
}

.admin-image-preview img{
  width:100%;
  height:100%;
  max-height:230px;
  object-fit:cover;
}

.gallery-editor-list{
  display:grid;
  gap:12px;
}

.gallery-editor-row{
  display:grid;
  grid-template-columns:105px 1fr;
  gap:15px;
  padding:12px;
  border:1px solid var(--border);
  border-radius:11px;
  background:#fcfaf7;
}

.gallery-preview{
  width:105px;
  height:105px;
  overflow:hidden;
  border-radius:8px;
  background:#f0e7de;
}

.gallery-preview img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.gallery-editor-main{
  display:grid;
  gap:7px;
}

.gallery-url{
  color:var(--muted);
  font-size:11px;
  word-break:break-all;
}

.gallery-actions{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
}

.faq-editor-list{
  display:grid;
  gap:13px;
  margin:18px 0;
}

.faq-editor-item{
  display:grid;
  grid-template-columns:40px 1fr;
  gap:12px;
  padding:14px;
  border:1px solid var(--border);
  border-radius:11px;
  background:#fcfaf7;
}

.faq-editor-number{
  width:36px;
  height:36px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:var(--burgundy);
  color:#fff;
  font-weight:700;
}

.faq-editor-fields{
  display:grid;
  gap:9px;
}

.faq-editor-fields input,
.faq-editor-fields textarea{
  width:100%;
  padding:11px 12px;
  border:1px solid var(--border);
  border-radius:8px;
  outline:0;
}

.editor-save-bar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  margin-top:20px;
  padding:20px 22px;
  border-radius:15px;
  background:var(--dark-burgundy);
  color:#fff;
}

.editor-save-bar > div{
  display:grid;
  gap:4px;
}

.editor-save-bar span{
  color:#eadfe4;
  font-size:12px;
}

.empty-state{
  padding:55px 20px;
  text-align:center;
  color:var(--muted);
}

.form-message{
  min-height:20px;
  font-size:12px;
}

.form-message.error{
  color:#a23d45;
}

.form-message.success{
  color:#2e7751;
}

.modal{
  position:fixed;
  inset:0;
  z-index:100;
  display:grid;
  place-items:center;
  padding:20px;
  background:rgba(
    25,
    10,
    18,
    .45
  );
}

.modal-card{
  position:relative;
  width:min(
    760px,
    100%
  );
  max-height:90vh;
  overflow:auto;
  padding:28px;
  border-radius:16px;
  background:#fff;
}

.modal-close{
  position:absolute;
  right:13px;
  top:9px;
  border:0;
  background:transparent;
  font-size:27px;
  cursor:pointer;
}

/* RESPONSIVE */

@media(max-width:900px){

  .desktop-nav{
    display:none;
  }

  .menu-btn{
    display:block;
  }

  .site-header{
    padding:0 20px;
    gap:14px;
  }

  .mobile-nav:not([hidden]){
    display:block;
  }

  .hero{
    grid-template-columns:1fr;
    min-height:auto;
  }

  .hero-art{
    order:-1;
  }

  .category-grid{
    grid-template-columns:
      repeat(3,1fr);
  }

  .product-grid{
    grid-template-columns:
      repeat(2,1fr);
  }

  .combo-editor-layout,
  .story-grid{
    grid-template-columns:1fr;
  }

  .social-grid{
    grid-template-columns:
      repeat(3,1fr);
  }

  .footer-grid{
    grid-template-columns:
      1.4fr 1fr 1fr;
  }

  .stats-grid{
    grid-template-columns:
      repeat(2,1fr);
  }

}

@media(max-width:620px){

  .container{
    width:
      calc(100% - 28px);
  }

  .brand{
    min-width:0;
  }

  .brand img{
    width:135px;
  }

  .header-actions .icon-btn{
    display:none;
  }

  .hero h1{
    font-size:38px;
  }

  .hero p{
    font-size:15px;
  }

  .section{
    padding:66px 0;
  }

  .section-head h2{
    font-size:30px;
  }

  .category-grid{
    grid-template-columns:
      repeat(2,1fr);
  }

  .social-grid{
    grid-template-columns:
      repeat(2,1fr);
  }

  .shop-hero h1,
  .faq-page-hero h1{
    font-size:40px;
  }

  .shop-filters{
    align-items:stretch;
  }

  .category-chips{
    width:100%;
    overflow:auto;
    flex-wrap:nowrap;
    padding-bottom:3px;
  }

  .category-chip{
    flex:0 0 auto;
  }

  .filter-select{
    width:100%;
  }

  .shop-result-bar{
    align-items:flex-start;
    flex-direction:column;
  }

  .footer-grid{
    grid-template-columns:
      1fr 1fr;
  }

  .form-grid{
    grid-template-columns:1fr;
  }

  .form-grid label.full{
    grid-column:auto;
  }

  .editor-grid{
    grid-template-columns:1fr;
  }

  .admin-topbar{
    align-items:flex-start;
    flex-direction:column;
  }

  .admin-actions{
    width:100%;
  }

  .admin-actions .btn{
    flex:1;
  }

  .admin-row{
    align-items:flex-start;
    flex-wrap:wrap;
  }

  .gallery-editor-row{
    grid-template-columns:80px 1fr;
  }

  .gallery-preview{
    width:80px;
    height:80px;
  }

  .editor-save-bar{
    flex-direction:column;
    align-items:stretch;
  }

  .editor-save-bar .btn{
    width:100%;
  }

}
/* =========================================================
   FINAL GLOVAERA PAGE LAYOUT FIX
   Product / Checkout / Success
   ========================================================= */


/* =========================================================
   PRODUCT PAGE
   ========================================================= */

.product-page-section{
  padding:
    58px
    0
    90px;
}

.product-detail{
  width:100% !important;
  display:grid !important;

  grid-template-columns:
    minmax(
      0,
      1.08fr
    )
    minmax(
      380px,
      .92fr
    ) !important;

  gap:64px !important;

  align-items:start !important;
}

.product-gallery{
  width:100%;
  overflow:hidden;

  border:1px solid var(--border);
  border-radius:18px;

  background:#f5ede6;

  box-shadow:
    0 18px 50px
    rgba(
      74,
      23,
      48,
      .07
    );
}

.product-gallery img{
  width:100%;
  height:auto;

  aspect-ratio:1 / 1;

  display:block;

  object-fit:contain;

  background:#f5ede6;
}

.product-info{
  min-width:0;

  padding:
    10px
    5px
    0
    0 !important;
}

.product-info .product-cat{
  margin:
    0
    0
    8px;

  color:var(--burgundy);

  font-size:10px;
  font-weight:800;

  letter-spacing:.15em;

  text-transform:uppercase;
}

.product-info h1{
  margin:
    0
    0
    15px;

  color:var(--dark-burgundy);

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size:
    clamp(
      40px,
      4vw,
      58px
    );

  line-height:1.05;
}

.rating{
  display:flex;
  align-items:center;
  gap:7px;

  margin-bottom:18px;

  color:var(--gold);

  font-size:14px;
}

.rating span{
  color:var(--muted);
  font-size:12px;
}

.detail-price{
  display:flex;
  align-items:baseline;
  gap:11px;

  margin:
    0
    0
    20px;
}

.detail-price strong{
  color:var(--dark-burgundy);
  font-size:29px;
}

.detail-price del{
  color:#998d92;
  font-size:15px;
}

.product-info > p{
  max-width:600px;

  margin:
    0
    0
    26px;

  color:var(--muted);

  font-size:15px;
  line-height:1.8;
}

.spec-list{
  display:grid;

  margin:
    0
    0
    28px;

  padding:0;

  border-top:
    1px solid
    var(--border);
}

.spec-list div{
  display:grid;

  grid-template-columns:
    1fr
    1fr;

  gap:20px;

  padding:
    13px
    0;

  border-bottom:
    1px solid
    var(--border);
}

.spec-list dt{
  color:var(--muted);
  font-size:13px;
}

.spec-list dd{
  margin:0;

  text-align:right;

  color:var(--ink);
  font-size:13px;
}

.qty-row{
  display:inline-flex;

  overflow:hidden;

  margin-bottom:19px;

  border:
    1px solid
    var(--border);

  border-radius:9px;

  background:#fff;
}

.qty-row button,
.qty-row input{
  width:44px;
  height:44px;

  border:0;

  background:#fff;

  text-align:center;
}

.qty-row input{
  border-left:
    1px solid
    var(--border);

  border-right:
    1px solid
    var(--border);

  outline:none;
}

.qty-row button{
  color:var(--burgundy);
  font-size:19px;
  cursor:pointer;
}

.product-actions{
  display:flex !important;

  gap:11px !important;

  flex-wrap:wrap;
}

.product-actions .btn{
  min-width:155px;
}


/* =========================================================
   CHECKOUT
   ========================================================= */

.checkout-header{
  justify-content:space-between;
}

.checkout-header-right{
  display:flex;
  align-items:center;
}

.checkout-cart-link{
  font-size:14px;
  font-weight:700;
}

.checkout-hero{
  padding:
    64px
    0
    42px;

  background:
    linear-gradient(
      180deg,
      #fff,
      #f7efe7
    );

  border-bottom:
    1px solid
    var(--border);
}

.checkout-hero-inner{
  text-align:center;
}

.checkout-hero h1{
  margin:
    10px
    0
    7px;

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size:
    clamp(
      42px,
      5vw,
      58px
    );
}

.checkout-hero p{
  margin:0;
  color:var(--muted);
}

.checkout-section{
  padding:
    48px
    0
    90px;
}

.checkout-layout{
  width:100% !important;

  display:grid !important;

  grid-template-columns:
    minmax(
      0,
      1.35fr
    )
    minmax(
      340px,
      .65fr
    ) !important;

  gap:30px !important;

  align-items:start !important;
}

.checkout-main{
  min-width:0;
}

.checkout-card{
  padding:28px;

  border:
    1px solid
    var(--border);

  border-radius:16px;

  background:#fff;

  box-shadow:
    0 14px 40px
    rgba(
      74,
      23,
      48,
      .05
    );
}

.checkout-card-head{
  display:flex;
  align-items:flex-start;

  gap:14px;

  margin-bottom:24px;
}

.checkout-step{
  width:38px;
  height:38px;

  flex:0 0 38px;

  display:grid;
  place-items:center;

  border-radius:50%;

  background:#f4e7ed;
  color:var(--burgundy);

  font-size:11px;
  font-weight:800;
}

.checkout-card-head h2{
  margin:
    0
    0
    4px;

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size:26px;
}

.checkout-card-head p{
  margin:0;

  color:var(--muted);

  font-size:13px;
}

.checkout-form{
  width:100%;
}

.checkout-form-grid{
  display:grid;

  grid-template-columns:
    repeat(
      2,
      minmax(
        0,
        1fr
      )
    );

  gap:16px;
}

.checkout-form label{
  display:grid;

  gap:7px;
}

.checkout-form label > span{
  color:var(--ink);

  font-size:12px;
  font-weight:700;
}

.checkout-form label small{
  color:var(--muted);
  font-weight:400;
}

.checkout-form input,
.checkout-form textarea{
  width:100%;

  border:
    1px solid
    var(--border);

  border-radius:9px;

  background:#fff;

  padding:
    12px
    13px;

  outline:none;

  color:var(--ink);

  resize:vertical;
}

.checkout-form input{
  min-height:46px;
}

.checkout-form textarea{
  min-height:100px;
}

.checkout-form input:focus,
.checkout-form textarea:focus{
  border-color:var(--gold);

  box-shadow:
    0 0 0 4px
    rgba(
      216,
      181,
      106,
      .11
    );
}

.checkout-full{
  grid-column:1 / -1;
}

.payment-card{
  display:flex;

  align-items:center;

  gap:13px;

  margin-top:20px;

  padding:15px;

  border:
    1px solid
    var(--gold);

  border-radius:11px;

  background:#fffcf7;
}

.payment-icon{
  width:40px;
  height:40px;

  display:grid;
  place-items:center;

  flex:0 0 40px;

  border-radius:50%;

  background:
    var(--burgundy);

  color:#fff;

  font-weight:800;
}

.payment-card > div:nth-child(2){
  display:grid;
  gap:2px;

  flex:1;
}

.payment-card strong{
  color:var(--dark-burgundy);
  font-size:13px;
}

.payment-card span{
  color:var(--muted);
  font-size:11px;
}

.payment-selected{
  padding:
    5px
    9px;

  border-radius:99px;

  background:#f0e3cf;
  color:var(--dark-burgundy);

  font-size:10px;
  font-weight:800;
}

.checkout-submit{
  width:100%;

  margin-top:20px;

  min-height:52px;
}

.checkout-summary{
  width:100%;

  position:sticky;
  top:105px;

  padding:24px;

  border:
    1px solid
    var(--border);

  border-radius:16px;

  background:#fff;

  box-shadow:
    0 14px 40px
    rgba(
      74,
      23,
      48,
      .06);
}

.checkout-summary h2{
  margin:
    7px
    0
    18px;

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size:28px;
}

.checkout-summary .summary-line{
  display:flex;

  justify-content:space-between;

  gap:15px;

  padding:
    12px
    0;

  border-bottom:
    1px solid
    #efe5e9;

  font-size:13px;
}

.checkout-summary .summary-line strong{
  white-space:nowrap;
}

.checkout-summary .total-row{
  display:flex;

  justify-content:space-between;

  gap:15px;

  margin-top:8px;
  padding:
    16px
    0
    0;

  border-top:
    1px solid
    var(--border);

  font-size:18px;
  font-weight:800;
}

.summary-placeholder p{
  margin:0;
  color:var(--muted);
  font-size:13px;
}


/* =========================================================
   ORDER SUCCESS
   ========================================================= */

.success-page{
  min-height:100vh;

  display:grid;

  place-items:center;

  padding:
    35px
    20px;

  background:
    radial-gradient(
      circle at top,
      #fff,
      #f6ece6 72%
    );
}

.success-card{
  width:min(
    680px,
    100%
  );

  padding:
    52px
    50px;

  text-align:center;

  border:
    1px solid
    var(--border);

  border-radius:22px;

  background:
    rgba(
      255,
      255,
      255,
      .94
    );

  box-shadow:
    0 24px 75px
    rgba(
      74,
      23,
      48,
      .11
    );
}

.success-logo{
  display:inline-flex;

  justify-content:center;

  margin-bottom:25px;
}

.success-logo img{
  width:175px;
  max-height:78px;
  object-fit:contain;
}

.success-icon{
  width:62px;
  height:62px;

  margin:
    0
    auto
    18px;

  display:grid;
  place-items:center;

  border-radius:50%;

  background:
    var(--burgundy);

  color:#fff;

  font-size:28px;
  font-weight:700;

  box-shadow:
    0 10px 30px
    rgba(
      109,
      35,
      72,
      .18
    );
}

.success-card h1{
  max-width:560px;

  margin:
    10px
    auto
    15px;

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size:
    clamp(
      36px,
      5vw,
      52px
    );

  line-height:1.08;

  color:var(--dark-burgundy);
}

.success-message{
  max-width:530px;

  margin:
    0
    auto
    25px;

  color:var(--muted);

  line-height:1.8;
}

.success-order-box{
  width:min(
    420px,
    100%
  );

  margin:
    0
    auto
    27px;

  padding:
    14px
    18px;

  border:
    1px solid
    var(--border);

  border-radius:11px;

  background:#fbf7f2;

  display:grid;

  gap:4px;
}

.success-order-box span{
  color:var(--muted);

  font-size:10px;

  font-weight:800;

  letter-spacing:.14em;
}

.success-order-box strong{
  color:var(--dark-burgundy);

  font-size:13px;

  word-break:break-all;
}

.success-actions{
  display:flex;

  justify-content:center;

  gap:10px;

  flex-wrap:wrap;
}


/* =========================================================
   DESKTOP OVERRIDE
   Important: these rules intentionally stay active
   on normal desktop widths.
   ========================================================= */

@media (min-width:761px){

  .product-detail{
    grid-template-columns:
      minmax(
        0,
        1.08fr
      )
      minmax(
        380px,
        .92fr
      ) !important;
  }

  .checkout-layout{
    grid-template-columns:
      minmax(
        0,
        1.35fr
      )
      minmax(
        340px,
        .65fr
      ) !important;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width:760px){

  .product-detail{
    grid-template-columns:
      1fr !important;

    gap:30px !important;
  }

  .checkout-layout{
    grid-template-columns:
      1fr !important;

    gap:20px !important;
  }

  .checkout-summary{
    position:static;
  }

  .checkout-form-grid{
    grid-template-columns:
      1fr;
  }

  .checkout-full{
    grid-column:auto;
  }

  .success-card{
    padding:
      40px
      22px;
  }

}

@media (max-width:520px){

  .product-info h1{
    font-size:36px;
  }

  .product-actions{
    display:grid !important;

    grid-template-columns:
      1fr;

    gap:9px !important;
  }

  .product-actions .btn{
    width:100%;
    min-width:0;
  }

  .checkout-card{
    padding:20px;
  }

  .checkout-summary{
    padding:20px;
  }

  .payment-card{
    align-items:flex-start;
    flex-wrap:wrap;
  }

  .payment-selected{
    margin-left:53px;
  }

}
/* =========================================================
   PROFESSIONAL POLICY PAGE
   ========================================================= */

.policy-hero{
  padding:78px 0 48px;
  background:
    linear-gradient(
      180deg,
      #fff,
      #f7efe7
    );
  border-bottom:1px solid var(--border);
  text-align:center;
}

.policy-hero h1{
  margin:10px 0 12px;
  font-size:
    clamp(
      40px,
      5vw,
      58px
    );
}

.policy-hero p{
  max-width:680px;
  margin:0 auto;
  color:var(--muted);
}

.policy-layout{
  display:grid;
  grid-template-columns:
    repeat(2,minmax(0,1fr));
  gap:20px;
}

.policy-card{
  padding:28px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  box-shadow:
    0 12px 35px
    rgba(74,23,48,.05);
}

.policy-icon{
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  margin-bottom:16px;
  border-radius:50%;
  background:#f5e8ed;
  font-size:21px;
}

.policy-card h2{
  margin:8px 0 12px;
  font-size:28px;
  color:var(--dark-burgundy);
}

.policy-card > p{
  color:var(--muted);
  line-height:1.8;
}

.policy-points{
  margin-top:22px;
  display:grid;
  gap:15px;
}

.policy-points > div{
  padding-top:15px;
  border-top:1px solid #eee5e8;
}

.policy-points strong{
  display:block;
  margin-bottom:4px;
  color:var(--dark-burgundy);
  font-size:13px;
}

.policy-points p{
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.75;
}

.policy-help{
  margin-top:25px;
  padding:32px;
  text-align:center;
  background:
    linear-gradient(
      135deg,
      var(--dark-burgundy),
      var(--burgundy)
    );
  color:#fff;
  border-radius:16px;
}

.policy-help h2{
  margin:8px 0;
  color:#fff;
  font-size:30px;
}

.policy-help p{
  max-width:600px;
  margin:0 auto 20px;
  color:#eadfe4;
}

.policy-help .eyebrow{
  color:var(--light-gold);
}

@media(max-width:760px){

  .policy-layout{
    grid-template-columns:1fr;
  }

  .policy-card{
    padding:22px;
  }

  .policy-help{
    padding:26px 20px;
  }

}
/* =========================================================
   CONTACT PAGE — PROFESSIONAL DESIGN
   ========================================================= */

.contact-hero{
  padding:
    78px
    0
    48px;

  text-align:center;

  background:
    linear-gradient(
      180deg,
      #fff,
      #f7efe7
    );

  border-bottom:
    1px solid
    var(--border);
}

.contact-hero h1{
  margin:
    10px
    0
    12px;

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size:
    clamp(
      40px,
      5vw,
      58px
    );

  color:var(--dark-burgundy);
}

.contact-hero p{
  max-width:680px;
  margin:0 auto;

  color:var(--muted);
  line-height:1.8;
}


.contact-layout{
  display:grid;

  grid-template-columns:
    minmax(
      0,
      .9fr
    )
    minmax(
      0,
      1.1fr
    );

  gap:60px;

  align-items:start;
}


/* LEFT */

.contact-intro{
  padding-top:10px;
}

.contact-intro h2{
  margin:
    8px
    0
    16px;

  font-size:40px;

  color:var(--dark-burgundy);
}

.contact-intro > p{
  max-width:560px;

  color:var(--muted);

  line-height:1.85;
}


.contact-note{
  margin-top:28px;

  padding:18px 20px;

  border-left:
    3px solid
    var(--gold);

  background:#fbf6ef;

  border-radius:
    0
    10px
    10px
    0;
}

.contact-note strong{
  display:block;

  margin-bottom:5px;

  color:var(--dark-burgundy);

  font-size:13px;
}

.contact-note p{
  margin:0;

  color:var(--muted);

  font-size:13px;

  line-height:1.7;
}


/* RIGHT CARDS */

.contact-cards{
  display:grid;
  gap:14px;
}


.contact-card{
  display:grid;

  grid-template-columns:
    52px
    1fr
    24px;

  gap:15px;

  align-items:center;

  padding:20px;

  background:#fff;

  border:
    1px solid
    var(--border);

  border-radius:14px;

  box-shadow:
    0
    10px
    35px
    rgba(
      74,
      23,
      48,
      .05
    );

  transition:
    transform .2s ease,
    box-shadow .2s ease,
    border-color .2s ease;
}

.contact-card:hover{
  transform:translateY(-3px);

  border-color:
    #d9c4cc;

  box-shadow:
    0
    16px
    45px
    rgba(
      74,
      23,
      48,
      .09
    );
}


.contact-card-icon{
  width:52px;
  height:52px;

  display:grid;
  place-items:center;

  border-radius:14px;

  background:
    linear-gradient(
      135deg,
      #f5e6ed,
      #f9f0e8
    );

  color:var(--burgundy);

  font-size:22px;
  font-weight:800;
}


.contact-card-content{
  min-width:0;
}


.contact-card-label{
  display:block;

  margin-bottom:3px;

  color:var(--burgundy);

  font-size:9px;
  font-weight:800;

  letter-spacing:.14em;
}


.contact-card h3{
  margin:
    0
    0
    3px;

  color:var(--dark-burgundy);

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size:20px;
}


.contact-card p{
  margin:0;

  color:var(--muted);

  font-size:13px;

  overflow-wrap:anywhere;
}


.contact-arrow{
  color:var(--burgundy);

  font-size:20px;

  transition:
    transform .2s ease;
}

.contact-card:hover
.contact-arrow{
  transform:translateX(4px);
}


/* CTA */

.contact-cta{
  margin-top:55px;

  padding:
    32px
    35px;

  display:flex;

  align-items:center;

  justify-content:space-between;

  gap:25px;

  border-radius:18px;

  background:
    linear-gradient(
      135deg,
      var(--dark-burgundy),
      var(--burgundy)
    );

  color:#fff;
}


.contact-cta h2{
  margin:
    8px
    0
    7px;

  color:#fff;

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size:30px;
}

.contact-cta p{
  margin:0;

  color:#eadfe4;
}

.contact-cta .eyebrow{
  color:var(--light-gold);
}

.contact-cta .btn-light{
  flex:0 0 auto;
}


/* MOBILE */

@media(max-width:760px){

  .contact-layout{
    grid-template-columns:1fr;
    gap:35px;
  }

  .contact-intro h2{
    font-size:32px;
  }

  .contact-cta{
    flex-direction:column;
    align-items:flex-start;
  }

  .contact-cta .btn{
    width:100%;
  }

}


@media(max-width:520px){

  .contact-card{
    grid-template-columns:
      45px
      1fr
      20px;

    padding:16px;
  }

  .contact-card-icon{
    width:45px;
    height:45px;
    border-radius:12px;
  }

  .contact-card h3{
    font-size:17px;
  }

}
