:root {
  --bg: #FAF7F2;
  --surface: #FFFFFF;
  --primary: #8B5E3C;
  --secondary: #D4A373;
  --accent: #E8C9A8;
  --heading: #2C2C2C;
  --body: #666666;
  --border: #E6E2DC;
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.03);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 16px 40px rgba(0,0,0,0.1);
  --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  --max-width: 1280px;
}

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

html, body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg);
  color: var(--body);
  line-height: 1.6;
  font-size: 15px;
  overflow-x: hidden;
  max-width: 100%;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

button, input, select, textarea {
  font-family: 'Poppins', sans-serif;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  transition: var(--transition);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: var(--transition);
  border-radius: 0;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--surface);
}

.btn-primary:hover {
  background-color: var(--heading);
}

.btn-outline {
  border: 1px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--surface);
}

.btn-white {
  background-color: var(--surface);
  color: var(--heading);
}

.btn-white:hover {
  background-color: var(--primary);
  color: var(--surface);
}

.section {
  padding: 100px 0;
}

.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px auto;
}

.section-header span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--secondary);
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.section-header p {
  color: var(--body);
}

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

.badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--primary);
  color: var(--surface);
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
}

.star-rating {
  color: var(--secondary);
  font-size: 12px;
}

.star-rating i {
  margin-right: 2px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

header.scrolled {
  background-color: var(--surface);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--border);
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}

header.scrolled .header-top {
  border-bottom-color: var(--border);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--heading);
  letter-spacing: 1px;
}

header:not(.scrolled) .logo {
  color: var(--surface);
}

header:not(.scrolled) .nav-link {
  color: var(--surface);
}

header:not(.scrolled) .header-actions button,
header:not(.scrolled) .header-actions a,
header:not(.scrolled) .menu-toggle {
  color: var(--surface);
}

.nav-menu {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--heading);
  padding: 8px 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-actions button,
.header-actions a {
  font-size: 16px;
  color: var(--heading);
  position: relative;
}

.header-actions .btn-now {
  margin-left: 10px;
}

.counter-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background-color: var(--primary);
  color: var(--surface);
  font-size: 9px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.menu-toggle {
  display: none;
  font-size: 20px;
  color: var(--heading);
}

.hero {
  height: 100vh;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--surface);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  padding: 0 20px;
}

.hero-content span {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 20px;
  display: block;
}

.hero-content h1 {
  font-size: 64px;
  color: var(--surface);
  margin-bottom: 25px;
}

.hero-content p {
  font-size: 16px;
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.8;
}

.scroll-indicator i {
  font-size: 14px;
}

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

.category-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 40px 20px;
  transition: var(--transition-slow);
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--surface);
  z-index: 1;
  opacity: 0.95;
  transition: var(--transition);
}

.category-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.category-card-content {
  position: relative;
  z-index: 2;
}

.category-card i {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 20px;
  transition: var(--transition);
}

.category-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.category-card p {
  font-size: 13px;
  color: var(--body);
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.category-card:hover::before {
  opacity: 0.15;
  background-color: var(--heading);
}

.category-card:hover h3,
.category-card:hover p,
.category-card:hover i {
  color: var(--surface);
}

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

.collection-card {
  height: 400px;
  position: relative;
  overflow: hidden;
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.collection-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.8) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  padding: 30px;
  z-index: 2;
  transition: var(--transition);
}

.collection-overlay span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 5px;
}

.collection-overlay h3 {
  font-size: 22px;
  color: var(--surface);
  margin-bottom: 15px;
}

.collection-overlay .link {
  font-size: 12px;
  color: var(--surface);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}

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

.collection-card:hover .collection-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.9) 100%);
}

.collection-card:hover .collection-overlay .link {
  opacity: 1;
  transform: translateY(0);
}

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

.product-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
}

.product-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 320px;
}

.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.product-actions {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  z-index: 3;
  transition: var(--transition);
}

.product-actions button {
  width: 40px;
  height: 40px;
  background-color: var(--surface);
  color: var(--heading);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: var(--shadow-sm);
}

.product-actions button:hover {
  background-color: var(--primary);
  color: var(--surface);
}

.product-wishlist {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 3;
  width: 36px;
  height: 36px;
  background-color: var(--surface);
  color: var(--heading);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.product-wishlist:hover,
.product-wishlist.active {
  color: #E63946;
}

.product-info {
  padding: 25px 20px;
  text-align: center;
}

.product-category {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--secondary);
  margin-bottom: 5px;
}

