@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
  --leather-dark: #2d1f16;
  --leather-brown: #4a3428;
  --leather-tan: #c9a86c;
  --leather-cream: #fbfaf7;
  --leather-gold: #d4af37;
  --white: #ffffff;
  --black: #000000;
  
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--leather-cream);
  color: var(--black);
  line-height: 1.5;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--leather-tan);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--leather-brown);
}

::selection {
  background: var(--leather-tan);
  color: white;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.5s var(--ease-out-expo);
  padding: 20px 0;
}

.navbar.scrolled {
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.9);
  padding: 12px 0;
  box-shadow: 0 10px 40px -10px rgba(45, 31, 22, 0.2);
}

.navbar-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--leather-dark);
  transition: color 0.3s ease;
}

.logo:hover {
  color: var(--leather-tan);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: var(--leather-brown);
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--leather-tan);
  transition: all 0.3s var(--ease-out-expo);
  transform: translateX(-50%);
}

.nav-link:hover {
  color: var(--leather-dark);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-btn {
  position: relative;
  padding: 8px;
  color: var(--leather-brown);
  transition: color 0.3s ease;
}

.cart-btn:hover {
  color: var(--leather-dark);
}

.cart-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.cart-btn:hover svg {
  transform: scale(1.1);
}

.cart-count {
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  background: var(--leather-tan);
  color: white;
  font-size: 11px;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scaleIn 0.3s var(--ease-elastic);
}

.mobile-menu-btn {
  display: none;
  padding: 8px;
  color: var(--leather-brown);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: all 0.5s var(--ease-out-expo);
}

.mobile-menu.open {
  max-height: 300px;
  opacity: 1;
  padding-bottom: 16px;
}

.mobile-menu .nav-link {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--leather-cream);
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--leather-cream) 0%, white 50%, var(--leather-cream) 100%);
  opacity: 0.8;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  background: rgba(201, 168, 108, 0.05);
}

.hero-blob-1 {
  width: 256px;
  height: 256px;
  top: 80px;
  right: 80px;
}

.hero-blob-2 {
  width: 384px;
  height: 384px;
  bottom: 80px;
  left: 80px;
}

.hero-container {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  order: 2;
}

.hero-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(201, 168, 108, 0.1);
  color: var(--leather-tan);
  font-size: 14px;
  font-weight: 500;
  border-radius: 9999px;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s var(--ease-out-expo) 0.3s forwards;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--leather-dark);
  margin-bottom: 24px;
}

.hero-title span {
  display: block;
  opacity: 0;
  transform: translateY(40px);
}

.hero-title span:nth-child(1) {
  animation: fadeUp 0.7s var(--ease-out-expo) 0.4s forwards;
}

.hero-title span:nth-child(2) {
  animation: fadeUp 0.7s var(--ease-out-expo) 0.5s forwards;
}

.hero-title span:nth-child(3) {
  color: var(--leather-tan);
  animation: fadeUp 0.7s var(--ease-out-expo) 0.6s forwards;
}

.hero-description {
  font-size: 18px;
  color: rgba(74, 52, 40, 0.8);
  max-width: 500px;
  margin-bottom: 32px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s var(--ease-out-expo) 0.7s forwards;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s var(--ease-out-expo) 0.8s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 12px;
  transition: all 0.3s var(--ease-out-expo);
}

.btn-primary {
  background: var(--leather-dark);
  color: white;
}

.btn-primary:hover {
  background: var(--leather-brown);
  box-shadow: 0 20px 60px -15px rgba(45, 31, 22, 0.3);
  transform: translateY(-2px);
}

.btn-primary svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-secondary {
  border: 2px solid rgba(45, 31, 22, 0.2);
  color: var(--leather-dark);
}

.btn-secondary:hover {
  border-color: var(--leather-tan);
  color: var(--leather-tan);
}

.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(45, 31, 22, 0.1);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s var(--ease-out-expo) 0.9s forwards;
}

.hero-stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--leather-dark);
}

.hero-stat-label {
  font-size: 14px;
  color: rgba(74, 52, 40, 0.7);
}

