:root {
  --pink: #B08D57;
  --pink-dark: #8C6B3F;
  --pink-soft: #f6f1ea;
  --cream: #f6f1ee;
  --cream-2: #fdf8f5;
  --black: #111111;
  --text: #1c1d1e;
  --muted: #6b6b6b;
  --line: #ececec;
  --footer: #171717;
  --white: #ffffff;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  --container: 1320px;
  --radius: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Instrument Sans", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

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

ul {
  list-style: none;
}

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

h1,
h2,
h3,
h4,
.serif {
  font-family: "Marcellus", serif;
  font-weight: 400;
  letter-spacing: 0.6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 32px;
  border: 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.btn-white {
  background: var(--white);
  color: var(--pink);
}

.btn-white:hover {
  background: var(--black);
  color: var(--white);
}

.btn-pink {
  background: var(--pink);
  color: var(--white);
}

.btn-pink:hover {
  background: var(--black);
}

.btn-black {
  background: var(--black);
  color: var(--white);
  width: 100%;
}

.btn-black:hover {
  background: var(--pink);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: var(--white);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: grid;
  grid-template-columns: 180px 1fr 180px;
  align-items: center;
  min-height: 110px;
  gap: 20px;
}

.logo img {
  width: 150px;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 34px;
}

.main-nav a {
  font-family: "Marcellus", serif;
  font-size: 16px;
  color: var(--black);
  position: relative;
  padding: 6px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background: var(--pink);
  transition: 0.25s;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  align-items: center;
}

.icon-btn {
  background: none;
  border: 0;
  cursor: pointer;
  position: relative;
  color: var(--black);
  font-size: 18px;
  width: 36px;
  height: 36px;
}

.icon-btn .count {
  position: absolute;
  top: -4px;
  right: -6px;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Instrument Sans", sans-serif;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 22px;
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  background: #1a1410 url("../images/hero-bg2.jpg") center / cover no-repeat;
  min-height: 720px;
  overflow: hidden;
  color: #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr 1fr;
  gap: 30px;
  align-items: center;
  min-height: 720px;
  padding: 40px 0 70px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 75px;
  line-height: 90px;
  color: #fff;
  max-width: 420px;
}

.hero-photo {
  position: relative;
  justify-self: center;
}

.hero-photo img {
  width: min(430px, 100%);
  height: 560px;
  object-fit: cover;
}

.hero-flower {
  position: absolute;
  left: -40px;
  bottom: 30px;
  width: 150px;
  pointer-events: none;
}

.hero-side {
  max-width: 360px;
  justify-self: end;
}

.hero-side img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin-bottom: 22px;
}

.hero-side p {
  font-family: "Marcellus", serif;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 28px;
  color: #fff;
}

/* Marquee */
.marquee {
  background: #000;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;
}

.marquee-track {
  display: inline-flex;
  gap: 28px;
  animation: marquee 32s linear infinite;
}

.marquee-track span {
  font-size: 13px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.marquee-track .heart {
  color: #ff3f6c;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Luxury */
.luxury {
  background: var(--cream-2);
  padding: 90px 0;
}

.luxury-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: stretch;
}

.luxury-left img {
  width: 100%;
  height: 640px;
  object-fit: cover;
}

.luxury-right img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  margin-bottom: 28px;
}

.luxury-right h2,
.section-title {
  font-size: 55px;
  line-height: 65px;
  margin-bottom: 18px;
}

.luxury-right p,
.lead {
  font-family: "Marcellus", serif;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 28px;
}

.section-head {
  text-align: center;
  position: relative;
  margin-bottom: 36px;
}

.section-head h2 {
  font-size: 55px;
  line-height: 65px;
  display: inline-block;
  position: relative;
}

.flower-deco {
  position: absolute;
  width: 70px;
  opacity: 0.85;
  pointer-events: none;
}

.flower-deco.tl {
  top: -28px;
  left: calc(50% - 250px);
}

.flower-deco.tr {
  top: 8px;
  right: calc(50% - 270px);
}

.flower-deco.br {
  bottom: -20px;
  right: calc(50% - 180px);
}

/* Products */
.products-section {
  padding: 90px 0 40px;
}

.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-tabs button {
  border: 1px solid #ddd;
  background: #fff;
  min-height: 44px;
  padding: 10px 22px;
  cursor: pointer;
  font-family: "Marcellus", serif;
  font-size: 16px;
}

.filter-tabs button.active,
.filter-tabs button:hover {
  background: var(--pink);
  color: #fff;
  border-color: var(--pink);
}

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

.product-card {
  text-align: center;
}

.product-thumb {
  position: relative;
  overflow: hidden;
  background: #f7f7f7;
  margin-bottom: 16px;
}

.product-thumb img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: 0.5s;
}

