
.logo-img img {
  width: 250px;
  height: auto;
  object-fit: contain;
  display: block;
}

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

:root {
  --bg: #f7f3ee;
  --dark: #111111;
  --muted: #777;
  --gold: #c89b5c;
  --white: #ffffff;
  --card: rgba(255, 255, 255, 0.78);
  --shadow: 0 25px 70px rgba(0,0,0,0.12);
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--dark);
  overflow-x: hidden;
}

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

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

.container {
  width: min(1180px, 92%);
  margin: auto;
}

/* Navbar */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(247, 243, 238, 0.8);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.navbar {
  height: 82px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: -1px;
}

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

nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  font-weight: 600;
  color: #333;
  transition: 0.3s;
}

nav a:hover {
  color: var(--gold);
}

.nav-btn {
  background: #010138;
  color: #ffffff;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

.hero .btn-primary {
  background: #010138;
  color: #ffffff;
}
.nav-btn:hover,
.hero .btn-primary:hover {
  background: #030363;
  color: #ffffff;
}



.menu-btn {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--dark);
  line-height: 1;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding-top: 110px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(200,155,92,0.35), transparent 70%);
  right: -160px;
  top: 80px;
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 3rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(0,0,0,0.08);
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #5f4a2e;
  margin-bottom: 1.2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 6.7rem);
  line-height: 0.95;
  letter-spacing: -3px;
  margin-bottom: 1.3rem;
}

.hero h1 span {
  color: var(--gold);
}

.hero p {
  font-size: 1.12rem;
  line-height: 1.8;
  color: #555;
  max-width: 590px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 1rem 1.55rem;
  font-weight: 800;
  transition: 0.3s;
  cursor: pointer;
}

.btn-primary {
  background: var(--dark);
  color: var(--white);
  box-shadow: 0 18px 45px rgba(0,0,0,0.22);
}

.btn-primary:hover {
  transform: translateY(-4px);
  background: #2a2a2a;
}

.btn-secondary {
  border: 1px solid rgba(0,0,0,0.16);
  background: rgba(255,255,255,0.65);
}

.btn-secondary:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  color: var(--gold);
}

.hero-image {
  position: relative;
}

.hero-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(255,255,255,0.55));
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 42px;
  padding: 1rem;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.hero-card img {
  border-radius: 34px;
  height: 610px;
  width: 100%;
  object-fit: cover;
}

.floating-box {
  position: absolute;
  left: -35px;
  bottom: 55px;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 24px;
  padding: 1.1rem 1.3rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  min-width: 210px;
}

.floating-box h3 {
  font-size: 1.7rem;
  margin-bottom: 0.25rem;
}

.floating-box p {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
}

/* Brands */
.brands {
  padding: 2rem 0 5rem;
}

.brand-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.brand {
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 1.3rem;
  text-align: center;
  border-radius: 22px;
  font-weight: 800;
  color: #444;
}

/* Section */
section {
  padding: 2.5rem 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.3rem, 4vw, 4rem);
  letter-spacing: -1.5px;
  line-height: 1.05;
}

.section-head p {
  color: #666;
  line-height: 1.7;
  max-width: 470px;
}

/* Products */
.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: var(--card);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 32px;
  padding: 1rem;
  box-shadow: 0 18px 50px rgba(0,0,0,0.08);
  transition: 0.35s;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 70px rgba(0,0,0,0.14);
}

.product-img {
  background: #eee5da;
  border-radius: 26px;
  overflow: hidden;
  height: 310px;
}

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

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

.product-info {
  padding: 1.2rem 0.4rem 0.4rem;
}

.product-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.product-top h3 {
  font-size: 1.15rem;
}

.price {
  font-weight: 900;
  color: var(--gold);
}

.product-info p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.buy {
  width: 100%;
  border: 0;
  background: #111;
  color: white;
  padding: 0.95rem;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.3s;
}

.buy:hover {
  background: var(--gold);
  color: #111;
}

