﻿@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Manrope:wght@400;500;600;700&display=swap");
html {
  font-size: 16px;
  position: relative;
  min-height: 100%;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-weight: 400;
  background: radial-gradient(circle at top, #fff9f4 0%, #f7f1e8 45%, #f3eee4 100%);
  color: #2e2a25;
  margin: 0;
  line-height: 1.6;
}

.bg-white {
  background-color: #ffffff;
}

[contenteditable]:focus {
  outline: 0px solid transparent;
}

.no-outline:focus {
  outline: 0px solid transparent;
}

.border-dashed {
  border: dashed;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 600;
  color: #2e2a25;
}

h1 {
  font-size: 2.6rem;
}

h2 {
  font-size: 2.2rem;
}

h3 {
  font-size: 1.8rem;
}

h4 {
  font-size: 1.4rem;
}

h5 {
  font-size: 1.2rem;
}

h6 {
  font-size: 1.05rem;
}

.my-6 {
  margin-top: 6em;
  margin-bottom: 6em;
}

.my-7 {
  margin-top: 7em;
  margin-bottom: 7em;
}

.small {
  font-weight: 400;
  font-size: 0.8rem;
  color: #6f655c;
}

.x-small {
  font-weight: 400;
  font-size: 0.7rem;
  color: #6f655c;
}

.vh-10 {
  height: 10vh;
}

.vh-20 {
  height: 20vh;
}

.vh-25 {
  height: 25vh;
}

.vh-30 {
  height: 30vh;
}

.vh-40 {
  height: 40vh;
}

.vh-50 {
  height: 50vh;
}

.vh-50 {
  height: 50vh;
}

.vh-60 {
  height: 60vh;
}

.vh-70 {
  height: 70vh;
}

.vh-80 {
  height: 80vh;
}

.vh-90 {
  height: 90vh;
}

.radius-5 {
  border-radius: 5px;
}

.radius-10 {
  border-radius: 10px;
}

.radius-15 {
  border-radius: 15px;
}

.radius-20 {
  border-radius: 20px;
}

.icon-48, .icon-xsmall, .image-48, .image-xsmall {
  height: 48px;
}

.icon-96, .icon-small, .image-96, .image-small {
  height: 96px;
}

.icon-128, .icon-medium, .image-128, .image-medium {
  height: 128px;
}

.icon-256, .icon-large, .image-256, .image-large {
  height: 256px;
}

.text-justify {
  text-align: justify;
}

.req, .required {
  color: #b35345;
}

a {
  color: #d07a5f;
  text-decoration: none;
}
a:hover {
  color: rgb(194.7826086957, 90.0869565217, 57.2173913043);
}

.cursor-pointer {
  cursor: pointer;
}

.modal-body .title {
  font-size: 1.2rem;
  color: #d07a5f;
  margin-bottom: 5px;
}

.card-body .title {
  font-size: 1.2rem;
  color: #d07a5f;
  margin-bottom: 5px;
}

.modal-body .controls {
  margin-top: 10px;
  text-align: right;
}

.card-body .controls {
  margin-top: 10px;
  text-align: right;
}

.clickable:hover {
  background-color: #f8f4ee;
}

.stagger-1 {
  animation-delay: 0.1s;
}

.stagger-2 {
  animation-delay: 0.2s;
}

.stagger-3 {
  animation-delay: 0.3s;
}

.stagger-4 {
  animation-delay: 0.4s;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #fffdf9;
}
header .container {
  max-width: 1200px;
}

main {
  min-height: calc(100vh - 200px);
  padding: 2rem 0;
}

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

section {
  padding: 3rem 0;
}
section.bg-light {
  background-color: #fff9f4;
}
section.bg-dark {
  background-color: #2e2a25;
  color: #fffdf9;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2e2a25;
}
.section-title.text-center {
  text-align: center;
}

.section-description {
  font-size: 1.125rem;
  color: #6f655c;
  margin-bottom: 2rem;
  max-width: 600px;
}

.section-link {
  color: #d07a5f;
  text-decoration: none;
  font-weight: 500;
}
.section-link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  .section-description {
    font-size: 1rem;
  }
}
@media (max-width: 576px) {
  .section-title {
    font-size: 1.75rem;
  }
}
.footer {
  background: linear-gradient(135deg, #f3eee4, #fdf7f2);
  color: #2e2a25;
  padding: 2.5rem 0;
}
.footer strong {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 700;
  color: #2e2a25;
}
.footer a {
  color: #2e2a25;
  text-decoration: none;
}
.footer a:hover {
  color: #d07a5f;
}
.footer .text-muted,
.footer .small {
  color: rgba(46, 42, 37, 0.65) !important;
}
.footer .btn-primary {
  width: fit-content;
}

.footer form .form-control {
  border-radius: 999px;
}

.footer form .btn {
  border-radius: 999px;
}

.btn-primary {
  background-color: #d07a5f;
  border-color: #d07a5f;
  color: #ffffff;
}
.btn-primary:hover, .btn-primary:focus {
  background-color: rgb(201.052173913, 102.3391304348, 71.347826087);
  border-color: rgb(201.052173913, 102.3391304348, 71.347826087);
}

.btn-outline-light {
  border-color: rgba(46, 42, 37, 0.3);
  color: #2e2a25;
}
.btn-outline-light:hover, .btn-outline-light:focus {
  background-color: #2e2a25;
  border-color: #2e2a25;
  color: #ffffff;
}

.btn-outline-dark {
  border-color: #2e2a25;
  color: #2e2a25;
}
.btn-outline-dark:hover, .btn-outline-dark:focus {
  background-color: #2e2a25;
  border-color: #2e2a25;
  color: #ffffff;
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus {
  box-shadow: 0 0 0 0.1rem #ffffff, 0 0 0 0.25rem rgba(208, 122, 95, 0.45);
}

.btn-common {
  background-color: #d07a5f;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0;
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 500;
}
.btn-common:hover {
  background-color: rgb(194.7826086957, 90.0869565217, 57.2173913043);
}

.btn-outline-primary {
  border-color: #d07a5f;
  color: #d07a5f;
}
.btn-outline-primary:hover {
  background-color: #d07a5f;
  color: white;
}

.btn-outline-secondary {
  border-color: #6c8c74;
  color: #6c8c74;
}
.btn-outline-secondary:hover {
  background-color: #6c8c74;
  color: white;
}

.btn-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: white;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}
.btn-icon svg {
  width: 1rem;
  height: 1rem;
  color: #7b7269;
}
.btn-icon.active {
  background-color: #d07a5f;
}
.btn-icon.active svg {
  color: white;
}

.btn-link {
  color: #d07a5f;
  text-decoration: none;
  font-weight: 500;
}
.btn-link:hover {
  text-decoration: underline;
}

.form-control {
  border-radius: 0.5rem;
  border: 1px solid rgba(46, 42, 37, 0.2);
  padding: 0.6rem 0.85rem;
}
.form-control:focus {
  border-color: #d07a5f;
  box-shadow: 0 0 0 0.2rem rgba(208, 122, 95, 0.25);
}

.form-select {
  border-radius: 0.5rem;
  border: 1px solid rgba(46, 42, 37, 0.2);
  padding: 0.6rem 0.85rem;
}
.form-select:focus {
  border-color: #d07a5f;
  box-shadow: 0 0 0 0.2rem rgba(208, 122, 95, 0.25);
}

.form-floating > .form-control-plaintext::placeholder,
.form-floating > .form-control::placeholder {
  color: #6f655c;
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder,
.form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.form-range {
  height: 0.5rem;
}

.form-check {
  margin-bottom: 0.5rem;
}

.form-check-input {
  margin-top: 0.25em;
}

.product-actions .form-control,
.product-actions .form-select {
  margin-bottom: 1rem;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}
.contact-form .form-label {
  font-weight: 500;
  margin-bottom: 0.5rem;
}

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

.product-item {
  border: 1px solid rgba(46, 42, 37, 0.12);
  border-radius: 0;
  overflow: hidden;
  transition: 0.3s ease;
}
.product-item:hover {
  box-shadow: 0 18px 40px rgba(46, 42, 37, 0.08);
  transform: translateY(-5px);
}

.product-image {
  width: 100%;
  height: auto;
  display: block;
}

.home-card,
.product-card,
.detail-card,
.story-card,
.hero-card,
.newsletter-card {
  background: #fffdf9;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 18px 40px rgba(46, 42, 37, 0.08);
  border: 1px solid rgba(46, 42, 37, 0.08);
  animation: fade-up 0.8s ease both;
}

.hero-card {
  background: #fffaf6;
  border: 1px solid rgba(208, 122, 95, 0.2);
  box-shadow: 0 20px 60px rgba(46, 42, 37, 0.12);
}

.hero-card-top {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  color: #d07a5f;
  margin-bottom: 1rem;
}

.hero-card ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.25rem;
}

.hero-card li {
  padding: 0.65rem 0;
  border-bottom: 1px dashed rgba(46, 42, 37, 0.15);
  font-weight: 600;
}

.hero-card-footer {
  font-size: 0.95rem;
  color: rgba(46, 42, 37, 0.7);
}

.home-card h3,
.detail-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.home-card p,
.product-card p,
.detail-card p,
.story-card p {
  color: rgba(46, 42, 37, 0.72);
}

.card-link {
  font-weight: 600;
  color: #6c8c74;
}

.product-card {
  position: relative;
  padding-top: 2.25rem;
}

.product-card .product-image {
  height: 180px;
  object-fit: cover;
  border-radius: 1rem;
  margin-bottom: 1rem;
  background: #ffffff;
}

.product-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: rgba(208, 122, 95, 0.18);
  color: #d07a5f;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-meta {
  font-weight: 600;
  color: rgba(46, 42, 37, 0.6);
}

