:root {
  --sand: #f7f3ed;
  --clay: #d4a73a;
  --ember: #1f5a3b;
  --cacao: #2b1a12;
  --forest: #1f5a3b;
  --night: #231610;
  --primary-color: #1f5a3b;
  --secondary-color: #d4a73a;
  --accent-color: #8a6b2f;
  --dark-color: #231610;
  --surface: #ffffff;
  --surface-muted: #f7f3ed;
  --text-strong: #231610;
  --text-muted: rgba(35, 22, 16, 0.7);
}

body[data-theme="dark"] {
  --surface: #120c09;
  --surface-muted: #1b120d;
  --text-strong: #f4efe8;
  --text-muted: rgba(244, 239, 232, 0.75);
  background: #0f0b09;
  color: var(--text-strong);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--text-strong);
  background: var(--surface);
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: var(--text-strong);
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-color);
}

/* Header & Navigation */
.site-header {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 30px rgba(35, 22, 16, 0.08);
  backdrop-filter: blur(0px);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 40px rgba(35, 22, 16, 0.12);
}

body[data-theme="dark"] .site-header {
  background: rgba(18, 12, 9, 0.9);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

body[data-theme="dark"] .site-header.scrolled {
  background: rgba(18, 12, 9, 0.7);
}

body[data-theme="dark"] .navbar-nav .nav-link {
  color: rgba(244, 239, 232, 0.85) !important;
}

body[data-theme="dark"] .navbar-nav .nav-link.active {
  color: #d4a73a !important;
}

body[data-theme="dark"] .btn-outline-dark {
  color: #f4efe8;
  border-color: rgba(244, 239, 232, 0.6);
}

body[data-theme="dark"] .btn-outline-dark:hover {
  background-color: #f4efe8;
  color: #2b1a12;
  border-color: #f4efe8;
}

.navbar-light {
  padding: 1.5rem 0;
}

.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(35, 22, 16, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  color: var(--text-strong);
  transition: all 0.3s ease;
  margin-left: 12px;
}

.theme-toggle:hover {
  transform: translateY(-1px);
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

body[data-theme="dark"] .theme-toggle {
  border-color: rgba(244, 239, 232, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: #f4efe8;
}

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
  display: inline-flex;
  flex-direction: column;
  line-height: 1.1;
  color: var(--night) !important;
}

.navbar-nav .nav-link {
  font-weight: 500;
  margin: 0 10px;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

.navbar-nav .nav-link.active {
  color: var(--primary-color) !important;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, #2b1a12 0%, #1f5a3b 100%);
  padding: 80px 0;
  margin-bottom: 60px;
  color: white;
}

.page-header h1 {
  color: #d4a73a;
  font-size: 48px;
  margin-bottom: 15px;
}

.page-header .lead {
  color: white;
  font-weight: 300;
}



/* Hero Section */
.hero-home {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #ffffff 0%, #f7f3ed 100%);
}

body[data-theme="dark"] .hero-home,
body[data-theme="dark"] .featured-section,
body[data-theme="dark"] .gallery-section,
body[data-theme="dark"] .shop-section,
body[data-theme="dark"] .contact-section,
body[data-theme="dark"] .map-section,
body[data-theme="dark"] .terms-section {
  background: #120c09;
}

body[data-theme="dark"] .values-section,
body[data-theme="dark"] .story-section,
body[data-theme="dark"] .testimonials-section,
body[data-theme="dark"] .stat-section {
  background: #1b120d;
}

body[data-theme="dark"] .product-card,
body[data-theme="dark"] .value-card,
body[data-theme="dark"] .testimonial-card,
body[data-theme="dark"] .shop-product,
body[data-theme="dark"] .contact-form-wrapper {
  background: #15100c;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

body[data-theme="dark"] .hero-home .lead,
body[data-theme="dark"] .product-card p,
body[data-theme="dark"] .value-card p,
body[data-theme="dark"] .testimonial-card p,
body[data-theme="dark"] .shop-product-description,
body[data-theme="dark"] .contact-info p,
body[data-theme="dark"] .terms-section p {
  color: var(--text-muted);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: #1f5a3b;
  font-weight: 600;
  margin-bottom: 20px;
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: 2px solid #d4a73a;
}

.hero-home h1 {
  font-size: 60px;
  line-height: 1.1;
  margin-bottom: 30px;
  color: #2b1a12;
}

.hero-home .lead {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(25, 21, 18, 0.75);
  max-width: 550px;
}

.hero-home img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(25, 21, 18, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.parallax-media {
  transition: transform 0.2s ease-out;
  will-change: transform;
}

.hero-home img:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(25, 21, 18, 0.2);
}

.hero-image-wrap {
  position: relative;
}

.hero-float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(31, 90, 59, 0.2);
  color: #2b1a12;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  box-shadow: 0 10px 25px rgba(25, 21, 18, 0.12);
}

.hero-float-card-top {
  top: 24px;
  left: -16px;
}

.hero-float-card-bottom {
  right: -16px;
  bottom: 24px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
}

.hero-metric-card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(31, 90, 59, 0.12);
  border-radius: 14px;
  padding: 16px;
  text-align: center;
}

body[data-theme="dark"] .hero-float-card,
body[data-theme="dark"] .hero-metric-card {
  background: rgba(21, 16, 12, 0.95);
  border-color: rgba(212, 167, 58, 0.25);
  color: #f7f3ed;
}

/* Stats */
.stats {
  margin-top: 50px;
}

.stat-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #f7f3ed 0%, #fffaf0 100%);
}

.stats-section {
  padding: 60px 0 !important;
  background: linear-gradient(135deg, #1f5a3b 0%, #2b1a12 100%) !important;
  color: white !important;
}

.stats-section .stat-box {
  background: rgba(255, 255, 255, 0.1) !important;
  border-left-color: #d4a73a !important;
}

.stats-section .stat-number {
  color: #d4a73a !important;
}

.stats-section .stat-label {
  color: rgba(255, 255, 255, 0.9) !important;
}

.stat-box {
  padding: 30px;
  background: linear-gradient(135deg, #f7f3ed 0%, #fffaf0 100%);
  border-radius: 15px;
  border-left: 4px solid #1f5a3b;
  transition: transform 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
  border-left-color: #d4a73a;
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  color: #1f5a3b;
  display: block;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 14px;
  color: rgba(35, 22, 16, 0.65);
  font-weight: 500;
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #18462e;
  border-color: #18462e;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(31, 90, 59, 0.25);
}

.btn-outline-dark {
  color: var(--night);
  border-color: var(--night);
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-outline-dark:hover {
  background-color: var(--night);
  border-color: var(--night);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(25, 21, 18, 0.3);
}

.btn-dark {
  background-color: #2b1a12;
  border-color: #2b1a12;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-dark:hover {
  background-color: #3a261c;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(25, 21, 18, 0.3);
}

/* Featured Section */
.featured-section {
  padding: 80px 0;
  background: #ffffff;
}

.section-title {
  font-size: 42px;
  margin-bottom: 50px;
  color: #2b1a12;
}

.section-subtitle {
  max-width: 740px;
  color: rgba(35, 22, 16, 0.72);
  font-size: 17px;
  line-height: 1.7;
}

.product-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(25, 21, 18, 0.1);
  transition: all 0.4s ease;
  border-left: 5px solid #1f5a3b;
}

.product-card:hover {
  border-left-color: #d4a73a;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(35, 22, 16, 0.15);
}

.product-card img {
  border-radius: 15px;
  margin-bottom: 20px;
  height: 300px;
  object-fit: cover;
}

.product-card-spotlight {
  overflow: hidden;
}

.product-media-wrap {
  position: relative;
}

.product-chip {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(31, 90, 59, 0.92);
  color: white;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 600;
}

body[data-theme="dark"] .section-subtitle {
  color: rgba(247, 243, 237, 0.78);
}

body[data-theme="dark"] .product-chip {
  background: rgba(212, 167, 58, 0.95);
  color: #2b1a12;
}

.home-story-band {
  background: linear-gradient(135deg, #f7f3ed 0%, #ffffff 100%);
}

.story-band-wrap {
  background: white;
  border: 1px solid rgba(31, 90, 59, 0.12);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(25, 21, 18, 0.1);
}

.story-band-wrap h2 {
  font-size: 40px;
  color: #2b1a12;
}

.story-band-wrap p {
  color: rgba(35, 22, 16, 0.72);
  line-height: 1.75;
}

.story-band-image {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

body[data-theme="dark"] .home-story-band {
  background: #120c09;
}

body[data-theme="dark"] .story-band-wrap {
  background: #15100c;
  border-color: rgba(212, 167, 58, 0.2);
}

body[data-theme="dark"] .story-band-wrap h2 {
  color: #f7f3ed;
}

body[data-theme="dark"] .story-band-wrap p {
  color: rgba(247, 243, 237, 0.78);
}

.product-media {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}

.quick-view {
  position: absolute;
  bottom: 14px;
  right: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(31, 90, 59, 0.9);
  color: white;
  font-size: 12px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border: none;
  transition: all 0.3s ease;
}

.quick-view:hover {
  background: rgba(43, 26, 18, 0.95);
  color: #d4a73a;
  transform: translateY(-2px);
}

body[data-theme="dark"] .quick-view {
  background: rgba(212, 167, 58, 0.85);
  color: #2b1a12;
}

.product-card h3 {
  font-size: 26px;
  margin-bottom: 15px;
}

.product-card p {
  color: rgba(25, 21, 18, 0.7);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Values Section */
.values-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f7f3ed 100%);
}

.values-section .section-title {
  color: #2b1a12;
}

.value-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(25, 21, 18, 0.08);
  transition: all 0.4s ease;
  border-top: 4px solid #d4a73a;
}

.value-card:hover {
  border-top-color: #1f5a3b;
  box-shadow: 0 15px 40px rgba(31, 90, 59, 0.12);
}



.value-card h4 {
  font-size: 22px;
  color: var(--night);
}

.value-card p {
  color: rgba(25, 21, 18, 0.7);
  line-height: 1.6;
}

/* Gallery Section */
.gallery-section {
  padding: 80px 0;
  background: white;
}

.gallery-section .section-title {
  color: #2b1a12;
}

/* Story Section */
.story-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f7f3ed 100%);
}

.story-section h2 {
  color: #2b1a12;
}

.gallery-img {
  height: 300px;
  object-fit: cover;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-img:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(25, 21, 18, 0.2);
}

/* Testimonials */
.testimonials-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f7f3ed 0%, #ffffff 100%);
}

