:root {
  --bg: #09090d;
  --bg-2: #101018;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --text: #f7f4ef;
  --muted: #c9c2b8;
  --line: rgba(255, 255, 255, 0.1);
  --gold: #e9c98a;
  --gold-2: #ffd88c;
  --rose: #d18db0;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(209, 141, 176, 0.14), transparent 30%),
    radial-gradient(circle at top right, rgba(233, 201, 138, 0.12), transparent 25%),
    linear-gradient(180deg, #08080c 0%, #11111a 55%, #09090d 100%);
  color: var(--text);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section {
  padding: 100px 0;
}

.glass {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.14),
    rgba(255, 255, 255, 0.05)
  );
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  margin-bottom: 14px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head h2,
.hero h1,
.cta-box h2,
.story-copy h2 {
  font-family: "Cormorant Garamond", serif;
  line-height: 0.95;
  margin: 0 0 18px;
  letter-spacing: -0.02em;
}

.section-head h2,
.story-copy h2,
.cta-box h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.section-subtext,
.hero-text,
.story-copy p,
.collection-content p,
.cta-box p,
.modal-description {
  color: var(--muted);
  line-height: 1.7;
}

.gradient-text {
  background: linear-gradient(90deg, #fff2cf, #f2c3d9, #fbe5a8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: -3;
}

.orb-1 {
  width: 320px;
  height: 320px;
  background: rgba(233, 201, 138, 0.12);
  top: 80px;
  left: -80px;
}

.orb-2 {
  width: 280px;
  height: 280px;
  background: rgba(209, 141, 176, 0.1);
  right: -60px;
  top: 260px;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 85%);
  z-index: -4;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(9, 9, 13, 0.55);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-wrap {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.brand-mark {
  color: var(--gold);
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav a {
  color: #e8e0d5;
  font-size: 0.95rem;
  transition: 0.3s ease;
}

.nav a:hover {
  color: var(--gold);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wishlist-btn,
.menu-btn,
.quick-btn,
.wish-add,
.modal-close {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
  transition: 0.3s ease;
}

.wishlist-btn,
.menu-btn {
  border-radius: 999px;
  padding: 10px 14px;
}

.wishlist-btn:hover,
.menu-btn:hover,
.quick-btn:hover,
.wish-add:hover,
.modal-close:hover,
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
}

.menu-btn {
  display: none;
}

.hero {
  padding: 90px 0 80px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(3.4rem, 9vw, 6.8rem);
  max-width: 800px;
}

.hero-text {
  max-width: 650px;
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-primary {
  background: linear-gradient(90deg, #f1d394, #e4b56c);
  color: #17120d;
}

.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.stat-card {
  border-radius: 18px;
  padding: 16px;
}

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  color: #fff7e5;
}

.stat-card span {
  display: block;
  font-size: 0.92rem;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.hero-card {
  width: min(100%, 420px);
  border-radius: 28px;
  padding: 28px;
  position: relative;
  z-index: 2;
}

.card-badge,
.product-badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 215, 140, 0.12);
  border: 1px solid rgba(255, 215, 140, 0.2);
  color: var(--gold-2);
}

.hero-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.1rem;
  margin: 14px 0 8px;
}

.hero-card p {
  color: var(--muted);
}

.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 230, 184, 0.14);
  animation: pulseRing 8s linear infinite;
}

.ring-a {
  width: 340px;
  height: 340px;
}

.ring-b {
  width: 460px;
  height: 460px;
  animation-delay: 2s;
}

.hero-spotlight {
  position: absolute;
  bottom: 40px;
  right: 10px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 1;
}

.spotlight-text {
  text-align: center;
}

.spotlight-text small {
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.spotlight-text h4 {
  margin: 10px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.collection-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}

.collection-card {
  min-height: 280px;
  border-radius: 26px;
  overflow: hidden;
  padding: 28px;
  position: relative;
  isolation: isolate;
}

.collection-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 216, 140, 0.14), transparent 28%),
    radial-gradient(circle at 80% 80%, rgba(209, 141, 176, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
  z-index: -1;
}

.collection-card.large {
  min-height: 360px;
}

.collection-content {
  max-width: 320px;
}

.collection-content .tag {
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.collection-content h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  margin: 10px 0;
}

.catalog-top {
  padding: 18px;
  border-radius: 24px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-btn {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
  transition: 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: linear-gradient(90deg, rgba(255, 216, 140, 0.18), rgba(209, 141, 176, 0.14));
  border-color: rgba(255, 216, 140, 0.26);
}

.search-wrap input {
  width: min(320px, 100%);
  border-radius: 999px;
  border: 1px solid var(--line);
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  outline: none;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.product-card {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.product-media {
  height: 290px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255, 216, 140, 0.14), transparent 28%),
    radial-gradient(circle at bottom right, rgba(209, 141, 176, 0.18), transparent 35%),
    linear-gradient(135deg, #1c1a23, #0f0f15);
  display: grid;
  place-items: center;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.placeholder-media {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: #f8ebcc;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  letter-spacing: 0.1em;
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
}

.product-content {
  padding: 18px;
}

.product-topline {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.product-title {
  margin: 0 0 4px;
  font-size: 1.1rem;
}

.product-category {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.product-price {
  color: var(--gold);
  font-weight: 700;
  white-space: nowrap;
}

.product-desc {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.94rem;
  margin: 14px 0 18px;
}

.product-actions {
  display: flex;
  gap: 10px;
}

.quick-btn,
.wish-add {
  border-radius: 999px;
  padding: 11px 14px;
}

.quick-btn {
  flex: 1;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}

.story-panel {
  border-radius: 28px;
  padding: 28px;
  display: grid;
  gap: 14px;
}

.story-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.story-line strong {
  color: var(--gold);
}

.cta-box {
  border-radius: 30px;
  padding: 40px;
  text-align: center;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 0 48px;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  z-index: 100;
  padding: 20px;
}

.modal.open {
  display: grid;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.modal-card {
  position: relative;
  width: min(900px, 100%);
  border-radius: 28px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  z-index: 2;
}

.modal-media {
  min-height: 380px;
  background:
    radial-gradient(circle at top left, rgba(255, 216, 140, 0.14), transparent 28%),
    radial-gradient(circle at bottom right, rgba(209, 141, 176, 0.18), transparent 35%),
    linear-gradient(135deg, #1b1a21, #12121a);
  display: grid;
  place-items: center;
}
.order-btn{
display:inline-flex;
align-items:center;
justify-content:center;
padding:10px 16px;
border-radius:999px;
background:linear-gradient(90deg,#ff2f6d,#ff7ca3);
color:white;
font-weight:600;
text-decoration:none;
transition:.3s;
}

.order-btn:hover{
transform:translateY(-2px);
box-shadow:0 10px 20px rgba(0,0,0,.3);
}

.modal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-content {
  padding: 32px;
}

.modal-category {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
}

.modal-content h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  margin: 10px 0;
}

.modal-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff1c7;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  z-index: 3;
  font-size: 1.5rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.24s;
}

.floating {
  animation: floaty 6s ease-in-out infinite;
}

@keyframes floaty {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulseRing {
  0% {
    transform: scale(0.95);
    opacity: 0.45;
  }
  50% {
    transform: scale(1.02);
    opacity: 0.2;
  }
  100% {
    transform: scale(0.95);
    opacity: 0.45;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .story-grid,
  .modal-card,
  .collection-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  .nav {
    position: absolute;
    top: 80px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    border-radius: 20px;
    background: rgba(12, 12, 18, 0.95);
    border: 1px solid var(--line);
  }

  .nav.open {
    display: flex;
  }

  .menu-btn {
    display: inline-flex;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .catalog-top {
    align-items: stretch;
  }

  .search-wrap input {
    width: 100%;
  }

  .hero {
    padding-top: 60px;
  }
.hero-grid{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:40px;
  align-items:center;
}

.hero-visual{
  position:relative;
  min-height:540px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.hero-image-main{
  width:360px;
  height:460px;
  border-radius:28px;
  overflow:hidden;
  position:relative;
  z-index:2;
  box-shadow:0 25px 60px rgba(0,0,0,0.28);
}

.hero-image-main img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.hero-image-small{
  position:absolute;
  left:0;
  bottom:30px;
  width:180px;
  height:220px;
  border-radius:24px;
  overflow:hidden;
  z-index:3;
  box-shadow:0 18px 40px rgba(0,0,0,0.22);
}

.hero-image-small img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.hero-badge{
  position:absolute;
  right:10px;
  bottom:10px;
  padding:18px 22px;
  border-radius:20px;
  z-index:4;
  text-align:center;
}

.hero-badge small{
  display:block;
  color:var(--gold);
  letter-spacing:0.12em;
  text-transform:uppercase;
  margin-bottom:6px;
}

.hero-badge h4{
  margin:0;
  font-family:"Cormorant Garamond", serif;
  font-size:2rem;
  color:#fff;
}

.hero-ring{
  position:absolute;
  border-radius:50%;
  border:1px solid rgba(255, 223, 170, 0.18);
  z-index:1;
}

.ring-a{
  width:380px;
  height:380px;
}

.ring-b{
  width:500px;
  height:500px;
}

@media (max-width: 980px){
  .hero-grid{
    grid-template-columns:1fr;
  }

  .hero-visual{
    min-height:460px;
    margin-top:20px;
  }

  .hero-image-main{
    width:300px;
    height:390px;
  }

  .hero-image-small{
    width:150px;
    height:180px;
    left:10px;
    bottom:20px;
  }
}

@media (max-width: 640px){
  .hero-visual{
    min-height:400px;
  }

  .hero-image-main{
    width:250px;
    height:320px;
  }

  .hero-image-small{
    width:120px;
    height:150px;
  }

  .hero-badge{
    right:0;
    bottom:0;
    padding:14px 16px;
  }

  .hero-badge h4{
    font-size:1.5rem;
  }
}
  .section {
    padding: 78px 0;
  }

  .modal-content {
    padding: 24px;
  }

}