.product-note {
  display: block;
  margin-top: 0.5rem;
  color: rgba(46, 42, 37, 0.55);
}

.detail-card {
  background: #ffffff;
}

.story-card {
  background: linear-gradient(145deg, #fffaf6, #f7efe6);
}

.product-content {
  padding: 1rem;
}
.product-content h5 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.product-content .price {
  font-weight: 700;
  color: #d07a5f;
  font-size: 1.1rem;
}

.cat-item {
  border: 1px solid rgba(46, 42, 37, 0.12);
  border-radius: 0;
  overflow: hidden;
  position: relative;
}
.cat-item .image-holder {
  overflow: hidden;
}
.cat-item .image-holder img {
  transition: transform 0.3s ease;
}
.cat-item:hover img {
  transform: scale(1.05);
}
.cat-item .category-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 1rem;
}

.banner-item {
  position: relative;
  overflow: hidden;
}
.banner-item .image-holder {
  overflow: hidden;
}
.banner-item .image-holder img {
  transition: transform 0.3s ease;
}
.banner-item:hover img {
  transform: scale(1.05);
}
.banner-item .banner-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 1rem;
}

.features .col-md-3 {
  padding: 1rem;
}
.features .col-md-3 svg {
  font-size: 2rem;
  color: #d07a5f;
  margin-bottom: 1rem;
}
.features .col-md-3 h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.features .col-md-3 p {
  color: #6f655c;
  font-size: 0.9rem;
}