.testimonials-section .section-title {
  color: #2b1a12;
}

.testimonial-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(25, 21, 18, 0.08);
  transition: all 0.4s ease;
  border-bottom: 4px solid #1f5a3b;
  padding-top: 20px !important;
}

.testimonial-card:hover {
  box-shadow: 0 15px 40px rgba(31, 90, 59, 0.12);
}



.testimonial-card .stars {
  font-size: 16px;
  color: #d4a73a;
  margin-bottom: 15px;
}

.testimonial-card p {
  color: rgba(25, 21, 18, 0.8);
  line-height: 1.6;
  font-size: 15px;
}

.testimonial-card strong {
  color: var(--night);
  font-size: 14px;
}

/* Newsletter */
.newsletter-section {
  padding: 50px 0;
  background: linear-gradient(135deg, #1f5a3b 0%, #2b1a12 100%);
  color: white;
}

.newsletter-section h2 {
  color: #d4a73a;
}



.newsletter-section p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
}

.newsletter-section .form-control {
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.newsletter-section .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-section .form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 0 0.2rem rgba(39, 174, 96, 0.25);
  color: white;
}

/* Contact */
.contact-section {
  padding: 80px 0;
  background: white;
}

.contact-info {
  margin-bottom: 30px;
}

.contact-info h5 {
  font-size: 18px;
  color: var(--night);
  margin-bottom: 10px;
  font-weight: 600;
}

