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

:root {
  --navy: #0f1b2d;
  --navy-light: #1a2b45;
  --charcoal: #2c2c2c;
  --charcoal-light: #3a3a3a;
  --ivory: #faf8f2;
  --ivory-dark: #ede9df;
  --gold: #c9a96e;
  --gold-light: #d4b97e;
  --gold-dark: #a88b55;
  --silver: #c0c0c0;
  --silver-light: #d8d8d8;
  --green-deep: #1a3a2a;
  --green-accent: #2d5a3f;
  --text-primary: #1a1a1a;
  --text-secondary: #4a4a4a;
  --text-light: #f0ece4;
  --text-muted: #8a8a8a;
  --border-light: rgba(201,169,110,0.2);
  --border-dark: rgba(255,255,255,0.1);
  --shadow-soft: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-medium: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-heavy: 0 16px 48px rgba(0,0,0,0.18);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Raleway', 'Helvetica Neue', sans-serif;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--ivory);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul, ol {
  list-style: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: inline-block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-title--light {
  color: var(--ivory);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.75;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border: 2px solid var(--gold);
}

.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,169,110,0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--ivory);
  border: 2px solid rgba(255,255,255,0.4);
}

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

.btn-dark {
  background: var(--navy);
  color: var(--ivory);
  border: 2px solid var(--navy);
}

.btn-dark:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--ivory);
  transform: translateY(-2px);
}

/* ======================== HEADER ======================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition);
  padding: 0;
}

.site-header.transparent {
  background: transparent;
}

.site-header.scrolled {
  background: rgba(15, 27, 45, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.15);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ivory);
  letter-spacing: 0.5px;
}

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

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-nav a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  position: relative;
  padding: 4px 0;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

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

.header-nav a:hover::after {
  width: 100%;
}

.header-cta .btn {
  padding: 10px 24px;
  font-size: 0.75rem;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ivory);
  transition: all var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--ivory);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.mobile-menu.active a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--ivory);
  font-size: 2rem;
  cursor: pointer;
}

/* ======================== HERO ======================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  filter: brightness(0.6) contrast(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,27,45,0.92) 0%, rgba(15,27,45,0.6) 50%, rgba(15,27,45,0.85) 100%);
  z-index: 2;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 8s infinite ease-in-out;
}

@keyframes particleFloat {
  0%, 100% { opacity: 0; transform: translateY(0) scale(0); }
  10% { opacity: 0.6; }
  50% { opacity: 0.3; transform: translateY(-100px) scale(1); }
  90% { opacity: 0; }
  100% { transform: translateY(-200px) scale(0.5); }
}

.hero-content {
  position: relative;
  z-index: 4;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 120px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(201,169,110,0.15);
  border: 1px solid rgba(201,169,110,0.3);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease forwards;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--ivory);
  line-height: 1.15;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s 0.2s ease forwards;
  opacity: 0;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 36px;
  animation: fadeInUp 0.8s 0.4s ease forwards;
  opacity: 0;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.6s ease forwards;
  opacity: 0;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-image-frame {
  position: relative;
  width: 420px;
  height: 420px;
  animation: fadeInRight 1s 0.5s ease forwards;
  opacity: 0;
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50% 50% 50% 0;
}

.hero-image-frame::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1px solid var(--gold);
  border-radius: 50% 50% 50% 0;
  opacity: 0.3;
  animation: pulseRing 3s infinite ease-in-out;
}

.hero-image-frame::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  border: 2px solid var(--gold);
  opacity: 0.2;
}

.hero-stat {
  position: absolute;
  background: rgba(15,27,45,0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201,169,110,0.25);
  padding: 16px 24px;
  animation: fadeIn 1s 1s ease forwards;
  opacity: 0;
}

.hero-stat--reviews {
  bottom: 40px;
  left: -40px;
}

.hero-stat--years {
  top: 40px;
  right: -20px;
}

.hero-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
}

.hero-stat small {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1px;
  text-transform: uppercase;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulseRing {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.02); opacity: 0.15; }
}

/* ======================== EDITORIAL ======================== */

.editorial {
  padding: 100px 0;
  background: var(--ivory);
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.editorial-image {
  position: relative;
  overflow: hidden;
}

.editorial-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.editorial-image:hover img {
  transform: scale(1.03);
}

.editorial-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}

.editorial-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.3;
}

.editorial-text p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.editorial-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 24px 0;
}

/* ======================== BENEFITS ======================== */

.benefits {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.benefits::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(201,169,110,0.08);
  border-radius: 50%;
}

.benefits-header {
  text-align: center;
  margin-bottom: 60px;
}