.hero-image-wrapper {
  order: 1;
  position: relative;
  opacity: 0;
  transform: translateX(48px);
  animation: fadeRight 1s var(--ease-out-expo) 0.2s forwards;
}

.hero-image-container {
  position: relative;
  aspect-ratio: 1;
}

.hero-image-frame {
  position: absolute;
  inset: -16px;
  border: 2px solid rgba(201, 168, 108, 0.2);
  border-radius: 16px;
  transform: rotate(3deg);
}

.hero-image-frame-2 {
  position: absolute;
  inset: -16px;
  border: 2px solid rgba(201, 168, 108, 0.1);
  border-radius: 16px;
  transform: rotate(-2deg);
}

.hero-image {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(45, 31, 22, 0.35);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

.hero-image:hover img {
  transform: scale(1.02);
}

.hero-rating-badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: white;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 20px 60px -15px rgba(45, 31, 22, 0.3);
  animation: float 6s ease-in-out infinite;
}

.hero-rating-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-rating-icon {
  width: 48px;
  height: 48px;
  background: rgba(201, 168, 108, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--leather-tan);
}

.hero-rating-value {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--leather-dark);
}

.hero-rating-label {
  font-size: 12px;
  color: rgba(74, 52, 40, 0.7);
}

/* Features Section */
.features {
  padding: 64px 0;
  background: var(--leather-cream);
}

.features-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  position: relative;
  padding: 24px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 40px -10px rgba(45, 31, 22, 0.2);
  transition: all 0.5s var(--ease-out-expo);
  opacity: 0;
  transform: translateY(60px);
}

.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:hover {
  box-shadow: 0 20px 60px -15px rgba(45, 31, 22, 0.3);
  transform: translateY(-8px);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(201, 168, 108, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all 0.5s var(--ease-elastic);
}

.feature-card:hover .feature-icon {
  background: var(--leather-tan);
  transform: scale(1.1);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  color: var(--leather-tan);
  transition: color 0.3s ease;
}

.feature-card:hover .feature-icon svg {
  color: white;
}

.feature-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--leather-dark);
  margin-bottom: 4px;
}

.feature-description {
  font-size: 14px;
  color: rgba(74, 52, 40, 0.7);
}

.feature-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--leather-tan);
  transform: scaleX(0);
  transition: transform 0.5s var(--ease-out-expo);
  border-radius: 0 0 12px 12px;
}

.feature-card:hover .feature-accent {
  transform: scaleX(1);
}

/* Section Header */
.section-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}

.section-header-row {
  display: flex;
  flex-direction: column;
  sm-flex-direction: row;
  align-items: flex-start;
  sm-align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.section-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--leather-tan);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--leather-dark);
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--leather-brown);
  transition: color 0.3s ease;
}

.view-all-btn:hover {
  color: var(--leather-tan);
}

.view-all-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.view-all-btn:hover svg {
  transform: translateX(4px);
}

/* Products Section */
.products-section {
  padding: 80px 0;
  background: var(--leather-cream);
}

.products-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px -10px rgba(45, 31, 22, 0.2);
  transition: all 0.5s var(--ease-out-expo);
  opacity: 0;
  transform: translateY(48px);
}

.product-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.product-card:hover {
  box-shadow: 0 20px 60px -15px rgba(45, 31, 22, 0.3);
  transform: translateY(-12px);
}

.product-image-wrapper {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
}

.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out-expo);
}

.product-card:hover .product-image-wrapper img {
  transform: scale(1.1);
}

.product-image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(45, 31, 22, 0);
  transition: background 0.3s ease;
}

.product-card:hover .product-image-overlay {
  background: rgba(45, 31, 22, 0.2);
}

.product-quick-add {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  padding: 12px;
  background: white;
  color: var(--leather-dark);
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.5s var(--ease-out-expo);
}

.product-card:hover .product-quick-add {
  opacity: 1;
  transform: translateY(0);
}

.product-quick-add:hover {
  background: var(--leather-tan);
  color: white;
}

.product-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 8px;
}

.product-badge {
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 9999px;
}

.product-badge-new {
  background: var(--leather-tan);
  color: white;
}

