/* ===== JS Furniture - Premium Styles ===== */
:root {
  --walnut: #6B4F3B;
  --walnut-light: #8B6F5B;
  --cream: #F8F5F0;
  --cream-dark: #EDE8E0;
  --black: #1E1E1E;
  --beige: #D9C7B8;
  --beige-light: #E8DCD0;
  --gold: #C89B3C;
  --gold-light: #E0B84E;
  --gold-dark: #A8822A;
  --white: #FFFFFF;
  --shadow: 0 4px 20px rgba(30,30,30,0.08);
  --shadow-lg: 0 10px 40px rgba(30,30,30,0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--black);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Poppins', sans-serif; font-weight: 600; line-height: 1.3; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section-title { text-align: center; margin-bottom: 48px; }
.section-title h2 { font-size: 2.4rem; color: var(--walnut); margin-bottom: 12px; }
.section-title p { color: #666; font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.section-title .gold-line { width: 60px; height: 3px; background: var(--gold); margin: 12px auto; border-radius: 2px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px;
  font-family: 'Poppins', sans-serif; font-weight: 500; font-size: 0.95rem;
  border: none; cursor: pointer; transition: var(--transition);
  text-transform: none; letter-spacing: 0.3px;
}
.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(200,155,60,0.3); }
.btn-outline { background: transparent; color: var(--walnut); border: 2px solid var(--walnut); }
.btn-outline:hover { background: var(--walnut); color: var(--white); transform: translateY(-2px); }
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: var(--walnut); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--walnut); }
.btn-white:hover { background: var(--cream); transform: translateY(-2px); }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }

/* ===== PRELOADER ===== */
#preloader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--cream); display: flex;
  align-items: center; justify-content: center;
  transition: opacity 0.5s, visibility 0.5s;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.loader { width: 50px; height: 50px; border: 3px solid var(--beige); border-top-color: var(--gold); border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0; transition: var(--transition);
  background: #8B1A1A;
}
.header.scrolled { background: rgba(139,26,26,0.95); backdrop-filter: blur(20px); box-shadow: 0 4px 30px rgba(139,26,26,0.2); padding: 10px 0; }
.header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: var(--white); display: flex; align-items: center; gap: 8px; }
.logo span { color: var(--gold); }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { font-family: 'Poppins', sans-serif; font-size: 0.85rem; font-weight: 500; color: rgba(255,255,255,0.9); position: relative; padding: 4px 0; }
.nav a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: var(--gold); transition: var(--transition); }
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav a:hover { color: var(--gold); }
.header-actions { display: flex; align-items: center; gap: 16px; }
.header-actions a { font-size: 1.2rem; color: rgba(255,255,255,0.9); position: relative; }
.header-actions a:hover { color: var(--gold); }
.header-actions .badge { position: absolute; top: -8px; right: -8px; width: 18px; height: 18px; background: var(--gold); color: var(--white); font-size: 0.65rem; font-weight: 600; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.search-bar { display: flex; align-items: center; background: rgba(255,255,255,0.15); border-radius: 50px; padding: 4px 4px 4px 16px; border: 1px solid rgba(255,255,255,0.2); transition: var(--transition); width: 220px; }
.search-bar:focus-within { border-color: var(--gold); background: rgba(255,255,255,0.25); }
.search-bar input { border: none; background: none; outline: none; font-family: 'Inter', sans-serif; font-size: 0.85rem; color: var(--white); width: 100%; }
.search-bar input::placeholder { color: rgba(255,255,255,0.5); }
.search-bar button { background: var(--gold); border: none; color: var(--white); width: 34px; height: 34px; border-radius: 50%; cursor: pointer; font-size: 0.85rem; transition: var(--transition); }
.search-bar button:hover { background: var(--gold-dark); }
.mega-menu-trigger { cursor: pointer; }
.mega-menu {
  position: absolute; top: 100%; left: 0; right: 0;
  background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
  padding: 40px; box-shadow: var(--shadow-lg); border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: var(--transition);
}
.header.scrolled .mega-menu { background: rgba(248,245,240,0.98); }
.nav-item:hover .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; max-width: 1280px; margin: 0 auto; }
.mega-col h4 { font-family: 'Poppins', sans-serif; font-size: 1rem; color: var(--walnut); margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid var(--gold); }
.mega-col a { display: block; padding: 6px 0; font-size: 0.9rem; color: #555; transition: var(--transition); }
.mega-col a:hover { color: var(--gold); padding-left: 8px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--white); transition: var(--transition); border-radius: 2px; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, #1E1E1E 0%, #2A1F1A 100%);
  overflow: hidden;
}
.hero-slider { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; }
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(30,30,30,0.85) 0%, rgba(30,30,30,0.4) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 680px; padding: 120px 0 80px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,155,60,0.15); border: 1px solid rgba(200,155,60,0.3);
  padding: 8px 20px; border-radius: 50px;
  font-size: 0.85rem; color: var(--gold); margin-bottom: 24px;
  backdrop-filter: blur(10px);
}
.hero h1 { font-family: 'Playfair Display', serif; font-size: 4rem; color: var(--white); line-height: 1.15; margin-bottom: 20px; }
.hero h1 span { color: var(--gold); }
.hero p { font-size: 1.1rem; color: rgba(255,255,255,0.8); margin-bottom: 36px; max-width: 520px; line-height: 1.7; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-floating-badge {
  position: absolute; right: 10%; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 24px; border-radius: var(--radius-lg);
  text-align: center; color: var(--white);
  animation: float 3s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(-50%); } 50% { transform: translateY(-60%); } }