.swiper {
  position: relative;
}
.swiper .swiper-wrapper {
  display: flex;
}
.swiper .swiper-slide {
  flex-shrink: 0;
}
.swiper .swiper-pagination {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}
.swiper .swiper-pagination .swiper-pagination-bullet {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: rgba(46, 42, 37, 0.12);
  opacity: 0.5;
  transition: opacity 0.3s;
}
.swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  background-color: #d07a5f;
}
.swiper .icon-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #d07a5f;
  color: white;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 18px 40px rgba(46, 42, 37, 0.08);
}
.swiper .icon-arrow svg {
  width: 1.5rem;
  height: 1.5rem;
}
.swiper .icon-arrow-left {
  left: 1rem;
}
.swiper .icon-arrow-right {
  right: 1rem;
}

.main-swiper {
  height: 400px;
}
.main-swiper .banner-item {
  height: 100%;
}

.product-swiper .product-item {
  margin: 0 0.5rem;
}
.product-swiper .swiper-slide {
  width: 100%;
}

.home-carousel {
  margin-bottom: 2rem;
  padding: 1.5rem;
  border-radius: 1rem;
  background: #fffaf6;
  border: 1px solid rgba(46, 42, 37, 0.08);
  box-shadow: 0 18px 40px rgba(46, 42, 37, 0.08);
}

.carousel-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 1rem;
  background: #ffffff;
}

.carousel-copy {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.carousel-tag {
  align-self: flex-start;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: rgba(208, 122, 95, 0.18);
  color: #d07a5f;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.home-carousel .carousel-control-prev-icon,
.home-carousel .carousel-control-next-icon {
  filter: invert(0.2);
}

.border-animation-left {
  position: relative;
}
.border-animation-left::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 3px;
  background-color: #d07a5f;
  animation: borderAnimation 3s infinite;
}

@keyframes borderAnimation {
  0% {
    left: 0;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 0;
  }
}
.open-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.open-up.show {
  opacity: 1;
  transform: translateY(0);
}

.navbar {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(46, 42, 37, 0.12);
}
.navbar .navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
}
.navbar .navbar-brand svg {
  font-size: 1.5rem;
  margin-right: 0.5rem;
}
.navbar .nav-link {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.875rem;
  color: #2e2a25;
}
.navbar .nav-link.active {
  color: #d07a5f;
}
.navbar .btn {
  font-size: 0.875rem;
  text-transform: uppercase;
}

.cart-count-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #d07a5f;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 2px 6px;
  min-width: 20px;
  text-align: center;
  box-shadow: 0 6px 12px rgba(46, 42, 37, 0.2);
}

.cart-dropdown {
  width: 320px;
}

.cart-dropdown .dropdown-item {
  white-space: normal;
}

.cart-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 0.75rem;
  align-items: center;
}

.cart-item + .cart-item {
  margin-top: 1rem;
}

.cart-item img {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  object-fit: cover;
}

.cart-item-title {
  font-weight: 600;
}

.cart-item-meta {
  color: #6f655c;
  font-size: 0.85rem;
}

.cart-qty-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.35rem;
}

.cart-qty-controls button {
  border: 1px solid rgba(46, 42, 37, 0.15);
  background: #ffffff;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cart-summary {
  border-top: 1px solid rgba(46, 42, 37, 0.08);
  padding-top: 0.75rem;
  margin-top: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.offcanvas {
  background-color: #fffdf9;
}

.offcanvas-header {
  background-color: #d07a5f;
  color: white;
}
.offcanvas-header .btn-close {
  filter: brightness(0) invert(1);
}

.search-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.95);
  z-index: 1050;
  display: none;
}
.search-popup.show {
  display: block;
}
.search-popup .search-popup-container {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
}
.search-popup .form-control {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(46, 42, 37, 0.12);
  padding: 1rem 0;
  font-size: 1.25rem;
}
.search-popup .form-control::placeholder {
  color: #6f655c;
}
.search-popup .search-submit {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  border: none;
  background: none;
}
.search-popup .search-submit svg {
  width: 24px;
  height: 24px;
  color: #d07a5f;
}
.search-popup .cat-list {
  margin-top: 2rem;
}
.search-popup .cat-list .cat-list-item {
  margin-bottom: 1rem;
}
.search-popup .cat-list .cat-list-item a {
  color: #2e2a25;
  text-decoration: none;
  font-weight: 500;
  display: block;
  padding: 0.5rem 0;
}
.search-popup .cat-list .cat-list-item a:hover {
  color: #d07a5f;
}

.banner-section {
  padding: 3rem 0;
  background-color: #fff9f4;
}
.banner-section .banner-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2e2a25;
}
.banner-section .banner-description {
  font-size: 1.125rem;
  color: #6f655c;
  margin-bottom: 2rem;
  max-width: 600px;
}

.banner-item {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  margin-bottom: 2rem;
}
.banner-item .banner-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.banner-item:hover .banner-image {
  transform: scale(1.05);
}
.banner-item .banner-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 2rem;
}
.banner-item .banner-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: white;
  font-weight: 600;
}
.banner-item .banner-content p {
  color: white;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.banner-item .banner-content .btn {
  background-color: #d07a5f;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  text-transform: uppercase;
  font-weight: 500;
}
.banner-item .banner-content .btn:hover {
  background-color: rgb(194.7826086957, 90.0869565217, 57.2173913043);
}

.banner-carousel .banner-item {
  height: 100%;
}

.banner-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}
.banner-dots .banner-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background-color 0.3s;
}
.banner-dots .banner-dot.active {
  background-color: white;
}

.banner-arrows {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 1rem;
}
.banner-arrows .banner-arrow {
  background-color: rgba(255, 255, 255, 0.8);
  color: #2e2a25;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s;
}
.banner-arrows .banner-arrow:hover {
  background-color: white;
}
.banner-arrows .banner-arrow svg {
  width: 1.5rem;
  height: 1.5rem;
}