.product-badge-featured {
  background: var(--leather-dark);
  color: white;
}

.product-content {
  padding: 20px;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.product-rating svg {
  width: 16px;
  height: 16px;
  fill: var(--leather-tan);
  color: var(--leather-tan);
}

.product-rating span {
  font-size: 14px;
  color: var(--leather-brown);
}

.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--leather-dark);
  margin-bottom: 8px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.product-name:hover {
  color: var(--leather-tan);
}

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

.product-price {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--leather-tan);
}

.product-original-price {
  font-size: 14px;
  color: rgba(74, 52, 40, 0.5);
  text-decoration: line-through;
}

/* About Section */
.about-section {
  padding: 80px 0;
  background: var(--leather-cream);
}

.about-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  opacity: 0;
  transform: translateX(-48px);
  transition: all 1s var(--ease-out-expo);
}

.about-image-wrapper.visible {
  opacity: 1;
  transform: translateX(0);
}

.about-image {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(45, 31, 22, 0.35);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-experience-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 20px 60px -15px rgba(45, 31, 22, 0.3);
}

.about-experience-value {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--leather-tan);
  text-align: center;
}

.about-experience-label {
  font-size: 14px;
  color: var(--leather-brown);
  text-align: center;
}

.about-image-decor {
  position: absolute;
  z-index: -1;
  bottom: -24px;
  right: -24px;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(201, 168, 108, 0.2);
  border-radius: 16px;
}

.about-content {
  space: 32px;
}

.about-content > * {
  margin-bottom: 24px;
}

.about-content > *:last-child {
  margin-bottom: 0;
}

.about-title-wrapper {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s var(--ease-out-expo);
}

.about-title-wrapper.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-description {
  font-size: 18px;
  color: rgba(74, 52, 40, 0.8);
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s var(--ease-out-expo) 0.1s;
}

.about-description.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-text {
  color: rgba(74, 52, 40, 0.7);
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s var(--ease-out-expo) 0.2s;
}

.about-text.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s var(--ease-out-expo) 0.3s;
}

.about-values.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-value {
  text-align: center;
}

.about-value-icon {
  width: 48px;
  height: 48px;
  background: rgba(201, 168, 108, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.about-value-icon svg {
  width: 24px;
  height: 24px;
  color: var(--leather-tan);
}

.about-value-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--leather-dark);
  margin-bottom: 4px;
}

.about-value-desc {
  font-size: 14px;
  color: rgba(74, 52, 40, 0.7);
}

.about-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--leather-dark);
  transition: color 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s var(--ease-out-expo) 0.4s;
}

.about-link.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-link:hover {
  color: var(--leather-tan);
}

.about-link svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.about-link:hover svg {
  transform: translateX(4px);
}

/* Categories Section */
.categories-section {
  padding: 80px 0;
  background: var(--leather-cream);
}

.categories-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.categories-header {
  text-align: center;
  margin-bottom: 48px;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.category-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 40px -10px rgba(45, 31, 22, 0.2);
  transition: all 0.5s var(--ease-out-expo);
  opacity: 0;
  transform: translateY(48px);
}

.category-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.category-card:hover {
  box-shadow: 0 20px 60px -15px rgba(45, 31, 22, 0.3);
  transform: translateY(-8px);
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out-expo);
}

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

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45, 31, 22, 0.8) 0%, rgba(45, 31, 22, 0.2) 50%, transparent 100%);
}

.category-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
}

.category-name {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
  transition: color 0.3s ease;
}

.category-card:hover .category-name {
  color: var(--leather-tan);
}

.category-count {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}

.category-explore {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--leather-tan);
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.5s var(--ease-out-expo);
}

.category-card:hover .category-explore {
  opacity: 1;
  transform: translateY(0);
}

.category-border {
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: 12px;
  transition: border-color 0.3s ease;
}

.category-card:hover .category-border {
  border-color: rgba(201, 168, 108, 0.5);
}

/* New Arrivals Section */
.new-arrivals-section {
  padding: 80px 0;
  background: white;
}

.new-arrivals-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background: var(--leather-dark);
}

