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

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #666;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #333;
}

.header-actions {
  display: flex;
  gap: 1rem;
}

.search-btn,
.cart-btn {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.5rem;
  color: black;

}

/* Shopping Cart Modal */
.cart-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.cart-modal.active {
  visibility: visible;
  opacity: 1;
}

.cart-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.cart-sidebar {
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 100%;
  background: white;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.cart-modal.active .cart-sidebar {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid #eee;
}

.cart-header h2 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c2c2c;
}

.cart-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
  padding: 0.5rem;
}

.cart-content {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-image {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 8px;
  background: #f8f9fa;
  padding: 0.5rem;
}

.cart-item-info {
  flex: 1;
}

.cart-item-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: #2c2c2c;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.cart-item-price {
  font-size: 1rem;
  font-weight: 600;
  color: #2c2c2c;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.cart-quantity-btn {
  width: 24px;
  height: 24px;
  border: 1px solid #ddd;
  background: white;
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.cart-quantity-display {
  font-size: 0.9rem;
  font-weight: 500;
  min-width: 20px;
  text-align: center;
}

.remove-item-btn {
  background: none;
  border: none;
  color: #999;
  font-size: 0.8rem;
  cursor: pointer;
  text-decoration: underline;
  margin-left: 0.5rem;
}

.cart-recommendations {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}

.cart-recommendations h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #666;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.recommendation-item {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.recommendation-image {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 6px;
  background: #f8f9fa;
  padding: 0.25rem;
}