.hero-banner {
  height: 600px;
  position: relative;
  overflow: hidden;
}
.hero-banner .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-banner .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  display: flex;
  align-items: center;
  padding: 0 5rem;
}
.hero-banner .hero-overlay .hero-content {
  color: white;
}
.hero-banner .hero-overlay .hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.hero-banner .hero-overlay .hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 600px;
}
.hero-banner .hero-overlay .hero-content .btn {
  font-size: 1.25rem;
  padding: 1rem 2rem;
  text-transform: uppercase;
  font-weight: 600;
}

.featured-section {
  padding: 3rem 0;
  background-color: #fff9f4;
}
.featured-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2e2a25;
}
.featured-section .section-description {
  font-size: 1.125rem;
  color: #6f655c;
  margin-bottom: 2rem;
  max-width: 600px;
}

.featured-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.featured-card {
  background-color: #fffdf9;
  border: 1px solid rgba(46, 42, 37, 0.12);
  border-radius: 0;
  overflow: hidden;
  transition: 0.3s ease;
}
.featured-card:hover {
  box-shadow: 0 18px 40px rgba(46, 42, 37, 0.08);
  transform: translateY(-5px);
}
.featured-card .featured-image {
  height: 250px;
  overflow: hidden;
}
.featured-card .featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.featured-card .featured-content {
  padding: 1.5rem;
}
.featured-card .featured-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.featured-card .featured-content p {
  color: #6f655c;
  margin-bottom: 1rem;
}
.featured-card .featured-content .btn {
  margin-top: auto;
}

.featured-banner {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 0;
}
.featured-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured-banner .featured-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}
.featured-banner .featured-overlay .featured-content {
  color: white;
}
.featured-banner .featured-overlay .featured-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.featured-banner .featured-overlay .featured-content p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  max-width: 600px;
}
.featured-banner .featured-overlay .featured-content .btn {
  font-size: 1.125rem;
  padding: 0.75rem 1.5rem;
}

.featured-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: #f2c37a;
  color: white;
  padding: 0.5rem 1rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 0 -0.75rem;
}
.product-grid .product-item {
  margin: 0 0.75rem;
}

.product-list .product-item {
  display: flex;
  align-items: center;
  padding: 1rem;
  border: 1px solid rgba(46, 42, 37, 0.12);
  border-radius: 0;
  margin-bottom: 1rem;
  transition: 0.3s ease;
}
.product-list .product-item:hover {
  box-shadow: 0 18px 40px rgba(46, 42, 37, 0.08);
}
.product-list .product-item .product-image {
  width: 120px;
  height: 120px;
  object-fit: cover;
  margin-right: 1rem;
}
.product-list .product-item .product-info {
  flex: 1;
}
.product-list .product-item h5 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.product-list .product-item .price {
  font-weight: 700;
  color: #d07a5f;
  font-size: 1.1rem;
}

.product-filters {
  background-color: #fffdf9;
  padding: 1.5rem;
  border: 1px solid rgba(46, 42, 37, 0.12);
  border-radius: 0;
  margin-bottom: 1.5rem;
}
.product-filters h5 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.product-filters .filter-group {
  margin-bottom: 1.5rem;
}
.product-filters .filter-group h6 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.product-sorting {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.product-sorting select {
  border-radius: 0;
  border: 1px solid rgba(46, 42, 37, 0.12);
  padding: 0.5rem;
}

.product-pagination {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.product-pagination .page-item {
  margin: 0 0.25rem;
}
.product-pagination .page-item .page-link {
  border-radius: 0;
  border: 1px solid rgba(46, 42, 37, 0.12);
  color: #2e2a25;
}
.product-pagination .page-item .page-link:hover {
  background-color: #d07a5f;
  color: white;
}
.product-pagination .page-item.active .page-link {
  background-color: #d07a5f;
  color: white;
  border-color: #d07a5f;
}

.home-page {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  padding-bottom: 2.5rem;
}

.home-hero {
  padding: 4rem 0 2.5rem;
  background: linear-gradient(135deg, rgba(245, 212, 200, 0.9), rgba(247, 241, 232, 0.95));
  border-radius: 2rem;
  box-shadow: 0 20px 60px rgba(46, 42, 37, 0.12);
  animation: fade-up 0.8s ease;
}

.eyebrow {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(108, 140, 116, 0.15);
  color: #6c8c74;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.home-hero h1 {
  font-size: clamp(2.6rem, 3.4vw, 3.8rem);
  margin: 1.1rem 0 1rem;
}

.home-hero .lead {
  font-size: 1.1rem;
  color: rgba(46, 42, 37, 0.8);
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero-meta {
  font-size: 0.95rem;
  color: rgba(46, 42, 37, 0.7);
}

.home-section {
  padding: 0.75rem 0;
}

.home-section.accent {
  background: rgba(108, 140, 116, 0.1);
  border-radius: 1.75rem;
  padding: 2rem 0;
}

.section-head {
  margin-bottom: 1.75rem;
}

.section-head h2 {
  font-size: clamp(2rem, 2.6vw, 2.6rem);
}

.section-head p {
  color: rgba(46, 42, 37, 0.7);
  max-width: 640px;
}

.detail-grid {
  display: grid;
  gap: 1rem;
}

.newsletter {
  padding-bottom: 2.5rem;
}

.newsletter-card {
  display: grid;
  gap: 1.25rem;
  background: linear-gradient(135deg, rgba(242, 195, 122, 0.2), rgba(247, 241, 232, 0.9));
}

.newsletter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.newsletter-actions .form-control {
  flex: 1 1 240px;
  border-radius: 999px;
  border: 1px solid rgba(46, 42, 37, 0.2);
}

.newsletter-note {
  color: rgba(46, 42, 37, 0.6);
}

@media (max-width: 992px) {
  .home-hero {
    padding: 3rem 0 2rem;
  }
  .home-section.accent {
    padding: 1.5rem 0;
  }
  .carousel-image {
    height: 220px;
  }
}
.about-page .about-hero {
  padding: 4rem 0;
  background-color: #fff9f4;
}
.about-page .about-hero .about-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2e2a25;
}
.about-page .about-hero .about-description {
  font-size: 1.25rem;
  color: #6f655c;
  margin-bottom: 2rem;
  max-width: 600px;
}
.about-page .about-content {
  padding: 3rem 0;
}
.about-page .about-content .about-image {
  border: 1px solid rgba(46, 42, 37, 0.12);
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 2rem;
}
.about-page .about-content .about-image img {
  width: 100%;
  height: auto;
  display: block;
}
.about-page .about-content .about-text {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #6f655c;
  margin-bottom: 2rem;
}
.about-page .about-content .about-mission {
  background-color: #fff9f4;
  padding: 2rem;
  border: 1px solid rgba(46, 42, 37, 0.12);
  border-radius: 0;
  margin-bottom: 2rem;
}
.about-page .about-content .about-mission h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #2e2a25;
}
.about-page .about-content .about-values {
  background-color: #fffdf9;
  padding: 2rem;
  border: 1px solid rgba(46, 42, 37, 0.12);
  border-radius: 0;
}
.about-page .about-content .about-values h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #2e2a25;
}
.about-page .about-content .about-values ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.about-page .about-content .about-values ul li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.about-page .about-content .about-values ul li i {
  color: #d07a5f;
  margin-right: 1rem;
  font-size: 1.25rem;
}
.about-page .about-content .about-values ul li span {
  font-weight: 500;
  color: #2e2a25;
}
.about-page .team-section {
  padding: 3rem 0;
  background-color: #fff9f4;
}
.about-page .team-section .team-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
  color: #2e2a25;
}
.about-page .team-section .team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.about-page .team-section .team-member {
  text-align: center;
}
.about-page .team-section .team-member .team-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  object-fit: cover;
  border: 4px solid #fffdf9;
}
.about-page .team-section .team-member .team-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #2e2a25;
}
.about-page .team-section .team-member .team-position {
  font-size: 0.875rem;
  color: #6f655c;
  margin-bottom: 1rem;
}
.about-page .team-section .team-member .team-bio {
  font-size: 0.875rem;
  color: #6f655c;
  line-height: 1.5;
}