.product-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--heading);
  font-family: 'Poppins', sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-price-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.product-price {
  font-weight: 600;
  color: var(--primary);
}

.product-old-price {
  font-size: 13px;
  color: #B0B0B0;
  text-decoration: line-through;
}

.product-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

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

.product-card:hover .product-actions {
  bottom: 0;
}

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

.room-card {
  height: 480px;
  position: relative;
  overflow: hidden;
}

.room-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.room-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: var(--transition);
}

.room-overlay .btn {
  background-color: var(--surface);
  color: var(--heading);
  padding: 15px 35px;
  font-weight: 600;
}

.room-card:hover img {
  transform: scale(1.06);
}

.room-card:hover .room-overlay {
  background: rgba(0, 0, 0, 0.45);
}

.room-card:hover .room-overlay .btn {
  background-color: var(--primary);
  color: var(--surface);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.gallery-filter-btn {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--body);
  padding: 8px 20px;
  border-bottom: 2px solid transparent;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.gallery-masonry {
  columns: 4;
  column-gap: 20px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: auto;
  transition: var(--transition-slow);
}

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--surface);
  opacity: 0;
  transition: var(--transition);
  padding: 20px;
  text-align: center;
}

.gallery-item-overlay h3 {
  color: var(--surface);
  font-size: 20px;
  margin-bottom: 5px;
}

.gallery-item-overlay span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

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

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-item i {
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 20px;
}

.stat-item h3 {
  font-size: 40px;
  color: var(--heading);
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

.stat-item p {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-desc {
  font-size: 13px;
  color: var(--body);
  margin-top: 5px;
  text-transform: none;
  font-weight: 400;
  letter-spacing: 0;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.article-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.article-image {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.article-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--surface);
  color: var(--primary);
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.article-content {
  padding: 30px;
}

.article-meta {
  font-size: 12px;
  color: var(--body);
  margin-bottom: 15px;
  display: flex;
  gap: 15px;
}

.article-title {
  font-size: 20px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.article-title:hover {
  color: var(--primary);
}

.article-excerpt {
  font-size: 14px;
  color: var(--body);
  margin-bottom: 20px;
  line-height: 1.6;
}

.article-link {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--heading);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.article-link:hover {
  color: var(--primary);
}

.article-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

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

.testimonial-section {
  background-color: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.testimonial-slider-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-wrapper {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 40px;
  text-align: center;
}

.testimonial-client-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto 20px auto;
  object-fit: cover;
  border: 3px solid var(--accent);
}

.testimonial-slide p {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--heading);
  margin-bottom: 25px;
  line-height: 1.6;
}

.testimonial-rating {
  margin-bottom: 15px;
}

.testimonial-client-name {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--heading);
}

.testimonial-client-title {
  font-size: 12px;
  color: var(--body);
  margin-top: 3px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--heading);
  z-index: 10;
  background-color: var(--surface);
}

.slider-btn:hover {
  background-color: var(--primary);
  color: var(--surface);
  border-color: var(--primary);
}

.slider-btn-prev {
  left: 0;
}

.slider-btn-next {
  right: 0;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--border);
}

.slider-dot.active {
  background-color: var(--primary);
  width: 20px;
  border-radius: 4px;
}

.promo-banner {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 450px;
  position: relative;
  display: flex;
  align-items: center;
}

.promo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
}

.promo-content {
  position: relative;
  z-index: 3;
  color: var(--surface);
  max-width: 600px;
}

.promo-content h2 {
  color: var(--surface);
  font-size: 44px;
  margin-bottom: 15px;
}

.promo-content p {
  font-size: 16px;
  margin-bottom: 30px;
  font-weight: 300;
}

.newsletter-section {
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.newsletter-form {
  max-width: 600px;
  margin: 40px auto 0 auto;
  display: flex;
  border: 1px solid var(--border);
  padding: 5px;
  background-color: var(--surface);
}

.newsletter-form input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  font-size: 14px;
  background-color: transparent;
}

