@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;500;700;900&display=swap');

:root {
  --main-color: #0f766e;
  --accent-color: #ffcc00;
  --accent-hover: #e6b800;
  --success-color: #16a34a;
  --text-dark: #1e293b;
  --text-muted: #475569;
  --light-bg: #f8fafc;
}

body {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
  color: var(--text-dark);
  background-color: #ffffff;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.fw-black {
  font-weight: 900 !important;
}

.text-primary { color: var(--main-color) !important; }
.bg-primary   { background-color: var(--main-color) !important; }
.text-success { color: var(--success-color) !important; }
.bg-success   { background-color: var(--success-color) !important; }

.header {
  transition: all 0.3s ease-in-out;
  border-bottom: 1px solid #e2e8f0;
}

.nav-links a {
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--main-color) !important;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--main-color);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 320px;
  height: 100vh;
  background-color: var(--main-color);
  padding: 30px 20px;
  transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 1050;
  overflow-y: auto;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
}

.mobile-sidebar.open {
  right: 0;
}

.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1040;
}

.sidebar-overlay.show {
  opacity: 1;
  visibility: visible;
}

.close-btn {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 40px;
  position: absolute;
  top: 15px;
  right: 20px;
  cursor: pointer;
  line-height: 1;
  transition: transform 0.3s ease;
}

.close-btn:hover {
  transform: rotate(90deg);
}

.sidebar-nav a {
  transition: padding-left 0.3s ease, color 0.3s ease;
}

.sidebar-nav a:hover {
  padding-left: 10px;
  color: var(--accent-color) !important;
}

.btn-white {
  background-color: #ffffff !important;
  color: #1e293b !important;
  border-color: #cbd5e1 !important;
  transition: all 0.3s ease-in-out;
}

.btn-white:hover {
  background-color: #f8fafc !important;
  border-color: #94a3b8 !important;
  transform: translateY(-2px);
}

.hover-shadow:hover {
  box-shadow: 0 10px 25px -5px rgba(15, 118, 110, 0.1) !important;
}

.btn-warning {
  background-color: var(--accent-color) !important;
  border-color: var(--accent-color) !important;
  color: #000000 !important;
  transition: all 0.3s ease;
}

.btn-warning:hover {
  background-color: var(--accent-hover) !important;
  border-color: var(--accent-hover) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 204, 0, 0.4) !important;
}

.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(15, 118, 110, 0.1) !important;
}

.hover-primary {
  transition: color 0.2s ease;
}

.hover-primary:hover {
  color: var(--main-color) !important;
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 204, 0, 0.7); }
  50% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(255, 204, 0, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 204, 0, 0); }
}

@keyframes pulse-dot-anim {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(22, 163, 74, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}

@keyframes softProductFloat {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

.pulse-dot { animation: pulse-dot-anim 2s infinite !important; }
.vertical-shake-animation { animation: softProductFloat 4s ease-in-out infinite !important; }
.animation-pulse { animation: pulse 2.5s infinite !important; }

.main-pricing-title {
  color: #222222;
  font-size: 2.2rem;
  line-height: 1.3;
}

.main-pricing-title .highlight-text {
  position: relative;
  color: #1e293b;
  display: inline-block;
}

.main-pricing-title .highlight-text::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 3px;
  background-color: #0f766e;
  border-radius: 2px;
}

.custom-prod-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 30px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.best-value-card {
  background-color: #fffdf4 !important;
  border: 2px solid #0f766e !important;
  box-shadow: 0 10px 25px -5px rgba(15, 118, 110, 0.15);
}

.card-main-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 2px;
}

.card-sub-title {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 500;
}

