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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: #FDFBF7;
  color: #1E1E2A;
  line-height: 1.5;
  scroll-behavior: smooth;
}

:root {
  --bg-light: #FDFBF7;
  --pure-white: #FFFFFF;
  --primary: #C17A5A;
  --primary-dark: #A66346;
  --primary-light: #DBA889;
  --secondary: #4A6552;
  --secondary-light: #6B8A74;
  --accent-gold: #D8C3A5;
  --dark-charcoal: #1E1E2A;
  --soft-gray: #F7F5F0;
  --success: #4A6552;
  --warning: #D4A373;
  --border-radius-card: 24px;
  --shadow-soft: 0 12px 28px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 20px 35px -8px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
}

h1, h2, h3 {
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* Header */
.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2.5rem;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.03), var(--shadow-soft);
  position: sticky;
  top: 0;
  z-index: 1000;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 4px;
  text-decoration: none;
  cursor: pointer;
}

.logo-symbol {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #2C2C2E 0%, #C17A5A 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.logo-accent {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: var(--primary);
  margin-left: 6px;
  border-left: 2px solid rgba(193,122,90,0.3);
  padding-left: 10px;
}

/* Search */
.search-container {
  flex: 1;
  max-width: 350px;
  margin: 0 2rem;
}

.search-wrapper {
  position: relative;
  width: 100%;
}

.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #8a857a;
  font-size: 0.9rem;
  pointer-events: none;
  z-index: 1;
}

.search-dropdown {
  position: relative;
  width: 100%;
}

#searchInput {
  width: 100%;
  padding: 0.7rem 1rem 0.7rem 2.5rem;
  border: 1px solid #e0dbd0;
  border-radius: 50px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  background: var(--pure-white);
  cursor: text;
  transition: all 0.3s ease;
}

#searchInput:hover {
  border-color: var(--primary);
}

.search-options {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  background: var(--pure-white);
  border-radius: 20px;
  box-shadow: var(--shadow-hover);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 100;
}

.search-dropdown.active .search-options {
  max-height: 400px;
  opacity: 1;
}

.search-option {
  padding: 0.9rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 1px solid #f0ede8;
}

.search-option:last-child {
  border-bottom: none;
}

.search-option i {
  width: 24px;
  color: var(--primary);
  font-size: 1rem;
}

.search-option:hover {
  background: var(--soft-gray);
  padding-left: 1.5rem;
  color: var(--primary);
}

.menu-icon {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--dark-charcoal);
  transition: var(--transition);
}
.menu-icon:hover { color: var(--primary); }

.desktop-nav {
  display: flex;
  gap: 1.5rem;
}

.desktop-nav-link {
  text-decoration: none;
  color: var(--dark-charcoal);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
}

.desktop-nav-link:hover, .desktop-nav-link.active {
  color: var(--primary);
}

.header-right-side {
  display: flex;
  align-items: center;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.header-actions i {
  font-size: 1.4rem;
  color: var(--dark-charcoal);
  cursor: pointer;
  transition: var(--transition);
}
.header-actions i:hover {
  color: var(--primary);
}
.cart-icon {
  position: relative;
}
.cart-count {
  position: absolute;
  top: -10px;
  right: -12px;
  background: var(--primary);
  color: white;
  border-radius: 30px;
  width: 20px;
  height: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  left: -100%;
  width: 85%;
  max-width: 340px;
  height: 100vh;
  background: var(--pure-white);
  box-shadow: 0 0 40px rgba(0,0,0,0.08);
  z-index: 1100;
  transition: left 0.4s ease;
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}
.sidebar.active { left: 0; }
.sidebar .close-btn {
  align-self: flex-end;
  font-size: 1.8rem;
  cursor: pointer;
  color: #6c757d;
}
.sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.sidebar nav a {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark-charcoal);
  text-decoration: none;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid #EDE9E2;
  transition: var(--transition);
  cursor: pointer;
}
.sidebar nav a:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
  transform: translateX(4px);
}
.overlay {
  position: fixed;
  top:0; left:0; width:100%; height:100%;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(3px);
  z-index: 1050;
  display: none;
}
.overlay.active { display: block; }

/* Buttons */
.btn {
  background: var(--secondary);
  border: none;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 40px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.8rem;
  transition: 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--secondary);
  color: var(--secondary);
}
.btn-outline:hover {
  background: var(--secondary);
  color: white;
}
.btn:hover { opacity: 0.9; transform: scale(0.97);}
.btn-primary {
  background: var(--primary) !important;
}