.hero-floating-badge .discount { font-size: 2.5rem; font-weight: 700; color: var(--gold); font-family: 'Poppins', sans-serif; }
.hero-floating-badge .text { font-size: 0.85rem; opacity: 0.9; margin-top: 4px; }
.hero-rating { display: flex; align-items: center; gap: 12px; margin-top: 32px; color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.hero-rating .stars { color: var(--gold); font-size: 1rem; }
.hero-rating .avatars { display: flex; }
.hero-rating .avatars img { width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--black); margin-right: -8px; }
.hero-animated-cards { position: absolute; right: 5%; bottom: 15%; display: flex; gap: 16px; z-index: 2; }
.hero-card {
  background: rgba(255,255,255,0.08); backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 16px; border-radius: var(--radius); width: 140px;
  color: var(--white); animation: float 4s ease-in-out infinite;
}
.hero-card:nth-child(2) { animation-delay: 1.5s; margin-bottom: 30px; }
.hero-card img { width: 100%; height: 80px; object-fit: cover; border-radius: 8px; margin-bottom: 8px; }
.hero-card h4 { font-size: 0.85rem; }
.hero-card p { font-size: 0.75rem; opacity: 0.7; }

/* ===== FEATURED CATEGORIES ===== */
.categories { padding: 100px 0; background: var(--white); }
.cat-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.cat-card {
  text-align: center; padding: 28px 16px; border-radius: var(--radius);
  background: var(--cream); transition: var(--transition); cursor: pointer;
  border: 1px solid transparent;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.cat-card img { width: 60px; height: 60px; object-fit: cover; border-radius: 50%; margin: 0 auto 12px; border: 2px solid var(--beige); transition: var(--transition); }
.cat-card:hover img { border-color: var(--gold); transform: scale(1.1); }
.cat-card h4 { font-size: 0.9rem; color: var(--walnut); }
.cat-card p { font-size: 0.8rem; color: #888; }

/* ===== PRODUCTS ===== */
.products { padding: 100px 0; background: var(--cream); }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  transition: var(--transition); position: relative; group: true;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-img { position: relative; overflow: hidden; aspect-ratio: 1; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.product-card:hover .product-img img { transform: scale(1.08); }
.product-badge {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 600;
  z-index: 2;
}
.product-badge.hot { background: #E74C3C; color: var(--white); }
.product-badge.new { background: var(--gold); color: var(--white); }
.product-badge.sale { background: #2ECC71; color: var(--white); }
.product-actions { position: absolute; top: 12px; right: 12px; display: flex; flex-direction: column; gap: 8px; opacity: 0; transform: translateX(20px); transition: var(--transition); z-index: 2; }
.product-card:hover .product-actions { opacity: 1; transform: translateX(0); }
.product-actions button {
  width: 36px; height: 36px; border-radius: 50%; border: none;
  background: var(--white); color: var(--black); cursor: pointer;
  transition: var(--transition); display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.product-actions button:hover { background: var(--gold); color: var(--white); }
.product-info { padding: 20px; }
.product-info .category { font-size: 0.75rem; color: #999; text-transform: uppercase; letter-spacing: 1px; }
.product-info h3 { font-size: 1rem; color: var(--black); margin: 6px 0; font-weight: 500; }
.product-info .rating { color: var(--gold); font-size: 0.85rem; margin-bottom: 8px; }
.product-info .rating span { color: #999; font-size: 0.8rem; margin-left: 4px; }
.product-info .price { font-family: 'Poppins', sans-serif; font-size: 1.1rem; font-weight: 600; color: var(--walnut); }
.product-info .price .old { font-size: 0.85rem; color: #999; text-decoration: line-through; font-weight: 400; margin-left: 8px; }
.product-info .add-to-cart {
  width: 100%; padding: 10px; margin-top: 12px;
  background: var(--cream); border: 1px solid var(--beige); border-radius: 8px;
  color: var(--walnut); font-family: 'Poppins', sans-serif; font-weight: 500;
  cursor: pointer; transition: var(--transition); font-size: 0.85rem;
}
.product-info .add-to-cart:hover { background: var(--walnut); color: var(--white); border-color: var(--walnut); }

/* ===== LUXURY COLLECTION ===== */
.luxury-collection { padding: 100px 0; background: var(--black); color: var(--white); position: relative; overflow: hidden; }
.luxury-collection::before { content: ''; position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1555041469-a586c61ea9bc?w=1920&q=80') center/cover fixed; opacity: 0.1; }
.luxury-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; position: relative; z-index: 1; }
.luxury-content h2 { font-size: 2.8rem; color: var(--white); font-family: 'Playfair Display', serif; }
.luxury-content h2 span { color: var(--gold); }
.luxury-content p { color: rgba(255,255,255,0.7); margin: 20px 0 32px; font-size: 1.05rem; line-height: 1.7; }
.luxury-content .features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.luxury-content .features li { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.8); font-size: 0.9rem; }
.luxury-content .features li i { color: var(--gold); }
.luxury-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.luxury-gallery img { border-radius: var(--radius); width: 100%; height: 250px; object-fit: cover; transition: var(--transition); }
.luxury-gallery img:hover { transform: scale(1.03); }
.luxury-gallery img:first-child { grid-column: 1 / -1; height: 300px; }

/* ===== WHY CHOOSE US ===== */
.why-choose { padding: 100px 0; background: var(--white); }
.choose-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.choose-card {
  text-align: center; padding: 40px 24px; border-radius: var(--radius);
  background: var(--cream); transition: var(--transition); border: 1px solid transparent;
}
.choose-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.choose-card .icon { width: 64px; height: 64px; border-radius: 50%; background: var(--white); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 1.5rem; color: var(--gold); transition: var(--transition); }
.choose-card:hover .icon { background: var(--gold); color: var(--white); }
.choose-card h4 { font-size: 1.05rem; color: var(--walnut); margin-bottom: 8px; }
.choose-card p { font-size: 0.9rem; color: #777; line-height: 1.6; }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 100px 0; background: var(--cream); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white); padding: 32px; border-radius: var(--radius);
  transition: var(--transition); border: 1px solid var(--cream-dark);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-card .stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 16px; }
.testimonial-card p { color: #555; font-style: italic; line-height: 1.7; font-size: 0.95rem; margin-bottom: 20px; }
.testimonial-card .author { display: flex; align-items: center; gap: 12px; }
.testimonial-card .author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.testimonial-card .author h4 { font-size: 0.95rem; color: var(--walnut); }
.testimonial-card .author span { font-size: 0.8rem; color: #999; }

/* ===== VIDEO BANNER ===== */
.video-banner {
  position: relative; height: 500px; overflow: hidden;
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.video-banner .bg { position: absolute; inset: 0; }
.video-banner .bg img { width: 100%; height: 100%; object-fit: cover; }
.video-banner .bg::after { content: ''; position: absolute; inset: 0; background: rgba(30,30,30,0.6); }
.video-banner .content { position: relative; z-index: 2; max-width: 600px; padding: 0 24px; }
.video-banner h2 { font-size: 2.4rem; color: var(--white); font-family: 'Playfair Display', serif; margin-bottom: 16px; }
.video-banner p { color: rgba(255,255,255,0.8); margin-bottom: 24px; }
.video-banner .play-btn {
  width: 72px; height: 72px; border-radius: 50%; background: var(--gold);
  border: none; color: var(--white); font-size: 1.5rem; cursor: pointer;
  transition: var(--transition); margin: 0 auto 20px; display: flex; align-items: center; justify-content: center;
}
.video-banner .play-btn:hover { transform: scale(1.1); box-shadow: 0 0 40px rgba(200,155,60,0.4); }

/* ===== BRAND PARTNERS ===== */
.brands { padding: 60px 0; background: var(--white); }
.brand-grid { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.brand-grid img { height: 40px; opacity: 0.4; transition: var(--transition); filter: grayscale(1); }
.brand-grid img:hover { opacity: 0.8; filter: grayscale(0); }

/* ===== FAQ ===== */
.faq { padding: 100px 0; background: var(--cream); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--white); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; border: 1px solid var(--cream-dark); transition: var(--transition); }
.faq-item:hover { border-color: var(--beige); }
.faq-question { padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-family: 'Poppins', sans-serif; font-weight: 500; font-size: 0.95rem; color: var(--black); }
.faq-question i { transition: var(--transition); color: var(--gold); font-size: 0.85rem; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; color: #666; font-size: 0.9rem; line-height: 1.7; }
.faq-item.active .faq-answer { max-height: 300px; padding: 0 24px 20px; }

/* ===== BLOG PREVIEW ===== */
.blog { padding: 100px 0; background: var(--white); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { border-radius: var(--radius); overflow: hidden; background: var(--white); transition: var(--transition); border: 1px solid var(--cream-dark); }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card img { width: 100%; height: 220px; object-fit: cover; transition: var(--transition); }
.blog-card:hover img { transform: scale(1.05); }
.blog-card .body { padding: 24px; }
.blog-card .tag { font-size: 0.75rem; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.blog-card h3 { font-size: 1.1rem; margin: 8px 0; color: var(--black); }
.blog-card p { font-size: 0.9rem; color: #777; line-height: 1.6; }
.blog-card .meta { display: flex; align-items: center; gap: 16px; margin-top: 16px; font-size: 0.8rem; color: #999; }

/* ===== NEWSLETTER ===== */
.newsletter { padding: 80px 0; background: var(--walnut); text-align: center; }
.newsletter h2 { font-size: 2rem; color: var(--white); margin-bottom: 12px; }
.newsletter p { color: rgba(255,255,255,0.7); margin-bottom: 32px; }
.newsletter-form { display: flex; max-width: 500px; margin: 0 auto; gap: 0; }
.newsletter-form input { flex: 1; padding: 16px 20px; border: none; border-radius: 50px 0 0 50px; font-family: 'Inter', sans-serif; font-size: 0.9rem; outline: none; }
.newsletter-form button { padding: 16px 32px; background: var(--gold); color: var(--white); border: none; border-radius: 0 50px 50px 0; font-family: 'Poppins', sans-serif; font-weight: 500; cursor: pointer; transition: var(--transition); font-size: 0.9rem; }
.newsletter-form button:hover { background: var(--gold-dark); }

/* ===== INSTAGRAM ===== */
.instagram { padding: 0; overflow: hidden; }
.insta-grid { display: grid; grid-template-columns: repeat(6, 1fr); }
.insta-item { position: relative; overflow: hidden; aspect-ratio: 1; }
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.insta-item:hover img { transform: scale(1.1); }
.insta-item .overlay { position: absolute; inset: 0; background: rgba(30,30,30,0.5); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); color: var(--white); font-size: 1.5rem; }
.insta-item:hover .overlay { opacity: 1; }

/* ===== FOOTER ===== */
.footer {
  background: var(--black); color: rgba(255,255,255,0.7); padding: 80px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 2fr; gap: 40px; }
.footer h4 { font-family: 'Poppins', sans-serif; color: var(--white); font-size: 1.05rem; margin-bottom: 20px; }
.footer .logo { margin-bottom: 16px; color: var(--white); }
.footer p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 16px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-social a:hover { background: var(--gold); color: var(--white); }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; font-size: 0.9rem; }
.footer-contact li i { color: var(--gold); margin-top: 3px; min-width: 16px; }
.footer-map { margin-top: 16px; border-radius: var(--radius); overflow: hidden; }
.footer-map iframe { width: 100%; height: 150px; border: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; margin-top: 48px; display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; }
.footer-bottom a { color: var(--gold); }

/* ===== PAGE HEADER / HERO ===== */
.page-header {
  padding: 160px 0 100px; text-align: center;
  background: linear-gradient(135deg, var(--black) 0%, #2A1F1A 100%);
  position: relative; overflow: hidden; min-height: 450px;
  display: flex; align-items: center;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background-image: var(--bg-img);
  background-size: cover; background-position: center;
  opacity: 0.15; z-index: 0;
}
.page-header::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(200,155,60,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(107,79,59,0.1) 0%, transparent 60%);
  z-index: 1;
}
.page-header .container { position: relative; z-index: 2; width: 100%; }
.page-header h1 { font-family: 'Playfair Display', serif; font-size: 3.2rem; color: var(--white); margin-bottom: 16px; animation: fadeUp 0.8s ease; }
.page-header p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 550px; margin: 0 auto; line-height: 1.7; animation: fadeUp 0.8s ease 0.1s both; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; margin-top: 20px; font-size: 0.9rem; color: rgba(255,255,255,0.4); animation: fadeUp 0.8s ease 0.2s both; }
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { color: var(--gold-light); }
.page-header-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,155,60,0.12); border: 1px solid rgba(200,155,60,0.25);
  padding: 6px 18px; border-radius: 50px; margin-bottom: 20px;
  font-size: 0.8rem; color: var(--gold); backdrop-filter: blur(10px);
  animation: fadeUp 0.8s ease 0.05s both;
}
.page-header .floating-decor {
  position: absolute; border-radius: var(--radius);
  background: rgba(255,255,255,0.04); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 14px 18px; color: var(--white); font-size: 0.8rem;
  animation: float 4s ease-in-out infinite; z-index: 2;
  pointer-events: none;
}
.page-header .floating-decor i { color: var(--gold); margin-right: 6px; }
.page-header .floating-decor:nth-child(2) { top: 20%; right: 8%; animation-delay: 0s; }
.page-header .floating-decor:nth-child(3) { bottom: 20%; left: 6%; animation-delay: 2s; }
.page-header .decor-shape {
  position: absolute; width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,155,60,0.06) 0%, transparent 70%);
  z-index: 1; pointer-events: none;
}
.page-header .decor-shape:nth-of-type(1) { top: -100px; right: -50px; }
.page-header .decor-shape:nth-of-type(2) { bottom: -100px; left: -50px; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ===== SHOP FILTERS ===== */
.shop-filters { padding: 40px 0; background: var(--white); border-bottom: 1px solid var(--cream-dark); }
.shop-filters .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.shop-filters .filters { display: flex; gap: 12px; flex-wrap: wrap; }
.shop-filters select { padding: 10px 16px; border: 1px solid var(--beige); border-radius: 8px; font-family: 'Inter', sans-serif; font-size: 0.85rem; background: var(--white); cursor: pointer; outline: none; }
.shop-filters select:focus { border-color: var(--gold); }
.shop-filters .result-count { font-size: 0.9rem; color: #888; }

/* ===== PAGINATION ===== */
.pagination { display: flex; justify-content: center; gap: 8px; padding: 48px 0; }
.pagination a { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 8px; border: 1px solid var(--beige); color: var(--black); transition: var(--transition); }
.pagination a:hover, .pagination a.active { background: var(--gold); color: var(--white); border-color: var(--gold); }

/* ===== PRODUCT DETAILS ===== */
.product-detail { padding: 80px 0; background: var(--white); }
.prod-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.prod-images { position: relative; }
.prod-main-img { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 16px; }
.prod-main-img img { width: 100%; height: 500px; object-fit: cover; }
.prod-thumbnails { display: flex; gap: 12px; }
.prod-thumbnails img { width: 80px; height: 80px; object-fit: cover; border-radius: 8px; cursor: pointer; border: 2px solid transparent; transition: var(--transition); }
.prod-thumbnails img:hover, .prod-thumbnails img.active { border-color: var(--gold); }
.prod-info { padding: 0; }
.prod-info .category { font-size: 0.8rem; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; }
.prod-info h1 { font-size: 2rem; color: var(--walnut); margin: 8px 0; }
.prod-info .rating { margin: 12px 0; }
.prod-info .rating i { color: var(--gold); font-size: 0.9rem; }
.prod-info .rating span { color: #999; margin-left: 8px; font-size: 0.9rem; }
.prod-info .price { font-size: 1.8rem; font-weight: 700; color: var(--walnut); font-family: 'Poppins', sans-serif; margin: 16px 0; }
.prod-info .price .old { font-size: 1.1rem; color: #999; text-decoration: line-through; margin-left: 12px; font-weight: 400; }
.prod-info .description { color: #555; line-height: 1.7; margin-bottom: 24px; }
.prod-options { margin-bottom: 24px; }
.prod-options label { display: block; font-family: 'Poppins', sans-serif; font-weight: 500; font-size: 0.9rem; margin-bottom: 8px; color: var(--black); }
.color-options { display: flex; gap: 8px; margin-bottom: 16px; }
.color-options span { width: 32px; height: 32px; border-radius: 50%; cursor: pointer; border: 2px solid transparent; transition: var(--transition); }
.color-options span:hover, .color-options span.active { border-color: var(--gold); transform: scale(1.1); }
.qty-selector { display: flex; align-items: center; gap: 0; margin-bottom: 24px; }
.qty-selector button { width: 40px; height: 40px; border: 1px solid var(--beige); background: var(--white); cursor: pointer; font-size: 1.1rem; transition: var(--transition); display: flex; align-items: center; justify-content: center; }
.qty-selector button:hover { background: var(--cream); }
.qty-selector input { width: 60px; height: 40px; text-align: center; border: 1px solid var(--beige); border-left: none; border-right: none; font-family: 'Inter', sans-serif; font-size: 0.95rem; outline: none; }
.prod-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.prod-actions .btn { min-width: 160px; justify-content: center; }
.prod-meta { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--cream-dark); }
.prod-meta p { font-size: 0.85rem; color: #888; margin-bottom: 4px; }
.prod-meta span { color: var(--black); }

/* ===== CART ===== */
.cart-section { padding: 80px 0; background: var(--white); }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { text-align: left; padding: 16px; font-family: 'Poppins', sans-serif; font-size: 0.85rem; color: var(--walnut); border-bottom: 2px solid var(--cream-dark); text-transform: uppercase; letter-spacing: 0.5px; }
.cart-table td { padding: 16px; border-bottom: 1px solid var(--cream-dark); vertical-align: middle; }
.cart-table .product-col { display: flex; align-items: center; gap: 16px; }
.cart-table .product-col img { width: 80px; height: 80px; border-radius: 8px; object-fit: cover; }
.cart-table .product-col h4 { font-size: 0.95rem; }
.cart-table .product-col p { font-size: 0.8rem; color: #999; }
.cart-table .qty-selector { margin-bottom: 0; }
.cart-remove { color: #E74C3C; cursor: pointer; font-size: 1.1rem; transition: var(--transition); }
.cart-remove:hover { transform: scale(1.2); }
.cart-totals { background: var(--cream); padding: 32px; border-radius: var(--radius); margin-top: 32px; }
.cart-totals h3 { font-size: 1.3rem; color: var(--walnut); margin-bottom: 20px; }
.cart-totals .row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--beige); }
.cart-totals .row.total { font-size: 1.2rem; font-weight: 600; color: var(--walnut); border-bottom: none; }
.cart-totals .btn { width: 100%; justify-content: center; margin-top: 16px; }

/* ===== CHECKOUT ===== */
.checkout-section { padding: 80px 0; background: var(--white); }
.checkout-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-family: 'Poppins', sans-serif; font-weight: 500; font-size: 0.85rem; color: var(--black); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1px solid var(--beige); border-radius: 8px; font-family: 'Inter', sans-serif; font-size: 0.9rem; transition: var(--transition); outline: none; background: var(--white); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,155,60,0.1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.order-summary { background: var(--cream); padding: 32px; border-radius: var(--radius); position: sticky; top: 100px; }
.order-summary h3 { font-size: 1.2rem; color: var(--walnut); margin-bottom: 20px; }
.order-item { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--beige); }
.order-item img { width: 60px; height: 60px; border-radius: 8px; object-fit: cover; }
.order-item h4 { font-size: 0.9rem; }
.order-item .price { font-size: 0.9rem; color: var(--walnut); font-weight: 600; margin-left: auto; }

/* ===== ABOUT ===== */
.about-story { padding: 80px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-grid img { border-radius: var(--radius-lg); width: 100%; height: 500px; object-fit: cover; }
.about-grid h2 { font-size: 2.4rem; color: var(--walnut); font-family: 'Playfair Display', serif; }
.about-grid h2 span { color: var(--gold); }
.about-grid p { color: #555; line-height: 1.7; margin: 16px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 60px 0; background: var(--cream); }
.stat-card { text-align: center; }
.stat-card h3 { font-size: 2.4rem; color: var(--gold); font-family: 'Playfair Display', serif; }
.stat-card p { color: #888; font-size: 0.9rem; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 60px 0; }
.team-card { text-align: center; }
.team-card img { width: 180px; height: 180px; border-radius: 50%; object-fit: cover; margin: 0 auto 16px; border: 4px solid var(--cream); transition: var(--transition); }
.team-card:hover img { border-color: var(--gold); transform: scale(1.05); }
.team-card h4 { font-size: 1rem; color: var(--walnut); }
.team-card p { font-size: 0.85rem; color: #888; }

/* ===== CONTACT ===== */
.contact-section { padding: 80px 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info h2 { font-size: 2rem; color: var(--walnut); margin-bottom: 16px; }
.contact-info p { color: #555; margin-bottom: 32px; }
.contact-details li { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-details li .icon { width: 48px; height: 48px; border-radius: 50%; background: var(--cream); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.1rem; }
.contact-details li h4 { font-size: 0.95rem; color: var(--walnut); }
.contact-details li p { font-size: 0.9rem; color: #777; margin-bottom: 0; }
.contact-form textarea { height: 140px; resize: vertical; }

/* ===== BLOG PAGE ===== */
.blog-page { padding: 80px 0; background: var(--white); }
.blog-list { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; }
.sidebar .widget { background: var(--cream); padding: 24px; border-radius: var(--radius); margin-bottom: 24px; }
.sidebar .widget h3 { font-size: 1.1rem; color: var(--walnut); margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid var(--gold); }
.sidebar .widget ul li { padding: 8px 0; border-bottom: 1px solid var(--cream-dark); }
.sidebar .widget ul li a { font-size: 0.9rem; color: #555; display: flex; justify-content: space-between; }
.sidebar .widget ul li a:hover { color: var(--gold); }

/* ===== WISHLIST ===== */
.wishlist-section { padding: 80px 0; background: var(--white); }
.wishlist-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.wishlist-empty { text-align: center; padding: 80px 0; }
.wishlist-empty i { font-size: 4rem; color: var(--beige); margin-bottom: 20px; }
.wishlist-empty h2 { font-size: 1.5rem; color: var(--walnut); margin-bottom: 12px; }
.wishlist-empty p { color: #888; margin-bottom: 24px; }

/* ===== ACCOUNT ===== */
.account-section { padding: 80px 0; background: var(--white); }
.account-grid { display: grid; grid-template-columns: 280px 1fr; gap: 40px; }
.account-sidebar { background: var(--cream); border-radius: var(--radius); padding: 24px; }
.account-sidebar .user { text-align: center; padding-bottom: 20px; border-bottom: 1px solid var(--beige); margin-bottom: 20px; }
.account-sidebar .user img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; margin: 0 auto 12px; }
.account-sidebar .user h4 { font-size: 1rem; color: var(--walnut); }
.account-sidebar nav a { display: flex; align-items: center; gap: 12px; padding: 12px; border-radius: 8px; margin-bottom: 4px; color: #555; font-size: 0.9rem; transition: var(--transition); }
.account-sidebar nav a:hover, .account-sidebar nav a.active { background: var(--white); color: var(--walnut); }

/* ===== OFFERS ===== */
.offers-section { padding: 80px 0; background: var(--white); }
.offers-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.offer-card { background: linear-gradient(135deg, var(--walnut) 0%, #2A1F1A 100%); border-radius: var(--radius-lg); padding: 48px; color: var(--white); position: relative; overflow: hidden; }
.offer-card::before { content: ''; position: absolute; top: -50%; right: -50%; width: 100%; height: 100%; background: rgba(255,255,255,0.05); border-radius: 50%; }
.offer-card h3 { font-size: 1.6rem; margin-bottom: 12px; }
.offer-card p { opacity: 0.8; margin-bottom: 16px; }
.offer-card .discount-tag { font-size: 3rem; font-weight: 700; color: var(--gold); font-family: 'Playfair Display', serif; }

/* ===== 404 ===== */
.error-page { text-align: center; padding: 160px 0; background: var(--white); }
.error-page h1 { font-size: 8rem; color: var(--gold); font-family: 'Playfair Display', serif; }
.error-page h2 { font-size: 1.8rem; color: var(--walnut); margin: 16px 0; }
.error-page p { color: #888; margin-bottom: 32px; }

/* ===== CUSTOM ORDERS ===== */
.custom-section { padding: 80px 0; background: var(--white); }
.custom-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin: 48px 0; }
.step-card { text-align: center; padding: 32px; position: relative; }
.step-card .number { width: 48px; height: 48px; border-radius: 50%; background: var(--gold); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 700; margin: 0 auto 16px; }
.step-card h4 { font-size: 1rem; color: var(--walnut); margin-bottom: 8px; }
.step-card p { font-size: 0.85rem; color: #777; }

/* ===== INTERIOR DESIGN ===== */
.interior-section { padding: 80px 0; background: var(--white); }
.design-showcase { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.design-card { position: relative; border-radius: var(--radius); overflow: hidden; height: 350px; }
.design-card img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.design-card:hover img { transform: scale(1.08); }
.design-card .overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; background: linear-gradient(transparent, rgba(0,0,0,0.8)); color: var(--white); }
.design-card .overlay h3 { font-size: 1.1rem; }
.design-card .overlay p { font-size: 0.85rem; opacity: 0.8; }

/* ===== POLICY PAGES ===== */
.policy-section { padding: 80px 0; background: var(--white); }
.policy-content { max-width: 800px; margin: 0 auto; }
.policy-content h2 { font-size: 1.5rem; color: var(--walnut); margin: 32px 0 12px; }
.policy-content p { color: #555; line-height: 1.8; margin-bottom: 16px; }
.policy-content ul { padding-left: 24px; margin-bottom: 16px; }
.policy-content ul li { list-style: disc; color: #555; margin-bottom: 8px; }

/* ===== GLASSMORPHISM ===== */
.glass { background: rgba(255,255,255,0.1); backdrop-filter: blur(15px); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius); }

/* ===== ANIMATIONS ===== */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

/* ===== TOAST ===== */
.toast { position: fixed; bottom: 24px; right: 24px; background: var(--black); color: var(--white); padding: 16px 24px; border-radius: var(--radius); box-shadow: var(--shadow-lg); z-index: 9999; transform: translateY(100px); opacity: 0; transition: var(--transition); display: flex; align-items: center; gap: 12px; font-size: 0.9rem; }
.toast.show { transform: translateY(0); opacity: 1; }
.toast i { color: var(--gold); font-size: 1.1rem; }

/* ===== BACK TO TOP ===== */
.back-to-top { position: fixed; bottom: 24px; left: 24px; width: 44px; height: 44px; border-radius: 50%; background: var(--gold); color: var(--white); border: none; cursor: pointer; font-size: 1.1rem; box-shadow: var(--shadow-lg); z-index: 999; opacity: 0; visibility: hidden; transform: translateY(20px); transition: var(--transition); display: flex; align-items: center; justify-content: center; }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--gold-dark); transform: translateY(-3px); }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed; top: 0; right: -100%; width: 320px; height: 100vh;
  background: var(--white); z-index: 1001; padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 0 40px rgba(0,0,0,0.1);
  overflow-y: auto;
}
.mobile-menu.open { right: 0; }
.mobile-menu a { display: block; padding: 14px 0; border-bottom: 1px solid var(--cream-dark); font-family: 'Poppins', sans-serif; font-weight: 500; font-size: 0.95rem; color: var(--black); }
.mobile-menu a:hover { color: var(--gold); }
.mobile-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 1000; opacity: 0; visibility: hidden; transition: var(--transition); }
.mobile-overlay.show { opacity: 1; visibility: visible; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .nav, .search-bar { display: none; }
  .hamburger { display: flex; }
  .hero h1 { font-size: 3rem; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .choose-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-floating-badge { display: none; }
  .hero-animated-cards { display: none; }
  .luxury-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .checkout-grid { grid-template-columns: 1fr; }
  .blog-list { grid-template-columns: 1fr; }
  .wishlist-grid { grid-template-columns: repeat(2, 1fr); }
  .prod-detail-grid { grid-template-columns: 1fr; }
  .account-grid { grid-template-columns: 1fr; }
  .offers-grid { grid-template-columns: 1fr; }
  .custom-steps { grid-template-columns: repeat(2, 1fr); }
  .design-showcase { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 2.2rem; }
  .hero p { font-size: 0.95rem; }
  .section-title h2 { font-size: 1.6rem; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: 1fr; }
  .choose-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .newsletter-form { flex-direction: column; gap: 12px; }
  .newsletter-form input { border-radius: 50px; }
  .newsletter-form button { border-radius: 50px; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .wishlist-grid { grid-template-columns: 1fr; }
  .custom-steps { grid-template-columns: 1fr; }
  .design-showcase { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .mega-menu { display: none; }
  .page-header h1 { font-size: 2rem; }
  .page-header { padding: 130px 0 60px; min-height: 320px; }
  .page-header .floating-decor { display: none; }
  .about-grid img { height: 300px; }
  .prod-main-img img { height: 300px; }
  .cart-table { display: block; overflow-x: auto; }
  .luxury-content h2 { font-size: 1.8rem; }
  .form-row { grid-template-columns: 1fr; }
  .video-banner { height: 400px; }
  .video-banner h2 { font-size: 1.6rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .hero-buttons .btn { font-size: 0.85rem; padding: 12px 24px; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .logo { font-size: 1.2rem; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .header-actions { gap: 10px; }
}
