/* 
* Just Maama - Luxury Fashion
* Premium Maternal & Childwear
*/

:root {
  /* Refined luxury palette inspired by D&G */
  --primary: #1a1a1a;      /* Deep black for text */
  --primary-light: #2e2e2e; 
  --gold: #c4a77d;         /* Sophisticated gold accent */
  --gold-light: #e2d7c4;
  --cream: #fcfcfa;        /* Off-white background */
  --white: #ffffff;
  --light-gray: #f8f8f8;
  --medium-gray: #e0e0e0;
  --dark-gray: #777777;
  --black: #000000;
  --pink-accent: #f9e9e3;   /* Soft pink accent */
  --blush: #eccecb;         /* Blush accent color */
  
  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;
  
  /* Spacing */
  --space-unit: 8px;
  --space-xs: calc(var(--space-unit) * 1);    /* 8px */
  --space-sm: calc(var(--space-unit) * 2);    /* 16px */
  --space-md: calc(var(--space-unit) * 3);    /* 24px */
  --space-lg: calc(var(--space-unit) * 5);    /* 40px */
  --space-xl: calc(var(--space-unit) * 8);    /* 64px */
  --space-xxl: calc(var(--space-unit) * 12);  /* 96px */
  
  /* UI Elements */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
  --transition-fast: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-medium: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  --transition-slow: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  --radius-sm: 2px;
  --radius-md: 4px;
  --border-thin: 1px solid var(--medium-gray);
}

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Base Typography */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: var(--font-light);
  color: var(--primary);
  background-color: var(--white);
  line-height: 1.5;
  letter-spacing: 0.015em;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--font-regular);
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--primary);
}

h1 {
  font-size: 3.5rem;
  letter-spacing: -0.01em;
}

h2 {
  font-size: 2.5rem;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: var(--space-md);
  line-height: 1.8;
  font-weight: var(--font-light);
  padding: 0 2px;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--gold);
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  overflow: hidden;
}

.container-fluid {
  width: 100%;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-lg) 0;
  margin: 0;
  clear: both;
  position: relative;
}

.section-lg {
  padding: 60px 0;
  margin: 0;
  clear: both;
  position: relative;
}

.section-sm {
  padding: var(--space-lg) 0;
}

/* Grid System - D&G inspired */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
  width: 100%;
}

.row > * {
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  flex: 1 0 0%;
  padding: 0 15px;
}

[class^="col-"] {
  padding: 0 15px;
}

.col-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
.col-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
.col-3 { flex: 0 0 25%; max-width: 25%; }
.col-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
.col-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
.col-9 { flex: 0 0 75%; max-width: 75%; }
.col-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
.col-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }

/* Text utilities */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }
.text-uppercase { text-transform: uppercase; }
.text-bold { font-weight: var(--font-bold); }
.text-light { font-weight: var(--font-light); }
.text-primary { color: var(--primary); }
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }

.letter-spacing-wide {
  letter-spacing: 0.2em;
}

/* Header & Navigation - D&G inspired */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-medium);
  padding: 15px 0;
  background-color: var(--white);
}

.navbar-scrolled {
  box-shadow: var(--shadow-sm);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: var(--font-semi-bold);
  color: var(--primary);
  padding: 0 10px;
}

.logo-img {
  height: 130px;
  width: auto;
  display: block;
}

.navbar-brand:hover {
  color: var(--primary);
}

.nav-menu {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  margin: 0 var(--space-md);
  padding: 5px 0;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: var(--font-medium);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  padding: var(--space-xs) 5px;
}

.nav-link:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--primary);
  transition: var(--transition-fast);
}

.nav-link:hover:after,
.nav-link.active:after {
  width: 100%;
}

.navbar-toggler {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.toggler-icon {
  display: block;
  width: 22px;
  height: 1px;
  background-color: var(--primary);
  margin: 5px 0;
  transition: var(--transition-fast);
}

/* Hero Section - D&G Style Full Screen */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: var(--light-gray);
  padding-top: 140px;
}

.hero-carousel {
  height: 100%;
}

.carousel-item {
  height: 100%;
  width: 100%;
  position: relative;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 900px;
  text-align: center;
  z-index: 5;
  color: var(--white);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: var(--font-medium);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
  opacity: 0;
  transform: translateY(20px);
}

.hero-title {
  font-size: 2.8rem;
  margin-bottom: var(--space-lg);
  opacity: 0;
  transform: translateY(20px);
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: var(--space-lg);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(20px);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  opacity: 0;
  transform: translateY(20px);
}

