@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500&family=Parisienne&family=Poppins:wght@300;400;500;600&display=swap');

:root{
  --cream:#FBF5EF;
  --blush:#F4DDE1;
  --blush-deep:#EBC7CE;
  --rose:#C1546F;
  --rose-deep:#96385A;
  --gold:#BE9B4C;
  --gold-light:#E8D9AE;
  --plum:#3E1F2B;
  --plum-soft:#7A5563;
  --line:rgba(62,31,43,0.12);
  --radius:6px;
}
*{box-sizing:border-box;margin:0;padding:0;}
body{
  background:var(--cream);
  color:var(--plum);
  font-family:'Poppins',sans-serif;
  font-weight:300;
  line-height:1.6;
}
a{color:inherit;text-decoration:none;}
img,svg{display:block;max-width:100%;}
.wrap{max-width:1180px;margin:0 auto;padding:0 26px;}
h1,h2,h3{font-family:'Playfair Display',serif;font-weight:600;line-height:1.08;}
.script{font-family:'Parisienne',cursive;font-weight:400;}
.eyebrow{font-size:12px;letter-spacing:0.18em;text-transform:uppercase;color:var(--rose-deep);font-weight:500;}

.btn{
  display:inline-flex;align-items:center;gap:10px;font-size:14px;font-weight:500;
  padding:14px 28px;border-radius:30px;cursor:pointer;transition:all .2s ease;
  border:1px solid transparent;font-family:'Poppins',sans-serif;
}
.btn:focus-visible{outline:2px solid var(--rose-deep);outline-offset:3px;}
.btn-solid{background:var(--rose);color:#fff;}
.btn-solid:hover{background:var(--rose-deep);}
.btn-solid:disabled{background:var(--plum-soft);cursor:not-allowed;}
.btn-line{border-color:var(--plum);color:var(--plum);background:transparent;}
.btn-line:hover{background:var(--plum);color:var(--cream);}

header{position:sticky;top:0;z-index:50;background:rgba(251,245,239,0.94);backdrop-filter:blur(8px);border-bottom:1px solid var(--line);}
nav{display:flex;align-items:center;justify-content:space-between;padding:18px 0;}
.logo{display:flex;align-items:center;gap:10px;font-family:'Playfair Display',serif;font-size:20px;font-weight:600;}
.nav-links{display:flex;gap:30px;}
.nav-links a{font-size:14px;color:var(--plum-soft);}
.nav-links a:hover{color:var(--rose-deep);}
.nav-actions{display:flex;gap:14px;align-items:center;}
.icon-btn{position:relative;width:38px;height:38px;border:1px solid var(--line);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:14px;}
.icon-btn:hover{border-color:var(--rose);}
.cart-badge{
  position:absolute;top:-6px;right:-6px;background:var(--rose);color:#fff;
  font-size:10px;border-radius:50%;min-width:16px;height:16px;display:flex;
  align-items:center;justify-content:center;padding:0 3px;
}

.crest{display:block;}
.crest .ring{fill:none;stroke:var(--gold);stroke-width:1.4;}

section{padding:64px 0;}
.section-head{display:flex;justify-content:space-between;align-items:flex-end;margin-bottom:40px;gap:20px;flex-wrap:wrap;}
.section-head h1,.section-head h2{font-size:clamp(28px,3.6vw,42px);}
.section-head p{color:var(--plum-soft);max-width:36ch;font-size:14.5px;}

.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:26px;}
.card{background:#fff;border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;transition:transform .2s ease, box-shadow .2s ease;}
.card:hover{transform:translateY(-4px);box-shadow:0 18px 34px rgba(62,31,43,0.09);}
.card-art{aspect-ratio:4/5;background:var(--blush);display:flex;align-items:center;justify-content:center;overflow:hidden;}
.card-art img{width:100%;height:100%;object-fit:cover;}
.card-body{padding:16px 18px 20px;}
.card-title{font-family:'Playfair Display',serif;font-size:16.5px;font-weight:600;margin-bottom:10px;}
.card-foot{display:flex;justify-content:space-between;align-items:center;}
.price{font-size:15px;font-weight:600;}

.state-msg{color:var(--plum-soft);font-size:14px;padding:20px 0;}

footer{border-top:1px solid var(--line);padding:44px 0 32px;margin-top:40px;}
.foot-bottom{display:flex;justify-content:space-between;align-items:center;font-size:12px;color:var(--plum-soft);flex-wrap:wrap;gap:10px;}

@media(max-width:900px){
  .grid{grid-template-columns:repeat(2,1fr);}
  .nav-links{display:none;}
}
@media(max-width:560px){.grid{grid-template-columns:1fr;}}