.card-img-box {
  margin: 25px auto;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-img-box img {
  max-height: 210px;
  object-fit: contain;
}

.pricing-row {
  gap: 8px;
  margin-bottom: 5px;
}

.price-tag {
  font-size: 3.5rem;
  font-weight: 900;
  color: #111111;
  line-height: 1;
}

.per-bottle-text {
  font-size: 0.85rem;
  line-height: 1.1;
  color: #475569;
  font-weight: 600;
  text-align: left;
}

.bonus-tag-text {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e293b;
  margin-top: 5px;
  margin-bottom: 15px;
}

.btn-add-to-cart {
  background-color: #ffd200 !important;
  color: #000000 !important;
  font-size: 1.25rem;
  font-weight: 800;
  padding: 12px 30px;
  border-radius: 50px !important;
  width: 100%;
  border: none;
  box-shadow: 0 4px 12px rgba(255, 210, 0, 0.2);
  transition: all 0.2s ease;
}

.btn-add-to-cart:hover {
  background-color: #e6bc00 !important;
  transform: scale(1.02);
}

.guarantee-text {
  font-size: 0.85rem;
  color: #475569;
  margin-top: 12px;
  margin-bottom: 12px;
  font-weight: 500;
}

.cards-icon-box { margin-bottom: 15px; }
.cards-icon-box img { max-width: 180px; opacity: 0.9; }
.total-price-text { font-size: 1.1rem; font-weight: 700; color: #111111; margin-bottom: 2px; }
.shipping-detail { font-size: 0.9rem; font-weight: 700; color: #475569; }
.shipping-detail.text-success { color: #16a34a !important; }

.customer-trust-bar p { color: #334155; }
.trust-links a { color: #475569 !important; font-size: 0.9rem; }

.custom-guarantee-section {
  background-color: #eff7f6 !important;
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.guarantee-sketch-box {
  background: transparent;
  position: relative;
  padding: 20px;
  margin: 0 auto;
  max-width: 1000px;
  z-index: 1;
  border: 3px solid #0f766e;
  border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
}

.guarantee-sketch-box::before {
  content: '';
  position: absolute;
  top: -6px;
  left: -4px;
  right: -5px;
  bottom: -6px;
  border: 2px solid #0f766e;
  pointer-events: none;
  z-index: -1;
  border-radius: 240px 20px 250px 10px / 20px 240px 10px 250px;
  opacity: 0.85;
}

.guarantee-main-title {
  font-size: 2.15rem !important;
  font-weight: 800 !important;
  color: #222222 !important;
  line-height: 1.25 !important;
  letter-spacing: -0.5px;
  background: none !important;
  padding: 0 !important;
}

.guarantee-description-text {
  font-size: 0.95rem !important;
  line-height: 1.6 !important;
  color: #333333 !important;
  font-weight: 400;
  margin-top: 15px;
  text-align: justify;
}

.guarantee-badge-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.guarantee-round-badge {
  max-width: 220px;
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.guarantee-sketch-box:hover .guarantee-round-badge {
  transform: rotate(5deg) scale(1.03);
}

@media (max-width: 991px) {
  .product-card.best-value {
    transform: scale(1) !important;
    border-width: 3px !important;
  }
  .product-card.best-value:hover {
    transform: translateY(-10px) !important;
  }
  .display-5 { font-size: 2.5rem; }
  .display-6 { font-size: 2rem; }
}

@media (max-width: 767px) {
  .hero-section, .guarantee-block h2 { text-align: center !important; }
  .hero-section ul li { text-align: left; }
  .product-image-new { height: 200px !important; }
  .guarantee-block p { text-align: justify; }
  .guarantee-sketch-box {
    border-radius: 40px 15px 35px 15px / 15px 35px 15px 40px;
    padding: 10px;
  }
  .guarantee-sketch-box::before {
    border-radius: 35px 20px 40px 12px / 20px 40px 12px 35px;
  }
  .guarantee-main-title { font-size: 1.7rem !important; }
  .guarantee-description-text { font-size: 0.9rem !important; text-align: normal !important; }
  .guarantee-round-badge { max-width: 160px; }
}

@media (max-width: 576px) {
  .main-pricing-title, .hero-section h2 { font-size: 1.85rem !important; }
  .hero-section ul li { font-size: 0.95rem !important; }
  .btn-add-to-cart, .hero-section .btn-lg { font-size: 1.1rem !important; padding: 12px 20px !important; }
}
