@font-face {
  font-family: "Space Grotesk";
  src: url(../fonts/SpaceGrotesk-VariableFont_wght.ttf);
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url(../fonts/CormorantGaramond-VariableFont_wght.ttf);
  font-display: swap;
}

:root {
  --primary-color: #2d4a5e;
  --secondary-color: #c9a961;
  --accent-color: #8b6f47;
  --text-dark: #1a2332;
  --text-light: #5a6c7d;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e0e6ed;
  --success-color: #28a745;
  --gradient-primary: linear-gradient(135deg, #2d4a5e 0%, #1a2332 100%);
  --gradient-accent: linear-gradient(135deg, #c9a961 0%, #8b6f47 100%);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-dark);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin: 2rem 0 1rem;
}

h3 {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  margin: 1.5rem 0 0.8rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--secondary-color);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

header {
  background: var(--gradient-primary);
  color: white;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: white;
  font-weight: 700;
  font-size: 1.5rem;
}

.logo img {
    padding: 5px;
  border-radius: 50%;
  border: 2px solid var(--secondary-color);
}

.header-notice {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  opacity: 0.9;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(10px);
}

main {
  flex: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  width: 100%;
}

.blog-article {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.article-header {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--border-color);
}

.article-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.category-badge {
  background: var(--gradient-accent);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.date {
  color: var(--text-light);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--secondary-color);
  box-shadow: var(--shadow-sm);
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.author-details {
  display: flex;
  flex-direction: column;
}

.author-details strong {
  color: var(--text-dark);
  font-size: 1.1rem;
}

.author-details span {
  color: var(--text-light);
  font-size: 0.9rem;
}

.article-hero-image {
  margin: 0 0 2.5rem 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.article-hero-image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.article-hero-image .image-caption {
  background: var(--gradient-primary);
  color: white;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
}

.intro-box {
  background: linear-gradient(135deg, rgba(45, 74, 94, 0.05) 0%, rgba(201, 169, 97, 0.05) 100%);
  border-left: 4px solid var(--secondary-color);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin: 2rem 0;
  position: relative;
}

.intro-box i {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: var(--secondary-color);
  font-size: 1.5rem;
  opacity: 0.3;
}

.intro-box p {
  margin: 0;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-dark);
}

.stat-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.stat-item {
  background: var(--gradient-primary);
  color: white;
  padding: 2rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  opacity: 0.9;
}

.highlight-box {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
  border: 2px solid var(--secondary-color);
}

.highlight-box i {
  color: var(--secondary-color);
  font-size: 2rem;
  flex-shrink: 0;
}

.highlight-box strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.feature-list {
  list-style: none;
  margin: 2rem 0;
}

.feature-list li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.feature-list li:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-sm);
}

.feature-list i {
  color: var(--success-color);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.feature-list strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--text-dark);
}

.feature-list span {
  color: var(--text-light);
  font-size: 0.95rem;
}

.image-container {
  margin: 2.5rem 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.image-container img {
  width: 100%;
  height: auto;
  display: block;
}

.image-caption {
  background: var(--gradient-primary);
  color: white;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2.5rem 0;
}

.feature-card {
  background: var(--bg-white);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary-color);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
}

.feature-card h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.benefits-list {
  margin: 2rem 0;
}

.benefit-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(45, 74, 94, 0.03) 0%, rgba(201, 169, 97, 0.03) 100%);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--secondary-color);
}

.benefit-item i {
  color: var(--secondary-color);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.benefit-item strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-size: 1.1rem;
}

.benefit-item p {
  margin: 0;
  color: var(--text-light);
}

.cta-section {
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  padding: 3rem;
  margin: 3rem 0;
  text-align: center;
  color: white;
  box-shadow: var(--shadow-lg);
}

.cta-content h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--gradient-accent);
  color: white;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  color: white;
}

.cta-button.secondary {
  background: var(--bg-white);
  color: var(--primary-color);
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.trust-badges span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  opacity: 0.9;
}

.conditions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.condition-item {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  text-align: center;
  transition: all 0.3s ease;
}

.condition-item:hover {
  background: var(--gradient-accent);
  color: white;
  transform: translateY(-3px);
}

.condition-item i {
  font-size: 2rem;
  color: var(--secondary-color);
}

.condition-item:hover i {
  color: white;
}

.testimonial-box {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 2.5rem 0;
  border: 2px solid var(--secondary-color);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.doctor-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--secondary-color);
  box-shadow: var(--shadow-sm);
}

.doctor-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-header strong {
  display: block;
  color: var(--text-dark);
  font-size: 1.2rem;
}

.testimonial-header span {
  color: var(--text-light);
  font-size: 0.9rem;
}

.testimonial-box p {
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.8;
}

.comparison-table {
  margin: 2.5rem 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.table-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--gradient-primary);
  color: white;
  padding: 1.5rem;
  font-weight: 600;
  font-size: 1.1rem;
}

.table-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-white);
}

.table-row:nth-child(even) {
  background: var(--bg-light);
}

.table-row div {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.table-row i {
  font-size: 1.2rem;
}

.table-row .fa-check {
  color: var(--success-color);
}

.table-row .fa-times {
  color: #dc3545;
}

.final-cta {
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.1) 0%, rgba(45, 74, 94, 0.1) 100%);
  border-radius: var(--radius-lg);
  padding: 3rem;
  margin: 3rem 0;
  text-align: center;
}

.final-cta h2 {
  margin-bottom: 1rem;
}

.final-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.comments-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid var(--border-color);
}

.comments-section h2 {
  margin-bottom: 2rem;
}

.comment {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--primary-color);
}