.testimonials-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-header .section-label {
  color: var(--leather-tan);
}

.testimonials-header .section-title {
  color: white;
}

.testimonials-carousel {
  position: relative;
  max-width: 896px;
  margin: 0 auto;
}

.testimonials-quote-icon {
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 64px;
  background: rgba(201, 168, 108, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonials-quote-icon svg {
  width: 32px;
  height: 32px;
  color: var(--leather-tan);
}

.testimonial-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  border-radius: 16px;
  padding: 48px 32px;
  margin-top: 32px;
  text-align: center;
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 24px;
}

.testimonial-stars svg {
  width: 20px;
  height: 20px;
  fill: var(--leather-tan);
  color: var(--leather-tan);
  animation: scaleIn 0.3s var(--ease-elastic);
}

.testimonial-text {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 32px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--leather-tan);
}

.testimonial-author-info {
  text-align: left;
}

.testimonial-author-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: white;
}

.testimonial-author-role {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.testimonials-nav-btn {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

.testimonials-nav-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.testimonials-nav-btn svg {
  width: 20px;
  height: 20px;
}

.testimonials-dots {
  display: flex;
  gap: 8px;
}

.testimonials-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.testimonials-dot.active {
  width: 32px;
  background: var(--leather-tan);
  border-radius: 4px;
}

/* Newsletter Section */
.newsletter-section {
  padding: 80px 0;
  background: var(--leather-cream);
}

.newsletter-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.newsletter-card {
  position: relative;
  overflow: hidden;
  background: var(--leather-dark);
  border-radius: 24px;
  padding: 48px 32px;
}

.newsletter-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  background: rgba(201, 168, 108, 0.05);
}

.newsletter-blob-1 {
  width: 384px;
  height: 384px;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
}

.newsletter-blob-2 {
  width: 256px;
  height: 256px;
  bottom: 0;
  left: 0;
  transform: translate(-50%, 50%);
}

.newsletter-content {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-title {
  font-size: 32px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}

.newsletter-description {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  sm-flex-direction: row;
  gap: 16px;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-input-wrapper {
  flex: 1;
  position: relative;
}

.newsletter-input {
  width: 100%;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: white;
  font-size: 16px;
  transition: all 0.3s ease;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--leather-tan);
  box-shadow: 0 0 0 3px rgba(201, 168, 108, 0.2);
}

.newsletter-btn {
  padding: 16px 32px;
  background: var(--leather-tan);
  color: white;
  font-size: 16px;
  font-weight: 500;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.newsletter-btn:hover {
  background: rgba(201, 168, 108, 0.9);
  box-shadow: 0 10px 40px -10px rgba(201, 168, 108, 0.4);
  transform: translateY(-2px);
}

.newsletter-btn svg {
  width: 16px;
  height: 16px;
}

.newsletter-btn.success {
  background: #22c55e;
}

.newsletter-note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 16px;
}

/* Footer */
.footer {
  background: var(--leather-dark);
  padding-top: 64px;
  padding-bottom: 32px;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 32px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  space: 16px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}

.footer-description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

.footer-social-link:hover {
  background: var(--leather-tan);
  color: white;
}

.footer-social-link svg {
  width: 20px;
  height: 20px;
}

.footer-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--leather-tan);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-contact-item svg {
  width: 20px;
  height: 20px;
  color: var(--leather-tan);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item span,
.footer-contact-item a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact-item a:hover {
  color: var(--leather-tan);
}

.footer-bottom {
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  sm-flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-payment {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-payment-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-payment-methods {
  display: flex;
  gap: 8px;
}

.footer-payment-method {
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

/* Shop Page */
.shop-page {
  min-height: 100vh;
  background: var(--leather-cream);
  padding-top: 96px;
  padding-bottom: 64px;
}

.shop-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.shop-header {
  margin-bottom: 32px;
}

.shop-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--leather-dark);
  margin-bottom: 16px;
}

.shop-toolbar {
  display: flex;
  flex-direction: column;
  sm-flex-direction: row;
  gap: 16px;
}

.shop-search {
  position: relative;
  flex: 1;
}

.shop-search svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: rgba(74, 52, 40, 0.5);
}

.shop-search input {
  width: 100%;
  padding: 12px 16px 12px 48px;
  background: white;
  border: 1px solid rgba(45, 31, 22, 0.1);
  border-radius: 12px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.shop-search input:focus {
  outline: none;
  border-color: var(--leather-tan);
  box-shadow: 0 0 0 3px rgba(201, 168, 108, 0.2);
}

.shop-select {
  padding: 12px 16px;
  background: white;
  border: 1px solid rgba(45, 31, 22, 0.1);
  border-radius: 12px;
  font-size: 16px;
  color: var(--leather-brown);
  cursor: pointer;
}

.shop-filter-btn {
  padding: 12px 16px;
  border: 1px solid rgba(45, 31, 22, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: var(--leather-brown);
  background: white;
  transition: all 0.3s ease;
}

.shop-filter-btn:hover,
.shop-filter-btn.active {
  border-color: var(--leather-tan);
  color: var(--leather-tan);
}

.shop-filter-btn svg {
  width: 20px;
  height: 20px;
}

.shop-layout {
  display: flex;
  gap: 32px;
}

.shop-sidebar {
  width: 256px;
  flex-shrink: 0;
}

.shop-sidebar.hidden {
  display: none;
}

.shop-sidebar-section {
  background: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 10px 40px -10px rgba(45, 31, 22, 0.2);
  margin-bottom: 24px;
}

.shop-sidebar-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--leather-dark);
  margin-bottom: 16px;
}

.shop-category-list {
  list-style: none;
}

.shop-category-item {
  width: 100%;
  padding: 8px 12px;
  text-align: left;
  font-size: 14px;
  border-radius: 8px;
  transition: all 0.3s ease;
  margin-bottom: 4px;
}

.shop-category-item:hover {
  background: rgba(201, 168, 108, 0.1);
}

.shop-category-item.active {
  background: var(--leather-tan);
  color: white;
}

.shop-price-inputs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.shop-price-inputs span {
  color: var(--leather-brown);
}

.shop-price-inputs input {
  width: 80px;
  padding: 8px 12px;
  border: 1px solid rgba(45, 31, 22, 0.1);
  border-radius: 8px;
  font-size: 14px;
}

.shop-price-inputs input:focus {
  outline: none;
  border-color: var(--leather-tan);
}

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

.shop-products {
  flex: 1;
}

.shop-products-count {
  font-size: 14px;
  color: var(--leather-brown);
  margin-bottom: 16px;
}

.shop-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.shop-empty {
  text-align: center;
  padding: 64px 0;
}

.shop-empty svg {
  width: 64px;
  height: 64px;
  color: rgba(201, 168, 108, 0.3);
  margin: 0 auto 16px;
}

.shop-empty-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--leather-dark);
  margin-bottom: 8px;
}