/* Footer */
footer {
  background: #101015;
  color: #e6e2d9;
  padding: 4rem 2rem 2rem;
  margin-top: 4.5rem;
  border-top: 1px solid rgba(193, 122, 90, 0.08);
}
.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-column h4 {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
  color: #e6e2d9;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}
.footer-column h4:after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--primary);
}
.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-column ul li {
  margin-bottom: 0.8rem;
}
.footer-column ul li a {
  color: #a5a095;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.25s ease;
  cursor: pointer;
  display: inline-block;
}
.footer-column ul li a:hover {
  color: var(--accent-gold);
  transform: translateX(4px);
}
.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 1.2rem;
}
.footer-logo .logo-symbol {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #f4efe6 0%, #D4A373 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  letter-spacing: -0.5px;
}
.footer-logo .logo-accent {
  font-size: 0.68rem;
  letter-spacing: 3px;
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 600;
}
.footer-tagline {
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0.5rem 0 1.2rem;
  color: #a5a095;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: #c9c5bc;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-decoration: none;
}
.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(193, 122, 90, 0.25);
}
.contact-info li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #a5a095;
  font-size: 0.85rem;
  margin-bottom: 0.9rem;
}
.contact-info li a {
  transition: all 0.25s ease;
}
.contact-info li a:hover {
  color: var(--accent-gold) !important;
}
.contact-info li i {
  width: 20px;
  color: var(--primary);
  font-size: 0.9rem;
}
.newsletter {
  margin-top: 1.5rem;
}
.newsletter p {
  font-size: 0.8rem;
  margin-bottom: 0.8rem;
  color: #c9c5bc;
}
.newsletter-input {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  padding: 3px;
  transition: all 0.25s ease;
}
.newsletter-input:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(193, 122, 90, 0.15);
}
.newsletter-input input {
  flex: 1;
  padding: 0.6rem 1rem;
  border: none;
  background: transparent;
  color: white;
  font-size: 0.8rem;
  font-family: inherit;
  outline: none;
}
.newsletter-input input::placeholder {
  color: #68645c;
}
.newsletter-input button {
  background: var(--primary);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}
.newsletter-input button:hover {
  background: var(--accent-gold);
  transform: scale(1.05);
}
.footer-bottom {
  max-width: 1280px;
  margin: 1.5rem auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  padding-top: 1.25rem;
}
.payment-icons {
  display: flex;
  gap: 1.2rem;
  font-size: 1.6rem;
  color: #68645c;
}
.payment-icons i {
  transition: all 0.25s ease;
}
.payment-icons i:hover {
  color: var(--accent-gold);
}
.footer-bottom p {
  font-size: 0.78rem;
  color: #68645c;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.modal.active {
  display: flex;
  animation: fadeInModal 0.3s ease;
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.modal-content {
  background: var(--pure-white);
  border-radius: 32px;
  padding: 2.5rem;
  max-width: 450px;
  width: 90%;
  text-align: center;
  animation: slideUp 0.3s ease;
}
@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.modal-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #C17A5A, #A66346);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.modal-icon i {
  font-size: 3rem;
  color: white;
}
.modal-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: #1E1E2A;
}
.modal-content p {
  color: #6c757d;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.modal-close-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.9rem;
}
.modal-close-btn:hover {
  background: var(--primary-dark);
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .main-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    row-gap: 0.8rem;
    column-gap: 1rem;
    padding: 0.8rem 1.2rem;
    align-items: center;
  }
  .menu-icon {
    display: block;
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    z-index: 2;
  }
  .logo {
    grid-column: 1 / span 3;
    grid-row: 1;
    justify-self: center;
    z-index: 1;
    margin: 0;
  }
  .desktop-nav {
    display: none;
  }
  .search-container {
    grid-column: 1 / span 2;
    grid-row: 2;
    margin: 0;
    max-width: 100%;
    width: 100%;
  }
  .header-actions {
    grid-column: 3;
    grid-row: 2;
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 1.2rem;
  }
}

/* Global Page Banner Styles */
.page-banner {
  position: relative;
  height: 300px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  border-radius: 0px !important;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.45) !important;
  z-index: 1;
}

.page-banner .banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff !important;
  padding: 0 1rem;
}

.page-banner h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
  color: #ffffff !important;
}

.page-banner p {
  font-size: 1rem;
  opacity: 0.9;
  letter-spacing: 0.5px;
  color: #ffffff !important;
  margin: 0;
}

/* --- Floating WhatsApp --- */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 34px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
  animation: pulse-whatsapp 2s infinite;
}

.floating-whatsapp:hover {
  background-color: #128c7e;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.2);
  color: #fff;
}

@keyframes pulse-whatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
  .floating-whatsapp {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 28px;
  }
}