.newsletter-form button {
  background-color: var(--primary);
  color: var(--surface);
  padding: 0 35px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.newsletter-form button:hover {
  background-color: var(--heading);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.instagram-item {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.instagram-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(139, 94, 60, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--surface);
  opacity: 0;
  font-size: 24px;
  transition: var(--transition);
}

.instagram-item:hover img {
  transform: scale(1.1);
}

.instagram-item:hover .instagram-overlay {
  opacity: 1;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--surface);
  border: 1px solid var(--border);
  margin-bottom: 15px;
}

.faq-question {
  padding: 22px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}

.faq-icon {
  font-size: 14px;
  color: var(--primary);
  transition: var(--transition);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: var(--transition-slow);
}

.faq-answer-inner {
  padding: 0 30px 25px 30px;
  font-size: 14px;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

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

.contact-section-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}

.contact-info-panel {
  background-color: var(--surface);
  border: 1px solid var(--border);
  padding: 40px;
}

.contact-info-panel h3 {
  font-size: 24px;
  margin-bottom: 25px;
}

.contact-details {
  margin-bottom: 40px;
}

.contact-detail-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.contact-detail-item i {
  font-size: 18px;
  color: var(--primary);
  margin-top: 3px;
}

.contact-detail-item h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 5px;
}

.contact-detail-item p {
  font-size: 14px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.social-link {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--heading);
}

.social-link:hover {
  background-color: var(--primary);
  color: var(--surface);
  border-color: var(--primary);
}

.contact-form-panel {
  background-color: var(--surface);
  border: 1px solid var(--border);
  padding: 40px;
}

.contact-form-panel h3 {
  font-size: 24px;
  margin-bottom: 25px;
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--heading);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border);
  background-color: var(--bg);
  font-size: 14px;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background-color: var(--surface);
}

.form-group textarea {
  resize: vertical;
}

.form-feedback {
  margin-top: 15px;
  font-size: 13px;
  font-weight: 500;
  display: none;
}

.form-feedback.success {
  color: #2D6A4F;
  display: block;
}

.map-placeholder {
  height: 400px;
  background-color: var(--border);
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
}

footer {
  background-color: var(--heading);
  color: #B0B0B0;
  padding: 80px 0 30px 0;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-column h3 {
  color: var(--surface);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
  font-family: 'Poppins', sans-serif;
}

.footer-column p {
  line-height: 1.8;
  margin-bottom: 20px;
}

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

.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-legal-links {
  display: flex;
  gap: 25px;
}

.footer-legal-links a:hover {
  color: var(--accent);
}

.page-hero {
  height: 350px;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--surface);
}

.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero-content h1 {
  font-size: 48px;
  color: var(--surface);
  margin-bottom: 10px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

.shop-container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  margin-top: 50px;
}

.shop-sidebar {
  background-color: var(--surface);
  border: 1px solid var(--border);
  padding: 30px;
  height: fit-content;
}

.sidebar-widget {
  margin-bottom: 35px;
}

.sidebar-widget h3 {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.filter-list li {
  margin-bottom: 12px;
}

.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
}

.filter-checkbox input {
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
}

.price-range-slider {
  margin-top: 15px;
}

.price-range-inputs {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  font-size: 13px;
}

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

.product-count {
  font-size: 14px;
}

.shop-sort select {
  padding: 10px 20px;
  border: 1px solid var(--border);
  background-color: var(--surface);
  font-size: 13px;
}

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

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.modal-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background-color: var(--surface);
  z-index: 10001;
  width: 90%;
  max-width: 800px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-slow);
  padding: 40px;
}

.modal-container.active {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  visibility: visible;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 20px;
  color: var(--heading);
}

.modal-close:hover {
  color: var(--primary);
}

.search-modal-container {
  max-width: 600px;
}

.search-modal-form {
  display: flex;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 10px;
}

.search-modal-form input {
  flex: 1;
  border: none;
  font-size: 20px;
  background: transparent;
  padding: 5px 0;
}

.search-modal-form button {
  font-size: 20px;
  color: var(--primary);
}