.contact-info p {
  color: rgba(25, 21, 18, 0.7);
  margin-bottom: 0;
}

.contact-info a {
  color: var(--primary-color);
  font-weight: 500;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-form-wrapper {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(25, 21, 18, 0.1);
  border: 2px solid #1f5a3b;
}

.contact-form-wrapper h3 {
  font-size: 28px;
  margin-bottom: 30px;
}

.contact-form-wrapper .form-label {
  font-weight: 600;
  color: var(--night);
  margin-bottom: 10px;
}

.contact-form-wrapper .form-control {
  padding: 12px 16px;
  border: 1px solid rgba(25, 21, 18, 0.1);
  border-radius: 10px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.contact-form-wrapper .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(31, 90, 59, 0.12);
}

.map-section {
  padding: 60px 0;
  background: #ffffff;
}

/* Shop */
.shop-section {
  padding: 80px 0;
  background: white;
}

.shop-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #2b1a12;
}

.shop-product {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(35, 22, 16, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
}

.shop-product:hover {
  border-color: #1f5a3b;
}

.shop-product:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(35, 22, 16, 0.15);
}

.shop-product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.shop-product-media {
  position: relative;
}

.shop-product-media .quick-view {
  bottom: 16px;
  right: 16px;
}

.quick-view-inline {
  position: static;
  border: 1px solid rgba(31, 90, 59, 0.18);
  background: rgba(31, 90, 59, 0.06);
  color: var(--primary-color);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
}