/* Feature Banner */
.feature {
  background: #000024;
  color: white;
  border-radius: 42px;
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.feature::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(200,155,92,0.45), transparent 70%);
  right: -120px;
  bottom: -120px;
}

.feature h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 1rem;
}

.feature p {
  color: #d5d5d5;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 520px;
}

.feature img {
  border-radius: 32px;
  height: 430px;
  width: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  box-shadow: 0 25px 70px rgba(0,0,0,0.4);
}

/* Services */
.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.service {
  background: rgba(255,255,255,0.7);
  border-radius: 28px;
  padding: 1.6rem;
  border: 1px solid rgba(0,0,0,0.06);
  transition: 0.3s;
}

.service:hover {
  transform: translateY(-7px);
  background: white;
}

.icon {
  width: 54px;
  height: 54px;
  background: #111;
  color: white;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.service h3 {
  margin-bottom: 0.6rem;
}

.service p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Newsletter */
.newsletter {
  background: linear-gradient(135deg, #ffffff, #efe4d6);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 42px;
  padding: 3rem;
  text-align: center;
  box-shadow: 0 25px 70px rgba(0,0,0,0.08);
}

.newsletter h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  margin-bottom: 0.8rem;
}

.newsletter p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 1.6rem;
}

.form {
  max-width: 620px;
  margin: auto;
  background: white;
  border-radius: 999px;
  padding: 0.4rem;
  display: flex;
  box-shadow: 0 15px 45px rgba(0,0,0,0.1);
}

.form input {
  flex: 1;
  border: 0;
  outline: 0;
  padding: 1rem 1.2rem;
  border-radius: 999px;
  font-size: 1rem;
}

.form button {
  border: 0;
  background: #111;
  color: white;
  padding: 1rem 1.4rem;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

/* Footer */
footer {
  background: #111;
  color: white;
  padding: 3rem 0;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
}

footer h3,
footer h4 {
  margin-bottom: 1rem;
}

footer h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
}

footer span {
  color: var(--gold);
}

footer p,
footer a {
  color: #bbb;
  line-height: 1.8;
  display: block;
  margin-bottom: 0.4rem;
}

.copyright {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 2rem;
  padding-top: 1.5rem;
  color: #aaa;
  text-align: center;
}

/* Other Models */
.other-models-section {
  position: relative;
}

.other-models {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.model-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 32px;
  padding: 1rem;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,0.07);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.model-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 65px rgba(0,0,0,0.12);
}

.model-image {
  background: linear-gradient(180deg, #f3ece4, #ebe1d5);
  border-radius: 24px;
  overflow: hidden;
  height: 320px;
}

.model-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.model-card:hover .model-image img {
  transform: scale(1.05);
}

.model-info {
  padding: 1.15rem 0.35rem 0.25rem;
}

.model-info h3 {
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
}

.model-info p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.model-tag {
  display: inline-block;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(200,155,92,0.12);
  color: #8b6737;
  font-size: 0.85rem;
  font-weight: 700;
  border: 1px solid rgba(200,155,92,0.22);
}

/* Magnetic Accessories Section */
.magnetic-accessories-section {
  position: relative;
  padding: 5.5rem 0;
}

.accessories-showcase {
  background:
    radial-gradient(circle at top right, rgba(200,155,92,0.2), transparent 34%),
    radial-gradient(circle at bottom left, rgba(17,17,17,0.08), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,0.86), rgba(239,228,214,0.95));
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 46px;
  padding: 2.6rem;
  box-shadow: 0 30px 85px rgba(0,0,0,0.09);
  overflow: hidden;
}

.accessories-main {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 2rem;
}

.accessories-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4vw, 4.6rem);
  line-height: 1.03;
  letter-spacing: -1.6px;
  margin-bottom: 1rem;
}

.accessories-content > p {
  color: #666;
  line-height: 1.8;
  max-width: 620px;
  margin-bottom: 1.8rem;
}

.accessory-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
  max-width: 620px;
}