/* D&G-style buttons */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: var(--font-medium);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.9rem 2.5rem;
  border-radius: 0;
  cursor: pointer;
  transition: var(--transition-medium);
  text-align: center;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  border: 1px solid var(--primary);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--primary);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
  padding: 0.75rem 2rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: var(--transition-medium);
}

.btn-outline:hover {
  background-color: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.btn-white {
  background-color: var(--white);
  color: var(--primary);
  border: 1px solid var(--white);
}

.btn-white:hover {
  background-color: transparent;
  color: var(--white);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

.btn-outline-white:hover {
  background-color: var(--white);
  color: var(--primary);
}

/* Content sections - D&G inspired */
.section-title {
  text-align: center;
  margin-bottom: 30px;
  padding: 0 15px;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: var(--font-medium);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: var(--space-sm);
  padding: 0 5px;
}

.section-heading {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
  padding: 0 10px;
}

.section-divider {
  width: 80px;
  height: 2px;
  background-color: var(--gold);
  margin: 15px auto 25px;
}

/* About section */
.about-section {
  padding: var(--space-xxl) 0;
  background-color: var(--cream);
}

.about-content {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.about-image {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 30px;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-text {
  padding: 15px;
}

.about-text h2 {
  font-weight: var(--font-regular);
  margin-bottom: var(--space-md);
  position: relative;
}

.about-text h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 1px;
  background-color: var(--primary);
}

/* Brands list in About section */
.brands-list {
  margin-top: 15px;
}

.brand-list-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 1rem;
}

.brand-list-item i {
  margin-right: 10px;
  font-size: 16px;
}

/* Values section */
.values-section {
  padding: var(--space-xxl) 0;
}

.values-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.value-item {
  background-color: var(--white);
  padding: 20px;
  height: 100%;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition-medium);
  margin-bottom: 20px;
}

.value-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.value-icon {
  font-size: 1.25rem;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  color: var(--gold);
  background-color: rgba(196, 167, 125, 0.1);
  border-radius: 50%;
}

.value-title {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--primary);
  font-weight: var(--font-medium);
}

.value-text {
  font-size: 0.9rem;
  color: var(--dark-gray);
  margin-bottom: 0;
}

/* Collections section */
.collections-section {
  padding: var(--space-xxl) 0;
  background-color: var(--light-gray);
}

.collection-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-xl);
  border-bottom: 1px solid var(--medium-gray);
}

.collection-tab {
  padding: var(--space-sm) var(--space-lg);
  font-size: 0.9rem;
  font-weight: var(--font-medium);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  position: relative;
  color: var(--dark-gray);
  background: none;
  border: none;
  transition: var(--transition-fast);
}

.collection-tab:after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition-fast);
}

.collection-tab:hover,
.collection-tab.active {
  color: var(--primary);
}

.collection-tab.active:after {
  width: 100%;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.product-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.product-image {
  position: relative;
  overflow: hidden;
  background-color: var(--light-gray);
}

.product-image img {
  width: 100%;
  display: block;
  transition: var(--transition-medium);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-medium);
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-details {
  padding: var(--space-md) 0;
  text-align: center;
}

.product-title {
  font-size: 1rem;
  font-weight: var(--font-regular);
  margin-bottom: 5px;
}

.product-price {
  font-size: 0.9rem;
  color: var(--dark-gray);
}

/* Process section */
.process-section {
  padding: var(--space-xxl) 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.process-step {
  text-align: center;
  padding: var(--space-md);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.step-title {
  font-size: 1.2rem;
  margin-bottom: var(--space-sm);
  font-weight: var(--font-medium);
}

.step-text {
  font-size: 0.95rem;
  color: var(--dark-gray);
}

/* Testimonials section */
.testimonials-section {
  padding: var(--space-xxl) 0;
  background-color: var(--pink-accent);
  position: relative;
}

.testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-item {
  padding: var(--space-lg);
  text-align: center;
}

.testimonial-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.testimonial-author {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: var(--font-medium);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--dark-gray);
  margin-top: 5px;
}

/* FAQ Section - D&G Style */
.accordion-item {
  margin-bottom: var(--space-sm);
  border: none;
  background-color: transparent;
}

.accordion-header {
  margin: 0;
}

.accordion-button {
  font-family: var(--font-body);
  font-weight: var(--font-medium);
  font-size: 1.1rem;
  color: var(--primary);
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  padding: var(--space-md) var(--space-lg);
  position: relative;
  border: none;
  border-left: 3px solid var(--gold);
  border-radius: 0;
  transition: var(--transition-medium);
}

.accordion-button:not(.collapsed) {
  color: var(--primary);
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--gold);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23c4a77d' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  transition: var(--transition-fast);
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23c4a77d' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.accordion-body {
  font-family: var(--font-body);
  font-weight: var(--font-light);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--dark-gray);
  padding: var(--space-md) var(--space-lg);
  background-color: var(--white);
  border-left: 3px solid var(--gold-light);
}