.quick-view-inline:hover {
  background: rgba(31, 90, 59, 0.12);
}

.modal-content {
  border-radius: 24px;
  border: 1px solid rgba(35, 22, 16, 0.08);
  box-shadow: 0 24px 60px rgba(35, 22, 16, 0.2);
}

body[data-theme="dark"] .modal-content {
  background: #15100c;
  color: #f4efe8;
  border-color: rgba(244, 239, 232, 0.1);
}

.shop-product-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.shop-product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.shop-product-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(31, 90, 59, 0.08);
  color: var(--primary-color);
  font-size: 11px;
  letter-spacing: 1.1px;
  font-weight: 700;
  text-transform: uppercase;
}

.shop-product-name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0;
  color: var(--night);
}

.shop-product-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0;
}

.shop-product-description {
  color: rgba(25, 21, 18, 0.7);
  font-size: 14px;
  margin-bottom: 0;
  min-height: 84px;
}

.shop-product-details {
  margin-bottom: 0;
  display: grid;
  gap: 8px;
  color: rgba(25, 21, 18, 0.78);
  font-size: 13px;
}

.shop-product-details li,
.shop-modal-details li {
  position: relative;
  padding-left: 18px;
}

.shop-product-details li::before,
.shop-modal-details li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--secondary-color);
  position: absolute;
  left: 0;
  top: 0.45rem;
}

.shop-product-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: auto;
  flex-wrap: wrap;
}

.shop-product-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  height: 46px;
  padding: 0 22px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #1f5a3b 0%, #2b1a12 100%) !important;
  border: none !important;
  transition: all 0.3s ease;
}

.shop-product-btn:hover {
  background: linear-gradient(135deg, #18462e 0%, #1e140e 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(31, 90, 59, 0.25) !important;
}

.shop-modal-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.shop-modal-details {
  display: grid;
  gap: 10px;
  margin: 18px 0 24px;
}

body[data-theme="dark"] .quick-view-inline {
  background: rgba(244, 239, 232, 0.06);
  border-color: rgba(244, 239, 232, 0.12);
  color: #f4efe8;
}

body[data-theme="dark"] .shop-product-badge {
  background: rgba(212, 167, 58, 0.14);
  color: #f4efe8;
}

body[data-theme="dark"] .shop-product-details,
body[data-theme="dark"] .shop-modal-details {
  color: rgba(244, 239, 232, 0.78);
}

@media (max-width: 767.98px) {
  .shop-product-description {
    min-height: auto;
  }

  .shop-product-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .shop-product-btn,
  .quick-view-inline {
    width: 100%;
  }
}

/* Footer */
.terms-section {
  padding: 80px 0;
  background: white;
}

.terms-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
  margin-top: 40px;
  color: #2b1a12;
}

.terms-section h3 {
  font-size: 26px;
  margin-bottom: 20px;
  color: #d4a73a;
  margin-top: 40px;
}