.accessory-highlight {
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 22px;
  padding: 1rem;
  display: flex;
  gap: 0.8rem;
  align-items: center;
  box-shadow: 0 12px 35px rgba(0,0,0,0.04);
}

.accessory-highlight span {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  background: #111;
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.accessory-highlight strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.accessory-highlight small {
  color: #666;
  font-size: 0.82rem;
}

.accessories-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.accessory-product-card {
  position: relative;
  width: 100%;
  max-width: 480px;
  min-height: 470px;
  border-radius: 40px;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(235,225,211,0.95));
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: 0 32px 80px rgba(0,0,0,0.13);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.accessory-product-card::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(200,155,92,0.18);
  filter: blur(22px);
}

.accessory-product-card img {
  position: relative;
  z-index: 2;
  width: 82%;
  height: 82%;
  object-fit: contain;
  filter: drop-shadow(0 25px 35px rgba(0,0,0,0.18));
  transition: transform 0.5s ease;
  border-radius: 28px;
}

.accessory-product-card:hover img {
  transform: scale(1.06) rotate(-2deg);
}

.floating-label {
  position: absolute;
  z-index: 3;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.95);
  border-radius: 20px;
  padding: 0.9rem 1rem;
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
  min-width: 150px;
}

.floating-label strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.floating-label span {
  color: #666;
  font-size: 0.82rem;
}

.label-one {
  top: 42px;
  left: 28px;
}

.label-two {
  right: 28px;
  bottom: 42px;
}

.accessories-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.accessory-option-card {
  position: relative;
  min-height: 320px;
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,255,255,0.62));
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: 32px;
  padding: 1.2rem;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,0.07);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.accessory-option-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(0,0,0,0.13);
}

.accessory-option-card::before {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  right: -70px;
  top: -70px;
  background: rgba(200,155,92,0.16);
}

.accessory-option-card .option-img {
  height: 240px;
  background: none;
  padding: 0;
  border-radius: 24px;
  overflow: hidden;
  display: block;
  margin-bottom: 1rem;
}

.accessory-option-card .option-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  transition: transform 0.45s ease;
}

.accessory-option-card:hover .option-img img {
  transform: scale(1.08);
}

.option-meta {
  position: relative;
  z-index: 2;
}

.option-label {
  display: inline-block;
  margin-bottom: 0.65rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(200,155,92,0.13);
  color: #8b6737;
  border: 1px solid rgba(200,155,92,0.22);
  font-size: 0.78rem;
  font-weight: 800;
}

.option-meta h3 {
  font-size: 1.18rem;
  margin-bottom: 0.4rem;
}

.option-meta p {
  color: #666;
  line-height: 1.6;
  font-size: 0.94rem;
  margin: 0;
}

/* Contact Page */
.contact-hero {
  padding-top: 140px;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(200,155,92,0.28), transparent 70%);
  right: -160px;
  top: 40px;
  z-index: -1;
}

.hero-box {
  background: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(255,255,255,0.6));
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: 40px;
  padding: 3rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.hero-box h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 1rem;
}

.hero-box h1 span {
  color: var(--gold);
}

.hero-box p {
  max-width: 700px;
  margin: auto;
  color: #666;
  line-height: 1.8;
  font-size: 1.05rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.5rem;
  align-items: start;
}

.info-panel,
.form-panel {
  background: var(--card);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 34px;
  padding: 2rem;
  box-shadow: 0 18px 50px rgba(0,0,0,0.08);
}

.panel-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 0.7rem;
}

.panel-text {
  color: #666;
  line-height: 1.8;
  margin-bottom: 1.8rem;
}

.contact-cards {
  display: grid;
  gap: 1rem;
}