.search-results-list {
  margin-top: 30px;
  max-height: 350px;
  overflow-y: auto;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.search-result-item img {
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.search-result-info h4 {
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}

.search-result-info span {
  font-size: 12px;
  color: var(--primary);
  font-weight: 600;
}

.quickview-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.quickview-img {
  height: 400px;
}

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

.quickview-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quickview-details h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.quickview-price-wrapper {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 20px;
}

.quickview-price {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
}

.quickview-old-price {
  font-size: 16px;
  color: #B0B0B0;
  text-decoration: line-through;
}

.quickview-desc {
  font-size: 14px;
  margin-bottom: 25px;
  line-height: 1.7;
}

.quickview-actions {
  display: flex;
  gap: 15px;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.drawer-container {
  position: fixed;
  top: 0;
  right: -450px;
  width: 100%;
  max-width: 420px;
  height: 100%;
  background-color: var(--surface);
  z-index: 10001;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  transition: var(--transition-slow);
}

.drawer-container.active {
  right: 0;
}

.drawer-header {
  padding: 30px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer-header h3 {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.drawer-close {
  font-size: 18px;
  color: var(--heading);
}

.drawer-body {
  flex: 1;
  padding: 30px;
  overflow-y: auto;
}

.drawer-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.drawer-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
}

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

.drawer-item-title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
  color: var(--heading);
}

.drawer-item-price {
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
}

.drawer-item-remove {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 12px;
  color: #B0B0B0;
}

.drawer-item-remove:hover {
  color: #E63946;
}

.drawer-footer {
  padding: 30px;
  border-top: 1px solid var(--border);
  background-color: var(--bg);
}

.drawer-subtotal {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 600;
  color: var(--heading);
}

.drawer-subtotal span:last-child {
  color: var(--primary);
}

.drawer-btns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.empty-drawer-msg {
  text-align: center;
  margin-top: 50px;
}

.empty-drawer-msg i {
  font-size: 48px;
  color: var(--border);
  margin-bottom: 20px;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  background-color: var(--primary);
  color: var(--surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: var(--shadow-md);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--heading);
  transform: translateY(-5px);
}

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

.about-philosophy-img {
  position: relative;
}

.about-philosophy-img::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--primary);
  z-index: -1;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.about-value-item {
  background-color: var(--surface);
  border: 1px solid var(--border);
  padding: 40px 30px;
  text-align: center;
}

.about-value-item i {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 20px;
}

.about-value-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

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

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

.team-member-img {
  height: 350px;
  overflow: hidden;
  margin-bottom: 20px;
}

.team-member-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.team-member:hover img {
  transform: scale(1.05);
}

.team-member h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.team-member span {
  font-size: 13px;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tour-wrapper {
  background-color: var(--surface);
  border: 1px solid var(--border);
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.tour-info h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.tour-info p {
  margin-bottom: 25px;
}

.tour-video-placeholder {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.tour-video-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background-color: var(--surface);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: var(--shadow-md);
}

.tour-play-btn:hover {
  background-color: var(--primary);
  color: var(--surface);
  transform: translate(-50%, -50%) scale(1.1);
}

.blog-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.blog-tab-btn {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
  padding: 8px 22px;
  border: 1px solid var(--border);
}

.blog-tab-btn:hover,
.blog-tab-btn.active {
  background-color: var(--primary);
  color: var(--surface);
  border-color: var(--primary);
}

.blog-search-container {
  max-width: 400px;
  margin: 0 auto 50px auto;
}

.blog-search-box {
  display: flex;
  border: 1px solid var(--border);
  padding: 5px;
  background-color: var(--surface);
}

.blog-search-box input {
  flex: 1;
  padding: 10px 15px;
  border: none;
  font-size: 13px;
  background: transparent;
}

.blog-search-box button {
  width: 40px;
  height: 40px;
  background-color: var(--primary);
  color: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-search-box button:hover {
  background-color: var(--heading);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.room-hero-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background-color: var(--surface);
  border-bottom: 1px solid var(--border);
}

.room-hero-content {
  padding: 80px 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.room-hero-content span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--secondary);
  margin-bottom: 15px;
  display: block;
}

.room-hero-content h1 {
  font-size: 48px;
  margin-bottom: 25px;
}

.room-hero-content p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.room-hero-image {
  height: 600px;
}

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

.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.tip-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  padding: 40px;
}

.tip-card i {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 20px;
}

.tip-card h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--surface);
  border: 1px solid var(--border);
  padding: 60px;
}

.legal-content h2 {
  font-size: 22px;
  margin: 30px 0 15px 0;
}

.legal-content p {
  margin-bottom: 20px;
  line-height: 1.7;
}

.legal-content ul {
  margin-bottom: 25px;
  padding-left: 20px;
  list-style: disc;
}

.legal-content li {
  margin-bottom: 10px;
}

.product-details-page {
  padding: 60px 0;
}

.details-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  margin-bottom: 60px;
}

