/* =========================================================
   WIOORA — Theme Variables
   ========================================================= */
:root {
  --rosegold-1: #b76e79;
  --rosegold-2: #c98f96;
  --rosegold-3: #e8c1b6;
  --rosegold-dark: #8a4b53;
  --cream: #fdf8f3;
  --cream-2: #f7ede4;
  --ink: #3a2b28;
  --ink-soft: #6b5750;
  --gold-line: #d4a373;
  --white: #ffffff;

  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Poppins', sans-serif;

  --shadow-soft: 0 10px 30px rgba(183, 110, 121, 0.15);
  --transition: all 0.35s ease;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

::selection { background: var(--rosegold-2); color: #fff; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--ink);
}

a { text-decoration: none; }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream-2); }
::-webkit-scrollbar-thumb { background: var(--rosegold-2); border-radius: 10px; }

/* =========================================================
   PRELOADER
   ========================================================= */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hide { opacity: 0; visibility: hidden; }
.loader-diamond svg {
  fill: var(--rosegold-1);
  animation: pulse 1.1s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(0.85); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 1; }
}

/* =========================================================
   NAVBAR
   ========================================================= */
#mainNav {
  padding: 18px 0;
  transition: var(--transition);
  background: transparent;
}
#mainNav.scrolled {
  background: rgba(253, 248, 243, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(183, 110, 121, 0.1);
  padding: 10px 0;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}
.brand-icon {
  color: var(--rosegold-1);
  font-size: 1.5rem;
  display: inline-flex;
}
.brand-text {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.7rem;
  letter-spacing: 3px;
  color: var(--ink);
}
.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink) !important;
  letter-spacing: 0.4px;
  padding: 8px 14px !important;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 1px;
  background: var(--rosegold-1);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.nav-link:hover::after { transform: scaleX(1); }
.btn-enquire-nav {
  background: var(--rosegold-1);
  color: #fff !important;
  border-radius: 30px;
  padding: 8px 22px !important;
  margin-left: 8px;
}
.btn-enquire-nav::after { display: none; }
.btn-enquire-nav:hover { background: var(--rosegold-dark); }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn-rosegold {
  background: linear-gradient(135deg, var(--rosegold-1), var(--rosegold-dark));
  color: #fff;
  border: none;
  padding: 13px 32px;
  border-radius: 40px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
}
.btn-rosegold:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(183, 110, 121, 0.3);
  color: #fff;
}
.btn-outline-rosegold {
  background: transparent;
  color: var(--rosegold-dark);
  border: 1.5px solid var(--rosegold-1);
  padding: 13px 32px;
  border-radius: 40px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: var(--transition);
}
.btn-outline-rosegold:hover {
  background: var(--rosegold-1);
  color: #fff;
  transform: translateY(-3px);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: radial-gradient(circle at 80% 20%, var(--rosegold-3) 0%, transparent 45%),
              radial-gradient(circle at 10% 90%, var(--cream-2) 0%, transparent 40%),
              var(--cream);
  overflow: hidden;
}
.hero-shapes { position: absolute; inset: 0; z-index: 0; }
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.35;
  background: linear-gradient(135deg, var(--rosegold-2), var(--rosegold-3));
  filter: blur(2px);
  animation: float 8s ease-in-out infinite;
}
.shape-1 { width: 220px; height: 220px; top: 12%; right: 8%; animation-delay: 0s; }
.shape-2 { width: 140px; height: 140px; bottom: 15%; right: 20%; animation-delay: 1.5s; }
.shape-3 { width: 90px; height: 90px; top: 55%; left: 6%; animation-delay: 3s; }
@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-25px) translateX(10px); }
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 90px;
  max-width: 780px;
}
.eyebrow {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--rosegold-dark);
  margin-bottom: 10px;
}
.hero-title {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 22px;
}
.hero-title span { color: var(--rosegold-1); font-style: italic; }
.hero-sub {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 34px;
  line-height: 1.7;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  margin-top: 80px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
}
.hero-scroll span {
  width: 1px;
  height: 40px;
  background: var(--rosegold-1);
  display: inline-block;
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
.hero-scroll small { letter-spacing: 1px; font-size: 0.75rem; text-transform: uppercase; }

/* =========================================================
   SECTION GENERICS
   ========================================================= */
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  margin-bottom: 16px;
}
.section-text {
  color: var(--ink-soft);
  line-height: 1.75;
  font-size: 1rem;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 46px;
  border-bottom: 1px solid rgba(183,110,121,0.2);
  padding-bottom: 24px;
}
.section-text-side {
  color: var(--ink-soft);
  max-width: 380px;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* =========================================================
   BRAND STRIP / ABOUT
   ========================================================= */
.brand-strip { padding: 100px 0; background: var(--white); }
.feature-box {
  background: var(--cream);
  border: 1px solid rgba(183,110,121,0.15);
  border-radius: 16px;
  padding: 26px 18px;
  text-align: center;
  height: 100%;
  transition: var(--transition);
}
.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: var(--rosegold-2);
}
.feature-box i {
  font-size: 1.8rem;
  color: var(--rosegold-1);
  margin-bottom: 12px;
  display: block;
}
.feature-box h6 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
  margin: 0;
}

/* =========================================================
   COLLECTIONS INTRO
   ========================================================= */
.collections-intro { padding: 80px 0 20px; }