.contact-page .honeypot-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-page .contact-hero {
  padding: 4rem 0;
  background-color: #fff9f4;
}
.contact-page .contact-hero .contact-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2e2a25;
}
.contact-page .contact-hero .contact-description {
  font-size: 1.25rem;
  color: #6f655c;
  margin-bottom: 2rem;
  max-width: 600px;
}
.contact-page .contact-content {
  padding: 3rem 0;
}
.contact-page .contact-content .contact-form {
  background-color: #fffdf9;
  border: 1px solid rgba(46, 42, 37, 0.12);
  border-radius: 0;
  padding: 2rem;
  margin-bottom: 2rem;
}
.contact-page .contact-content .contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: #2e2a25;
}
.contact-page .contact-content .contact-form .form-group {
  margin-bottom: 1.5rem;
}
.contact-page .contact-content .contact-form .form-label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: block;
}
.contact-page .contact-content .contact-form .form-control {
  border-radius: 0;
  border: 1px solid rgba(46, 42, 37, 0.12);
  padding: 0.75rem;
}
.contact-page .contact-content .contact-form textarea.form-control {
  min-height: 150px;
}
.contact-page .contact-content .contact-form .btn {
  background-color: #d07a5f;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
}
.contact-page .contact-content .contact-form .btn:hover {
  background-color: rgb(194.7826086957, 90.0869565217, 57.2173913043);
}
.contact-page .contact-content .contact-info {
  background-color: #fff9f4;
  border: 1px solid rgba(46, 42, 37, 0.12);
  border-radius: 0;
  padding: 2rem;
}
.contact-page .contact-content .contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: #2e2a25;
}
.contact-page .contact-content .contact-info .contact-method {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-page .contact-content .contact-info .contact-method i {
  color: #d07a5f;
  font-size: 1.5rem;
  margin-right: 1rem;
  margin-top: 0.25rem;
}
.contact-page .contact-content .contact-info .contact-method .contact-details {
  flex: 1;
}
.contact-page .contact-content .contact-info .contact-method .contact-details h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #2e2a25;
}
.contact-page .contact-content .contact-info .contact-method .contact-details p {
  color: #6f655c;
  margin: 0;
}
.contact-page .contact-content .contact-info .contact-hours {
  margin-top: 2rem;
}
.contact-page .contact-content .contact-info .contact-hours h4 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #2e2a25;
}
.contact-page .contact-content .contact-info .contact-hours .hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}
.contact-page .contact-content .contact-info .contact-hours .hours-grid .hour-item {
  background-color: #fffdf9;
  padding: 1rem;
  border: 1px solid rgba(46, 42, 37, 0.12);
  border-radius: 0;
}
.contact-page .contact-content .contact-info .contact-hours .hours-grid .hour-item .day {
  font-weight: 600;
  color: #2e2a25;
  margin-bottom: 0.25rem;
}
.contact-page .contact-content .contact-info .contact-hours .hours-grid .hour-item .time {
  color: #6f655c;
  font-size: 0.875rem;
}
.contact-page .contact-map {
  margin-top: 2rem;
}
.contact-page .contact-map h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #2e2a25;
}
.contact-page .contact-map .map-container {
  height: 400px;
  border: 1px solid rgba(46, 42, 37, 0.12);
  border-radius: 0;
  overflow: hidden;
}

