:root {
  --primary: #E8B4BC;
  --secondary: #9DC08B;
  --accent: #F4A460;
  --bg: #FFFBF5;
  --bg-alt: #FFF0F5;
  --text: #3D3D3D;
  --text-muted: #7A7A7A;
  --border: #E5E5E5;
  --success: #7CB342;
  --error: #E57373;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary);
}

.header-top {
  background-color: var(--primary);
  color: var(--text);
  font-size: 0.875rem;
  padding: 0.5rem 0;
}

.header-main {
  background-color: var(--bg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.3s ease, padding 0.3s ease;
}

.header-main.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
}

.nav-link {
  color: var(--text);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease, background-color 0.3s ease;
  border-radius: 0.5rem;
}

.nav-link:hover {
  color: var(--accent);
  background-color: var(--bg-alt);
}

.nav-link.active {
  color: var(--accent);
}

.nav-link:focus {
  outline: none;
  background-color: var(--bg-alt);
}

.btn-primary {
  background-color: var(--accent);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(244, 164, 96, 0.4);
}

.btn-primary:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(244, 164, 96, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--accent);
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  border: 2px solid var(--accent);
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
}

.btn-secondary:hover {
  background-color: var(--accent);
  color: white;
  transform: translateY(-2px);
}

.btn-secondary:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(244, 164, 96, 0.4);
}

.btn-cart {
  background-color: var(--secondary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
}

.btn-cart:hover {
  background-color: #8AB079;
  transform: scale(1.05);
}

.btn-cart:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(157, 192, 139, 0.4);
}

.cart-counter {
  background-color: var(--accent);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
}

.burger {
  width: 40px;
  height: 40px;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.burger span {
  position: absolute;
  width: 28px;
  height: 3px;
  background-color: var(--text);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.burger span:nth-child(1) { top: 10px; }
.burger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.burger span:nth-child(3) { bottom: 10px; }

.burger.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
  transform: translateY(-50%) scale(0);
}

.burger.active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bg);
  z-index: 150;
  padding: 5rem 2rem 2rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu a {
  display: block;
  padding: 1rem 0;
  font-size: 1.25rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.mobile-menu a:hover {
  color: var(--accent);
}

.hero-section {
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg) 100%);
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  opacity: 0.2;
  pointer-events: none;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text);
}

.section-subtitle {
  font-size: 1.125rem;
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.category-card {
  background-color: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.category-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card:hover img {
  transform: scale(1.08);
}

.category-card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(61, 61, 61, 0.85), transparent);
  padding: 2rem 1.5rem 1.5rem;
  color: white;
}

.category-card h3 {
  color: white;
  font-size: 1.25rem;
  margin: 0;
}

.product-card {
  background-color: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.product-card .image-wrapper {
  position: relative;
  overflow: hidden;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-card .badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--accent);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.product-card .badge-new {
  background-color: var(--secondary);
}

.product-card .content {
  padding: 1.25rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-card h3 {
  font-size: 1.125rem;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.product-card .description {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  flex-grow: 1;
}

.product-card .price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.product-card .price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
}

.product-card .old-price {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 0.5rem;
}

.product-card .add-to-cart {
  background-color: var(--primary);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.product-card .add-to-cart:hover {
  background-color: var(--accent);
  transform: scale(1.1);
}

.product-card .add-to-cart:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(232, 180, 188, 0.4);
}

.advantage-card {
  text-align: center;
  padding: 2rem;
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.advantage-card .icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--bg-alt) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--accent);
}

.advantage-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.advantage-card p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin: 0;
}

.timeline-vertical {
  position: relative;
  padding-left: 3rem;
}

.timeline-vertical::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
}

.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0.25rem;
  width: 1rem;
  height: 1rem;
  background-color: var(--accent);
  border-radius: 50%;
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 3px var(--accent);
}

.timeline-item .number {
  position: absolute;
  left: -3rem;
  top: -0.25rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.zigzag-section .zigzag-item:nth-child(even) {
  flex-direction: row-reverse;
}

.faq-card {
  background-color: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.faq-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.faq-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.faq-card h3 i {
  color: var(--accent);
  margin-top: 0.25rem;
}

.faq-card p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin: 0;
  line-height: 1.6;
}

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

.accordion-header {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: var(--text);
  transition: background-color 0.3s ease;
}

.accordion-header:hover {
  background-color: var(--bg-alt);
}

.accordion-header:focus {
  outline: none;
  background-color: var(--bg-alt);
  box-shadow: inset 0 0 0 2px var(--primary);
}

.accordion-header i {
  transition: transform 0.3s ease;
  color: var(--accent);
}

.accordion-item.active .accordion-header i {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
  padding: 0 1.5rem 1.25rem;
}

.accordion-content p {
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white;
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
  pointer-events: none;
}

.cta-section h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.cta-section .btn-primary {
  background-color: white;
  color: var(--accent);
}

.cta-section .btn-primary:hover {
  background-color: var(--bg);
  box-shadow: 0 4px 20px rgba(255,255,255,0.3);
}

.testimonial-card {
  background-color: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.testimonial-card .avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--primary);
}

.testimonial-card .content {
  flex-grow: 1;
}

.testimonial-card .quote {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-style: italic;
  position: relative;
}

.testimonial-card .quote::before {
  content: '"';
  font-size: 3rem;
  color: var(--primary);
  position: absolute;
  left: -1rem;
  top: -1rem;
  opacity: 0.5;
  font-family: Georgia, serif;
}

