:root {
  /* Colors based on the new elegant beige/taupe reference */
  --bg-main: #ffffff;
  --bg-secondary: #f4ebe1; /* Light beige for sections like About Us */
  --taupe-primary: #a68a7b; /* Main accent: Hero bg, footer bg, buttons */
  --taupe-dark: #8c7365; /* Hover states */
  --text-main: #4a3c31; /* Dark brown for readability */
  --text-light: #ffffff; /* White text for hero and footer */
  --card-bg: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.9);
  --glass-border: rgba(166, 138, 123, 0.2);

  /* Typography - More readable */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

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

body {
  background-color: var(--bg-main);
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23a68a7b' fill-opacity='0.08'%3E%3Cpath d='M30 15 C33 22 40 25 30 30 C20 25 27 22 30 15 Z' /%3E%3Cpath d='M30 45 C27 38 20 35 30 30 C40 35 33 38 30 45 Z' /%3E%3Cpath d='M15 30 C22 27 25 20 30 30 C25 40 22 33 15 30 Z' /%3E%3Cpath d='M45 30 C38 33 35 40 30 30 C35 20 38 27 45 30 Z' /%3E%3Ccircle cx='30' cy='30' r='2' /%3E%3C/g%3E%3C/svg%3E");
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--taupe-primary);
  font-weight: 500;
}

a {
  text-decoration: none;
  color: var(--text-main);
  transition: color 0.3s ease;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  width: 100%;
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-main);
  border-bottom: 1px solid var(--glass-border);
  z-index: 1000;
  transition: padding 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
  padding: 15px 5%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 65px; /* Incremented by roughly 25-30% */
  width: auto;
  object-fit: contain;
  margin-right: 12px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--taupe-primary);
  letter-spacing: 1px;
  font-weight: 600;
}

.announcement-bar {
  background-color: var(--taupe-primary);
  color: white;
  text-align: center;
  padding: 8px 15px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.mobile-menu-icon {
  display: none !important;
  font-size: 28px;
  cursor: pointer;
  color: var(--taupe-primary);
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links a {
  margin-left: 30px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  color: var(--text-main);
  font-weight: 500;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--taupe-primary);
  transition: width 0.3s ease;
}

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

/* Dropdown Menu */
.dropdown {
  position: relative;
  display: inline-block;
  margin-left: 30px;
}
.dropdown .dropbtn {
  margin-left: 0;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--glass-bg);
  min-width: 180px;
  box-shadow: 0px 8px 25px 0px rgba(166, 138, 123, 0.2);
  z-index: 1001;
  border-radius: 8px;
  overflow: hidden;
  top: 150%;
  left: 0;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}
.dropdown-content a {
  color: var(--text-main);
  padding: 12px 20px;
  text-decoration: none;
  display: block;
  margin-left: 0;
  font-size: 14px;
  transition: all 0.3s ease;
}
.dropdown-content a::after {
  display: none; /* remove underline effect for dropdown */
}
.dropdown-content a:hover {
  background-color: rgba(166, 138, 123, 0.1);
  color: var(--taupe-primary);
  padding-left: 25px; /* Slight indent on hover */
}
.dropdown:hover .dropdown-content {
  display: block;
}

.cart-icon {
  margin-left: 30px;
  font-size: 20px;
  position: relative;
  cursor: pointer;
  color: var(--taupe-primary) !important;
}
#cart-count {
  position: absolute;
  top: -8px;
  right: -12px;
  background: var(--taupe-primary);
  color: #fff;
  font-size: 12px;
  border-radius: 50%;
  padding: 2px 6px;
  font-weight: bold;
}

/* Hero Section */
.hero {
  position: relative;
  height: 80vh; /* Shorter hero like reference */
  margin-top: 80px; /* offset header */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: var(--taupe-primary);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg img, .hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.6; /* Blend with taupe background */
  mix-blend-mode: multiply;
}

.hero-overlay {
  display: none; /* Removed dark overlay */
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 55px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-light);
  text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

.hero-content h1 span {
  color: var(--bg-secondary);
  font-style: italic;
  font-size: 45px;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 40px;
  color: var(--text-light);
  font-weight: 300;
}

.btn-primary {
  display: inline-block;
  padding: 12px 35px;
  background-color: var(--bg-main);
  color: var(--taupe-primary);
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--bg-main);
  border-color: var(--bg-main);
  transform: translateY(-2px);
}

/* Articles Section */
.articles-section {
  padding: 80px 5%;
  background-color: var(--bg-main);
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 35px;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.section-title h2::before,
.section-title h2::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 60px;
  height: 1px;
  background-color: var(--taupe-primary);
}
.section-title h2::before { left: -80px; }
.section-title h2::after { right: -80px; }

.section-title p {
  color: var(--text-main);
  opacity: 0.7;
}

.filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--taupe-primary);
  color: var(--taupe-primary);
  padding: 8px 20px;
  border-radius: 20px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 15px;
  transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--taupe-primary);
  color: #fff;
}

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

.article-card {
  background-color: var(--bg-secondary);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  text-align: center;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(166, 138, 123, 0.15);
}

.img-wrapper {
  overflow: hidden;
  height: 250px;
  background-color: #fff;
  padding: 10px;
}

.article-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.article-content {
  padding: 25px 20px;
}