.terms-section p {
  color: rgba(25, 21, 18, 0.75);
  line-height: 1.8;
  font-size: 16px;
}

.terms-section ul {
  color: rgba(25, 21, 18, 0.75);
  line-height: 1.8;
  margin-left: 30px;
}

.terms-section li {
  margin-bottom: 10px;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #2b1a12 0%, #1f5a3b 100%);
  color: white;
  padding: 80px 0 0;
  margin-top: auto;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #d4a73a 0%, #1f5a3b 50%, #d4a73a 100%);
}

.footer-brand .logo-text {
  font-size: 28px;
  font-weight: 700;
  color: white;
  display: block;
  margin-bottom: 12px;
}

.footer-brand .logo-text span:first-child {
  color: #d4a73a;
}

.footer-brand .logo-text span:last-child {
  color: white;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

.footer-subtitle {
  color: #d4a73a;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(212, 167, 58, 0.3);
  padding-bottom: 10px;
}

.social-links-grid {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(212, 167, 58, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-icon:hover {
  background: #d4a73a;
  border-color: #d4a73a;
  color: #2b1a12;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212, 167, 58, 0.4);
}

.footer-menu {
  margin: 0;
  padding: 0;
}

.footer-menu li {
  margin-bottom: 12px;
}

.footer-menu a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding-left: 20px;
}

.footer-menu a::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #d4a73a;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.footer-menu a:hover {
  color: #d4a73a;
  padding-left: 24px;
}

.footer-menu a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-contact {
  margin: 0;
  padding: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
}

.footer-contact svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #d4a73a;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-contact a:hover {
  color: #d4a73a;
}

.footer-hours {
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid #d4a73a;
  padding: 20px;
  border-radius: 8px;
}

.footer-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-text:last-child {
  margin-bottom: 0;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 40px 0 30px;
}

.footer-bottom {
  padding-bottom: 30px;
}

.footer-copyright,
.footer-credit {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.footer-credit svg {
  vertical-align: middle;
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  10%, 30% { transform: scale(1.1); }
  20%, 40% { transform: scale(1); }
}

/* Footer Dark Mode */
body[data-theme="dark"] .footer {
  background: linear-gradient(135deg, #120c09 0%, #0f2a1c 100%);
}

body[data-theme="dark"] .footer::before {
  background: linear-gradient(90deg, #d4a73a 0%, #1f5a3b 50%, #d4a73a 100%);
}

body[data-theme="dark"] .social-icon {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(212, 167, 58, 0.2);
}

body[data-theme="dark"] .social-icon:hover {
  background: #d4a73a;
  border-color: #d4a73a;
  color: #120c09;
}

body[data-theme="dark"] .footer-hours {
  background: rgba(255, 255, 255, 0.03);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-home {
    padding: 50px 0 40px;
  }

  .hero-home h1 {
    font-size: 40px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-float-card {
    position: static;
    display: inline-flex;
    margin-top: 12px;
  }

  .hero-float-card-bottom {
    margin-left: 8px;
  }

  .story-band-wrap {
    padding: 20px;
  }

  .story-band-wrap h2 {
    font-size: 30px;
  }

  .section-title {
    font-size: 32px;
  }

  .page-header h1 {
    font-size: 36px;
  }

  .logo-text {
    font-size: 24px;
  }

  .navbar-nav {
    margin-top: 20px;
  }

  .navbar-nav .nav-link {
    margin: 10px 0;
  }

  .contact-form-wrapper {
    padding: 30px;
    margin-top: 40px;
  }

  .stats {
    gap: 30px;
  }

  .newsletter-section form {
    flex-direction: column;
  }

  .newsletter-section .form-control,
  .newsletter-section .btn {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .hero-home {
    padding: 40px 0 30px;
  }

  .hero-home h1 {
    font-size: 32px;
  }

  .section-title {
    font-size: 26px;
  }

  .featured-section {
    padding: 60px 0;
  }

  .product-card {
    padding: 20px;
  }

  .stats {
    flex-direction: column;
  }

  .btn-primary,
  .btn-outline-dark {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}