/* Footer - D&G inspired */
.footer {
  padding: var(--space-lg) 0 var(--space-md);
  background-color: var(--primary);
  color: var(--white);
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.footer-column h4 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  color: var(--white);
  font-weight: var(--font-medium);
  font-family: var(--font-body);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: var(--space-xs);
}

.footer-links a {
  color: var(--medium-gray);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.social-link {
  color: var(--white);
  font-size: 1.2rem;
  transition: var(--transition-fast);
}

.social-link:hover {
  color: var(--gold);
}

.footer-contact {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--medium-gray);
  font-size: 0.9rem;
}

.footer-bottom {
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.8rem;
  color: var(--medium-gray);
}

/* Newsletter */
.newsletter-form {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
  margin-top: var(--space-lg);
}

.newsletter-input {
  width: 100%;
  padding: var(--space-sm);
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
}

.newsletter-input::placeholder {
  color: var(--medium-gray);
}

.newsletter-button {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  padding: 0 var(--space-md);
  background-color: var(--white);
  color: var(--primary);
  border: none;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: var(--transition-fast);
}

.newsletter-button:hover {
  background-color: var(--gold);
  color: var(--white);
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: -60px;
  right: 30px;
  width: 40px;
  height: 40px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-medium);
  opacity: 0;
  z-index: 99;
}

.back-to-top.show {
  bottom: 30px;
  opacity: 1;
}

.back-to-top:hover {
  background-color: var(--gold);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animated-element {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.animated-element.in-view {
  opacity: 1;
  transform: translateY(0);
}

.hero-subtitle.animate {
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.2s;
}

.hero-title.animate {
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.4s;
}

.hero-description.animate {
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.6s;
}

.hero-buttons.animate {
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.8s;
}

/* Media Queries */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
  
  h1, .hero-title {
    font-size: 3rem;
  }
  
  .values-container,
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }
  
  .navbar-toggler {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: var(--transition-medium);
    box-shadow: var(--shadow-lg);
    z-index: 1001;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-item {
    margin: var(--space-sm) 0;
  }
  
  .about-content,
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-content {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 540px;
  }
  
  h1, .hero-title {
    font-size: 2.5rem;
  }
  
  h2, .section-heading {
    font-size: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .values-container,
  .collection-grid,
  .process-steps,
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .navbar-brand {
    font-size: 1.5rem;
  }
  
  .logo-img {
    height: 60px;
  }
  
  .navbar-container {
    padding: 10px;
  }
  
  .section-heading {
    font-size: 2rem;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .about-text {
    padding: 0;
  }
}

@media (max-width: 576px) {
  h1, .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 0.8rem;
  }
  
  .btn {
    width: 100%;
    padding: 0.8rem 1.5rem;
  }
}

/* Logo Styles - Updated for better visibility */
.logo-img {
  height: 200px;
  width: auto;
  display: block;
}

.footer-logo-img {
  height: 120px;
  width: auto;
  margin-bottom: 20px;
}

/* E-commerce Development Message */
.ecommerce-message {
  background-color: var(--gold);
  color: var(--black);
  padding: 15px 30px;
  border-radius: 4px;
  display: inline-block;
  margin: 20px 0;
  font-weight: var(--font-medium);
  letter-spacing: 0.05em;
  clear: both;
  box-shadow: var(--shadow-sm);
}

/* Enhanced Brand Card Styles */
.brand-card {
  background-color: var(--white);
  box-shadow: var(--shadow-md);
  border-radius: 6px;
  overflow: hidden;
  height: 100%;
  transition: var(--transition-medium);
  display: flex;
  flex-direction: column;
  border-bottom: 3px solid var(--gold);
}

.brand-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.brand-logo-container {
  padding: 30px;
  text-align: center;
  background-color: var(--light-gray);
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo-container img {
  max-height: 120px;
  max-width: 80%;
}

.brand-content {
  padding: 25px 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1.8rem;
  font-family: var(--font-heading);
  margin-bottom: 15px;
  color: var(--primary);
  position: relative;
  padding-bottom: 12px;
}

.brand-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: var(--gold);
}

.brand-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  margin-top: auto;
}

.brand-highlights span {
  font-size: 0.85rem;
  background-color: var(--light-gray);
  padding: 8px 14px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

@media (max-width: 991px) {
  .brand-card {
    margin-bottom: 30px;
  }
}

/* Footer Brand Display */
.footer-brands {
  margin-top: 15px;
}

.footer-brand-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  color: var(--medium-gray);
  padding: 5px 0;
}

.footer-brand-logo {
  height: 40px;
  width: auto;
  margin-right: 15px;
}

/* Business Card Styles - these will be for the HTML/CSS business cards */
.business-card {
  width: 350px;
  height: 200px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
  margin: 20px auto;
}

.business-card-inner {
  padding: 25px;
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.business-card-logo {
  height: 40px;
  width: auto;
  margin-bottom: 10px;
}

.business-card-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.business-card-title {
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: 15px;
  font-weight: var(--font-medium);
}

.business-card-contact {
  font-size: 0.85rem;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.business-card-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background-color: var(--gold);
  opacity: 0.1;
  border-radius: 0 0 0 120px;
  z-index: 1;
}

.business-card-accent-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 80px;
  background-color: var(--gold);
  opacity: 0.1;
  border-radius: 0 80px 0 0;
  z-index: 1;
}

/* Make the website more compact */
@media (min-width: 992px) {
  .section-lg {
    padding: var(--space-xl) 0;  /* Reduced from --space-xxl */
  }
  
  .section-title {
    margin-bottom: var(--space-lg);  /* Reduced from --space-xl */
  }
  
  .values-container {
    gap: var(--space-md);  /* Reduced from --space-lg */
  }
}

/* Clear containers */
.container:after,
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Sustainability Section Styles */
.sustainability-image {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 30px;
}

.sustainability-image img {
  width: 100%;
  height: auto;
  display: block;
}

.sustainability-content {
  padding: 15px;
}

.sustainability-list {
  margin: 20px 0;
}

.sustainability-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1rem;
  line-height: 1.5;
}