.contact-card {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 24px;
  padding: 1.2rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: 0.3s;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #111;
  color: white;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-card h3 {
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.contact-card p,
.contact-card a {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

.hours-box {
  margin-top: 1.5rem;
  background: linear-gradient(135deg, #111, #2b2b2b);
  color: white;
  border-radius: 28px;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.hours-box::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(200,155,92,0.35), transparent 70%);
  right: -70px;
  bottom: -90px;
}

.hours-box h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
}

.hours-list {
  position: relative;
  z-index: 1;
}

.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: #e5e5e5;
  font-size: 0.95rem;
}

.hours-list div:last-child {
  border-bottom: none;
}

/* Contact Form */
.contact-form {
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.field label {
  font-weight: 700;
  font-size: 0.95rem;
}

.field input,
.field select,
.field textarea {
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.86);
  border-radius: 18px;
  padding: 1rem 1rem;
  font-size: 1rem;
  outline: none;
  transition: 0.3s;
  font-family: inherit;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200,155,92,0.12);
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.submit-btn {
  border: 0;
  background: var(--dark);
  color: white;
  padding: 1rem 1.4rem;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.submit-btn:hover {
  background: var(--gold);
  color: #111;
  transform: translateY(-3px);
}

/* Map */
.map-section {
  padding-top: 0;
}

.map-box {
  background: linear-gradient(135deg, #ffffff, #efe4d6);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 38px;
  padding: 2rem;
  box-shadow: 0 25px 70px rgba(0,0,0,0.08);
}

.map-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 0.8rem;
}

.map-box p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.map-placeholder {
  width: 100%;
  height: 360px;
  border-radius: 28px;
  background:
    linear-gradient(rgba(255,255,255,0.18), rgba(255,255,255,0.18)),
    url('https://images.unsplash.com/photo-1524661135-423995f22d0b?auto=format&fit=crop&w=1400&q=80') center/cover;
  display: grid;
  place-items: center;
  color: white;
  font-size: 1.4rem;
  font-weight: 800;
  text-shadow: 0 4px 18px rgba(0,0,0,0.4);
  overflow: hidden;
}

/* Store Page - New Design */
.store-hero-new {
  padding-top: 145px;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.store-hero-new::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(200,155,92,0.28), transparent 70%);
  right: -180px;
  top: 70px;
  z-index: -1;
}

.store-hero-new::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(17,17,17,0.08), transparent 70%);
  left: -170px;
  bottom: -130px;
  z-index: -1;
}

.store-hero-new-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.store-hero-new-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6.5vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: -3px;
  margin-bottom: 1.3rem;
}

.store-hero-new-content h1 span {
  color: var(--gold);
}

.store-hero-new-content p {
  max-width: 620px;
  color: #555;
  line-height: 1.85;
  font-size: 1.08rem;
  margin-bottom: 2rem;
}

.store-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.store-hero-new-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.hero-product-showcase {
  width: 100%;
  max-width: 510px;
  height: 560px;
  border-radius: 48px;
  padding: 1.1rem;
  background:
    radial-gradient(circle at top right, rgba(200,155,92,0.22), transparent 38%),
    linear-gradient(145deg, rgba(255,255,255,0.95), rgba(239,228,214,0.78));
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: 0 35px 90px rgba(0,0,0,0.13);
  transform: rotate(2deg);
  overflow: hidden;
}

.hero-product-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 38px;
}

.hero-mini-card {
  position: absolute;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.95);
  box-shadow: 0 20px 55px rgba(0,0,0,0.12);
  border-radius: 24px;
  padding: 1rem 1.15rem;
  min-width: 160px;
}

.hero-mini-card strong {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.hero-mini-card span {
  color: #666;
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-mini-card-one {
  left: 0;
  bottom: 95px;
}

.hero-mini-card-two {
  right: 0;
  top: 95px;
}

.store-section-new {
  padding-top: 2rem;
}

.store-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 1.6rem;
  align-items: start;
}

/* Sticky Left Filter */
.store-filter-sidebar {
  position: sticky;
  top: 105px;
  align-self: start;
  background:
    radial-gradient(circle at top left, rgba(200,155,92,0.15), transparent 35%),
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.68));
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 30px;
  padding: 1.35rem;
  box-shadow: 0 24px 70px rgba(0,0,0,0.1);
}

