@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/* Cooper BT is not available as a web font — Playfair Display is used as an elegant serif substitute */

:root {
  --primary: #A57865;
  --primary-dark: #8B6250;
  --primary-light: #C49B8A;
  --secondary: #F2D9CE;
  --secondary-light: #FBF0EA;
  --white: #FFFFFF;
  --off-white: #FAFAFA;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
  --rounded: 0.5rem;
  --rounded-lg: 0.75rem;
  --rounded-xl: 1rem;
}

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

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--gray-900);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }

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

.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  color: var(--gray-500);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--rounded);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary);
}

.btn-lg {
  padding: 0.9rem 2.25rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
}

.btn-full {
  width: 100%;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}
.nav-logo span {
  color: var(--gray-900);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--gray-600);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.nav-cart {
  position: relative;
  font-size: 1.35rem;
  color: var(--gray-700);
  transition: color 0.2s;
}
.nav-cart:hover { color: var(--primary); }

.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--gray-700);
  padding: 0.25rem;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 1rem 1.5rem;
}

.mobile-menu.open { display: block; }

.mobile-menu a {
  display: block;
  padding: 0.75rem 0;
  font-weight: 500;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
  transition: color 0.2s;
}
.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--primary);
}

/* Footer */
.footer {
  background: var(--gray-900);
  color: var(--gray-300);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand .nav-logo {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  display: inline-block;
  color: var(--white);
}
.footer-brand .nav-logo span { color: var(--primary-light); }
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gray-400);
}

.footer h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--gray-400);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--primary-light); }

.footer-newsletter p {
  font-size: 0.9rem;
  color: var(--gray-400);
  margin-bottom: 1rem;
}

.footer-newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.footer-newsletter-form input {
  flex: 1;
  padding: 0.65rem 1rem;
  border-radius: var(--rounded);
  border: 1px solid var(--gray-700);
  background: var(--gray-800);
  color: var(--white);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
.footer-newsletter-form input:focus {
  border-color: var(--primary);
}
.footer-newsletter-form input::placeholder {
  color: var(--gray-500);
}

.footer-newsletter-form button {
  padding: 0.65rem 1.25rem;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--rounded);
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s;
}
.footer-newsletter-form button:hover {
  background: var(--primary-dark);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gray-800);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 1.1rem;
  transition: all 0.2s;
}
.social-links a:hover {
  background: var(--primary);
  color: var(--white);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--gray-800);
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* Card */
.product-card {
  background: var(--white);
  border-radius: var(--rounded-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--gray-100);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.product-card-img {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--secondary-light);
}

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

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

.product-card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: var(--white);
  padding: 0.25rem 0.7rem;
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.product-card-body {
  padding: 1.25rem;
}

.product-card-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.product-card-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.product-card-price {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
}

.product-card-add {
  width: 100%;
  padding: 0.6rem;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--rounded);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.25s;
}
.product-card-add:hover {
  background: var(--primary-dark);
}

/* Toast */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--gray-900);
  color: var(--white);
  padding: 0.85rem 1.5rem;
  border-radius: var(--rounded);
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 9999;
  box-shadow: var(--shadow-lg);
  transform: translateY(150%);
  transition: transform 0.3s ease;
}

.toast.show {
  transform: translateY(0);
}

/* Quantity selector */
.qty-selector {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--gray-200);
  border-radius: var(--rounded);
  overflow: hidden;
}

.qty-selector button {
  width: 38px;
  height: 38px;
  border: none;
  background: var(--gray-50);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-700);
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qty-selector button:hover { background: var(--gray-200); }

.qty-selector input {
  width: 50px;
  height: 38px;
  text-align: center;
  border: none;
  border-left: 2px solid var(--gray-200);
  border-right: 2px solid var(--gray-200);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gray-800);
  outline: none;
}

/* FAQ Accordion */
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--rounded);
  overflow: hidden;
  margin-bottom: 0.75rem;
  background: var(--white);
}