.sustainability-item i {
  min-width: 25px;
  margin-right: 10px;
  font-size: 18px;
}

/* Separator line */
.separator-line {
  width: 80px;
  height: 2px;
  background-color: var(--gold);
  margin: 30px auto;
}

/* Fix subscription input layout */
.subscribe-input-group {
  display: flex;
  position: relative;
  margin: 0 auto;
  max-width: 100%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.subscribe-input {
  padding: 15px;
  border: none;
  flex-grow: 1;
  font-size: 16px;
  height: auto;
  border-radius: 0;
}

.subscribe-button {
  padding: 15px 30px;
  border: none;
  background-color: var(--gold);
  color: var(--black);
  font-weight: var(--font-medium);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition-fast);
  white-space: nowrap;
  border-radius: 0;
}

.subscribe-button:hover {
  background-color: var(--primary);
  color: var(--white);
}

/* Responsive fixes */
@media (max-width: 768px) {
  .logo-img {
    height: 60px;
  }
  
  .hero-title {
    font-size: 2.2rem;
    padding: 0 10px;
  }
  
  .hero-description {
    font-size: 1rem;
    padding: 0 15px;
  }
  
  .hero {
    padding-top: 60px;
  }
  
  .hero-content {
    width: 95%;
  }
  
  .subscribe-input-group {
    flex-direction: column;
  }
  
  .subscribe-button {
    width: 100%;
  }
}

/* E-commerce notice in footer */
.ecommerce-notice {
  margin-top: 25px;
  padding: 15px;
  background-color: rgba(196, 167, 125, 0.1);
  border-left: 3px solid var(--gold);
  font-size: 0.9rem;
  color: var(--white);
}

/* More compact overall layout */
.section-lg {
  padding: 60px 0; /* Reduced from var(--space-xl) */
}

.section-title {
  margin-bottom: 30px; /* Further reduced */
}

.section-divider {
  margin: 15px auto 25px; /* Reduced */
}

/* Make the business card button more prominent */
.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
  padding: 0.75rem 2rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: var(--transition-medium);
}

.btn-outline:hover {
  background-color: var(--gold);
  color: var(--white);
  border-color: var(--gold);
} 