@font-face {
  font-family: "Fraunces";
  src: url("../fonts/Fraunces.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sora";
  src: url("../fonts/Sora.ttf") format("truetype");
  font-weight: 100 800;
  font-style: normal;
  font-display: swap;
}
:root {
  --font-heading: "Fraunces", serif;
  --font-body: "Sora", sans-serif;
  --color-primary: #0d1b2a;
  --color-primary-light: #1b3a4b;
  --color-accent: #c9a84c;
  --color-accent-2: #e86848;
  --color-bg: #f5f2ed;
  --color-surface: #ffffff;
  --color-surface-2: #e8e4dd;
  --color-text: #1a2a3a;
  --color-text-light: #5a6a7a;
  --color-text-muted: #8a9aab;
  --border-radius: 10px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.14);
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: clip;
}
main {
  flex: 1 0 auto;
}
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.02em;
}
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.badge {
  display: inline-block;
  padding: 6px 18px;
  background: linear-gradient(135deg, var(--color-accent), #b8922e);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 30px;
  margin-bottom: 18px;
  box-shadow: 0 2px 12px rgba(201, 168, 76, 0.35);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  gap: 8px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: #fff;
  box-shadow: 0 4px 16px rgba(13, 27, 42, 0.30);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(13, 27, 42, 0.40);
}
.btn-outline {
  background: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
}
.btn-sm {
  padding: 8px 18px;
  font-size: 0.8rem;
}
.btn-block {
  width: 100%;
}
.site-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
  flex-wrap: wrap;
}
.logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}
.logo-accent {
  color: var(--color-accent);
}
.main-nav {
  display: block;
}
.nav-list {
  display: flex;
  list-style: none;
  gap: 28px;
  flex-wrap: wrap;
}
.nav-list a {
  font-weight: 500;
  color: var(--color-text);
  font-size: 0.95rem;
  position: relative;
}
.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-2));
  transition: width 0.3s ease;
}
.nav-list a:hover::after {
  width: 100%;
}
.nav-list a:hover {
  color: var(--color-accent);
}
.notice-badge {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  background: var(--color-surface-2);
  padding: 5px 14px;
  border-radius: 30px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.header-notice {
  display: none;
}
@media (max-width: 767px) {
  .site-header {
    position: static;
  }
  .header-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 12px 0;
  }
  .header-notice {
    display: block;
    width: 100%;
    order: 2;
  }
  .notice-badge {
    display: block;
    width: 100%;
    text-align: center;
  }
  .main-nav {
    width: 100%;
    order: 3;
    display: flex;
    justify-content: center;
  }
  .nav-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 6px 14px;
    width: 100%;
  }
  .nav-list li {
    flex: 0 0 auto;
  }
  .nav-list a {
    font-size: 0.8rem;
  }
}
@media (min-width: 768px) {
  .header-inner {
    flex-wrap: nowrap;
  }
}
@media (min-width: 1024px) {
  .header-notice {
    display: block;
  }
}
.hero-section {
  padding: 70px 0 80px;
  background: linear-gradient(165deg, #f5f2ed 0%, #e8e4dd 50%, #f5f2ed 100%);
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.hero-content h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  margin-bottom: 18px;
  line-height: 1.1;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-light);
  margin-bottom: 34px;
  max-width: 520px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-image img {
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}
.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}
.features-section {
  padding: 70px 0 80px;
  background: var(--color-surface);
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.feature-card {
  background: var(--color-bg);
  padding: 36px 28px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-2));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.feature-card:hover::after {
  transform: scaleX(1);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 168, 76, 0.15);
}
.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--color-accent), #b8922e);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.30);
}
.feature-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}
.feature-card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}
.showcase-section {
  padding: 70px 0 80px;
  background: var(--color-bg);
}
.products-section {
  padding-top: 70px;
  padding-bottom: 80px;
  background: var(--color-bg);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 800px) {
  .products-grid,
  .products-grid.large-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .product-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .product-footer .btn {
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .products-grid.large-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.product-card {
  background: var(--color-surface);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.03);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.product-image {
  position: relative;
  overflow: hidden;
}
.product-image img {
  width: 100%;
  height: auto;  
  display: block;
  object-fit: contain; 
}
.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, var(--color-accent), #b8922e);
  color: #fff;
  padding: 4px 14px;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 30px;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px rgba(201, 168, 76, 0.30);
}
.product-info {
  padding: 22px;
}
.product-info h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}
.product-desc {
  color: var(--color-text-light);
  font-size: 0.88rem;
  margin-bottom: 14px;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.product-price {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-primary);
}
.product-price::before {
  content: 'ab ';
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}
.section-cta {
  text-align: center;
  margin-top: 44px;
}
.testimonials-section {
  padding: 70px 0 80px;
  background: var(--color-surface);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.testimonial-card {
  background: var(--color-bg);
  padding: 32px 32px 28px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-accent);
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.testimonial-header h4 {
  font-size: 1.05rem;
  margin-bottom: 2px;
}
.location {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}
.testimonial-text {
  font-style: italic;
  color: var(--color-text);
  margin-bottom: 14px;
  font-size: 0.98rem;
  line-height: 1.7;
}
.rating {
  color: var(--color-accent);
  font-size: 0.95rem;
}
.testimonial-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: 24px;
  font-style: italic;
}
.faq-section {
  padding: 70px 0 80px;
  background: var(--color-bg);
}
.faq-container {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: var(--color-surface);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.faq-item summary {
  padding: 22px 28px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  color: var(--color-primary);
}
.faq-item summary::after {
  content: '+';
  font-size: 1.6rem;
  color: var(--color-accent);
  font-weight: 300;
  transition: transform 0.3s ease;
}
.faq-item[open] summary::after {
  content: '−';
  transform: rotate(0deg);
}
.faq-item p {
  padding: 0 28px 24px;
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}
.page-hero {
  padding: 50px 0 56px;
  background: linear-gradient(145deg, var(--color-primary), var(--color-primary-light));
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero h1 {
  color: #fff;
  font-size: 2.8rem;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.15rem;
  position: relative;
  z-index: 1;
}
.about-content-section {
  padding: 70px 0 80px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.about-text h2 {
  margin-bottom: 20px;
  font-size: 2rem;
}
.about-text p {
  margin-bottom: 20px;
  color: var(--color-text-light);
  font-size: 1rem;
  line-height: 1.7;
}
.info-card {
  background: var(--color-bg);
  padding: 28px 32px;
  border-radius: 12px;
  border-left: 4px solid var(--color-accent);
  box-shadow: var(--shadow-sm);
}
.info-list {
  list-style: none;
}
.info-list li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}
.info-list strong {
  color: var(--color-primary);
}
.about-image img {
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}
.contact-section {
  padding: 70px 0 80px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.contact-info h2,
.contact-form-wrapper h2 {
  margin-bottom: 24px;
  font-size: 1.8rem;
}
.map-container {
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 24px;
  background: var(--color-surface-2);
}
.standard-form .form-group {
  margin-bottom: 22px;
}
.standard-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 0.9rem;
}
.standard-form input,
.standard-form select,
.standard-form textarea {
  width: 100%;
  max-width: 100%;
  padding: 14px 16px;
  border: 1px solid #d5d0c8;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
  background: var(--color-surface);
}
.standard-form input:focus,
.standard-form select:focus,
.standard-form textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.12);
}
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  cursor: pointer;
}
.checkbox-label input {
  width: auto;
  margin-top: 4px;
}
.cart-section {
  padding: 70px 0 80px;
}
.cart-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) {
  .cart-grid {
    grid-template-columns: 2fr 1fr;
  }
}
.cart-item {
  display: flex;
  gap: 20px;
  padding: 20px 24px;
  background: var(--color-surface);
  border-radius: 14px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.03);
  align-items: center;
}
.cart-item-img {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}
.cart-item-details {
  flex: 1;
}
.cart-item-details h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.cart-item-price {
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
}
.quantity-control {
  display: flex;
  align-items: center;
  gap: 8px;
}
.qty-btn {
  width: 34px;
  height: 34px;
  border: 1px solid #d5d0c8;
  background: var(--color-surface);
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.qty-btn:hover {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}
.qty-input {
  width: 52px;
  text-align: center;
  border: 1px solid #d5d0c8;
  border-radius: 8px;
  padding: 6px;
  font-size: 1rem;
  background: var(--color-surface);
}
.remove-btn {
  background: none;
  border: none;
  color: #b0a098;
  cursor: pointer;
  font-size: 1.2rem;
  padding: 8px;
  flex-shrink: 0;
  transition: var(--transition);
}
.remove-btn:hover {
  color: var(--color-accent-2);
}
@media (max-width: 640px) {
  .cart-item {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    grid-template-rows: auto auto;
    gap: 10px 12px;
    padding: 14px;
    align-items: start;
  }
  .cart-item-img {
    width: 72px;
    height: 72px;
    grid-row: 1 / span 2;
  }
  .cart-item-details {
    grid-column: 2;
    min-width: 0;
  }
  .cart-item-details h3 {
    font-size: 0.95rem;
  }
  .remove-btn {
    grid-column: 3;
    grid-row: 1;
    padding: 4px;
    align-self: start;
  }
  .qty-input {
    width: 44px;
  }
}
.cart-summary {
  background: var(--color-surface);
  padding: 28px 32px;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  height: fit-content;
  border: 1px solid rgba(0, 0, 0, 0.03);
}
.cart-summary h3 {
  margin-bottom: 20px;
  font-size: 1.25rem;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.95rem;
}
.summary-row.total {
  border-top: 2px solid var(--color-surface-2);
  padding-top: 16px;
  margin-top: 16px;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-primary);
}
.cart-summary .btn {
  margin-top: 18px;
}
.checkout-section {
  padding: 70px 0 80px;
}
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) {
  .checkout-grid {
    grid-template-columns: 1.5fr 1fr;
  }
}
.order-summary {
  background: var(--color-surface);
  padding: 28px 32px;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  height: fit-content;
  border: 1px solid rgba(0, 0, 0, 0.03);
}
.order-summary h3 {
  margin-bottom: 20px;
}
.summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.95rem;
}
.summary-divider {
  height: 1px;
  background: var(--color-surface-2);
  margin: 16px 0;
}
.thanks-main {
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(165deg, #f5f2ed 0%, #e8e4dd 100%);
  min-height: 60vh;
}
.thanks-container {
  text-align: center;
  max-width: 620px;
  background: var(--color-surface);
  padding: 56px 48px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(201, 168, 76, 0.10);
}
.thanks-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.thanks-logo a {
  justify-content: center;
  align-items: center;
}
.thanks-container h1 {
  font-size: 2.4rem;
  margin-bottom: 18px;
}
.thanks-message {
  font-size: 1.1rem;
  color: var(--color-text-light);
  margin-bottom: 32px;
  line-height: 1.8;
}
.site-footer {
  background: var(--color-primary);
  color: #cbd5e1;
  padding: 60px 0 0;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}
.footer-brand .logo-text {
  color: #fff;
}
.footer-disclaimer {
  margin-top: 18px;
  font-size: 0.8rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
}
.footer-links h3,
.footer-contact h3 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 18px;
  font-family: var(--font-heading);
}
.footer-links ul {
  list-style: none;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}