.filter-title {
  margin-bottom: 1.2rem;
  text-align: center;
}

.filter-title span {
  display: inline-block;
  color: #8b6737;
  background: rgba(200,155,92,0.13);
  border: 1px solid rgba(200,155,92,0.24);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.filter-title h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.65rem;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 0.95rem;
  margin-bottom: 0.65rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.66);
  border: 1px solid rgba(0,0,0,0.055);
  cursor: pointer;
  transition: 0.25s ease;
  font-weight: 800;
  color: #222;
}

.filter-option:hover {
  transform: translateX(4px);
  border-color: rgba(200,155,92,0.35);
  background: rgba(255,255,255,0.92);
}

.filter-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
  cursor: pointer;
}

.filter-submit-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1.1rem;
}

.filter-submit-btn {
  border: 0;
  background: #111;
  color: white;
  padding: 0.9rem 1.55rem;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 14px 34px rgba(0,0,0,0.18);
}

.filter-submit-btn:hover {
  background: var(--gold);
  color: #111;
  transform: translateY(-3px);
}

.filter-reset-btn {
  width: 100%;
  margin-top: 0.85rem;
  border: 1px solid rgba(0,0,0,0.1);
  background: rgba(255,255,255,0.65);
  color: #333;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.3s ease;
}

.filter-reset-btn:hover {
  border-color: var(--gold);
  color: #8b6737;
}

.store-products-area {
  background:
    radial-gradient(circle at top right, rgba(200,155,92,0.14), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,0.74), rgba(239,228,214,0.82));
  border: 1px solid rgba(255,255,255,0.88);
  border-radius: 38px;
  padding: 2rem;
  box-shadow: 0 30px 85px rgba(0,0,0,0.08);
}

.store-products-head {
  margin-bottom: 1.7rem;
}

.store-products-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.store-product-card-new {
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 32px;
  padding: 1rem;
  overflow: hidden;
  position: relative;
  box-shadow: 0 18px 52px rgba(0,0,0,0.075);
  transition: transform 0.35s ease, box-shadow 0.35s ease, opacity 0.25s ease;
}

.store-product-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 75px rgba(0,0,0,0.13);
}

.store-product-card-new::before {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  right: -85px;
  top: -85px;
  background: rgba(200,155,92,0.13);
}

.store-badge-new {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  background: rgba(17,17,17,0.88);
  color: #fff;
  border-radius: 999px;
  padding: 0.48rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 900;
}