.recommendation-info h4 {
  font-size: 0.8rem;
  font-weight: 500;
  color: #2c2c2c;
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.recommendation-price {
  margin-bottom: 0.5rem;
}

.rec-current-price {
  font-size: 0.9rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-right: 0.5rem;
}

.rec-original-price {
  font-size: 0.8rem;
  color: #999;
  text-decoration: line-through;
}

.add-recommendation-btn {
  background: none;
  border: 1px solid #2c2c2c;
  color: #2c2c2c;
  font-size: 0.7rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  text-decoration: underline;
}

.cart-footer {
  padding: 1.5rem;
  border-top: 1px solid #eee;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.view-cart-btn {
  background: white;
  color: #2c2c2c;
  border: 2px solid #2c2c2c;
  padding: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s;
}

.view-cart-btn:hover {
  background: #2c2c2c;
  color: white;
}

.checkout-btn {
  background: #2c2c2c;
  color: white;
  border: none;
  padding: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.checkout-btn:hover {
  background: #1a1a1a;
}

/* Hero Section */
.hero {
  margin-top: 80px;
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-visual {
  position: relative;
  height: 500px;
}

.yellow-shape {
  position: absolute;
  top: 50px;
  left: 50px;
  width: 300px;
  height: 400px;
  background: #ffd700;
  clip-path: polygon(0 0, 80% 0, 100% 20%, 100% 100%, 20% 100%, 0 80%);
  z-index: 1;
}

.products-showcase {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-bottles-image {
  max-width: 100%;
  max-height: 600px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.hero-info h1 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #2c2c2c;
  line-height: 1.2;
}

.hero-description {
  font-size: 1rem;
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.pricing {
  margin-bottom: 1.5rem;
}

.current-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: #dc3545;
  margin-right: 1rem;
}

.original-price {
  font-size: 1.2rem;
  color: #999;
  text-decoration: line-through;
}

.product-details {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.product-details strong {
  color: #2c2c2c;
  font-weight: 600;
}

.quantity-selector {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  gap: 0;
}

.quantity-btn {
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  background: white;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.quantity-btn:hover {
  background: #f8f9fa;
}

.quantity-btn.minus {
  border-radius: 5px 0 0 5px;
}

.quantity-btn.plus {
  border-radius: 0 5px 5px 0;
}

#quantity {
  width: 60px;
  height: 40px;
  border: 1px solid #ddd;
  border-left: none;
  border-right: none;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  background: white;
}

.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.add-to-cart-btn {
  background: white;
  color: #2c2c2c;
  border: 2px solid #2c2c2c;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s;
}

.add-to-cart-btn:hover {
  background: #2c2c2c;
  color: white;
}

.buy-now-btn {
  background: #2c2c2c;
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.buy-now-btn:hover {
  background: #1a1a1a;
}

.delivery-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: #666;
}

.delivery-icon {
  font-size: 1.2rem;
}

.share-section {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: #666;
}

.share-icons {
  display: flex;
  gap: 0.5rem;
}

.share-btn {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.25rem;
}

.hero-features,
.feature,
.cta-button {
  display: none;
}

/* Reviews Section */
.reviews {
  padding: 80px 0;
  background: #f8f9fa;
}

.reviews h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 60px;
  letter-spacing: -0.02em;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.review-item {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.reviewer-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 1.2rem;
}

.reviewer-details h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
}

.reviewer-age {
  font-size: 0.9rem;
  color: #666;
}

.review-rating .stars {
  color: #ffc107;
  font-size: 1.2rem;
}

.review-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 15px;
  font-style: italic;
}

.review-date {
  font-size: 0.85rem;
  color: #888;
}

/* Shopping Cart Modal */
.cart-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.cart-modal.active {
  visibility: visible;
  opacity: 1;
}

.cart-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.cart-sidebar {
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 100%;
  background: white;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.cart-modal.active .cart-sidebar {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid #eee;
}

.cart-header h2 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c2c2c;
}

.cart-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
  padding: 0.5rem;
}

.cart-content {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-image {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 8px;
  background: #f8f9fa;
  padding: 0.5rem;
}

.cart-item-info {
  flex: 1;
}

.cart-item-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: #2c2c2c;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.cart-item-price {
  font-size: 1rem;
  font-weight: 600;
  color: #2c2c2c;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.cart-quantity-btn {
  width: 24px;
  height: 24px;
  border: 1px solid #ddd;
  background: white;
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.cart-quantity-display {
  font-size: 0.9rem;
  font-weight: 500;
  min-width: 20px;
  text-align: center;
}

.remove-item-btn {
  background: none;
  border: none;
  color: #999;
  font-size: 0.8rem;
  cursor: pointer;
  text-decoration: underline;
  margin-left: 0.5rem;
}

.cart-recommendations {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}

.cart-recommendations h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #666;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.recommendation-item {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.recommendation-image {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 6px;
  background: #f8f9fa;
  padding: 0.25rem;
}

.recommendation-info h4 {
  font-size: 0.8rem;
  font-weight: 500;
  color: #2c2c2c;
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.recommendation-price {
  margin-bottom: 0.5rem;
}

.rec-current-price {
  font-size: 0.9rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-right: 0.5rem;
}

.rec-original-price {
  font-size: 0.8rem;
  color: #999;
  text-decoration: line-through;
}

.add-recommendation-btn {
  background: none;
  border: 1px solid #2c2c2c;
  color: #2c2c2c;
  font-size: 0.7rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  text-decoration: underline;
}

.cart-footer {
  padding: 1.5rem;
  border-top: 1px solid #eee;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.view-cart-btn {
  background: white;
  color: #2c2c2c;
  border: 2px solid #2c2c2c;
  padding: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s;
}

.view-cart-btn:hover {
  background: #2c2c2c;
  color: white;
}

.checkout-btn {
  background: #2c2c2c;
  color: white;
  border: none;
  padding: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.checkout-btn:hover {
  background: #1a1a1a;
}

/* Hero Section */
.hero {
  margin-top: 80px;
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-visual {
  position: relative;
  height: 500px;
}

.yellow-shape {
  position: absolute;
  top: 50px;
  left: 50px;
  width: 300px;
  height: 400px;
  background: #ffd700;
  clip-path: polygon(0 0, 80% 0, 100% 20%, 100% 100%, 20% 100%, 0 80%);
  z-index: 1;
}

.products-showcase {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-bottles-image {
  max-width: 100%;
  max-height: 600px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.hero-info h1 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #2c2c2c;
  line-height: 1.2;
}

.hero-description {
  font-size: 1rem;
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.pricing {
  margin-bottom: 1.5rem;
}

.current-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: #dc3545;
  margin-right: 1rem;
}

.original-price {
  font-size: 1.2rem;
  color: #999;
  text-decoration: line-through;
}

.product-details {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.product-details strong {
  color: #2c2c2c;
  font-weight: 600;
}

.quantity-selector {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  gap: 0;
}

.quantity-btn {
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  background: white;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.quantity-btn:hover {
  background: #f8f9fa;
}

.quantity-btn.minus {
  border-radius: 5px 0 0 5px;
}

.quantity-btn.plus {
  border-radius: 0 5px 5px 0;
}

#quantity {
  width: 60px;
  height: 40px;
  border: 1px solid #ddd;
  border-left: none;
  border-right: none;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  background: white;
}

.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.add-to-cart-btn {
  background: white;
  color: #2c2c2c;
  border: 2px solid #2c2c2c;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s;
}

.add-to-cart-btn:hover {
  background: #2c2c2c;
  color: white;
}

.buy-now-btn {
  background: #2c2c2c;
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.buy-now-btn:hover {
  background: #1a1a1a;
}

.delivery-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: #666;
}

.delivery-icon {
  font-size: 1.2rem;
}

.share-section {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: #666;
}

.share-icons {
  display: flex;
  gap: 0.5rem;
}

.share-btn {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.25rem;
}

.hero-features,
.feature,
.cta-button {
  display: none;
}

/* Recommended Section */
.recommended {
  padding: 4rem 0;
  background: white;
}

.recommended h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 3rem;
  color: #2c2c2c;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.product-card {
  text-align: center;
  padding: 2rem;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  background: #f8f9fa;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-placeholder {
  font-weight: 700;
  color: #666;
}

.product-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #2c2c2c;
}

.product-card p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.product-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 1rem;
}

.product-add-btn {
  background: white;
  color: #2c2c2c;
  border: 2px solid #2c2c2c;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: auto;
}

.product-add-btn:hover {
  background: #2c2c2c;
  color: white;
}

.product-add-btn:active {
  transform: scale(0.98);
}

/* Combination Section */
.combination {
  padding: 4rem 0;
  background: #f8f9fa;
  text-align: center;
}

.combination h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #2c2c2c;
}

.combination-description {
  font-size: 1.1rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Dark Section */
.dark-section {
  background: #2c2c2c;
  padding: 4rem 0;
  color: white;
}

.dark-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.product-showcase {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ginkgo-product-image {
  max-width: 100%;
  max-height: 350px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.main-product-bottle {
  display: none;
}

.botanical-elements {
  display: none;
}

.dark-info h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #ffd700;
}

.dark-info p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #ccc;
}

/* How to Take Section */
.how-to-take {
  padding: 4rem 0;
  background: white;
}

.how-to-take h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 3rem;
  color: #2c2c2c;
}

.instructions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.instruction-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.instruction-icon {
  width: 80px;
  height: 80px;
  background: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pill-icon,
.prescription-icon {
  font-size: 2rem;
}

.instruction-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #2c2c2c;
}

.instruction-content p {
  color: #666;
  line-height: 1.7;
}

/* FAQ Section */
.faq {
  padding: 4rem 0;
  background: #f8f9fa;
}

.faq h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 3rem;
  color: #2c2c2c;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 500;
  color: #2c2c2c;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s;
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s, padding 0.3s;
}

.faq-answer.active {
  max-height: 200px;
  padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
  color: #666;
  line-height: 1.7;
}

/* Footer */
.footer {
  background: #2c2c2c;
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffd700;
}

.footer-section p {
  color: #ccc;
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #ccc;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #ffd700;
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 1rem;
  text-align: center;
  color: #999;
}

/* Checkout Page Styles */
.checkout-main {
  margin-top: 80px;
  min-height: calc(100vh - 80px);
  background: #f8f9fa;
}

.checkout-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 20px;
}

.checkout-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: start;
}