@media (max-width: 768px) {
  .about-page .about-hero .about-title {
    font-size: 2rem;
  }
  .about-page .about-hero .about-description {
    font-size: 1rem;
  }
  .contact-page .contact-hero .contact-title {
    font-size: 2rem;
  }
  .contact-page .contact-hero .contact-description {
    font-size: 1rem;
  }
}
.account-page {
  padding: 2rem 0 3rem;
}

.auth-card {
  background: #fffdf9;
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(46, 42, 37, 0.12);
  border: 1px solid rgba(46, 42, 37, 0.08);
}

.auth-card h1 {
  margin-bottom: 0.5rem;
}

.auth-subtitle {
  color: #6f655c;
  margin-bottom: 2rem;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
  color: #8f857a;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(46, 42, 37, 0.15);
}

.auth-meta {
  margin-top: 1.5rem;
  color: #8f857a;
  font-size: 0.9rem;
}

.account-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, rgba(245, 212, 200, 0.8), rgba(247, 241, 232, 0.95));
  border-radius: 2rem;
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 18px 40px rgba(46, 42, 37, 0.08);
}

.account-hero p {
  color: rgba(46, 42, 37, 0.75);
  margin-bottom: 0;
}

.dashboard-card {
  background: #fffdf9;
  border-radius: 1rem;
  padding: 1.75rem;
  border: 1px solid rgba(46, 42, 37, 0.08);
  box-shadow: 0 10px 30px rgba(46, 42, 37, 0.08);
}

.dashboard-card h3 {
  margin-bottom: 0.75rem;
}

.account-section {
  margin-top: 2.5rem;
}

.account-panel {
  background: #ffffff;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid rgba(46, 42, 37, 0.12);
  box-shadow: 0 10px 30px rgba(46, 42, 37, 0.08);
}

.account-tabs {
  margin-top: 1.5rem;
}

.account-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.products-page .products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.products-page .products-header .products-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2e2a25;
}
.products-page .products-header .products-sort {
  display: flex;
  align-items: center;
}
.products-page .products-header .products-sort select {
  border-radius: 0;
  border: 1px solid rgba(46, 42, 37, 0.12);
  padding: 0.5rem;
  margin-left: 1rem;
}
.products-page .products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.products-page .product-card {
  border: 1px solid rgba(46, 42, 37, 0.12);
  border-radius: 0;
  overflow: hidden;
  transition: 0.3s ease;
}
.products-page .product-card:hover {
  box-shadow: 0 18px 40px rgba(46, 42, 37, 0.08);
  transform: translateY(-5px);
}
.products-page .product-card .product-image {
  height: 250px;
  overflow: hidden;
}
.products-page .product-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.products-page .product-card .product-content {
  padding: 1.5rem;
}
.products-page .product-card .product-content .product-title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.products-page .product-card .product-content .product-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #d07a5f;
  margin-bottom: 1rem;
}
.products-page .product-card .product-content .product-actions {
  display: flex;
  gap: 0.5rem;
}
.products-page .product-card .product-content .product-actions .btn {
  flex: 1;
}
.products-page .products-filters {
  background-color: #fffdf9;
  border: 1px solid rgba(46, 42, 37, 0.12);
  border-radius: 0;
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.products-page .products-filters h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.products-page .products-filters .filter-group {
  margin-bottom: 1.5rem;
}
.products-page .products-filters .filter-group h5 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.products-page .products-pagination {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}
.products-page .products-pagination .page-item {
  margin: 0 0.25rem;
}
.products-page .products-pagination .page-item .page-link {
  border-radius: 0;
  border: 1px solid rgba(46, 42, 37, 0.12);
  color: #2e2a25;
  padding: 0.5rem 0.75rem;
}
.products-page .products-pagination .page-item .page-link:hover {
  background-color: #d07a5f;
  color: white;
}
.products-page .products-pagination .page-item.active .page-link {
  background-color: #d07a5f;
  color: white;
  border-color: #d07a5f;
}

.product-detail-page .product-gallery {
  margin-bottom: 2rem;
}
.product-detail-page .product-gallery .main-image {
  border: 1px solid rgba(46, 42, 37, 0.12);
  overflow: hidden;
}
.product-detail-page .product-gallery .main-image img {
  width: 100%;
  height: auto;
  display: block;
}
.product-detail-page .product-gallery .thumbnail-images {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}
.product-detail-page .product-gallery .thumbnail-images .thumbnail {
  width: 60px;
  height: 60px;
  border: 1px solid rgba(46, 42, 37, 0.12);
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.product-detail-page .product-gallery .thumbnail-images .thumbnail.active {
  opacity: 1;
  border-color: #d07a5f;
}
.product-detail-page .product-info h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2e2a25;
}
.product-detail-page .product-info .product-rating {
  margin-bottom: 1rem;
}
.product-detail-page .product-info .product-rating .rating-stars {
  color: #f2c37a;
  margin-right: 0.5rem;
}
.product-detail-page .product-info .product-rating .rating-count {
  color: #6f655c;
  font-size: 0.875rem;
}
.product-detail-page .product-info .product-price {
  font-size: 2rem;
  font-weight: 700;
  color: #d07a5f;
  margin-bottom: 1rem;
}
.product-detail-page .product-info .product-description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #6f655c;
  margin-bottom: 2rem;
}
.product-detail-page .product-info .product-specs {
  background-color: #fff9f4;
  padding: 1.5rem;
  border: 1px solid rgba(46, 42, 37, 0.12);
  border-radius: 0;
  margin-bottom: 2rem;
}
.product-detail-page .product-info .product-specs h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.product-detail-page .product-info .product-specs ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.product-detail-page .product-info .product-specs ul li {
  margin-bottom: 0.5rem;
}
.product-detail-page .product-info .product-specs ul li strong {
  color: #2e2a25;
}
.product-detail-page .product-info .product-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}
.product-detail-page .product-info .product-actions .quantity-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.product-detail-page .product-info .product-actions .quantity-group label {
  margin-bottom: 0;
}
.product-detail-page .product-info .product-actions .quantity-group input {
  width: 80px;
}
.product-detail-page .product-info .product-actions .size-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.product-detail-page .product-info .product-actions .size-group label {
  margin-bottom: 0;
}