.product-card:hover .product-thumb img {
  transform: scale(1.06);
}

.badge-sale,
.badge-off {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--pink);
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  z-index: 2;
}

.ribbon {
  position: absolute;
  top: 18px;
  left: -36px;
  background: var(--pink);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.4px;
  padding: 6px 40px;
  transform: rotate(-45deg);
  z-index: 2;
  width: 160px;
  text-align: center;
}

.thumb-actions {
  position: absolute;
  right: 12px;
  top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(8px);
  transition: 0.3s;
  z-index: 2;
}

.product-card:hover .thumb-actions {
  opacity: 1;
  transform: none;
}

.thumb-actions button {
  width: 38px;
  height: 38px;
  border: 0;
  background: var(--pink);
  color: #fff;
  cursor: pointer;
}

.thumb-actions button:hover,
.thumb-actions button.loved {
  background: var(--black);
}

.product-card h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.price {
  color: #555;
  font-size: 15px;
  margin-bottom: 12px;
}

.price del {
  color: #999;
  margin-right: 6px;
}

.add-btn {
  opacity: 1;
  transform: none;
}

/* Story */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  margin-top: 70px;
}

.story img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.story-copy {
  background: var(--pink);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 60px;
}

.story-copy h2 {
  font-size: 45px;
  line-height: 55px;
  color: #fff;
  margin-bottom: 18px;
}

.story-copy p {
  font-family: "Marcellus", serif;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 28px;
}

/* Deals */
.deals {
  padding: 90px 0 50px;
}

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

.deal-card {
  position: relative;
  overflow: hidden;
  min-height: 310px;
}

.deal-card img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  transition: 0.4s;
}

.deal-card:hover img {
  transform: scale(1.06);
}

.deal-card span {
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: "Marcellus", serif;
  font-size: 18px;
  color: #4a1c1c;
  padding: 0 10px;
}

.deal-card b {
  color: #9b1c2a;
}

/* Mosaic */
.mosaic {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
  padding: 10px 0 40px;
}

.mosaic-item {
  position: relative;
  overflow: hidden;
  min-height: 280px;
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
  transition: 0.45s;
}

.mosaic-item:first-child {
  grid-row: span 2;
  min-height: 580px;
}

.mosaic-item:first-child img {
  min-height: 580px;
}

.mosaic-item:hover img {
  transform: scale(1.08);
}

.mosaic-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(248, 65, 110, 0.78);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s;
  font-family: "Marcellus", serif;
  font-size: 28px;
}

.mosaic-item:hover .overlay {
  opacity: 1;
}

.mosaic-item .tag {
  position: absolute;
  left: 24px;
  top: 24px;
  font-family: "Marcellus", serif;
  font-size: 22px;
}

/* Occasion */
.occasion {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  padding-bottom: 80px;
}

.occasion-copy {
  background: var(--pink-soft);
  padding: 50px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.occasion-copy h2 {
  color: var(--pink);
  font-size: 35px;
  line-height: 45px;
  font-weight: 600;
  margin-bottom: 16px;
}

.occasion img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

/* Categories */
.categories {
  padding: 40px 0 80px;
}

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

.cat-card {
  position: relative;
  overflow: hidden;
}

.cat-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: 0.4s;
}

.cat-card:hover img {
  transform: scale(1.06);
}

.cat-card span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--pink);
  color: #fff;
  text-align: center;
  padding: 12px;
  letter-spacing: 2px;
  font-weight: 600;
}

/* Testimonials */
.testimonials {
  background: var(--pink-soft);
  padding: 90px 0;
  text-align: center;
}

.testimonial-slide img {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
}

.testimonial-slide h3 {
  font-size: 22px;
}

.testimonial-slide .role {
  color: var(--muted);
  margin-bottom: 18px;
}

.testimonial-slide p {
  max-width: 760px;
  margin: 0 auto;
  color: #444;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: #f7b6c6;
  cursor: pointer;
}

.dots button.active {
  background: var(--pink);
}

/* Gallery */
.elegance {
  padding: 90px 0 50px;
}

.gallery-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.gallery-5 img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

/* Featured slider */
.featured-slider-wrap {
  position: relative;
  padding: 10px 50px 80px;
  overflow: hidden;
}

.featured-track {
  display: flex;
  gap: 22px;
  transition: transform 0.4s ease;
}

.featured-track .product-card {
  min-width: calc(25% - 17px);
}

.slider-btn {
  position: absolute;
  top: 38%;
  width: 42px;
  height: 42px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
}