.shop-empty-text {
  color: rgba(74, 52, 40, 0.7);
}

/* Product Detail Page */
.product-detail-page {
  min-height: 100vh;
  background: var(--leather-cream);
  padding-top: 96px;
  padding-bottom: 64px;
}

.product-detail-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.product-detail-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--leather-brown);
  margin-bottom: 32px;
  transition: color 0.3s ease;
}

.product-detail-back:hover {
  color: var(--leather-tan);
}

.product-detail-back svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.product-detail-back:hover svg {
  transform: translateX(-4px);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.product-detail-image-wrapper {
  position: relative;
  aspect-ratio: 1;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px -15px rgba(45, 31, 22, 0.3);
}

.product-detail-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-badges {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-detail-badge {
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 9999px;
}

.product-detail-badge-new {
  background: var(--leather-tan);
  color: white;
}

.product-detail-badge-featured {
  background: var(--leather-dark);
  color: white;
}

.product-detail-content {
  space: 24px;
}

.product-detail-content > * {
  margin-bottom: 24px;
}

.product-detail-content > *:last-child {
  margin-bottom: 0;
}

.product-detail-category {
  font-size: 14px;
  font-weight: 500;
  color: var(--leather-tan);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.product-detail-name {
  font-size: 36px;
  font-weight: 700;
  color: var(--leather-dark);
}

.product-detail-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-detail-stars {
  display: flex;
  gap: 2px;
}

.product-detail-stars svg {
  width: 20px;
  height: 20px;
}

.product-detail-stars svg.filled {
  fill: var(--leather-tan);
  color: var(--leather-tan);
}

.product-detail-stars svg.empty {
  color: rgba(45, 31, 22, 0.2);
}

.product-detail-price-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.product-detail-price {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--leather-tan);
}

.product-detail-original-price {
  font-size: 20px;
  color: rgba(74, 52, 40, 0.5);
  text-decoration: line-through;
}

.product-detail-description {
  color: rgba(74, 52, 40, 0.8);
  line-height: 1.6;
}

.product-detail-meta {
  display: flex;
  gap: 24px;
  font-size: 14px;
}

.product-detail-meta-item span:first-child {
  color: rgba(74, 52, 40, 0.6);
}

.product-detail-meta-item span:last-child {
  color: var(--leather-dark);
  margin-left: 4px;
}

.product-detail-instock {
  color: #22c55e;
}

.product-detail-outstock {
  color: #ef4444;
}

.product-detail-quantity {
  display: flex;
  align-items: center;
  gap: 16px;
}

.product-detail-quantity-label {
  font-weight: 500;
  color: var(--leather-dark);
}

.product-detail-quantity-control {
  display: flex;
  align-items: center;
  border: 1px solid rgba(45, 31, 22, 0.2);
  border-radius: 8px;
}

.product-detail-quantity-btn {
  padding: 12px;
  transition: background 0.3s ease;
}

.product-detail-quantity-btn:hover {
  background: rgba(201, 168, 108, 0.1);
}

.product-detail-quantity-btn svg {
  width: 16px;
  height: 16px;
}

.product-detail-quantity-value {
  width: 40px;
  text-align: center;
  font-weight: 500;
}

.product-detail-actions {
  display: flex;
  gap: 16px;
}

.product-detail-actions .btn {
  flex: 1;
  justify-content: center;
}

.product-detail-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(45, 31, 22, 0.1);
}

.product-detail-feature {
  text-align: center;
}

.product-detail-feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(201, 168, 108, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
}

.product-detail-feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--leather-tan);
}