/* Checkout Form */
.checkout-form {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}



.form-section h2 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 1.5rem;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-input,
.form-select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  background: white;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  font-family: inherit;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: #2c2c2c;
  box-shadow: 0 0 0 3px rgba(44, 44, 44, 0.1);
}

.form-input::placeholder {
  color: #999;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #555;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #ddd;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: #2c2c2c;
  border-color: #2c2c2c;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: "✓";
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
}

.privacy-link {
  color: #2c2c2c;
  text-decoration: none;
}

.privacy-link:hover {
  text-decoration: underline;
}

.submit-btn {
  background: #2c2c2c;
  color: white;
  border: none;
  padding: 18px 30px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(44, 44, 44, 0.3);
}

.submit-btn:active {
  transform: translateY(0);
}


.payment-description {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.payment-option:hover {
    border-color: #ddd;
}

.payment-option.selected {
    border-color: #007bff;
    background: #e6f0ff;
}

.payment-option input {
    accent-color: #007bff;
    cursor: pointer;
}

.payment-details {
    font-size: 14px;
    color: #666;
    padding-left: 40px; /* чтобы текст выровнялся с радиокнопкой */
    margin-top: -10px;
}

@media (max-width: 480px) {
    .form-section {
        padding: 40px 15px;
    }
    .payment-option {
        padding: 12px 15px;
    }
    .payment-details {
        padding-left: 35px;
        font-size: 13px;
    }
}


.complete-order-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 300px;
    padding: 15px 25px;
    background-color: #007bff;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin: 20px auto 10px;
    text-align: center;
}