.category-tag {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--taupe-dark);
  margin-bottom: 8px;
  font-weight: 600;
}

.article-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--text-main);
}

.article-content p {
  color: var(--text-main);
  opacity: 0.8;
  margin-bottom: 15px;
  font-size: 14px;
}

.price {
  font-size: 18px;
  font-weight: bold;
  color: var(--taupe-primary);
  margin-bottom: 15px;
}

/* Add to cart buttons */
.add-to-cart-btn {
  background: var(--taupe-primary);
  border: none;
  color: var(--text-light);
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 30px;
  transition: all 0.3s;
  font-family: var(--font-body);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
}
.add-to-cart-btn:hover {
  background: var(--taupe-dark);
}


/* About Section */
.about-section {
  padding: 80px 5%;
  background-color: var(--bg-main);
  border-top: 1px solid rgba(166, 138, 123, 0.2);
}

.about-container {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
  background-color: var(--bg-secondary);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.about-image {
  flex: 1;
  position: relative;
}

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

.about-text {
  flex: 1;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-text h2 {
  font-size: 35px;
  color: var(--taupe-primary);
  margin-bottom: 20px;
  text-align: center;
}

.about-text p {
  font-size: 16px;
  margin-bottom: 15px;
  color: var(--text-main);
  text-align: center;
}

/* Footer */
.footer {
  background-color: var(--taupe-primary);
  padding: 50px 5% 20px;
  text-align: center;
  color: var(--text-light);
}

.footer-top h2 {
  font-size: 28px;
  margin-bottom: 5px;
  color: var(--text-light);
}

.footer-subtitle {
  color: var(--bg-secondary);
  font-style: italic;
  margin-bottom: 30px;
}

.footer-columns {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-col h3 {
  font-size: 16px;
  color: var(--bg-secondary);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 5px;
}

.contact-info {
  gap: 10px;
}

.contact-info a {
  color: var(--text-light);
  font-size: 14px;
  text-transform: none;
  letter-spacing: normal;
  display: inline-block;
  transition: opacity 0.3s ease;
}

.contact-info a:hover {
  opacity: 0.8;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-links a {
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--text-light);
  transition: opacity 0.3s ease;
}

.social-links a:hover {
  opacity: 0.8;
}

.footer-bottom p {
  font-size: 12px;
  opacity: 0.7;
}

/* Scroll Reveal Classes */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

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

/* Floating WhatsApp Button */
.float-wa {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.float-wa:hover {
  transform: scale(1.1);
}
.float-wa img {
  width: 30px;
  height: 30px;
}

/* Cart Modal */
.cart-modal {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  max-width: 100vw;
  height: 100vh;
  background: var(--bg-main);
  box-shadow: -5px 0 15px rgba(0,0,0,0.1);
  z-index: 2000;
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
}
.cart-modal.open {
  right: 0;
}
.cart-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(166, 138, 123, 0.2);
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.cart-header h2 {
  color: var(--taupe-primary);
}
.close-btn {
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 30px;
  cursor: pointer;
}
.cart-items {
  flex: 1;
  overflow-y: auto;
}
.cart-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(166, 138, 123, 0.1);
  padding-bottom: 10px;
}
.cart-item-info h4 {
  font-size: 15px;
  margin-bottom: 5px;
  color: var(--text-main);
}
.cart-item-info p {
  font-size: 13px;
}
.cart-item-price {
  color: var(--taupe-primary);
  font-weight: 600;
}
.remove-item {
  background: none;
  border: none;
  color: #ff4d4d;
  cursor: pointer;
  font-size: 12px;
  text-decoration: underline;
}
.cart-footer {
  border-top: 1px solid rgba(166, 138, 123, 0.2);
  padding-top: 20px;
}
.cart-total {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: right;
  color: var(--text-main);
}
.w-100 {
  width: 100%;
  text-align: center;
  display: block;
  box-sizing: border-box;
}
.mb-10 {
  margin-bottom: 10px;
}
.btn-primary {
  background-color: var(--taupe-primary);
  color: #fff !important;
  padding: 12px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
}
.btn-primary:hover {
  background-color: var(--taupe-dark);
}
.btn-secondary {
  background-color: #0070ba;
  color: #fff;
  padding: 12px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 14px;
}
.btn-secondary:hover {
  background-color: #005ea6;
}

/* Responsive */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
  }
  .hero-content h1 {
    font-size: 35px;
  }
  .mobile-menu-icon {
    display: block !important;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--glass-bg);
    backdrop-filter: blur(10px);
    box-shadow: 0px 8px 25px 0px rgba(166, 138, 123, 0.2);
    padding: 20px 0;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links a, .dropdown {
    margin: 15px 0 !important;
    text-align: center;
    width: 100%;
  }
  .dropdown-content {
    position: relative;
    top: 0;
    box-shadow: none;
    border: none;
    backdrop-filter: none;
    background-color: transparent;
  }
  .dropdown {
    margin-left: 0 !important;
  }
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  padding-top: 80px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
}

.lightbox-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  animation: zoom 0.3s;
}

@keyframes zoom {
  from {transform:scale(0.8); opacity: 0;}
  to {transform:scale(1); opacity: 1;}
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.lightbox-close:hover {
  color: var(--taupe-primary);
}