.slider-btn.prev {
  left: 0;
}

.slider-btn.next {
  right: 0;
}

/* Features */
.features {
  background: var(--cream-2);
  padding: 40px 0;
}

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

.feature {
  display: flex;
  align-items: center;
  gap: 14px;
}

.feature i {
  color: var(--pink);
  font-size: 28px;
}

.feature h3 {
  font-family: "Instrument Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
}

.feature p {
  font-size: 13px;
  color: var(--muted);
}

/* Newsletter */
.newsletter {
  position: relative;
  background: #f3e6dd url("../images/im0111-1.png") center / cover no-repeat;
  padding: 90px 0;
  text-align: center;
}

.newsletter h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.newsletter h2 {
  font-size: 48px;
  margin-bottom: 28px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  max-width: 560px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  border: 0;
  min-height: 54px;
  padding: 0 18px;
  outline: none;
}

/* Footer */
.site-footer {
  background: var(--footer);
  color: #fff;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 28px 0 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1.1fr;
  gap: 40px;
  padding: 50px 0;
  align-items: start;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.footer-contact i {
  color: var(--pink);
  margin-top: 4px;
}

.footer-brand {
  text-align: center;
}

.footer-brand img {
  width: 180px;
  margin: 0 auto 18px;
  filter: brightness(20);
}

.socials {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.socials a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.socials a:hover {
  background: var(--pink);
  border-color: var(--pink);
}

.footer-about p {
  color: #cfcfcf;
  margin-bottom: 18px;
}

.footer-about a {
  text-decoration: underline;
  letter-spacing: 1px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #bdbdbd;
  font-size: 14px;
  flex-wrap: wrap;
}

.footer-bottom ul {
  display: flex;
  gap: 18px;
}

/* Page banner */
.page-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url("../images/03-1.png") center / cover no-repeat;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.page-banner h1 {
  font-size: 64px;
  color: #fff;
}

/* Shop */
.shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  padding: 50px 0 80px;
}

.breadcrumb {
  color: var(--muted);
  font-size: 14px;
  margin: 8px 0 28px;
}

.filters h2 {
  font-family: "Instrument Sans", sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 22px;
}

.filters h3 {
  font-family: "Instrument Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin: 22px 0 12px;
}

.filter-check {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 8px;
  font-size: 14px;
  cursor: pointer;
}

.price-inputs {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.price-inputs input {
  width: 80px;
  border: 1px solid #ddd;
  padding: 8px;
}

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.shop-toolbar select {
  border: 1px solid #ddd;
  padding: 8px 12px;
  min-width: 180px;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.pagination a,
.pagination span {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eee;
}

.pagination .current {
  background: var(--pink);
  color: #fff;
  border-color: var(--pink);
}

/* About extras */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px 0 80px;
}

.stat {
  text-align: center;
  background: var(--pink-soft);
  padding: 28px 16px;
}

.stat b {
  display: block;
  font-family: "Marcellus", serif;
  font-size: 36px;
  color: var(--pink);
}

/* Contact */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: -50px auto 60px;
  position: relative;
  z-index: 2;
}

.contact-card {
  background: var(--pink-soft);
  text-align: center;
  padding: 36px 20px;
}

.contact-card i {
  color: var(--pink);
  font-size: 28px;
  margin-bottom: 12px;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-bottom: 80px;
  align-items: start;
}

.contact-wrap img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.form-grid {
  display: grid;
  gap: 14px;
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  border: 1px solid #e6e6e6;
  min-height: 52px;
  padding: 12px 14px;
  outline: none;
}

.form-grid textarea {
  min-height: 140px;
  resize: vertical;
}

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

/* Product detail */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 50px 0 80px;
}

.product-detail img.main-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.qty-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 20px 0;
}

.qty-row input {
  width: 70px;
  height: 48px;
  text-align: center;
  border: 1px solid #ddd;
}

.stars {
  color: #f5b301;
  margin: 8px 0 16px;
}

/* Cart table */
.cart-table {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
}

.cart-table th,
.cart-table td {
  border-bottom: 1px solid var(--line);
  padding: 18px 8px;
  text-align: left;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cart-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
}

.cart-summary {
  max-width: 380px;
  margin-left: auto;
  background: var(--cream-2);
  padding: 24px;
}

.cart-summary p {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

/* Overlays */
.overlay-panel,
.search-overlay,
.account-modal,
.quickview,
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 100;
  display: none;
}

.overlay-panel.open,
.search-overlay.open,
.account-modal.open,
.quickview.open,
.mobile-drawer.open {
  display: block;
}