.testimonial-card .author {
  font-weight: 600;
  color: var(--text);
}

.testimonial-card .rating {
  color: var(--accent);
  margin-top: 0.5rem;
}

footer {
  background-color: var(--text);
  color: white;
  padding: 2rem 0;
}

footer a {
  color: rgba(255,255,255,0.8);
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--primary);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.cart-icon-wrapper {
  position: relative;
}

.form-input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--border);
  border-radius: 0.75rem;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background-color: white;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(232, 180, 188, 0.2);
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-checkbox input[type="checkbox"] {
  width: 1.25rem;
  height: 1.25rem;
  accent-color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.form-checkbox label {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.form-checkbox a {
  color: var(--accent);
  text-decoration: underline;
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid var(--border);
  border-radius: 0.5rem;
  overflow: hidden;
}

.quantity-selector button {
  width: 40px;
  height: 40px;
  background-color: var(--bg-alt);
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  color: var(--text);
  transition: background-color 0.3s ease;
}

.quantity-selector button:hover {
  background-color: var(--primary);
  color: white;
}

.quantity-selector input {
  width: 50px;
  text-align: center;
  border: none;
  font-size: 1rem;
  font-weight: 600;
}

.quantity-selector input:focus {
  outline: none;
  background-color: var(--bg-alt);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb span {
  color: var(--text);
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 1rem;
}

.cart-item img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 0.75rem;
}

.cart-item .details {
  flex-grow: 1;
}

.cart-item .title {
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.cart-item .variant {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.cart-item .price {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.125rem;
}

.cart-item .remove {
  color: var(--error);
  cursor: pointer;
  transition: color 0.3s ease;
}

.cart-item .remove:hover {
  color: #c62828;
}

.order-summary {
  background-color: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.order-summary h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.order-summary .row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.order-summary .row.total {
  font-weight: 700;
  font-size: 1.25rem;
  border-top: 2px solid var(--border);
  margin-top: 0.5rem;
  padding-top: 1rem;
}

.order-summary .total .value {
  color: var(--accent);
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text);
  color: white;
  padding: 1.25rem;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-popup.visible {
  transform: translateY(0);
}

.cookie-popup a {
  color: var(--primary);
}

.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background-color: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 4px 15px rgba(244, 164, 96, 0.4);
  z-index: 50;
  border: none;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
}

.scroll-top:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(244, 164, 96, 0.4), 0 4px 15px rgba(244, 164, 96, 0.4);
}

.notification {
  position: fixed;
  bottom: 5rem;
  right: 2rem;
  background-color: var(--success);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.notification.visible {
  transform: translateX(0);
}

.notification i {
  font-size: 1.25rem;
}

.filter-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: var(--bg-alt);
  color: var(--text);
  border-radius: 9999px;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid transparent;
}

.filter-tag:hover {
  background-color: var(--primary);
  color: white;
}

.filter-tag.active {
  background-color: var(--accent);
  color: white;
  border-color: var(--accent);
}

.filter-tag:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(244, 164, 96, 0.3);
}

.price-range {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.price-range input {
  width: 100%;
  accent-color: var(--accent);
}

.promo-banner {
  background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
  color: white;
  padding: 0.75rem 1rem;
  text-align: center;
  font-weight: 500;
}

.promo-banner a {
  color: white;
  text-decoration: underline;
}

.empty-cart {
  text-align: center;
  padding: 4rem 2rem;
}

.empty-cart i {
  font-size: 5rem;
  color: var(--border);
  margin-bottom: 1.5rem;
}

.empty-cart h2 {
  margin-bottom: 1rem;
}

.empty-cart p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.delivery-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 2px solid var(--border);
  border-radius: 0.75rem;
  cursor: pointer;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.delivery-option:hover {
  border-color: var(--primary);
}

.delivery-option.selected {
  border-color: var(--accent);
  background-color: rgba(244, 164, 96, 0.05);
}

.delivery-option input {
  accent-color: var(--accent);
  width: 1.25rem;
  height: 1.25rem;
}

.delivery-option .info {
  flex-grow: 1;
}

.delivery-option .name {
  font-weight: 600;
}

.delivery-option .desc {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.delivery-option .price {
  font-weight: 700;
  color: var(--accent);
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 2px solid var(--border);
  border-radius: 0.75rem;
  cursor: pointer;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.payment-option:hover {
  border-color: var(--primary);
}

.payment-option.selected {
  border-color: var(--accent);
  background-color: rgba(244, 164, 96, 0.05);
}

.payment-option input {
  accent-color: var(--accent);
  width: 1.25rem;
  height: 1.25rem;
}

.payment-option .icon {
  width: 40px;
  height: 40px;
  background-color: var(--bg-alt);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--accent);
}

.success-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
}

.success-page .icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--success) 0%, var(--secondary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 3rem;
  color: white;
}

.success-page h1 {
  margin-bottom: 1rem;
}

.success-page p {
  color: var(--text-muted);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 767px) {
  .section-title {
    font-size: 1.75rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .testimonial-card {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-card .avatar {
    margin: 0 auto;
  }

  .testimonial-card .quote::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .cart-item {
    flex-direction: column;
  }

  .cart-item img {
    width: 100%;
    height: 150px;
  }

  .cta-section h2 {
    font-size: 1.75rem;
  }

  .cta-section p {
    font-size: 1rem;
  }
}