.footer-links a:hover {
  color: var(--color-accent);
}
.last-updated {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 16px;
}
.footer-contact p {
  margin-bottom: 6px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
}
.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-surface);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
  padding: 20px 0;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}
.cookie-banner.visible {
  transform: translateY(0);
}
.cookie-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .cookie-inner {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
  }
}
.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cart-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 8px;
  margin-left: 6px;
  background: linear-gradient(135deg, var(--color-accent), #b8922e);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 30px;
  vertical-align: middle;
  transition: var(--transition);
}
.cart-badge:empty {
  display: none;
}
.empty-cart-msg {
  text-align: center;
  padding: 64px 24px;
  background: var(--color-surface);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  color: var(--color-text-light);
  font-size: 1.1rem;
  grid-column: 1 / -1;
}
.faq-embedded {
  margin-top: 32px;
  background: var(--color-surface);
  padding: 24px 28px;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.03);
}
.faq-embedded h3 {
  font-size: 1.2rem;
  margin-bottom: 16px;
}
.faq-embedded .faq-item {
  box-shadow: none;
  border: 1px solid var(--color-surface-2);
  margin-bottom: 12px;
}
.faq-embedded .faq-item:last-child {
  margin-bottom: 0;
}
.faq-embedded .faq-item summary {
  padding: 16px 20px;
  font-size: 0.95rem;
}
.faq-embedded .faq-item p {
  padding: 0 20px 16px;
  font-size: 0.9rem;
}
.team-section {
  padding: 70px 0 80px;
  background: var(--color-bg);
}
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.team-card {
  background: var(--color-surface);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.03);
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.team-image {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--color-surface-2);
}
.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.team-card:hover .team-image img {
  transform: scale(1.05);
}
.team-info {
  padding: 24px 20px 28px;
}
.team-info h3 {
  font-size: 1.2rem;
  margin-bottom: 4px;
}
.team-role {
  display: inline-block;
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.team-info p {
  font-size: 0.92rem;
  color: var(--color-text-light);
  line-height: 1.6;
}
.stats-section {
  padding: 70px 0 80px;
  background: linear-gradient(145deg, var(--color-primary), var(--color-primary-light));
  color: #fff;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  text-align: center;
}
@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}
.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.process-section {
  padding: 70px 0 80px;
  background: var(--color-surface);
}
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.process-card {
  background: var(--color-bg);
  border-radius: 16px;
  padding: 36px 28px 40px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}