.product-detail-feature-text {
  font-size: 14px;
  color: var(--leather-brown);
}

/* Cart Page */
.cart-page {
  min-height: 100vh;
  background: var(--leather-cream);
  padding-top: 96px;
  padding-bottom: 64px;
}

.cart-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.cart-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--leather-dark);
  margin-bottom: 32px;
}

.cart-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
}

.cart-items {
  space: 16px;
}

.cart-item {
  display: flex;
  gap: 16px;
  background: white;
  border-radius: 12px;
  padding: 16px 24px;
  box-shadow: 0 10px 40px -10px rgba(45, 31, 22, 0.2);
  margin-bottom: 16px;
}

.cart-item-image {
  width: 96px;
  height: 96px;
  background: var(--leather-cream);
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.cart-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.cart-item-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--leather-dark);
}

.cart-item-sku {
  font-size: 14px;
  color: rgba(74, 52, 40, 0.7);
}

.cart-item-remove {
  padding: 8px;
  color: rgba(74, 52, 40, 0.5);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.cart-item-remove:hover {
  color: #ef4444;
  background: #fef2f2;
}

.cart-item-remove svg {
  width: 20px;
  height: 20px;
}

.cart-item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  border: 1px solid rgba(45, 31, 22, 0.2);
  border-radius: 8px;
}

.cart-item-quantity button {
  padding: 8px 12px;
  transition: background 0.3s ease;
}

.cart-item-quantity button:hover {
  background: rgba(201, 168, 108, 0.1);
}

.cart-item-quantity button svg {
  width: 16px;
  height: 16px;
}

.cart-item-quantity span {
  width: 40px;
  text-align: center;
  font-weight: 500;
}

.cart-item-price {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--leather-tan);
}

.cart-continue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--leather-brown);
  margin-top: 16px;
  transition: color 0.3s ease;
}