.cart-page .cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.cart-page .cart-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2e2a25;
}
.cart-page .cart-items {
  margin-bottom: 2rem;
}
.cart-page .cart-items .cart-item {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  border: 1px solid rgba(46, 42, 37, 0.12);
  border-radius: 0;
  margin-bottom: 1rem;
  transition: 0.3s ease;
}
.cart-page .cart-items .cart-item:hover {
  box-shadow: 0 18px 40px rgba(46, 42, 37, 0.08);
}
.cart-page .cart-items .cart-item .item-image {
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin-right: 1.5rem;
  border: 1px solid rgba(46, 42, 37, 0.12);
}
.cart-page .cart-items .cart-item .item-info {
  flex: 1;
}
.cart-page .cart-items .cart-item .item-info h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}
.cart-page .cart-items .cart-item .item-info .item-details {
  color: #6f655c;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.cart-page .cart-items .cart-item .item-info .item-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #d07a5f;
}
.cart-page .cart-items .cart-item .item-quantity {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 1.5rem;
}
.cart-page .cart-items .cart-item .item-quantity input {
  width: 60px;
}
.cart-page .cart-items .cart-item .item-total {
  font-size: 1.25rem;
  font-weight: 700;
  color: #d07a5f;
  margin-right: 1.5rem;
}
.cart-page .cart-items .cart-item .item-remove {
  color: #c5544b;
  cursor: pointer;
}
.cart-page .cart-items .cart-item .item-remove:hover {
  color: rgb(167.1428571429, 62.2142857143, 53.8571428571);
}
.cart-page .cart-summary {
  background-color: #fff9f4;
  border: 1px solid rgba(46, 42, 37, 0.12);
  border-radius: 0;
  padding: 1.5rem;
}
.cart-page .cart-summary h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.cart-page .cart-summary .summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.cart-page .cart-summary .summary-row:last-child {
  border-top: 1px solid rgba(46, 42, 37, 0.12);
  padding-top: 0.5rem;
  margin-bottom: 0;
}
.cart-page .cart-summary .summary-row .summary-label {
  font-weight: 500;
}
.cart-page .cart-summary .summary-row .summary-value {
  font-weight: 700;
}
.cart-page .cart-summary .summary-total .summary-value {
  font-size: 1.5rem;
  color: #d07a5f;
}
.cart-page .cart-summary .checkout-btn {
  background-color: #d07a5f;
  color: white;
  border: none;
  padding: 1rem;
  width: 100%;
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 1rem;
}
.cart-page .cart-summary .checkout-btn:hover {
  background-color: rgb(194.7826086957, 90.0869565217, 57.2173913043);
}

.wishlist-page .wishlist-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.wishlist-page .wishlist-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2e2a25;
}
.wishlist-page .wishlist-header .wishlist-actions .btn {
  margin-left: 0.5rem;
}
.wishlist-page .wishlist-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.wishlist-page .wishlist-item {
  border: 1px solid rgba(46, 42, 37, 0.12);
  border-radius: 0;
  overflow: hidden;
  transition: 0.3s ease;
}
.wishlist-page .wishlist-item:hover {
  box-shadow: 0 18px 40px rgba(46, 42, 37, 0.08);
  transform: translateY(-5px);
}
.wishlist-page .wishlist-item .wishlist-image {
  height: 200px;
  overflow: hidden;
}
.wishlist-page .wishlist-item .wishlist-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.wishlist-page .wishlist-item .wishlist-content {
  padding: 1.5rem;
}
.wishlist-page .wishlist-item .wishlist-content .wishlist-title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.wishlist-page .wishlist-item .wishlist-content .wishlist-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #d07a5f;
  margin-bottom: 1rem;
}
.wishlist-page .wishlist-item .wishlist-content .wishlist-actions {
  display: flex;
  gap: 0.5rem;
}
.wishlist-page .wishlist-summary {
  background-color: #fff9f4;
  border: 1px solid rgba(46, 42, 37, 0.12);
  border-radius: 0;
  padding: 1.5rem;
  text-align: center;
}
.wishlist-page .wishlist-summary h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.wishlist-page .wishlist-summary .wishlist-count {
  font-size: 2rem;
  font-weight: 700;
  color: #d07a5f;
  margin-bottom: 1rem;
}
.wishlist-page .wishlist-summary .btn {
  background-color: #d07a5f;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
}
.wishlist-page .wishlist-summary .btn:hover {
  background-color: rgb(194.7826086957, 90.0869565217, 57.2173913043);
}