/* =========================================================
   PRODUCT SECTIONS
   ========================================================= */
.product-section { padding: 80px 0; }
.product-section.alt-bg { background: var(--cream-2); }

.product-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 6px 20px rgba(183,110,121,0.08);
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid rgba(183,110,121,0.08);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
}
.product-img {
  aspect-ratio: 1 / 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cream-2), var(--rosegold-3));
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(0,0,0,0.1);
}
.product-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.product-card:hover .product-photo {
  transform: scale(1.08);
}
.product-img .fallback-icon {
  font-size: 3rem;
  color: var(--rosegold-1);
  opacity: 0.55;
  transition: var(--transition);
  display: none;
}
.product-card:hover .product-img .fallback-icon {
  transform: scale(1.15) rotate(-6deg);
  opacity: 0.8;
}
.product-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,0.5) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.7s ease;
}
.product-card:hover .product-img::before { transform: translateX(100%); }

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255,255,255,0.9);
  color: var(--rosegold-dark);
  font-size: 0.68rem;
  letter-spacing: 0.5px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}
.product-info { padding: 18px 20px 22px; }
.product-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.product-code {
  font-size: 0.75rem;
  color: var(--ink-soft);
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.product-price {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--rosegold-dark);
  font-family: var(--font-sans);
}
.product-price .mrp-label {
  font-size: 0.7rem;
  color: var(--ink-soft);
  font-weight: 400;
  margin-right: 4px;
}

/* =========================================================
   QUOTE STRIP
   ========================================================= */
.quote-strip {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--rosegold-1), var(--rosegold-dark));
  color: #fff;
  text-align: center;
}
.quote-icon { font-size: 2.5rem; opacity: 0.6; }
.quote-text {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-style: italic;
  max-width: 780px;
  margin: 10px auto 16px;
  line-height: 1.5;
}
.quote-brand { letter-spacing: 2px; text-transform: uppercase; font-size: 0.85rem; opacity: 0.85; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-section { padding: 100px 0; background: var(--white); }
.contact-list { list-style: none; padding: 0; margin: 24px 0; }
.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.contact-list i { color: var(--rosegold-1); font-size: 1.1rem; }
.contact-list a { color: inherit; }
.contact-list a:hover { color: var(--rosegold-dark); }
.social-icons { display: flex; gap: 12px; }
.social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--rosegold-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rosegold-dark);
  transition: var(--transition);
}
.social-icons a:hover {
  background: var(--rosegold-1);
  color: #fff;
  transform: translateY(-3px);
}

.contact-form {
  background: var(--cream);
  padding: 36px;
  border-radius: 20px;
  border: 1px solid rgba(183,110,121,0.15);
}
.contact-form .form-control {
  background: #fff;
  border: 1px solid rgba(183,110,121,0.2);
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.92rem;
}
.contact-form .form-control:focus {
  border-color: var(--rosegold-1);
  box-shadow: 0 0 0 0.2rem rgba(183,110,121,0.15);
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--ink);
  color: #e9dcd8;
  padding: 50px 0 26px;
}
.site-footer .brand-text { color: #fff; }
.site-footer .brand-icon { color: var(--rosegold-2); }
.footer-tagline {
  color: #cbb3ac;
  font-family: var(--font-serif);
  font-style: italic;
  margin-top: 8px;
}
.footer-links {
  list-style: none;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin: 0;
}
.footer-links a {
  color: #e9dcd8;
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--rosegold-2); }
.copyright { font-size: 0.85rem; color: #b39d96; margin: 0; }

/* =========================================================
   BACK TO TOP
   ========================================================= */
.back-to-top {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--rosegold-1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: var(--transition);
  z-index: 900;
  box-shadow: var(--shadow-soft);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--rosegold-dark); color: #fff; }

/* =========================================================
   PRODUCT MODAL
   ========================================================= */
.modal-content {
  border-radius: 20px;
  overflow: hidden;
  border: none;
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  background-color: rgba(255,255,255,0.85) !important;
  border-radius: 50%;
  padding: 8px !important;
  opacity: 1;
}
.modal-product-img {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--cream-2), var(--rosegold-3));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.modal-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal-product-img i { font-size: 4rem; color: var(--rosegold-1); opacity: 0.6; }
.modal-product-info { padding: 28px 30px 32px; }
.modal-product-info h4 { font-size: 1.6rem; margin-bottom: 6px; }
.modal-design-no { color: var(--ink-soft); font-size: 0.85rem; margin-bottom: 14px; }
.modal-price { font-size: 1.4rem; font-weight: 600; color: var(--rosegold-dark); margin-bottom: 20px; }

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-aos].aos-in { opacity: 1; transform: translateY(0); }
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: var(--cream);
    margin-top: 14px;
    padding: 16px;
    border-radius: 14px;
    box-shadow: var(--shadow-soft);
  }
  .btn-enquire-nav { margin: 8px 0 0; display: inline-block; }
  .section-head { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 767.98px) {
  .hero { min-height: auto; padding: 140px 0 80px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; text-align: center; }
  .brand-strip, .product-section, .contact-section, .quote-strip { padding: 60px 0; }
  .contact-form { padding: 26px; }
}

@media (max-width: 575.98px) {
  .brand-text { font-size: 1.4rem; letter-spacing: 2px; }
  .hero-title { font-size: 2.2rem; }
}