.process-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 168, 76, 0.15);
}
.process-number {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--color-accent), #b8922e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
  transition: var(--transition);
}
.process-card:hover .process-number {
  transform: scale(1.05);
  transform-origin: left center;
}
.process-content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.process-content p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.6;
}
.final-cta-section {
  padding: 70px 0 80px;
  background: linear-gradient(165deg, var(--color-primary) 0%, #162b3e 100%);
}
.final-cta-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 52px 48px;
  backdrop-filter: blur(8px);
}
@media (min-width: 768px) {
  .final-cta-inner {
    grid-template-columns: 1.2fr 1fr;
    padding: 64px 56px;
  }
}
.final-cta-content h2 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 18px;
}
.final-cta-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.7;
}
.final-cta-content .btn-outline {
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}
.final-cta-content .btn-outline:hover {
  background: #fff;
  color: var(--color-primary);
  border-color: #fff;
}
.final-cta-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.40);
}
.final-cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.payment-fields {
  margin-top: 20px;
  padding: 24px 28px;
  background: var(--color-bg);
  border-radius: 12px;
  border: 1px solid var(--color-surface-2);
  animation: fadeIn 0.35s ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.paypal-info-box {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--color-surface);
  padding: 20px 24px;
  border-radius: 10px;
  border: 1px solid var(--color-surface-2);
}
.paypal-info-box i {
  font-size: 2.4rem;
  color: #003087;
  flex-shrink: 0;
}
.paypal-info-box p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.5;
}
@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .container {
    padding: 0 16px;
  }
  .header-inner {
    padding: 10px 0;
  }
  .hero-section,
  .features-section,
  .products-section,
  .testimonials-section,
  .faq-section,
  .final-cta-section,
  .page-hero,
  .checkout-section,
  .cart-section,
  .contact-section,
  .about-section,
  .team-section {
    padding-left: 0;
    padding-right: 0;
  }
  .legal-content {
    padding: 24px 16px 32px;
  }
  .standard-form {
    padding: 12px 0;
  }
  .standard-form .btn {
    width: 100%;
  }
  h1 {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }
}
@media (max-width: 640px) {
  .header-notice,
  .notice-badge {
    word-break: break-all;
  }
  .logo a {
    flex-direction: column;
  }
  .logo a span,
  .logo-text {
    word-break: break-all;
    min-width: 0;
    flex: 1;
  }
  .logo-text {
    font-size: 1.3rem;
  }
  .footer-brand,
  .footer-links,
  .footer-contact {
    word-break: break-all;
  }
  .product-image {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .product-badge {
    position: static;
    max-width: 100%;
    align-self: flex-start;
  }
}
@media (max-width: 900px) {
  .hero-grid>*,
  .features-grid>*,
  .products-grid>*,
  .testimonial-grid>*,
  .checkout-grid>*,
  .contact-grid>*,
  .about-grid>*,
  .team-grid>*,
  .order-grid>* {
    min-width: 0;
    max-width: 100%;
  }
}

.legal-page {
  background-color: var(--color-bg);
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 24px 80px;
  color: var(--color-text);
  word-break: break-word;
}

.legal-content h1 {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  color: var(--color-primary);
  margin-bottom: 24px;
  line-height: 1.2;
  border-bottom: 2px solid var(--color-accent);
  padding-bottom: 16px;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-primary);
  margin-top: 44px;
  margin-bottom: 16px;
  line-height: 1.3;
}