.cart-continue:hover {
  color: var(--leather-tan);
}

.cart-continue svg {
  width: 20px;
  height: 20px;
}

.cart-summary {
  position: sticky;
  top: 96px;
  height: fit-content;
}

.cart-summary-card {
  background: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 10px 40px -10px rgba(45, 31, 22, 0.2);
}

.cart-summary-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--leather-dark);
  margin-bottom: 24px;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  color: var(--leather-brown);
}

.cart-summary-total {
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid rgba(45, 31, 22, 0.1);
  margin-top: 12px;
}

.cart-summary-total span:first-child {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--leather-dark);
}

.cart-summary-total span:last-child {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--leather-tan);
}

.cart-summary-note {
  font-size: 14px;
  color: rgba(74, 52, 40, 0.6);
  text-align: center;
  margin-top: 24px;
}

.cart-empty {
  text-align: center;
  padding: 80px 0;
}

.cart-empty-icon {
  width: 96px;
  height: 96px;
  background: rgba(201, 168, 108, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.cart-empty-icon svg {
  width: 48px;
  height: 48px;
  color: var(--leather-tan);
}

.cart-empty-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--leather-dark);
  margin-bottom: 8px;
}

.cart-empty-text {
  color: rgba(74, 52, 40, 0.7);
  margin-bottom: 24px;
}

/* Checkout Page */
.checkout-page {
  min-height: 100vh;
  background: var(--leather-cream);
  padding-top: 96px;
  padding-bottom: 64px;
}

.checkout-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.checkout-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--leather-brown);
  margin-bottom: 32px;
  transition: color 0.3s ease;
}

.checkout-back:hover {
  color: var(--leather-tan);
}

.checkout-back svg {
  width: 20px;
  height: 20px;
}

.checkout-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.checkout-step {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
}

.checkout-step.active {
  background: var(--leather-tan);
  color: white;
}

.checkout-step.completed {
  background: var(--leather-dark);
  color: white;
}

.checkout-step.pending {
  background: white;
  color: var(--leather-brown);
}

.checkout-step svg {
  width: 16px;
  height: 16px;
}

.checkout-step-label {
  display: none;
}

@media (min-width: 640px) {
  .checkout-step-label {
    display: inline;
  }
}

.checkout-step-line {
  width: 32px;
  height: 2px;
  background: rgba(45, 31, 22, 0.2);
}

.checkout-step-line.completed {
  background: var(--leather-dark);
}

.checkout-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
}

.checkout-form {
  background: white;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 10px 40px -10px rgba(45, 31, 22, 0.2);
}

.checkout-form-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--leather-dark);
  margin-bottom: 24px;
}

.checkout-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.checkout-form-group {
  margin-bottom: 16px;
}

.checkout-form-group.full-width {
  grid-column: span 2;
}

.checkout-form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--leather-dark);
  margin-bottom: 8px;
}

.checkout-form-label span {
  color: #ef4444;
}

.checkout-form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(45, 31, 22, 0.1);
  border-radius: 12px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.checkout-form-input:focus {
  outline: none;
  border-color: var(--leather-tan);
  box-shadow: 0 0 0 3px rgba(201, 168, 108, 0.2);
}

.checkout-form-textarea {
  resize: none;
  min-height: 100px;
}

.checkout-payment-option {
  padding: 24px;
  border: 2px solid var(--leather-tan);
  background: rgba(201, 168, 108, 0.05);
  border-radius: 12px;
  cursor: pointer;
  margin-bottom: 16px;
}

.checkout-payment-option.disabled {
  border-color: rgba(45, 31, 22, 0.1);
  background: transparent;
  opacity: 0.5;
  cursor: not-allowed;
}

.checkout-payment-content {
  display: flex;
  align-items: center;
  gap: 16px;
}

.checkout-payment-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkout-payment-icon.whatsapp {
  background: #22c55e;
}

.checkout-payment-icon.card {
  background: rgba(45, 31, 22, 0.1);
}

.checkout-payment-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.checkout-payment-icon.card svg {
  color: var(--leather-dark);
}

.checkout-payment-info {
  flex: 1;
}

