@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #0C3B40;
  --primary-rgb: 12, 59, 64;
  --secondary: #7FB6A6;
  --secondary-rgb: 127, 182, 166;
  --bg: #F7F4EF;
  --card-bg: #FFFFFF;
  --text-dark: #1A282A;
  --text-muted: #536467;
  --border-color: rgba(12, 59, 64, 0.08);
  --shadow: 0 6px 20px rgba(12, 59, 64, 0.04);
  --shadow-hover: 0 14px 28px rgba(12, 59, 64, 0.08);
  --radius: 16px;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg);
  color: var(--text-dark);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--primary);
  font-weight: 600;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

/* Slim & Non-Sticky Header */
.site-header {
  position: relative; /* Not sticky: scrolls up with page movement */
  background: #FAF8F5;
  border-bottom: 1px solid var(--border-color);
  padding: 0.65rem 2rem;
  z-index: 100;
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.brand-logo svg {
  width: 26px;
  height: 26px;
  fill: var(--primary);
}

.brand-logo span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--primary);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: 0.2rem 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  font-weight: 600;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--secondary);
  border-radius: 2px;
}

.cta-button {
  display: inline-block;
  background-color: var(--primary);
  color: #FFFFFF !important;
  padding: 0.55rem 1.35rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(12, 59, 64, 0.12);
  border: 1px solid var(--primary);
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  flex-shrink: 0;
}

.cta-button:hover {
  background-color: #08292d;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(12, 59, 64, 0.22);
}

.cta-button-secondary {
  background-color: transparent;
  color: var(--primary) !important;
  border: 1px solid var(--primary);
}

.cta-button-secondary:hover {
  background-color: rgba(12, 59, 64, 0.05);
  color: var(--primary) !important;
}

/* Page Layout Wrappers */
.section {
  padding: 4.5rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.6rem;
  margin-bottom: 0.75rem;
}

.section-title p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 650px;
  margin: 0 auto;
}

/* Cards & Containers */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow);
  padding: 2rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: calc(var(--radius) - 4px);
  margin-bottom: 1.25rem;
}

.card-tag {
  display: inline-block;
  align-self: flex-start;
  background: rgba(127, 182, 166, 0.15);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.85rem;
}

.card h3 {
  font-size: 1.65rem;
  margin-bottom: 0.65rem;
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

/* Product Detail Accordion / Expandable Content */
.product-details {
  margin-top: auto;
  border-top: 1px solid var(--border-color);
  padding-top: 0.85rem;
}

.product-details summary {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 0;
  user-select: none;
  transition: var(--transition);
}

.product-details summary:hover {
  color: #12555c;
}

.product-details summary::-webkit-details-marker {
  display: none;
}

.product-details summary::after {
  content: "+";
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.product-details[open] summary::after {
  content: "−";
}

.detail-content {
  padding-top: 0.75rem;
  font-size: 0.86rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.detail-row {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  background: #FAF8F5;
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  border: 1px solid rgba(12, 59, 64, 0.05);
}

.detail-row strong {
  color: var(--primary);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Rating Stars */
.rating {
  color: var(--secondary);
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.65rem;
  font-size: 0.9rem;
}

/* Hero Section */
.hero {
  padding: 4.5rem 2rem 4rem;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.25rem;
  margin-bottom: 1.15rem;
  letter-spacing: -0.01em;
}

.hero-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--border-color);
}

/* Badge Pill */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(12, 59, 64, 0.06);
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

/* Footer Styling */
.site-footer {
  background-color: #072225;
  color: #E2ECE9;
  padding: 4.5rem 2rem 2rem;
  margin-top: 5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-branding h3 {
  color: #FFFFFF;
  font-size: 1.85rem;
  margin-bottom: 0.85rem;
}

.footer-branding p {
  color: #A3B8B4;
  font-size: 0.92rem;
  max-width: 300px;
}

.footer-links h4,
.footer-legal-links h4,
.footer-company-details h4 {
  color: var(--secondary);
  font-size: 1.15rem;
  margin-bottom: 1.15rem;
}

.footer-links ul,
.footer-legal-links ul {
  list-style: none;
}

.footer-links li,
.footer-legal-links li {
  margin-bottom: 0.55rem;
}

.footer-links a,
.footer-legal-links a {
  color: #A3B8B4;
  font-size: 0.9rem;
}

.footer-links a:hover,
.footer-legal-links a:hover {
  color: #FFFFFF;
}

.footer-company-details p {
  color: #A3B8B4;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.footer-company-details a {
  color: var(--secondary);
}

.footer-bottom-bar {
  max-width: 1280px;
  margin: 1.75rem auto 0;
  text-align: center;
  font-size: 0.82rem;
  color: #728A86;
}

/* Form Styling */
.contact-form {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  padding: 2.25rem;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.35rem;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
  color: var(--primary);
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  background: #FAF8F5;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--text-dark);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--secondary);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(127, 182, 166, 0.2);
}

textarea.form-control {
  min-height: 130px;
  resize: vertical;
}

/* Legal Content & Policy Styling */
.legal-content {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  padding: 3.5rem 3rem;
  box-shadow: var(--shadow);
  max-width: 960px;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
}

.legal-content .meta-date {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  display: block;
}

.legal-content h2 {
  font-size: 1.85rem;
  margin: 2.25rem 0 1rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border-color);
}

.legal-content h3 {
  font-size: 1.35rem;
  margin: 1.5rem 0 0.75rem;
}

.legal-content p, .legal-content ul, .legal-content ol {
  color: var(--text-muted);
  margin-bottom: 1.15rem;
  font-size: 0.98rem;
  line-height: 1.7;
}

.legal-content ul, .legal-content ol {
  padding-left: 1.75rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.cookie-table-wrapper {
  overflow-x: auto;
  margin: 1.5rem 0;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  text-align: left;
}

.cookie-table th, .cookie-table td {
  padding: 0.85rem 1rem;
  border: 1px solid var(--border-color);
}

.cookie-table th {
  background-color: #FAF8F5;
  color: var(--primary);
  font-weight: 600;
}

/* Responsive Layout Adjustments */
@media (max-width: 992px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
  .hero-content p {
    margin: 0 auto 1.75rem;
  }
  .hero-actions {
    justify-content: center;
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 0.75rem 1rem;
  }
  .header-container {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 1rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border-color);
    margin-top: 0.5rem;
  }
  .nav-links a {
    font-size: 0.82rem;
  }
  .legal-content {
    padding: 2rem 1.25rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.35rem;
  }
  .footer-container {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 3rem 1rem;
  }
}