.benefits-header .section-subtitle {
  color: rgba(255,255,255,0.6);
  margin: 0 auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.benefit-card {
  padding: 40px 32px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.benefit-card:hover {
  border-color: rgba(201,169,110,0.2);
  background: rgba(255,255,255,0.05);
  transform: translateY(-4px);
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.benefit-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--ivory);
  margin-bottom: 12px;
}

.benefit-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* ======================== PRODUCTS ======================== */

.products {
  padding: 100px 0;
  background: var(--ivory);
}

.products-header {
  text-align: center;
  margin-bottom: 60px;
}

.products-header .section-subtitle {
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.product-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
  group: true;
}

.product-card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-6px);
}

.product-card-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

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

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

.product-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--navy);
  color: var(--gold);
  padding: 4px 12px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.product-card-body {
  padding: 24px;
}

.product-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.product-card-body p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
  line-height: 1.6;
}

.product-card-price {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold-dark);
  margin-bottom: 16px;
}

.product-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  padding: 10px 0;
  border-bottom: 1px solid var(--gold);
  transition: all var(--transition);
}

.product-card-cta:hover {
  color: var(--gold-dark);
  gap: 12px;
}

.seller-link {
  width: 100%;
  justify-content: center;
  padding: 10px 16px;
  font-size: 0.75rem;
}

.product-policy-note {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(0,0,0,0.08);
  font-size: 0.76rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.product-policy-note a,
.modal-return-note a,
.ad-disclosure a,
.policy-alert a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ad-disclosure {
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 18px 0;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.ad-disclosure strong {
  color: var(--navy);
}

.modal-return-note,
.policy-alert {
  padding: 16px 18px;
  background: rgba(201,169,110,0.12);
  border-left: 3px solid var(--gold);
  color: var(--text-secondary);
  font-size: 0.84rem;
  line-height: 1.65;
}

.modal-return-note {
  margin: -4px 0 20px;
}

.policy-alert {
  margin: 0 0 24px;
}

/* ======================== CTA BLOCK ======================== */

.cta-block {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><rect width="60" height="60" fill="none"/><circle cx="30" cy="30" r="1" fill="rgba(201,169,110,0.08)"/></svg>');
}

.cta-block .container {
  position: relative;
}

.cta-block h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--ivory);
  margin-bottom: 16px;
  line-height: 1.3;
}

.cta-block p {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.75;
}

/* ======================== OCCASIONS ======================== */

.occasions {
  padding: 100px 0;
  background: var(--ivory-dark);
}

.occasions-header {
  text-align: center;
  margin-bottom: 60px;
}

.occasions-header .section-subtitle {
  margin: 0 auto;
}

.occasions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.occasion-card {
  padding: 36px 28px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  text-align: center;
  transition: all var(--transition);
}

.occasion-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: var(--gold);
}

.occasion-icon {
  font-size: 2.4rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.occasion-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.occasion-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ======================== ABOUT JEWELLER ======================== */

.about-jeweller {
  padding: 100px 0;
  background: var(--ivory);
}

.about-jeweller-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-jeweller-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-jeweller-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 20px;
}

.about-jeweller-text p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.about-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--gold-dark);
  line-height: 1;
}

.about-stat span {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ======================== TRUST ======================== */

.trust {
  padding: 80px 0;
  background: var(--green-deep);
}

.trust-header {
  text-align: center;
  margin-bottom: 48px;
}

.trust-header .section-subtitle {
  color: rgba(255,255,255,0.6);
  margin: 0 auto;
}

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

.trust-item {
  text-align: center;
  padding: 24px 16px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all var(--transition);
}

.trust-item:hover {
  border-color: rgba(201,169,110,0.3);
  background: rgba(255,255,255,0.03);
}

.trust-item i {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.trust-item p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* ======================== FINAL CTA ======================== */

.final-cta {
  padding: 120px 0;
  background: var(--navy);
  text-align: center;
  position: relative;
}

.final-cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ivory);
  margin-bottom: 24px;
}

.final-cta p {
  color: rgba(255,255,255,0.6);
  max-width: 500px;
  margin: 0 auto 36px;
}

/* ======================== FOOTER ======================== */

.site-footer {
  background: #0a1420;
  padding: 80px 0 0;
  color: rgba(255,255,255,0.6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--ivory);
  margin-bottom: 16px;
}

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

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--ivory);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  padding: 4px 0;
  transition: all var(--transition);
}