.cart-drawer {
  position: absolute;
  right: 0;
  top: 0;
  width: min(420px, 100%);
  height: 100%;
  background: #fff;
  padding: 24px;
  overflow: auto;
}

.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.close-x {
  background: none;
  border: 0;
  font-size: 22px;
  cursor: pointer;
}

.search-box {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: min(640px, 90%);
  background: #fff;
  padding: 24px;
}

.search-box input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #ddd;
  font-size: 22px;
  padding: 12px 0;
  outline: none;
}

.account-card,
.quickview-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  width: min(920px, 92%);
  padding: 28px;
}

.account-card {
  width: min(420px, 92%);
}

.account-tabs {
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
}

.account-tabs button {
  background: none;
  border: 0;
  font-family: "Marcellus", serif;
  font-size: 20px;
  cursor: pointer;
  opacity: 0.5;
}

.account-tabs button.active {
  opacity: 1;
  color: var(--pink);
}

.quickview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.mobile-menu {
  width: min(320px, 86%);
  height: 100%;
  background: #fff;
  padding: 24px;
}

.mobile-menu a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  font-family: "Marcellus", serif;
}

/* Toast */
.purchase-toast {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  box-shadow: var(--shadow);
  display: none;
  align-items: center;
  gap: 12px;
  padding: 12px;
  z-index: 90;
  width: 280px;
}

.purchase-toast.show {
  display: flex;
}

.purchase-toast img {
  width: 54px;
  height: 54px;
  object-fit: cover;
}

.purchase-toast small {
  color: var(--muted);
  display: block;
}

.toast-bar {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  background: var(--pink);
  width: 100%;
  transform-origin: left;
  animation: toastbar 5s linear forwards;
}

@keyframes toastbar {
  to {
    transform: scaleX(0);
  }
}

.float-cart,
.back-top {
  position: fixed;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  box-shadow: var(--shadow);
  cursor: pointer;
  z-index: 70;
}

.float-cart {
  bottom: 84px;
}

.back-top {
  bottom: 24px;
  background: var(--pink);
  color: #fff;
  display: none;
}

.back-top.show {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

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

.alert {
  display: none;
  background: #e9f8ee;
  color: #1e7a3f;
  padding: 12px 16px;
  margin: 12px 0;
}

.alert.show {
  display: block;
}

.cart-summary p.alert {
  display: none;
}

.cart-summary p.alert.show {
  display: block;
}

@media (max-width: 1100px) {
  .hero-grid,
  .luxury-grid,
  .story,
  .occasion,
  .contact-wrap,
  .product-detail,
  .shop-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 48px;
    line-height: 58px;
  }

  .product-grid,
  .deals-grid,
  .cat-grid,
  .features-grid,
  .gallery-5,
  .mosaic,
  .about-stats,
  .contact-cards {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-5 img,
  .luxury-left img,
  .mosaic-item:first-child img {
    min-height: 280px;
    height: 280px;
  }

  .featured-track .product-card {
    min-width: calc(50% - 11px);
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}

@media (max-width: 680px) {
  .product-grid,
  .deals-grid,
  .cat-grid,
  .features-grid,
  .gallery-5,
  .mosaic,
  .about-stats,
  .contact-cards,
  .quickview-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding: 30px 0;
    min-height: auto;
  }

  .hero-photo img {
    height: 360px;
  }

  .luxury-right h2,
  .section-head h2,
  .page-banner h1 {
    font-size: 36px;
    line-height: 44px;
  }

  .add-btn {
    opacity: 1;
    transform: none;
  }

  .newsletter-form {
    flex-direction: column;
  }
}

.skip-link.screen-reader-text {
  position: absolute;
  left: -9999px;
}
.skip-link.screen-reader-text:focus {
  left: 16px;
  top: 16px;
  z-index: 200;
  background: #fff;
  padding: 8px 12px;
}
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
.header-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.custom-logo-link img,
.logo img {
  width: 150px;
  height: auto;
}
ul.main-nav,
ul.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.main-nav {
  display: flex;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
}
.main-nav .current-menu-item > a::after,
.main-nav .current_page_item > a::after,
.main-nav a.active::after {
  width: 100%;
}
.mobile-drawer .main-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
}
.hero-plugin,
.hero-shortcode {
  min-height: 0;
  background: #1a1410;
}
.hero-plugin .hero-grid,
.hero-shortcode .hero-grid {
  min-height: 0;
}
.filter-tabs button.active {
  background: var(--pink);
  color: #fff;
  border-color: var(--pink);
}
.js-tab-panel {
  display: none;
}
.js-tab-panel.is-active {
  display: block;
}
.js-testimonial {
  display: none;
}
.js-testimonial.is-active {
  display: block;
}
