:root{
  --primary:#E3B341;
  --dark:#1f2933;
  --gray:#6b7280;
  --bg:#f9fafb;
}
#preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #0b1220;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(227, 179, 65, 0.1);
  border-top: 5px solid #E3B341;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#preloader.fade-out {
  opacity: 0;
  pointer-events: none;
}
*{box-sizing:border-box;margin:0;padding:0;font-family:'Poppins',sans-serif;}
body{background:var(--bg);color:var(--dark);}    

/* NAVBAR */
html{
scroll-behavior: smooth;
}

header{
background:#fff;
background:rgba(255,255,255,0.75);
backdrop-filter:blur(14px);
-webkit-backdrop-filter:blur(14px);
transition:.3s ease;
padding:18px 60px;
display:flex;
align-items:center;
justify-content:space-between;
box-shadow:0 2px 10px rgba(0,0,0,.05);
position:sticky;
top:0;
z-index:1000;
}

.logo{font-weight:700;font-size:22px;letter-spacing:.5px;}
.logo span{color:var(--primary);}
nav a{
  margin:0 18px;
  text-decoration:none;
  color:var(--gray);
  font-weight:500;
}
nav a:hover{color:var(--dark);}    
.nav-actions{
  display:flex;gap:15px;align-items:center;
}
.btn{
  padding:10px 22px;
  border-radius:10px;
  border:none;
  cursor:pointer;
  font-weight:600;
}
.btn-primary{background:var(--primary);color:#fff;}
.btn-outline{background:#fff;border:2px solid var(--primary);color:var(--primary);}    

/* HERO */
.hero{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:60px;
  padding:80px 80px;
  align-items:center;
}
.hero h1{
  font-size:54px;
  line-height:1.2;
  margin-bottom:25px;
}
.hero h1 span{color:var(--primary);}    
.hero p{
  font-size:17px;
  color:var(--gray);
  max-width:520px;
  margin-bottom:35px;
}
.hero-buttons{display:flex;gap:18px;}    

/* HERO CARD */
.hero-card{
  background:linear-gradient(145deg,#111827,#1f2933);
  border-radius:26px;
  padding:22px;
  color:#fff;
  position:relative;
  box-shadow:0 30px 60px rgba(0,0,0,.25);
}
.hero-card img{
  width:100%;
  border-radius:18px;
}
.badge{
  position:absolute;
  top:20px;right:20px;
  background:#fff;
  color:#111;
  padding:6px 14px;
  border-radius:999px;
  font-size:13px;
  font-weight:600;
}
.card-footer{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:12px;
  font-size:14px;
  color:#d1d5db;
}
/* HERO PRODUCT SLIDESHOW */
.hero-slideshow{
position:relative;
width:100%;
height:320px;          /* ⭐ REQUIRED */
border-radius:18px;
overflow:hidden;
}

.hero-slideshow .slide{
position:absolute;
inset:0;
width:100%;
height:100%;
object-fit:contain;
opacity:0;
transform:scale(1.05);
transition:opacity 0.8s ease, transform 0.8s ease;
}

.hero-slideshow .slide.active{
opacity:1;
transform:scale(1);
}



.hero-card{
animation:float 6s ease-in-out infinite;
}

/* GALLERY */
/* ================= GALLERY ================= */
#gallery{
background:
  radial-gradient(circle at top left, rgba(227,179,65,.18), transparent 45%),
  radial-gradient(circle at bottom right, rgba(227,179,65,.14), transparent 45%),
  linear-gradient(180deg, #ffffff, #f9fafb);
}


/* FILTER BUTTONS */
.gallery-filters{
display:flex;
justify-content:center;
gap:14px;
margin-bottom:50px;
flex-wrap:wrap;
}

.gallery-filters .btn{
padding:10px 22px;
border-radius:999px;
font-size:14px;
transition:.3s ease;
}

.gallery-filters .btn.active{
background:linear-gradient(135deg,var(--primary),#f5d77a);
color:#fff;
box-shadow:0 10px 22px rgba(227,179,65,.45);
}

/* GRID */
.gallery-grid{
max-width:1200px;
margin:0 auto;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
}

/* CARD */
.gallery-item{
position:relative;
border-radius:28px;
overflow:hidden;

background:rgba(255,255,255,0.55);
backdrop-filter:blur(14px);
-webkit-backdrop-filter:blur(14px);

border:1px solid rgba(227,179,65,.25);
box-shadow:
  0 25px 50px rgba(0,0,0,.08),
  inset 0 0 0 1px rgba(255,255,255,.35);

transition:.4s cubic-bezier(.4,0,.2,1);
}
.gallery-label{
margin:16px auto 20px;
width:max-content;

background:rgba(227,179,65,.85);
backdrop-filter:blur(8px);

color:#fff;
padding:6px 18px;
border-radius:999px;
font-size:13px;
font-weight:600;

box-shadow:0 8px 22px rgba(227,179,65,.45);
}



/* IMAGE */
.gallery-item img{
width:100%;
height:100%;
object-fit:cover;
display:block;
transition:.4s ease;
}

/* HOVER */
.gallery-item:hover{
transform:translateY(-12px);
box-shadow:
  0 35px 70px rgba(0,0,0,.12),
  0 0 0 2px rgba(227,179,65,.35);
}


.gallery-item:hover img{
transform:scale(1.04);
}

/* PRODUCT TAG (NO BLACK) */
.gallery-label{
margin:14px auto 18px;
width:max-content;
background:linear-gradient(135deg,var(--primary),#f5d77a);
color:#fff;
padding:6px 16px;
border-radius:999px;
font-size:13px;
font-weight:600;
box-shadow:0 8px 20px rgba(227,179,65,.4);
}

/* MOBILE */
@media(max-width:600px){
.gallery-grid{
  gap:22px;
}
}

#orderForm{
flex:1;                   /* takes remaining modal height */
overflow-y:auto;          /* 🔑 INTERNAL SCROLL */
padding-right:8px;
}

/* shop now */
.modal-overlay#orderModal{
position:fixed;
inset:0;
background:rgba(0,0,0,.6);
display:none;
align-items:center;
justify-content:center;
z-index:1000;
}


/* SECTIONS */
.section-title{
    max-width: 1200px;   /* maximum width for large screens */
    margin: 0 auto;       /* centers it horizontally */
    padding: 0 20px;      /* adds space on both sides */
    box-sizing: border-box; /* ensures padding is included in width */
}
section{padding:80px;}    
.section-title{text-align:center;margin-bottom:60px;}    
.section-title h2{font-size:38px;margin-bottom:10px;}    
.section-title p{color:var(--gray);}    

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:30px;
}

.card{
  background:#fff;
  padding:28px;
  border-radius:22px;
  text-align:center;
  box-shadow:0 10px 25px rgba(0,0,0,.06);
  transition:.3s;
}
.card:hover{transform:translateY(-8px);}    
.card img{height:80px;margin-bottom:18px;}    
.card h3{margin-bottom:10px;}    
.card p{color:var(--gray);font-size:14px;}    

/* CTA */
.cta{
  background:linear-gradient(135deg,#E3B341,#f5d77a);
  border-radius:30px;
  padding:70px;
  text-align:center;
  color:#fff;
  margin:0 80px 80px;
}
.cta h2{font-size:40px;margin-bottom:20px;}    

/* FOOTER */
footer{
  background:#111827;
  color:#d1d5db;
  padding:50px 80px;
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:40px;
}
footer h4{margin-bottom:14px;color:#fff;}    
footer a{display:block;color:#d1d5db;text-decoration:none;margin-bottom:8px;font-size:14px;}    
footer a:hover{color:#fff;}    

@media(max-width:900px){
  .hero{grid-template-columns:1fr;padding:60px 30px;}      
  header{padding:18px 30px;}      
  section,footer{padding:60px 30px;}      
  .cta{margin:0 30px 60px;padding:50px 30px;}    
}
.modal form{
display:flex;
flex-direction:column;
align-items:center;
}

.modal form .contact-btn{
width:70%;
margin-top:10px;
}
.sticky-contact{
position:fixed;
right:22px;
bottom:22px;
display:flex;
flex-direction:column;
gap:12px;
z-index:999;
}

.sticky-contact a{
width:52px;
height:52px;
background:linear-gradient(135deg,var(--primary),#f5d77a);
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
color:#fff;
font-size:22px;
cursor:pointer;
box-shadow:0 12px 25px rgba(227,179,65,.5);
transition:.3s;
}

.sticky-contact a:hover{
transform:scale(1.1);
}


/* CONTACT SECTION */
/* CONTACT SECTION */
.contact-section{
padding:80px;
background:var(--bg);
}

.contact-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
max-width:1100px;
margin:0 auto;
}

.contact-card{
background:#fff;
border-radius:24px;
padding:42px 30px;
text-align:center;
color:var(--dark);
box-shadow:0 15px 35px rgba(0,0,0,.08);
transition:.35s;
}

.contact-card:hover{
transform:translateY(-10px);
box-shadow:0 25px 55px rgba(0,0,0,.15);
}

.contact-icon{
font-size:44px;
margin-bottom:18px;
}

.contact-card h3{
font-size:22px;
margin-bottom:10px;
}

.contact-card p{
font-size:15px;
color:var(--gray);
margin-bottom:28px;
}

/* GOLD BUTTON */
.contact-btn{
display:inline-block;
padding:12px 28px;
border-radius:999px;
background:linear-gradient(135deg,var(--primary),#f5d77a);
color:#fff;
text-decoration:none;
font-weight:600;
transition:.3s ease;
box-shadow:0 10px 25px rgba(227,179,65,.4);
}

.contact-btn:hover{
transform:translateY(-3px);
box-shadow:0 18px 35px rgba(227,179,65,.55);
}
/* MODAL */
.modal-overlay{
position:fixed;
inset:0;
background:rgba(0,0,0,.6);
display:none;
align-items:center;
justify-content:center;
z-index:1000;
}

.modal{
background:#fff;
border-radius:24px;
padding:20px;

width:90%;
max-width:420px;

max-height:90vh;          /* 🔑 LIMIT HEIGHT */
display:flex;
flex-direction:column;

position:relative;
animation:popup .4s ease;
}


@keyframes popup{
from{transform:scale(.8);opacity:0}
to{transform:scale(1);opacity:1}
}

.modal h3{
margin-bottom:20px;
text-align:center;
}

.modal input,
.modal select,
.modal textarea{
width:100%;
padding:12px 14px;
margin-bottom:15px;
border-radius:10px;
border:1px solid #ddd;
font-family:inherit;
}

.modal textarea{resize:none;height:90px;}

.modal-close{
position:absolute;
top:15px;
right:18px;
cursor:pointer;
font-size:18px;
}

/* MOBILE */
@media(max-width:900px){
.contact-section{
  padding:60px 30px;
}
}


/* MOBILE */
@media(max-width:900px){
.contact-section{
  padding:60px 30px;
}
}
@media(max-width:600px){
.hero-slideshow{
  height:260px;
}
}

footer {
background: #111827;
color: #d1d5db;
padding: 50px 80px;
display: grid;
grid-template-columns: 2fr 1fr 1fr;
gap: 40px;
border-top: 2px solid rgba(227,179,65,0.4);
}

footer h4 {
margin-bottom: 16px;
color: #fff;
font-size: 18px;
}

footer a {
display: block;
color: #d1d5db;
text-decoration: none;
margin-bottom: 10px;
font-size: 14px;
transition: 0.3s;
}

footer a:hover {
color: var(--primary);
}
/* REVIEWS REDESIGN */
.reviews-section {
  padding: 100px 80px;
  background: #fff;
  overflow: hidden;
}

.eyebrow {
  display: block;
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.reviews-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 30px;
  align-items: start;
}

.review-card {
  background: #ffffff;
  border-radius: 30px;
  padding: 40px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: all 0.4s ease;
  position: relative;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(227, 179, 65, 0.12);
  border-color: var(--primary);
}

/* Featured Card Styling */
.review-card.featured {
  background: var(--dark);
  color: #fff;
  height: 85%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quote-icon {
  font-size: 80px;
  font-family: serif;
  color: var(--primary);
  line-height: 1;
  margin-bottom: -20px;
  opacity: 0.5;
}

.review-text {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 30px;
  font-style: italic;
}

/* Mini Grid Styling */
.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.review-card.mini {
  padding: 25px;
}

.review-card.mini p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Common Reviewer Info */
.reviewer-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.avatar {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--primary), #f5d77a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}

.details h4 {
  font-size: 15px;
  margin: 0;
  color: inherit;
}

.details span {
  font-size: 12px;
  color: var(--gray);
}

.stars {
  color: var(--primary);
  margin-top: 15px;
  letter-spacing: 2px;
}

/* Responsive */
@media (max-width: 900px) {
  .reviews-container {
    grid-template-columns: 1fr;
  }
  .reviews-section {
    padding: 60px 30px;
  }
}

@media (max-width: 600px) {
  .review-grid {
    grid-template-columns: 1fr;
  }
}
/* CUSTOMIZE STUDIO REDESIGN */
.customize-studio {
  padding: 100px 60px;
  background: #fdfdfd;
}

.studio-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 40px;
  background: #fff;
  padding: 20px;
  border-radius: 40px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.08);
}

/* Control Panel */
.control-panel {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.control-group {
  position: relative;
  padding: 25px;
  background: #f8f9fa;
  border-radius: 24px;
  border: 1px solid #eee;
}

.step-badge {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 30px;
  height: 30px;
  background: var(--primary);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
}

.control-group h3 {
  font-size: 16px;
  margin-bottom: 15px;
  color: var(--dark);
}

.studio-input {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1.5px solid #ddd;
  background: #fff;
  font-weight: 500;
  cursor: pointer;
}

/* Range Inputs */
.range-item { margin-bottom: 15px; }
.range-item label {
  font-size: 12px;
  color: var(--gray);
  display: block;
  margin-bottom: 5px;
}

.range-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

input[type="range"] {
  width: 100%;
  accent-color: var(--primary);
}

/* 3D Viewer Panel */
.viewer-panel {
  background: #0b1220;
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.viewer-header {
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.03);
}

.live-indicator {
  color: #4ade80;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
}

.viewer-actions {
  display: flex;
  gap: 20px;
  color: #64748b;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 600;
}

.canvas-container {
  flex: 1;
  cursor: grab;
}

.canvas-container:active { cursor: grabbing; }

#preview3D {
  width: 100% !important;
  height: 100% !important;
  min-height: 450px;
}

.viewer-footer {
  padding: 15px;
  text-align: center;
  font-size: 12px;
  color: #475569;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.studio-order-btn {
  width: 100%;
  padding: 18px;
  border-radius: 18px;
  font-size: 16px;
  box-shadow: 0 10px 25px rgba(227, 179, 65, 0.3);
}

/* Responsive */
@media (max-width: 1000px) {
  .studio-container { grid-template-columns: 1fr; }
  .customize-studio { padding: 60px 20px; }
}
/* FAQ Section Styles - No Background */
#faq {
  padding: 80px 20px;
  max-width: 900px;
  margin: 0 auto;
}

#faq h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5rem;
  color: #0b1220;
}

.faq-container {
  display: flex;
  flex-direction: column;
}

.faq-item {
  padding: 30px 0;
  border-bottom: 1px solid #eee; /* Clean divider lines instead of boxes */
  transition: all 0.3s ease;
}

.faq-item:last-child {
  border-bottom: none; /* Removes line from the last item */
}

.faq-item:hover {
  padding-left: 10px; /* Subtle interaction effect */
}

.faq-item h3 {
  font-size: 19px;
  color: #0b1220;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.faq-item h3::before {
  content: "→";
  color: var(--primary);
  font-weight: 700;
}

.faq-item p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.7;
  padding-left: 28px; /* Aligns text under the question */
}

@media (max-width: 768px) {
  #faq {
    padding: 40px 20px;
  }
  #faq h2 {
    font-size: 2rem;
  }
}
/* FAQ Section - Modern Card Design */
#faq {
  padding: 80px 20px;
  max-width: 900px;
  margin: 0 auto;
}

#faq h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.5rem;
  color: #0b1220;
}

.faq-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.faq-item {
  /* No background color so it blends with the site */
  background: transparent; 
  padding: 25px;
  border-radius: 16px;
  
  /* Use a thin border that matches your brand's gray or gold */
  border: 1px solid rgba(0, 0, 0, 0.08); 
  
  /* Subtle shadow to give it that 'card' depth */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.faq-item:hover {
  /* Glow effect on hover using your primary gold color */
  border-color: var(--primary); 
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
  font-size: 18px;
  color: #0b1220;
  margin-bottom: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Styled Question Mark Icon */
.faq-item h3::before {
  content: "Q";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--primary);
  color: #fff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
}

.faq-item p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
  padding-left: 40px; /* Aligns text perfectly under the question */
}

@media (max-width: 768px) {
  #faq h2 { font-size: 2rem; }
  .faq-item { padding: 20px; }
}


.golden-counter-small img {
  display: block;                   /* removes bottom gap */
  filter: 
    sepia(1)
    saturate(6)
    hue-rotate(15deg)
    brightness(1.15);
  transform: scale(0.72);           /* 🔽 more compact */
  margin: 0;                        /* removes extra spacing */
}

