:root {
  --primary-color: #2980B9;
  --secondary-color: #1F6897;
  --accent-color: #E67E22;
  --light-color: #F8F4F0;
  --dark-color: #16202A;
  --gradient-primary: linear-gradient(135deg, #16A085 0%, #2980B9 100%);
  --hover-color: #C0392B;
  --background-color: #FEFCFA;
  --text-color: #4B5563;
  --border-color: rgba(41, 128, 185, 0.2);
  --divider-color: rgba(41, 128, 185, 0.12);
  --shadow-color: rgba(41, 128, 185, 0.15);
  --highlight-color: #E67E22;
  --main-font: 'Lora', serif;
  --alt-font: 'Poppins', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--alt-font);
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--main-font);
  color: var(--primary-color);
  font-weight: 700;
  line-height: 1.3;
}

/* Background Pattern */
.bg-pattern {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.035;
  pointer-events: none;
}

/* Header */
header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 1.5rem 0;
  box-shadow: 0 3px 12px var(--shadow-color);
  position: relative;
  overflow: hidden;
}

header::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 5%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 65%);
  border-radius: 50%;
  transform: translateY(-50%);
  display: none;
}

@media (min-width: 768px) {
  header::before {
    display: block;
  }
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.logo svg {
  width: 50px;
  height: 50px;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  font-family: var(--main-font);
  letter-spacing: 0.5px;
}

/* Main Content */
main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 2.5rem 0;
}

.product-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: 360px 1fr;
    gap: 3.5rem;
  }
}

/* Left Column */
.left-column {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.product-image-wrapper {
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 20px;
  padding: 2.25rem;
  box-shadow: 0 8px 24px var(--shadow-color);
  transition: box-shadow 0.3s;
}

.product-image-wrapper:hover {
  box-shadow: 0 12px 32px var(--shadow-color);
}

.product-image {
  width: 100%;
  height: auto;
  display: block;
}

.guarantee-box {
  background: linear-gradient(135deg, var(--hover-color) 0%, #A02E1E 100%);
  border-radius: 14px;
  padding: 1.75rem;
  text-align: center;
  box-shadow: 0 6px 18px rgba(192, 57, 43, 0.35);
  border: 3px solid rgba(255,255,255,0.35);
}

.guarantee-box h3 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 0.65rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.25);
  font-family: var(--alt-font);
  font-weight: 600;
}

.guarantee-box p {
  color: white;
  font-size: 0.95rem;
  line-height: 1.6;
}

.price-cart-box {
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 14px;
  padding: 1.75rem;
  text-align: center;
  box-shadow: 0 8px 24px var(--shadow-color);
}

.price {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--accent-color);
  font-family: var(--main-font);
  margin-bottom: 1.25rem;
}

.cart-button {
  display: inline-block;
  background: var(--gradient-primary);
  color: white;
  padding: 1rem 2.75rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(41, 128, 185, 0.35);
  font-family: var(--alt-font);
}

.cart-button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 24px rgba(41, 128, 185, 0.45);
}

.cart-button:focus {
  outline: 3px solid var(--accent-color);
  outline-offset: 3px;
}

/* Right Column */
.right-column {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.content-box {
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  padding: 2.25rem;
  box-shadow: 0 8px 24px var(--shadow-color);
}

.content-box h2 {
  font-size: 1.9rem;
  margin-bottom: 1.25rem;
  color: var(--primary-color);
}

.content-box p {
  line-height: 1.8;
  margin-bottom: 1.15rem;
  font-size: 1.05rem;
}

.content-box ul {
  list-style: none;
  padding: 0;
}

.content-box li {
  display: flex;
  align-items: flex-start;
  gap: 1.15rem;
  margin-bottom: 1.15rem;
  padding: 1rem;
  background: var(--light-color);
  border-radius: 10px;
  transition: background 0.2s;
}

.content-box li:hover {
  background: #F2EBE4;
}

.content-box li svg {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  margin-top: 0.25rem;
}

.cta-box {
  background: linear-gradient(135deg, var(--highlight-color) 0%, #D97118 100%);
  border: 4px solid rgba(255,255,255,0.5);
  animation: pulseGlow 2.5s ease-in-out infinite;
  position: relative;
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 8px 24px rgba(230, 126, 34, 0.4);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 8px 36px rgba(230, 126, 34, 0.65);
    transform: scale(1.01);
  }
}

.cta-box h2 {
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.25);
}

.cta-box p {
  color: white;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.7;
  text-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

/* Features Section */
.features-section {
  background: var(--light-color);
  padding: 3.5rem 0;
  margin-top: 3rem;
}

.features-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1rem;
}

.features-title {
  text-align: center;
  font-size: 2.15rem;
  margin-bottom: 3rem;
  color: var(--primary-color);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-item {
  text-align: center;
  padding: 2.5rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 6px 20px var(--shadow-color);
  border: 2px solid var(--border-color);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px var(--shadow-color);
}

.feature-icon {
  width: 85px;
  height: 85px;
  margin: 0 auto 1.75rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(41, 128, 185, 0.3);
}

.feature-icon svg {
  width: 42px;
  height: 42px;
}

.feature-item h3 {
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
  color: var(--primary-color);
  font-family: var(--alt-font);
  font-weight: 600;
}

.feature-item p {
  color: var(--text-color);
  line-height: 1.7;
  font-size: 1.05rem;
}

/* Testimonials Section */
.testimonials-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 3.5rem 0;
}

.testimonials-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1rem;
}

.testimonials-title {
  text-align: center;
  font-size: 2.15rem;
  margin-bottom: 3rem;
  color: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.testimonial-item {
  background: white;
  border-radius: 16px;
  padding: 2.25rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  transition: transform 0.3s;
}

.testimonial-item:hover {
  transform: scale(1.02);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.testimonial-avatar {
  width: 62px;
  height: 62px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px var(--shadow-color);
}

.testimonial-avatar svg {
  width: 33px;
  height: 33px;
}

.testimonial-author h4 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
  color: var(--primary-color);
  font-family: var(--alt-font);
  font-weight: 600;
}

.testimonial-rating {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.testimonial-text {
  color: var(--text-color);
  line-height: 1.8;
  font-style: italic;
  font-size: 1.05rem;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 100%);
  color: rgba(255,255,255,0.85);
  padding: 2.25rem 0 1.25rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.footer-logo svg {
  width: 42px;
  height: 42px;
}

.footer-logo-text {
  font-size: 1.55rem;
  font-weight: 700;
  color: white;
  font-family: var(--main-font);
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

@media (min-width: 768px) {
  .footer-nav ul {
    align-items: flex-end;
  }
}

.footer-nav a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.2s;
  font-size: 0.98rem;
}

.footer-nav a:hover {
  color: white;
}

.footer-nav a:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 3px;
  border-radius: 3px;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 0.95rem;
}

.footer-bottom a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.footer-bottom a:hover {
  text-decoration: underline;
}