.details-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.main-image-container {
  position: relative;
  height: 550px;
  background-color: #FFFFFF;
  border: 1px solid var(--border);
  overflow: hidden;
}

.main-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.main-image-container img:hover {
  transform: scale(1.03);
}

.details-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  background-color: var(--primary);
  color: var(--surface);
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.thumbnails-container {
  display: flex;
  gap: 15px;
}

.thumb-img {
  width: 90px;
  height: 90px;
  border: 1px solid var(--border);
  cursor: pointer;
  background-color: #FFFFFF;
  overflow: hidden;
  transition: var(--transition);
}

.thumb-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.thumb-img:hover img {
  opacity: 0.8;
}

.thumb-img.active {
  border-color: var(--primary);
}

.details-category {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--secondary);
  letter-spacing: 1.5px;
  font-weight: 500;
  margin-bottom: 10px;
  display: block;
}

.details-title {
  font-size: 32px;
  margin-bottom: 15px;
}

.details-rating-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 15px;
}

.reviews-count {
  font-size: 13px;
  color: var(--body);
}

.stock-status {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 8px;
  background-color: #E6F4EA;
  color: #137333;
}

.stock-status.out-of-stock {
  background-color: #FCE8E6;
  color: #C5221F;
}

.details-price-wrapper {
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.details-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
}

.details-old-price {
  font-size: 18px;
  color: #B0B0B0;
  text-decoration: line-through;
}

.details-short-desc {
  line-height: 1.7;
  color: var(--body);
  margin-bottom: 30px;
}

.details-options {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 35px;
  border-top: 1px solid var(--border);
  padding-top: 25px;
}

.option-group h3 {
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: var(--heading);
  display: flex;
  align-items: center;
  gap: 4px;
}

.required-star {
  color: #E63946;
}

.colors-list {
  display: flex;
  gap: 12px;
}

.color-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
}

.color-btn.active::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 1.5px solid var(--primary);
}

.sizes-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 4px;
  border: 1px solid transparent;
  transition: var(--transition);
}

.sizes-list.error-border {
  border-color: #E63946;
}

.size-btn {
  padding: 8px 20px;
  border: 1px solid var(--border);
  background-color: var(--surface);
  font-size: 12px;
  font-weight: 500;
  color: var(--heading);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}

.size-btn:hover {
  border-color: var(--primary);
}

.size-btn.active {
  background-color: var(--primary);
  color: var(--surface);
  border-color: var(--primary);
}

.size-validation-error {
  color: #E63946;
  font-size: 12px;
  margin-top: 8px;
  display: none;
}

.quantity-selector {
  display: inline-flex;
  border: 1px solid var(--border);
  background-color: var(--surface);
}

.quantity-selector button {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--heading);
  font-size: 12px;
  transition: var(--transition);
}

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

.quantity-selector input {
  width: 50px;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--heading);
  background-color: transparent;
}

.details-actions {
  margin-bottom: 40px;
}

.add-to-cart-btn {
  width: 100%;
  padding: 16px 30px;
  font-size: 13px;
}

.add-to-cart-btn.disabled {
  opacity: 0.6;
}