.complete-order-btn:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.footer-text {
    font-size: 14px;
    color: #777;
    text-align: center;
    margin-top: 5px;
}

/* Order Summary */
.order-summary {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  height: fit-content;
  position: sticky;
  top: 100px;
}

.order-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
}

.item-image {
  position: relative;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 6px;
  background: #f8f9fa;
  padding: 0.25rem;
}

.item-quantity {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #666;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
}

.item-details h3 {
  font-size: 0.9rem;
  font-weight: 500;
  color: #2c2c2c;
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.item-price {
  font-size: 0.9rem;
  font-weight: 600;
  color: #2c2c2c;
}

.promo-section {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
}

.promo-input-group {
  display: flex;
  gap: 0;
}

.promo-input {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-right: none;
  border-radius: 6px 0 0 6px;
  font-size: 0.9rem;
}

.promo-apply-btn {
  background: #f8f9fa;
  border: 1px solid #ddd;
  border-left: none;
  border-radius: 0 6px 6px 0;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  transition: background 0.3s;
}

.promo-apply-btn:hover {
  background: #e9ecef;
}

.order-totals {
  margin-bottom: 1rem;
}

.total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.total-row span:first-child {
  color: #666;
}

.total-row span:last-child {
  color: #2c2c2c;
  font-weight: 500;
}

.final-total {
  padding-top: 1rem;
  border-top: 1px solid #eee;
  font-size: 1rem;
  font-weight: 600;
}

.final-total span:first-child {
  color: #2c2c2c;
}

.total-amount {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.currency {
  font-size: 0.8rem;
  color: #666;
  font-weight: 400;
}

.amount {
  font-size: 1.1rem;
  color: #2c2c2c;
  font-weight: 600;
}

.tax-info {
  font-size: 0.8rem;
  color: #999;
  margin-top: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-info h1 {
    font-size: 2rem;
  }

  .dark-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .instructions-grid {
    grid-template-columns: 1fr;
  }

  .instruction-item {
    flex-direction: column;
    text-align: center;
  }

  .nav {
    display: none;
  }

  .cart-sidebar {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-info h1 {
    font-size: 1.5rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* Responsive Design for Checkout */
@media (max-width: 768px) {
  .checkout-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .order-summary {
    order: -1;
    position: static;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
  .reviews {
    padding: 60px 0;
  }

  .reviews h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .review-item {
    padding: 25px;
  }

  .contact-form {
    padding: 60px 0;
  }

  .form-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-info h2 {
    font-size: 2rem;
  }

  .form-container {
    padding: 30px 20px;
  }

  .contact-benefits {
    gap: 15px;
  }

  .benefit-item {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .reviews h2 {
    font-size: 1.8rem;
  }

  .form-info h2 {
    font-size: 1.8rem;
  }

  .reviewer-info {
    gap: 12px;
  }

  .reviewer-avatar {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .form-container {
    padding: 25px 15px;
  }
}
