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

:root {
  --gold: #C9A84C;
  --gold-light: #F5E6CC;
  --gold-dark: #A88C3A;
  --black: #1A1A1A;
  --white: #FFFFFF;
  --off-white: #FDFBF7;
  --light-gray: #F8F8F8;
  --gray: #666;
  --dark-gray: #333;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
  --transition: all 0.3s ease;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
}

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

.gold-text { color: var(--gold); }
.gold-bg { background: var(--gold); color: var(--white); }
.gold-border { border-color: var(--gold); }

.section-padding { padding: 80px 0; }
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--black);
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  margin-bottom: 40px;
  font-family: 'Lato', sans-serif;
}
.section-divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 20px;
}

/* --- Navbar --- */
.navbar {
  background: var(--white) !important;
  box-shadow: 0 2px 15px rgba(0,0,0,0.06);
  padding: 15px 0;
  transition: var(--transition);
}
.navbar.scrolled { padding: 8px 0; }
.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--black) !important;
}
.navbar-brand .gold-text { color: var(--gold); }
.navbar-brand img { height: 45px; margin-right: 10px; }
.nav-link {
  font-weight: 600;
  color: var(--dark-gray) !important;
  margin: 0 12px;
  position: relative;
  transition: var(--transition);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.nav-link:hover,
.nav-link.active { color: var(--gold) !important; }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.navbar-toggler { border: none; padding: 0; }
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon { 
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0,0,0,0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* --- Hero Section --- */
.hero {
  height: 100vh;
  min-height: 600px;
  background: linear-gradient(135deg, var(--black) 0%, #2a2a2a 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('https://images.unsplash.com/photo-1603561591411-07134e71a2a9?w=1600') center/cover no-repeat;
  opacity: 0.35;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to right, rgba(26,26,26,0.9) 0%, rgba(26,26,26,0.6) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-content .badge {
  background: var(--gold);
  color: var(--white);
  font-size: 0.85rem;
  padding: 8px 20px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  display: inline-block;
}
.hero h1 {
  font-size: 4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}
.hero p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 35px;
  line-height: 1.7;
}
.hero .btn-gold {
  background: var(--gold);
  color: var(--white);
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  border: 2px solid var(--gold);
}
.hero .btn-gold:hover {
  background: transparent;
  color: var(--gold);
}
.hero .btn-outline-gold {
  background: transparent;
  color: var(--white);
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  border: 2px solid rgba(255,255,255,0.3);
  margin-left: 15px;
}
.hero .btn-outline-gold:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* --- Buttons --- */
.btn-gold {
  background: var(--gold);
  color: var(--white);
  padding: 12px 35px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}
.btn-gold:hover {
  background: transparent;
  color: var(--gold);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  padding: 12px 35px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
}

/* --- Featured / Product Cards --- */
.product-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  margin-bottom: 30px;
  border: 1px solid #f0f0f0;
}
.product-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}
.product-card .img-wrapper {
  height: 280px;
  overflow: hidden;
  position: relative;
}
.product-card .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.product-card:hover .img-wrapper img { transform: scale(1.08); }
.product-card .badge-hot {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--gold);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.product-card .card-body { padding: 22px; }
.product-card .card-body .category {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 5px;
}
.product-card .card-body h5 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.product-card .card-body p {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 12px;
}
.product-card .card-body .price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-dark);
  font-family: 'Playfair Display', serif;
}

/* --- Testimonials --- */
.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 35px;
  box-shadow: var(--shadow);
  border: 1px solid #f0f0f0;
  transition: var(--transition);
  height: 100%;
}
.testimonial-card:hover { box-shadow: var(--shadow-hover); }
.testimonial-card .stars { color: var(--gold); margin-bottom: 15px; font-size: 1.1rem; }
.testimonial-card .quote {
  font-style: italic;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1rem;
}
.testimonial-card .customer { display: flex; align-items: center; gap: 15px; }
.testimonial-card .customer img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-light);
}
.testimonial-card .customer .name { font-weight: 700; margin-bottom: 2px; }
.testimonial-card .customer .location { font-size: 0.85rem; color: var(--gray); }

/* --- Gallery --- */
.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 30px;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: var(--transition);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(26,26,26,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay span {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  border: 2px solid var(--gold);
  padding: 10px 25px;
  border-radius: 50px;
}

/* --- About Page --- */
.about-story p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--gray);
}
.trust-badge {
  text-align: center;
  padding: 30px 20px;
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}
.trust-badge:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.trust-badge .icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 15px;
}
.trust-badge h5 { font-weight: 600; margin-bottom: 8px; }
.trust-badge p { font-size: 0.9rem; color: var(--gray); margin-bottom: 0; }

/* --- Contact --- */
.contact-info-card {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  border: 1px solid #f0f0f0;
}
.contact-info-card:hover { box-shadow: var(--shadow-hover); }
.contact-info-card .icon {
  width: 60px;
  height: 60px;
  background: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 15px;
}
.contact-info-card h5 { font-weight: 600; margin-bottom: 8px; }
.contact-info-card p { color: var(--gray); margin-bottom: 0; font-size: 0.95rem; }

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid #f0f0f0;
}
.contact-form .form-control {
  border-radius: 8px;
  padding: 12px 18px;
  border: 1px solid #ddd;
  font-size: 0.95rem;
  transition: var(--transition);
}
.contact-form .form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.contact-form textarea { min-height: 130px; resize: vertical; }