.store-product-image-new {
  height: 285px;
  border-radius: 25px;
  overflow: hidden;
  background: linear-gradient(180deg, #f2ebe2, #e7dccc);
  margin-bottom: 1rem;
}

.store-product-image-new img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.store-product-card-new:hover .store-product-image-new img {
  transform: scale(1.07);
}

.store-product-info-new {
  position: relative;
  z-index: 2;
  padding: 0.2rem 0.35rem 0.25rem;
}

.store-product-top-new {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.55rem;
}

.store-product-top-new h3 {
  font-size: 1.08rem;
}

.store-product-top-new span {
  color: var(--gold);
  font-weight: 900;
}

.store-product-info-new p {
  color: #666;
  line-height: 1.65;
  font-size: 0.93rem;
  margin-bottom: 1rem;
}

.no-products-message {
  display: none;
  text-align: center;
  margin-top: 1.5rem;
  padding: 1.2rem;
  border-radius: 22px;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(0,0,0,0.06);
  color: #666;
  font-weight: 800;
}

/* Responsive */
@media (max-width: 1050px) {
  .store-hero-new-grid {
    grid-template-columns: 1fr;
  }

  .store-hero-new-visual {
    min-height: auto;
  }

  .hero-product-showcase {
    height: 480px;
  }

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

  .store-filter-sidebar {
    position: sticky;
    top: 95px;
    z-index: 5;
  }

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

@media (max-width: 950px) {
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  nav {
    position: absolute;
    top: 82px;
    right: 4%;
    width: 250px;
    background: rgba(255,255,255,0.95);
    flex-direction: column;
    align-items: stretch;
    padding: 1.2rem;
    border-radius: 24px;
    box-shadow: var(--shadow);
    display: none;
    z-index: 1001;
  }

  #nav.active {
    display: flex;
  }

  .menu-btn {
    display: block;
    z-index: 1002;
  }

  .hero-grid,
  .feature,
  .accessories-main {
    grid-template-columns: 1fr;
  }

  .hero-card img {
    height: 480px;
  }

  .products,
  .services,
  .brand-row,
  .footer-grid,
  .other-models,
  .accessories-options {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-head {
    flex-direction: column;
    align-items: start;
  }

  .accessory-product-card {
    min-height: 420px;
  }
}

@media (max-width: 620px) {
  .contact-hero {
    padding-top: 110px;
  }

  .hero-box,
  .info-panel,
  .form-panel,
  .map-box {
    padding: 1.5rem;
    border-radius: 28px;
  }

  .map-placeholder {
    height: 260px;
    font-size: 1.1rem;
  }

  .navbar {
    height: 74px;
  }

  nav {
    top: 74px;
  }

  .hero {
    padding-top: 95px;
  }

  .hero h1 {
    letter-spacing: -1.8px;
  }

  .hero-card img {
    height: 380px;
  }

  .floating-box {
    left: 15px;
    bottom: 25px;
  }

  .products,
  .services,
  .brand-row,
  .footer-grid,
  .other-models,
  .accessories-options,
  .store-products-grid-new {
    grid-template-columns: 1fr;
  }

  .feature,
  .newsletter,
  .accessories-showcase,
  .store-filter-sidebar,
  .store-products-area {
    padding: 2rem;
    border-radius: 30px;
  }

  .form {
    flex-direction: column;
    border-radius: 26px;
  }

  .form button {
    width: 100%;
  }

  .accessory-highlights {
    grid-template-columns: 1fr;
  }

  .accessory-option-card {
    min-height: auto;
  }

  .accessory-product-card {
    display: none !important;
  }

  .store-hero-new {
    padding-top: 110px;
  }

  .store-hero-new-content h1 {
    letter-spacing: -1.8px;
  }

  .store-hero-actions {
    flex-direction: column;
  }

  .store-hero-actions .btn {
    width: 100%;
  }

  .hero-product-showcase {
    height: 380px;
    border-radius: 32px;
  }

  .hero-product-showcase img {
    border-radius: 24px;
  }

  .hero-mini-card {
    display: none;
  }

  .store-product-image-new {
    height: 260px;
  }
}
.floating-box {
  position: absolute;
  left: -35px;
  bottom: 55px;
  width: 210px;
  height: 85px;

  background: transparent;
  backdrop-filter: none;
  border: none;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
}

.floating-box-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-box-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
/* Packaging Section */
.packaging-section {
  position: relative;
  padding: 5.5rem 0;
}

.packaging-showcase {
  background:
    radial-gradient(circle at top left, rgba(200,155,92,0.22), transparent 34%),
    radial-gradient(circle at bottom right, rgba(17,17,17,0.08), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,0.9), rgba(239,228,214,0.96));
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 46px;
  padding: 2.6rem;
  box-shadow: 0 30px 85px rgba(0,0,0,0.09);
  overflow: hidden;
}

.packaging-main {
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 2rem;
}

.packaging-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4vw, 4.6rem);
  line-height: 1.03;
  letter-spacing: -1.6px;
  margin-bottom: 1rem;
}

.packaging-content > p {
  color: #666;
  line-height: 1.8;
  max-width: 620px;
  margin-bottom: 1.8rem;
}

.packaging-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
  max-width: 620px;
}

.packaging-highlight {
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 22px;
  padding: 1rem;
  display: flex;
  gap: 0.8rem;
  align-items: center;
  box-shadow: 0 12px 35px rgba(0,0,0,0.04);
}