.shipping-delivery-info {
  border-top: 1px solid var(--border);
  padding-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.info-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.info-item i {
  font-size: 18px;
  color: var(--primary);
  margin-top: 3px;
}

.info-item h4 {
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 2px;
}

.info-item p {
  font-size: 12px;
  color: var(--body);
}

.details-tabs {
  margin-bottom: 60px;
  border-bottom: 1px solid var(--border);
}

.tabs-header {
  display: flex;
  border-bottom: 1px solid var(--border);
  gap: 40px;
}

.tab-btn {
  padding: 15px 0;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: #B0B0B0;
  position: relative;
}

.tab-btn.active {
  color: var(--heading);
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
}

.tabs-content {
  padding: 30px 0;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.tab-panel p {
  line-height: 1.8;
  color: var(--body);
  margin-bottom: 20px;
}

.tab-panel ul {
  padding-left: 20px;
  list-style: disc;
  color: var(--body);
}

.tab-panel li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table th,
.specs-table td {
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.specs-table th {
  font-weight: 600;
  color: var(--heading);
  width: 30%;
  font-size: 14px;
}

.specs-table td {
  color: var(--body);
  font-size: 14px;
}

.policies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.policies-grid h4 {
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 10px;
}

.policies-grid p {
  font-size: 13px;
  line-height: 1.7;
}

.details-reviews-section,
.details-faq-section,
.related-products-section {
  padding: 60px 0;
  border-top: 1px solid var(--border);
}

.details-reviews-section h2,
.details-faq-section h2,
.related-products-section h2 {
  font-size: 26px;
  margin-bottom: 40px;
}

.reviews-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px;
  background-color: var(--surface);
  border: 1px solid var(--border);
  max-width: 350px;
  margin-bottom: 40px;
}

.rating-huge {
  font-size: 54px;
  font-weight: 700;
  color: var(--heading);
  line-height: 1;
  margin-bottom: 10px;
}

.rating-stars-huge {
  color: var(--primary);
  font-size: 18px;
  margin-bottom: 10px;
  display: flex;
  gap: 4px;
}

.review-item {
  background-color: var(--surface);
  border: 1px solid var(--border);
  padding: 30px;
  margin-bottom: 20px;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.review-rating {
  color: var(--primary);
  font-size: 12px;
  display: flex;
  gap: 2px;
}

.review-author {
  font-weight: 600;
  font-size: 13px;
  color: var(--heading);
}

.review-date {
  font-size: 12px;
  color: #B0B0B0;
  margin-left: auto;
}

.review-title {
  font-size: 16px;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
}

.review-comment {
  font-size: 14px;
  line-height: 1.6;
  color: var(--body);
}

.cart-toast {
  position: fixed;
  bottom: -100px;
  right: 30px;
  z-index: 1000;
  background-color: var(--heading);
  color: var(--surface);
  padding: 15px 25px;
  box-shadow: var(--shadow-lg);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cart-toast.show {
  bottom: 30px;
}

.cart-toast-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.cart-toast-content i {
  color: #2ECC71;
  font-size: 18px;
}

.cart-toast-content span {
  font-size: 13px;
  font-weight: 500;
}

.toast-cart-link {
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  margin-left: 10px;
  transition: var(--transition);
}

.toast-cart-link:hover {
  color: var(--surface);
  border-color: var(--surface);
}

.cart-page-section {
  padding: 60px 0;
}

.cart-page-section .page-title {
  font-size: 36px;
  margin-bottom: 40px;
}

.empty-cart-container {
  text-align: center;
  padding: 80px 40px;
  background-color: var(--surface);
  border: 1px solid var(--border);
  max-width: 600px;
  margin: 0 auto;
}

.empty-cart-icon {
  width: 80px;
  height: 80px;
  background-color: var(--bg);
  color: var(--secondary);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 25px;
}

.empty-cart-container h2 {
  font-size: 24px;
  margin-bottom: 15px;
}

.empty-cart-container p {
  color: var(--body);
  margin-bottom: 30px;
  line-height: 1.6;
}

.cart-grid-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 40px;
  align-items: flex-start;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--surface);
  border: 1px solid var(--border);
}

.cart-table th {
  padding: 20px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--heading);
  font-weight: 600;
  background-color: #FAF8F5;
}

.cart-table td {
  padding: 20px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  color: var(--heading);
  font-size: 14px;
}

.cart-col-img {
  width: 100px;
}

.cart-col-img img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.cart-col-name h4 {
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 5px;
  font-weight: 500;
}

.cart-col-name h4 a:hover {
  color: var(--primary);
}

.cart-item-category {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--secondary);
  letter-spacing: 0.5px;
}

.cart-item-size {
  background-color: var(--bg);
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid var(--border);
  text-transform: uppercase;
}

.cart-qty {
  border-color: var(--border);
}

.cart-qty button {
  width: 32px;
  height: 32px;
}

.cart-qty input {
  width: 38px;
  font-size: 13px;
}

.cart-item-remove {
  color: #B0B0B0;
  font-size: 16px;
  transition: var(--transition);
}

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

.cart-table-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.cart-summary-wrapper {
  position: sticky;
  top: 100px;
}

.summary-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  padding: 40px;
}

.summary-card h3 {
  font-size: 20px;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 15px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 14px;
  color: var(--body);
}

.summary-divider {
  border-top: 1px solid var(--border);
  margin: 20px 0;
}

.summary-row.grand-total {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading);
}

.checkout-btn {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
}