.faq-question {
  width: 100%;
  padding: 1.1rem 1.25rem;
  background: none;
  border: none;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gray-800);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: background 0.2s;
}
.faq-question:hover { background: var(--gray-50); }

.faq-icon {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
  color: var(--primary);
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 1.25rem 1.1rem;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary) 50%, var(--primary-light) 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 600px;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-block;
  background: var(--white);
  color: var(--primary);
  padding: 0.3rem 1rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: 3.25rem;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-title span {
  color: var(--primary);
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Category highlights */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.category-card {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--rounded-xl);
  overflow: hidden;
  cursor: pointer;
  background: var(--secondary);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.category-card:hover { transform: translateY(-4px); }

.category-card .category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
  z-index: 1;
}

.category-card .category-label {
  position: relative;
  z-index: 2;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  padding: 0 1rem;
}

.category-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--rounded-xl);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
}

.testimonial-stars {
  color: #F59E0B;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author strong {
  font-size: 0.9rem;
  color: var(--gray-800);
  display: block;
}
.testimonial-author span {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* Newsletter section */
.newsletter-section {
  background: var(--secondary-light);
  padding: 3.5rem 0;
  border-radius: var(--rounded-xl);
}

.newsletter-section .section-title {
  font-size: 1.75rem;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 500px;
  margin: 1.5rem auto 0;
}

.newsletter-form input {
  flex: 1;
  padding: 0.85rem 1.25rem;
  border-radius: var(--rounded);
  border: 2px solid var(--gray-200);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-form input:focus {
  border-color: var(--primary);
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.75rem;
}

/* Shop layout */
.shop-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2.5rem;
  align-items: start;
}

.shop-sidebar {
  position: sticky;
  top: 90px;
}

.shop-sidebar h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.filter-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 2rem;
}

.filter-list button {
  background: none;
  border: none;
  text-align: left;
  padding: 0.55rem 0.85rem;
  border-radius: var(--rounded);
  font-size: 0.9rem;
  color: var(--gray-600);
  transition: all 0.2s;
  cursor: pointer;
  font-weight: 500;
}

.filter-list button:hover {
  background: var(--secondary-light);
  color: var(--primary);
}

.filter-list button.active {
  background: var(--secondary);
  color: var(--primary);
  font-weight: 700;
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.shop-toolbar p {
  font-size: 0.9rem;
  color: var(--gray-500);
}

.shop-sort {
  padding: 0.5rem 1rem;
  border-radius: var(--rounded);
  border: 2px solid var(--gray-200);
  font-size: 0.9rem;
  color: var(--gray-700);
  outline: none;
  background: var(--white);
  cursor: pointer;
}

/* Product detail */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.product-gallery {
  position: sticky;
  top: 90px;
}

.product-gallery-main {
  aspect-ratio: 1;
  border-radius: var(--rounded-xl);
  overflow: hidden;
  background: var(--secondary-light);
  margin-bottom: 1rem;
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.product-gallery-thumbs img {
  aspect-ratio: 1;
  border-radius: var(--rounded);
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}
.product-gallery-thumbs img:hover,
.product-gallery-thumbs img.active {
  border-color: var(--primary);
}

.product-info-breadcrumb {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: 1rem;
}
.product-info-breadcrumb a {
  color: var(--primary);
}

.product-info-name {
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
}

.product-info-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1.25rem;
}

.product-info-desc {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.product-info-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.product-info-meta {
  border-top: 1px solid var(--gray-200);
  padding-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--gray-500);
}

.product-info-meta p {
  margin-bottom: 0.4rem;
}

/* Cart */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
  align-items: start;
}

.cart-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--gray-200);
  align-items: center;
}

.cart-item-img {
  width: 100px;
  height: 100px;
  border-radius: var(--rounded);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--secondary-light);
}

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