/* --- Newsletter --- */
.newsletter-section {
  background: var(--black);
  padding: 60px 0;
  position: relative;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('https://images.unsplash.com/photo-1603561591411-07134e71a2a9?w=1600') center/cover no-repeat;
  opacity: 0.08;
}
.newsletter-content { position: relative; z-index: 1; }
.newsletter-content h2 {
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.newsletter-content p { color: rgba(255,255,255,0.7); margin-bottom: 25px; }
.newsletter-form .input-group {
  max-width: 500px;
  margin: 0 auto;
}
.newsletter-form input {
  border-radius: 50px 0 0 50px;
  border: none;
  padding: 15px 25px;
  font-size: 1rem;
}
.newsletter-form input:focus { box-shadow: none; outline: none; }
.newsletter-form button {
  border-radius: 0 50px 50px 0;
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: 15px 35px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}
.newsletter-form button:hover { background: var(--gold-dark); }

/* --- Festive Offers --- */
.festive-banner {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.festive-banner::before {
  content: '✦';
  position: absolute;
  top: -30px;
  right: -30px;
  font-size: 20rem;
  color: rgba(255,255,255,0.06);
}
.festive-banner::after {
  content: '✦';
  position: absolute;
  bottom: -50px;
  left: -20px;
  font-size: 15rem;
  color: rgba(255,255,255,0.04);
}
.festive-banner h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.festive-banner p { color: rgba(255,255,255,0.9); font-size: 1.1rem; margin-bottom: 25px; }
.festive-banner .btn-white {
  background: var(--white);
  color: var(--gold-dark);
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  border: 2px solid var(--white);
}
.festive-banner .btn-white:hover {
  background: transparent;
  color: var(--white);
}

/* --- Footer --- */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}
.footer h5 {
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.footer p { line-height: 1.8; font-size: 0.95rem; }
.footer ul { list-style: none; padding: 0; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a {
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
  font-size: 0.95rem;
}
.footer ul li a:hover { color: var(--gold); padding-left: 5px; }
.footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  margin-right: 10px;
  transition: var(--transition);
  font-size: 1.1rem;
}
.footer .social-links a:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}
.footer .brand-footer {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 15px;
}
.footer .brand-footer .gold-text { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  margin-top: 40px;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
}

/* --- WhatsApp Float Button --- */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 15px rgba(37,211,102,0.4);
  z-index: 9999;
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  color: var(--white);
  box-shadow: 0 6px 25px rgba(37,211,102,0.5);
}

/* --- Page Header Banner --- */
.page-header {
  background: var(--black);
  padding: 140px 0 60px;
  text-align: center;
  position: relative;
}
.page-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('https://images.unsplash.com/photo-1603561591411-07134e71a2a9?w=1600') center/cover no-repeat;
  opacity: 0.12;
}
.page-header h1 {
  color: var(--white);
  font-size: 3rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.page-header p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}
.page-header .breadcrumb {
  justify-content: center;
  background: transparent;
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
.page-header .breadcrumb .breadcrumb-item { color: rgba(255,255,255,0.6); }
.page-header .breadcrumb .breadcrumb-item.active { color: var(--gold); }
.page-header .breadcrumb .breadcrumb-item a { color: rgba(255,255,255,0.6); }
.page-header .breadcrumb .breadcrumb-item a:hover { color: var(--gold); }
.page-header .breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,0.3); }

/* --- Filter Buttons --- */
.filter-btn {
  border: 2px solid #ddd;
  background: transparent;
  padding: 8px 25px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  margin: 5px;
  color: var(--gray);
}
.filter-btn:hover,
.filter-btn.active {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--white);
}

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.animate-fade-in { animation: fadeIn 1s ease; }
.animate-fade-in-up { animation: fadeInUp 0.8s ease; }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* --- Catalogue Download --- */
.catalogue-card {
  background: linear-gradient(135deg, var(--gold-light) 0%, #f0e0c0 100%);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
}
.catalogue-card .icon { font-size: 3rem; color: var(--gold); margin-bottom: 15px; }
.catalogue-card h4 { font-weight: 600; margin-bottom: 10px; }
.catalogue-card p { color: var(--gray); margin-bottom: 20px; }

/* --- Category Tabs --- */
.nav-tabs .nav-link {
  border: none;
  color: var(--dark-gray);
  font-weight: 600;
  padding: 12px 25px;
  border-radius: 50px;
  margin: 0 5px;
  transition: var(--transition);
}
.nav-tabs .nav-link:hover,
.nav-tabs .nav-link.active {
  background: var(--gold);
  color: var(--white);
}

/* --- Rating Stars --- */
.rating { color: var(--gold); font-size: 1.1rem; }

/* --- Team Section --- */
.team-card {
  text-align: center;
  padding: 30px;
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}
.team-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.team-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid var(--gold-light);
}
.team-card h5 { font-weight: 600; margin-bottom: 5px; }
.team-card .role { color: var(--gold); font-size: 0.9rem; font-weight: 600; }
.team-card p { font-size: 0.9rem; color: var(--gray); margin-top: 10px; }

/* --- Responsive --- */
@media (max-width: 991px) {
  .hero h1 { font-size: 3rem; }
  .section-title { font-size: 2rem; }
}
@media (max-width: 767px) {
  .hero { min-height: 500px; }
  .hero h1 { font-size: 2.2rem; }
  .hero p { font-size: 1rem; }
  .hero .btn-outline-gold { margin-left: 0; margin-top: 10px; }
  .section-padding { padding: 50px 0; }
  .section-title { font-size: 1.8rem; }
  .page-header h1 { font-size: 2rem; }
  .festive-banner h2 { font-size: 1.8rem; }
  .product-card .img-wrapper { height: 220px; }
  .gallery-item img { height: 220px; }
}