.checkout-payment-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--leather-dark);
  margin-bottom: 4px;
}

.checkout-payment-desc {
  font-size: 14px;
  color: var(--leather-brown);
}

.checkout-payment-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--leather-tan);
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkout-payment-check svg {
  width: 16px;
  height: 16px;
  color: white;
}

.checkout-summary {
  position: sticky;
  top: 96px;
  height: fit-content;
}

.checkout-summary-card {
  background: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 10px 40px -10px rgba(45, 31, 22, 0.2);
}

.checkout-summary-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--leather-dark);
  margin-bottom: 24px;
}

.checkout-summary-items {
  max-height: 240px;
  overflow-y: auto;
  margin-bottom: 24px;
}

.checkout-summary-item {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.checkout-summary-item img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
}

.checkout-summary-item-info {
  flex: 1;
}

.checkout-summary-item-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--leather-dark);
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.checkout-summary-item-qty {
  font-size: 14px;
  color: var(--leather-brown);
  margin-bottom: 4px;
}

.checkout-summary-item-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--leather-tan);
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.modal {
  background: white;
  border-radius: 16px;
  padding: 24px;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.95);
  transition: transform 0.3s var(--ease-out-expo);
}

.modal-overlay.active .modal {
  transform: scale(1);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--leather-dark);
}

.modal-close {
  padding: 8px;
  color: var(--leather-brown);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: rgba(45, 31, 22, 0.05);
  color: var(--leather-dark);
}

.modal-close svg {
  width: 20px;
  height: 20px;
}

.modal-product {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: var(--leather-cream);
  border-radius: 12px;
  margin-bottom: 24px;
}

.modal-product img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.modal-product-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--leather-dark);
  margin-bottom: 4px;
}

.modal-product-info p {
  font-size: 14px;
  color: var(--leather-brown);
}

.modal-text {
  font-size: 14px;
  color: rgba(74, 52, 40, 0.7);
  margin-bottom: 24px;
}

.modal-actions {
  display: flex;
  gap: 16px;
}

.modal-actions .btn {
  flex: 1;
  justify-content: center;
}

/* Toast */
.toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toast {
  background: white;
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 20px 60px -15px rgba(45, 31, 22, 0.3);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 300px;
  animation: slideInRight 0.3s var(--ease-out-expo);
}

.toast.success {
  border-left: 4px solid #22c55e;
}

.toast.error {
  border-left: 4px solid #ef4444;
}

.toast-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.toast.success .toast-icon {
  background: #22c55e;
  color: white;
}

.toast.error .toast-icon {
  background: #ef4444;
  color: white;
}

.toast-icon svg {
  width: 16px;
  height: 16px;
}

.toast-content {
  flex: 1;
}

.toast-title {
  font-weight: 600;
  color: var(--leather-dark);
  margin-bottom: 4px;
}

.toast-message {
  font-size: 14px;
  color: var(--leather-brown);
}

.toast-action {
  padding: 8px 16px;
  background: var(--leather-tan);
  color: white;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.toast-action:hover {
  background: rgba(201, 168, 108, 0.9);
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(48px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .products-grid,
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .shop-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-content {
    order: 1;
  }
  
  .hero-image-wrapper {
    order: 2;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .products-grid,
  .categories-grid {
    grid-template-columns: 1fr;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .about-values {
    grid-template-columns: 1fr;
  }
  
  .shop-layout {
    flex-direction: column;
  }
  
  .shop-sidebar {
    width: 100%;
  }
  
  .shop-products-grid {
    grid-template-columns: 1fr;
  }
  
  .product-detail-grid {
    grid-template-columns: 1fr;
  }
  
  .cart-layout,
  .checkout-layout {
    grid-template-columns: 1fr;
  }
  
  .cart-summary,
  .checkout-summary {
    position: static;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .checkout-form-grid {
    grid-template-columns: 1fr;
  }
  
  .checkout-form-group.full-width {
    grid-column: span 1;
  }
  
  .product-detail-features {
    grid-template-columns: 1fr;
  }
  
  .product-detail-actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Utility Classes */
.hidden {
  display: none !important;
}

.line-clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