.cart-item-details {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.cart-item-meta {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 0.5rem;
}

.cart-item-price {
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 1.05rem;
}

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

.cart-item-remove {
  background: none;
  border: none;
  color: var(--gray-400);
  font-size: 1.15rem;
  transition: color 0.2s;
  padding: 0.25rem;
}
.cart-item-remove:hover { color: #EF4444; }

.cart-summary {
  position: sticky;
  top: 90px;
  background: var(--gray-50);
  border-radius: var(--rounded-xl);
  padding: 2rem;
  border: 1px solid var(--gray-200);
}

.cart-summary h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  font-size: 0.95rem;
  color: var(--gray-600);
}

.cart-summary-row.total {
  border-top: 2px solid var(--gray-300);
  margin-top: 0.5rem;
  padding-top: 1rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gray-900);
}

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

.cart-empty-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  display: block;
}

.cart-empty h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.cart-empty p {
  color: var(--gray-500);
  margin-bottom: 1.5rem;
}

/* Checkout */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 2.5rem;
  align-items: start;
}

.checkout-section {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--rounded-xl);
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.checkout-section h3 {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

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

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--rounded);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--primary);
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--rounded);
  margin-bottom: 0.75rem;
  cursor: pointer;
  transition: all 0.2s;
}
.payment-option:hover,
.payment-option.selected {
  border-color: var(--primary);
  background: var(--secondary-light);
}

.payment-option input[type="radio"] {
  accent-color: var(--primary);
  width: 18px;
  height: 18px;
}

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

.payment-option .payment-info strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}

.payment-option .payment-info span {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* About */
.about-hero {
  background: var(--secondary-light);
  padding: 4rem 0;
  text-align: center;
}

.about-hero h1 {
  font-size: 2.75rem;
  margin-bottom: 1rem;
}

.about-hero p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--gray-600);
  font-size: 1.05rem;
}

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  padding: 4rem 0;
}

.about-story-img {
  border-radius: var(--rounded-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}

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

.about-story h2 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

.about-story p {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.team-card {
  text-align: center;
}

.team-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--rounded-xl);
  margin-bottom: 1rem;
}

.team-card h4 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.team-card span {
  font-size: 0.85rem;
  color: var(--gray-500);
}

.mission-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 3rem 0;
}

.stat-card {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--secondary-light);
  border-radius: var(--rounded-xl);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray-600);
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--rounded);
  background: var(--secondary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.contact-info-item p {
  font-size: 0.9rem;
  color: var(--gray-600);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--rounded);
  font-size: 0.95rem;
  outline: none;
  margin-bottom: 1rem;
  transition: border-color 0.2s;
  font-family: inherit;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
}
.contact-form textarea {
  resize: vertical;
  min-height: 130px;
}

.map-placeholder {
  width: 100%;
  height: 280px;
  background: var(--secondary-light);
  border-radius: var(--rounded-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* Empty state */
.empty-state {
  text-align: center;
  padding: 4rem 0;
}

.empty-state-icon {
  font-size: 3.5rem;
  display: block;
  margin-bottom: 1rem;
}

.empty-state h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.empty-state p {
  color: var(--gray-500);
  margin-bottom: 1.5rem;
}

/* Page header */
.page-header {
  background: var(--secondary-light);
  padding: 3rem 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
}

.page-header p {
  color: var(--gray-500);
  font-size: 1rem;
}

/* Spacing utilities */
.section { padding: 4.5rem 0; }
.section-sm { padding: 3rem 0; }
.bg-secondary { background: var(--secondary-light); }

/* Load more / pagination */
.load-more-wrap {
  text-align: center;
  margin-top: 2.5rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .mission-stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cart-layout { grid-template-columns: 1fr; }
  .checkout-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .about-story { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .hero-title { font-size: 2.25rem; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { position: static; }
  .product-detail { grid-template-columns: 1fr; gap: 2rem; }
  .product-gallery { position: static; }
  .product-info-name { font-size: 1.75rem; }
  .section-title { font-size: 1.6rem; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero { padding: 3rem 0; }
  .hero-title { font-size: 1.75rem; }
  .hero-desc { font-size: 0.95rem; }
  .category-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .mission-stats { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .product-card-body { padding: 1rem; }
}