@media (max-width: 768px) {
  .products-page .products-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .products-page .products-sort {
    width: 100%;
  }
  .products-page .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  .cart-page .cart-item {
    flex-direction: column;
    text-align: center;
  }
  .cart-page .cart-item .item-image {
    margin: 0 auto 1rem;
  }
  .cart-page .cart-item .item-quantity,
  .cart-page .cart-item .item-total,
  .cart-page .cart-item .item-remove {
    margin: 0.5rem 0;
  }
}
.product-detail .product-images {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}
.product-detail .product-images .main-image {
  flex: 1;
  position: relative;
}
.product-detail .product-images .main-image .image-zoom {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(46, 42, 37, 0.12);
}
.product-detail .product-images .main-image .image-zoom img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}
.product-detail .product-images .main-image .image-zoom:hover img {
  transform: scale(1.05);
}
.product-detail .product-images .thumbnail-gallery {
  flex: 0 0 200px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.product-detail .product-images .thumbnail-gallery .thumbnail {
  border: 1px solid rgba(46, 42, 37, 0.12);
  padding: 0.5rem;
  cursor: pointer;
  transition: border-color 0.3s ease;
}
.product-detail .product-images .thumbnail-gallery .thumbnail img {
  width: 100%;
  height: auto;
}
.product-detail .product-images .thumbnail-gallery .thumbnail:hover, .product-detail .product-images .thumbnail-gallery .thumbnail.active {
  border-color: #d07a5f;
}
.product-detail .product-info {
  flex: 1;
}
.product-detail .product-info .product-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2e2a25;
}
.product-detail .product-info .product-price {
  font-size: 1.5rem;
  color: #f2c37a;
  font-weight: 600;
  margin-bottom: 1rem;
}
.product-detail .product-info .product-description {
  font-size: 1rem;
  color: #6f655c;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.product-detail .product-info .product-specs {
  margin-bottom: 2rem;
}
.product-detail .product-info .product-specs .spec-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #2e2a25;
}
.product-detail .product-info .product-specs .spec-value {
  color: #6f655c;
}
.product-detail .product-info .add-to-cart {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}
.product-detail .product-info .add-to-cart .quantity-input {
  width: 80px;
  padding: 0.5rem;
  border: 1px solid rgba(46, 42, 37, 0.12);
  border-radius: 0;
}
.product-detail .product-info .add-to-cart .btn {
  flex: 1;
}
.product-detail .product-info .product-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}
.product-detail .product-info .product-actions .btn {
  flex: 1;
}
.product-detail .product-info .product-share {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}
.product-detail .product-info .product-share .share-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(46, 42, 37, 0.12);
  border-radius: 0;
  color: #6f655c;
  text-decoration: none;
  transition: all 0.3s ease;
}
.product-detail .product-info .product-share .share-btn:hover {
  background-color: #fff9f4;
  color: #2e2a25;
}

.product-tabs {
  margin-top: 3rem;
}
.product-tabs .nav-tabs {
  border-bottom: 1px solid rgba(46, 42, 37, 0.12);
}
.product-tabs .nav-tabs .nav-link {
  border: none;
  color: #6f655c;
  padding: 1rem 1.5rem;
  border-radius: 0;
  transition: all 0.3s ease;
}
.product-tabs .nav-tabs .nav-link:hover, .product-tabs .nav-tabs .nav-link.active {
  color: #d07a5f;
  border-bottom: 2px solid #d07a5f;
  background-color: transparent;
}
.product-tabs .tab-content {
  padding: 1.5rem 0;
}
.product-tabs .tab-content .tab-pane {
  padding: 1rem 0;
}

.related-products {
  margin-top: 4rem;
}
.related-products .section-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #2e2a25;
}
.related-products .product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.product-card-media {
  position: relative;
  display: block;
}

.product-card-link {
  display: block;
}

.product-card-media--hero {
  border-radius: 26px;
  overflow: hidden;
}

.product-like-button {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: #2e2a25;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px rgba(28, 22, 18, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  cursor: pointer;
  z-index: 2;
}

.product-like-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(28, 22, 18, 0.24);
}

.product-like-button.is-liked {
  color: #d07a5f;
}

.product-like-action.is-liked {
  color: #d07a5f;
}

.gallery-section .product-card--interactive {
  position: relative;
}

.gallery-section .product-card-media {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: 0 14px 28px rgba(28, 22, 18, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-section .product-card-media img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}

.gallery-section .product-card--interactive:hover .product-card-media {
  transform: translateY(-4px);
  box-shadow: 0 20px 38px rgba(28, 22, 18, 0.2);
}

.gallery-section .product-card-actions {
  margin-top: 1rem;
}

.product-preview-modal .modal-content {
  border-radius: 24px;
  overflow: hidden;
}

.product-preview-modal .modal-body {
  padding: 2rem 2.5rem;
}

.product-preview {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.5rem;
  align-items: start;
}

.product-preview-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-preview-main {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(46, 42, 37, 0.12);
  background: #f8f4ee;
  aspect-ratio: 1/1;
}

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

.product-preview-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.product-preview-thumb {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  border: 1px solid rgba(46, 42, 37, 0.12);
  padding: 0;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.product-preview-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-preview-thumb.active,
.product-preview-thumb:hover {
  border-color: #f2c37a;
  box-shadow: 0 10px 20px rgba(28, 22, 18, 0.15);
  transform: translateY(-2px);
}

.product-preview-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-preview-title {
  font-size: 2rem;
  margin: 0;
}

.product-preview-description {
  color: #6f655c;
  line-height: 1.6;
}

.product-preview-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f2c37a;
}

.product-preview-meta {
  color: #6f655c;
  font-size: 0.95rem;
}

.product-preview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.product-preview-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 991px) {
  .product-preview-modal .modal-body {
    padding: 1.5rem;
  }
  .product-preview {
    grid-template-columns: 1fr;
  }
  .product-preview-thumbs {
    justify-content: flex-start;
  }
}

@media (max-width: 575px) {
  .product-preview-modal .modal-body {
    padding: 1.25rem;
  }
  .product-preview-thumb {
    width: 60px;
    height: 60px;
  }
}