.legal-content h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-primary);
  margin-top: 32px;
  margin-bottom: 12px;
  line-height: 1.3;
}

.legal-content p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--color-text);
}

.legal-content ul {
  margin: 1rem 0 1.5rem 1.8rem;
  list-style-type: disc;
}

.legal-content li {
  margin-bottom: 10px;
  line-height: 1.7;
  font-size: 1rem;
}

.legal-content strong {
  color: var(--color-primary);
  font-weight: 600;
}

.legal-content .last-updated {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--color-surface-2);
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-style: italic;
}

.legal-content .callout {
  background: var(--color-surface-2);
  padding: 20px 28px;
  border-left: 4px solid var(--color-accent);
  border-radius: 8px;
  margin: 24px 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-compact {
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.7);
  padding: 40px 0 20px;
  margin-top: auto;
  font-size: 0.9rem;
}

.footer-compact .footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-compact .footer-brand .logo-text {
  color: #fff;
  font-size: 1.3rem;
}

.footer-compact .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: flex-end;
}

.footer-compact .footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-compact .footer-links a:hover {
  color: var(--color-accent);
}

.footer-compact .footer-contact {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  padding-top: 12px;
}

.footer-compact .footer-bottom {
  text-align: center;
  padding-top: 16px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 768px) {
  .footer-compact .footer-inner {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
  }
  .footer-compact .footer-links {
    justify-content: center;
  }
  .footer-compact .footer-contact {
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }
  .legal-content {
    padding: 32px 16px 60px;
  }
  .legal-content h1 {
    font-size: 2rem;
  }
  .legal-content h2 {
    font-size: 1.5rem;
  }
}
.product-card {
  display: flex;
  flex-direction: column;
  height: 100%; 
}

.product-info {
  display: flex;
  flex-direction: column;
  flex: 1; 
  padding: 20px;
}

.product-desc {
  flex: 1; 
  margin-bottom: 12px;
}

.product-footer {
  margin-top: auto; 
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}