.footer-col a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-company {
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-company-grid {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-company-col h5 {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.footer-company-col p {
  font-size: 0.8rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
}

.footer-disclaimer {
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

/* ======================== PAGE HERO ======================== */

.page-hero {
  padding: 140px 0 80px;
  background: var(--navy);
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ivory);
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
}

.page-hero .breadcrumb {
  margin-top: 16px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.page-hero .breadcrumb a {
  color: var(--gold);
}

/* ======================== CATALOGUE ======================== */

.catalogue-section {
  padding: 60px 0 100px;
}

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

.filter-btn {
  padding: 10px 24px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(0,0,0,0.12);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--navy);
  color: var(--ivory);
  border-color: var(--navy);
}

/* ======================== MODAL ======================== */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-content {
  background: #fff;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalSlideUp 0.4s ease forwards;
}

@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(0,0,0,0.1);
  background: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all var(--transition);
}

.modal-close:hover {
  background: var(--navy);
  color: var(--ivory);
}

.modal-image {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.modal-body {
  padding: 32px;
}

.modal-body h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.modal-body .modal-price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gold-dark);
  margin-bottom: 16px;
}

.modal-body .modal-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 24px;
}

.modal-body .modal-details {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 16px;
  margin-bottom: 24px;
}

.modal-body .modal-details li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.modal-body .modal-details li i {
  color: var(--gold);
  font-size: 0.8rem;
}

/* ======================== BLOG ======================== */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.blog-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-4px);
}

.blog-card-image {
  height: 220px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.blog-card-body {
  padding: 24px;
}

.blog-card-date {
  font-size: 0.7rem;
  color: var(--gold-dark);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.blog-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.35;
}

.blog-card-body p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ======================== CART ======================== */

.cart-section {
  padding: 60px 0 100px;
}

.cart-empty {
  text-align: center;
  padding: 80px 0;
}

.cart-empty i {
  font-size: 4rem;
  color: var(--silver);
  margin-bottom: 24px;
}

.cart-empty h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.cart-empty p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.cart-items {
  border: 1px solid rgba(0,0,0,0.08);
}

.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto auto;
  gap: 24px;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

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

.cart-item-info h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--navy);
}

.cart-item-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

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

.cart-item-qty button {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(0,0,0,0.12);
  background: transparent;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item-price {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold-dark);
  min-width: 80px;
  text-align: right;
}

.cart-summary {
  max-width: 400px;
  margin-left: auto;
  margin-top: 40px;
  padding: 32px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.9rem;
}

.cart-summary-row.total {
  border-top: 2px solid var(--navy);
  margin-top: 12px;
  padding-top: 16px;
  font-weight: 700;
  font-size: 1.1rem;
}

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

.checkout-section {
  padding: 60px 0 100px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
}

.checkout-form {
  background: #fff;
  padding: 40px;
  border: 1px solid rgba(0,0,0,0.08);
}

.checkout-form h2 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(0,0,0,0.15);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition);
  background: var(--ivory);
}

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

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

#card-element {
  padding: 14px 16px;
  border: 1px solid rgba(0,0,0,0.15);
  background: var(--ivory);
}

.checkout-summary {
  background: var(--navy);
  padding: 32px;
  color: var(--ivory);
  height: fit-content;
  position: sticky;
  top: 100px;
}

.checkout-summary h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.checkout-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

.checkout-total {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

/* ======================== CONTACT FORM ======================== */

.contact-section {
  padding: 60px 0 100px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.contact-info-card i {
  font-size: 1.2rem;
  color: var(--gold);
  margin-top: 4px;
}

.contact-info-card h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.contact-info-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ======================== LEGAL PAGES ======================== */

.legal-section {
  padding: 60px 0 100px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--navy);
  margin: 32px 0 12px;
}

.legal-content h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--navy);
  margin: 24px 0 8px;
}

.legal-content p {
  color: var(--text-secondary);
  margin-bottom: 12px;
  font-size: 0.9rem;
  line-height: 1.75;
}

.legal-content ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.legal-content ul li {
  list-style: disc;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 6px;
  line-height: 1.65;
}

/* ======================== COOKIE BANNER ======================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  padding: 20px 24px;
  z-index: 3000;
  display: none;
  border-top: 2px solid var(--gold);
}

.cookie-banner.show {
  display: block;
  animation: slideUp 0.4s ease forwards;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-inner p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

.cookie-inner p a {
  color: var(--gold);
  text-decoration: underline;
}

.cookie-btns {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* ======================== SCROLL TO TOP ======================== */

.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 500;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

/* ======================== ANIMATIONS ======================== */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ======================== RESPONSIVE ======================== */

@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .editorial-grid,
  .about-jeweller-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

  .header-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }
}

@media (max-width: 768px) {
  .benefits-grid,
  .occasions-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

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

  .cart-item {
    grid-template-columns: 80px 1fr;
    gap: 16px;
  }

  .cart-item-qty,
  .cart-item-price {
    grid-column: 2;
  }

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

  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-company-grid {
    flex-direction: column;
    gap: 24px;
  }

  .hero-image-frame {
    width: 280px;
    height: 280px;
  }

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

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

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .catalogue-filters {
    flex-direction: column;
    align-items: stretch;
  }
}