.comment.reply {
  margin-left: 2rem;
  border-left-color: var(--secondary-color);
}

.comment-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.comment-avatar {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  text-transform: uppercase;
}

.comment-info {
  flex: 1;
}

.comment-info strong {
  display: block;
  color: var(--text-dark);
}

.comment-time {
  color: var(--text-light);
  font-size: 0.85rem;
}

.comment p {
  margin-bottom: 1rem;
}

.comment-actions {
  display: flex;
  gap: 1rem;
}

.comment-actions button {
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.comment-actions button:hover {
  color: var(--primary-color);
}

.comments-cta {
  display: block;
  text-align: center;
  background: var(--gradient-accent);
  color: white;
  padding: 1.2rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  margin-top: 2rem;
  transition: all 0.3s ease;
}

.comments-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: white;
}

.product-page {
  padding: 0;
  max-width: 100%;
}

.product-page > section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.product-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  margin-bottom: 2rem;
}

.product-gallery {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.main-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 1rem;
  aspect-ratio: 1/1;
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.discount-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gradient-accent);
  color: white;
  padding: 1rem;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.discount-badge span {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.discount-badge small {
  font-size: 0.8rem;
  font-weight: 600;
}

.thumbnail-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.thumbnail {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.3s ease;
  aspect-ratio: 1/1;
}

.thumbnail:hover,
.thumbnail.active {
  border-color: var(--secondary-color);
  transform: scale(1.05);
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-badges {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.badge {
  background: var(--bg-light);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.badge i {
  color: var(--secondary-color);
}

.rating {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.stars {
  display: flex;
  gap: 0.2rem;
  color: var(--secondary-color);
  font-size: 1.2rem;
}

.rating-text {
  color: var(--text-light);
  font-size: 0.9rem;
}

.price-section {
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.1) 0%, rgba(45, 74, 94, 0.1) 100%);
  padding: 2rem;
  border-radius: var(--radius-lg);
  margin: 2rem 0;
  text-align: center;
}

.old-price {
  text-decoration: line-through;
  color: var(--text-light);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.current-price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.savings {
  color: var(--success-color);
  font-weight: 600;
  font-size: 1.1rem;
}

.summary-text {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.product-description {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
}

.product-description p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.tech-grid-section {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
}

.comparison-section {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
}

.testimonials-section {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 2rem;
  border-left: 4px solid var(--secondary-color);
}

.testimonial-card .stars {
  margin-bottom: 1rem;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-card strong {
  color: var(--primary-color);
}

.order-form-section {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  margin-bottom: 2rem;
}

.order-form {
  margin-top: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.payment-section {
  margin: 2rem 0;
}

.payment-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}

.payment-option {
  cursor: pointer;
}

.payment-option input {
  display: none;
}

.payment-card {
  background: var(--bg-light);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.payment-option input:checked + .payment-card {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.1) 0%, rgba(45, 74, 94, 0.1) 100%);
}

.payment-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.payment-card span {
  display: block;
  font-weight: 600;
  color: var(--text-dark);
}

.card-details {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  display: none;
}

.card-details.visible {
  display: block;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.checkbox-group input {
  width: auto;
}

.checkbox-group label {
  margin: 0;
  font-weight: normal;
}

.submit-button {
  width: 100%;
  background: var(--gradient-accent);
  color: white;
  border: none;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.secure-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.secure-badges span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.legal-content h1 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.legal-content h2 {
  font-size: 1.8rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-content h3 {
  font-size: 1.4rem;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

.legal-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 1rem;
}

.legal-content ul {
  margin: 1rem 0 1rem 1.5rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
  color: #333;
}

.legal-content .update-date {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  font-size: 0.9rem;
  color: var(--text-light);
}

.thanks-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: 2rem 1.5rem;
}

.thanks-container {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
  max-width: 600px;
  width: 100%;
  border-top: 5px solid var(--secondary-color);
}

.thanks-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.1) 0%, rgba(45, 74, 94, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--secondary-color);
}

.thanks-icon img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.thanks-container h1 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.thanks-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.thanks-text span {
  font-weight: 700;
  color: var(--secondary-color);
}

footer {
  background: var(--gradient-primary);
  color: white;
  padding: 3rem 0 1.5rem;
  margin-top: auto;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: white;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--secondary-color);
}

.footer-contact {
  margin-bottom: 2rem;
}

.contact-item {
  margin-bottom: 0.8rem;
  opacity: 0.9;
}

.footer-disclaimer {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.8;
}

.footer-disclaimer strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.7;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .header-top {
    flex-direction: column;
    gap: 1rem;
  }
  .header-notice {
    font-size: 0.75rem;
  }
  .blog-article {
    padding: 1.5rem;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .stat-box {
    grid-template-columns: 1fr;
  }
  .conditions-grid {
    grid-template-columns: 1fr;
  }
  body{
    word-break: break-word;
  }
    .cta-button {
      flex-direction: column;
    }
        .cta-section {
          padding: 3rem 1rem;
        }
  .table-header,
  .table-row {
    grid-template-columns: 1fr;
  }
  .table-header div:last-child,
  .table-row div:last-child {
    margin-top: 0.5rem;
  }
  .comment.reply {
    margin-left: 1rem;
  }
  .product-hero {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }
  .product-gallery {
    position: static;
  }
  .product-summary {
    text-align: center;
  }
  .product-badges {
    justify-content: center;
  }
  .rating {
    justify-content: center;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .payment-options {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    flex-direction: column;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
  }
  .thanks-container {
    padding: 2rem 1.5rem;
  }
  .thanks-text {
    font-size: 1.1rem;
  }
}