@font-face {
  font-family: "Comfortaa";
  src: url(../fonts/Comfortaa-VariableFont_wght.ttf);
  font-display: swap;
}
:root {
  --accent: #eb3e32;
  --accent-light: #ff6b5e;
  --accent-dark: #c42e24;
  --gray-bg: #f8f9fa;
  --heading-font: 'Comfortaa', 'Segoe UI', Roboto, sans-serif;
}

body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  padding-top: 90px;
  background-color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6,
.heading-font,
.navbar-brand,
.accordion-button,
.fw-heading {
  font-family: var(--heading-font);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.display-5,
.display-6 {
  font-family: var(--heading-font);
}

.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03), 0 1px 2px rgba(0, 0, 0, 0.05);
  z-index: 1030;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.header-top-note {
  background-color: #fef3f2;
  color: #5e2e2a;
  font-size: 0.75rem;
  padding: 0.2rem 0;
  border-bottom: 1px dashed #eb3e3240;
}

.accent-bg {
  background-color: var(--accent);
}

.accent-text {
  color: var(--accent);
}

.btn-accent {
  background-color: var(--accent);
  border-color: var(--accent);
  color: white;
  font-weight: 500;
  padding: 0.6rem 1.8rem;
  border-radius: 40px;
  transition: 0.2s;
}

.btn-accent:hover,
.btn-accent:focus {
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
  color: white;
}

.btn-outline-accent {
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 40px;
  padding: 0.4rem 1.5rem;
  font-weight: 500;
}

.btn-outline-accent:hover {
  background-color: var(--accent);
  color: white;
}

.carousel-thumb {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.15s;
}

.carousel-thumb.active-thumb {
  border-color: var(--accent);
  box-shadow: 0 4px 8px rgba(235, 62, 50, 0.2);
}

.carousel-thumb:hover {
  border-color: var(--accent-light);
}

.main-carousel-img {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: contain;
  background: #fafafa;
  border-radius: 24px;
}

.feature-icon {
  font-size: 2rem;
  color: var(--accent);
}

.accordion-button:not(.collapsed) {
  background-color: #fff5f5;
  color: var(--accent-dark);
  box-shadow: none;
  border-bottom: 1px solid #ffe6e4;
}

.accordion-button:focus {
  border-color: var(--accent-light);
  box-shadow: 0 0 0 0.2rem rgba(235, 62, 50, 0.15);
}

.accordion-item {
  border-left: none;
  border-right: none;
  border-bottom: 1px solid #eee;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: white;
  text-decoration: underline;
}

.bg-dark-footer {
  background-color: #1a1e22;
}

.price-tag {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-dark);
  font-family: var(--heading-font);
}

.sidebar-card {
  background: var(--gray-bg);
  border-radius: 20px;
}

.quantity-input {
  width: 120px;
  border: 1px solid #dee2e6;
  border-radius: 30px;
  padding: 0.4rem 1rem;
  font-weight: 600;
  outline: none;
  text-align: center;
}

.quantity-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #dee2e6;
  background: white;
  font-size: 1.3rem;
  line-height: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s;
  flex-shrink: 0;
}

.quantity-btn:hover {
  background-color: var(--accent);
  color: white;
  border-color: var(--accent);
}

.quantity-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

/* cookie-banner.css */
:root {
  --accent: #eb3e32;
  --accent-dark: #c42e24;
  --heading-font: 'Comfortaa', 'Segoe UI', Roboto, sans-serif;
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 400px;
  background: #ffffff;
  box-shadow: 0 20px 35px -8px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.04);
  border-radius: 20px;
  padding: 20px 22px;
  z-index: 9999;
  border: 1px solid #f0f0f0;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.3s ease, opacity 0.25s;
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner.hidden {
  transform: translateY(30px);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.cookie-content {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.cookie-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: #fef3f2;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #eb3e32;
}

.cookie-text {
  flex: 1;
}

.cookie-text p {
  margin: 0 0 8px 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #2c2c30;
  font-weight: 450;
}

.cookie-links {
  display: flex;
  gap: 18px;
  font-size: 0.8rem;
}

.cookie-links a {
  color: #8e8e93;
  text-decoration: none;
  border-bottom: 1px solid #e5e5ea;
  transition: color 0.15s, border-color 0.15s;
}

.cookie-links a:hover {
  color: #eb3e32;
  border-bottom-color: #eb3e32;
}

.cookie-actions {
  display: flex;
  justify-content: flex-end;
}

.cookie-btn {
  border: none;
  background: none;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--heading-font);
}

.cookie-btn.accept {
  background: #eb3e32;
  color: white;
  box-shadow: 0 4px 10px rgba(235, 62, 50, 0.2);
}

.cookie-btn.accept:hover {
  background: #c42e24;
  transform: scale(1.02);
}

@media (max-width: 480px) {
  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 18px 18px;
    max-width: none;
  }
}
.thanks {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  padding: 150px 0;
}
.thanks .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
}
.thanks img {
  width: 100px;
  height: auto;
  margin-bottom: 10px;
}
.thanks p {
  text-align: center;
  font-size: 18px;
}
.thanks p.thanks-text {
  font-weight: 700;
  color: var(--accent);
}
.docs {
  word-break: break-word;
  padding: 50px 0;
}
.docs h1 {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}
.docs h2 {
  margin-bottom: 10px;
  font-size: 32px;
}
.docs h3 {
  margin-bottom: 10px;
  font-size: 26px;
}
.docs li,
.docs p {
  color: inherit;
  line-height: 1.929;
}
.docs a {
  text-decoration: none !important;
  color: var(--accent);
}
.docs a:hover {
  color: var(--accent-dark);
}