.packaging-highlight span {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  background: #111;
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.packaging-highlight strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.packaging-highlight small {
  color: #666;
  font-size: 0.82rem;
}

.packaging-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.packaging-product-card {
  position: relative;
  width: 100%;
  max-width: 480px;
  min-height: 470px;
  border-radius: 46px !important;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(235,225,211,0.96));
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: 0 32px 80px rgba(0,0,0,0.13);
  display: grid;
  place-items: center;
  overflow: hidden !important;
}

.packaging-product-card::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(200,155,92,0.18);
  filter: blur(22px);
}

.packaging-product-card img {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 46px !important;
  transition: transform 0.5s ease;
}



.packaging-product-card:hover img {
  transform: scale(1.06) rotate(2deg);
}

.packaging-floating-label {
  position: absolute;
  z-index: 3;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.95);
  border-radius: 20px;
  padding: 0.9rem 1rem;
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
  min-width: 150px;
}

.packaging-floating-label strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.packaging-floating-label span {
  color: #666;
  font-size: 0.82rem;
}

.package-label-one {
  top: 42px;
  left: 28px;
}

.package-label-two {
  right: 28px;
  bottom: 42px;
}

.packaging-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.packaging-option-card {
  position: relative;
  min-height: 320px;
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.64));
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: 32px;
  padding: 1.2rem;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,0.07);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.packaging-option-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(0,0,0,0.13);
}

.packaging-option-card::before {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  right: -70px;
  top: -70px;
  background: rgba(200,155,92,0.16);
}

.packaging-option-card .package-img {
  height: 240px;
  background: none;
  padding: 0;
  border-radius: 24px;
  overflow: hidden;
  display: block;
  margin-bottom: 1rem;
}

.packaging-option-card .package-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  transition: transform 0.45s ease;
}

.packaging-option-card:hover .package-img img {
  transform: scale(1.08);
}

.package-meta {
  position: relative;
  z-index: 2;
}

.package-label {
  display: inline-block;
  margin-bottom: 0.65rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(200,155,92,0.13);
  color: #8b6737;
  border: 1px solid rgba(200,155,92,0.22);
  font-size: 0.78rem;
  font-weight: 800;
}

.package-meta h3 {
  font-size: 1.18rem;
  margin-bottom: 0.4rem;
}

.package-meta p {
  color: #666;
  line-height: 1.6;
  font-size: 0.94rem;
  margin: 0;
}

/* Packaging Responsive */
@media (max-width: 950px) {
  .packaging-main {
    grid-template-columns: 1fr;
  }

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

  .packaging-product-card {
    min-height: 420px;
  }
}

@media (max-width: 620px) {
  .packaging-showcase {
    padding: 2rem;
    border-radius: 30px;
  }

  .packaging-highlights {
    grid-template-columns: 1fr;
  }

  .packaging-options {
    grid-template-columns: 1fr;
  }

  .packaging-option-card {
    min-height: auto;
  }

  .packaging-product-card {
    display: none !important;
  }
}


/* Luxury See More Button */
.collection-more {
  margin-top: 0.25rem; /* More breathing room */
  margin-bottom: 3.5rem;
  display: flex;
  justify-content: center;
}

/* Luxury See More Button */
.collection-more2 {
  margin-top: 1.25rem; /* More breathing room */
  margin-bottom: -5px;
  display: flex;
  justify-content: center;
}

.btn-see-more {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.15rem 3rem;
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
  border-radius: 999px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-see-more:hover {
  background: var(--dark);
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Optional: animate the arrow on hover */
.btn-see-more span {
  transition: transform 0.3s ease;
}

.btn-see-more:hover span {
  transform: translateX(5px);
}

/* Slim Divider Section */
.luxury-divider {
  padding: 1rem 0;
}

.luxury-divider-line {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.luxury-divider-line::before {
  content: "";
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(200, 155, 92, 0.45),
    rgba(17, 17, 17, 0.18),
    rgba(200, 155, 92, 0.45),
    transparent
  );
}

.luxury-divider-line span {
  position: absolute;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: #8b6737;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}
