/** Shopify CDN: Minification failed

Line 1061:0 Unexpected "}"

**/
/* QVC Deal Theme Styles */

/* Reset and Base Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  padding-top: 0; /* Will be adjusted if needed */
  line-height: 1.6;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  /* padding: 0 20px; */
}

/* Product Card Styles */
.product-card {
  position: relative;
  background: white;
  border-radius: 8px;
  overflow: visible;
  transition: all 0.3s ease;
  isolation: auto;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.product-card:hover {
  transform: translateY(-3px);
}

.product-card__image-wrapper {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: white;
  border-radius: 8px;
}

.product-card__image-link {
  display: block;
  text-decoration: none;
  color: inherit;
  width: 100%;
  height: 100%;
}

.product-card__image-link:hover {
  text-decoration: none;
}

/* Image Overlay for hover effect */
.product-card__image-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 5;
  pointer-events: none;
}

.product-card__image-wrapper:hover::after {
  opacity: 1;
}

/* Slower image transitions */
.product-card__image-wrapper:hover .product-card__image--primary {
  opacity: 0;
  transform: scale(1.05);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card__image-wrapper:hover .product-card__image--secondary {
  opacity: 1;
  transform: scale(1.05);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card__image--primary {
  position: relative;
  z-index: 2;
}

.product-card__image--secondary {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  transform: scale(1.05);
}

.product-card__image:only-child {
  opacity: 1 !important;
}

.product-card__image-wrapper:hover .product-card__image:only-child {
  transform: scale(1.05);
}

.product-card__content {
  padding: 12px 0 0 0;
  position: relative;
  z-index: 1;
}

.product-card__title {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}

.product-card__title a {
  color: #1f2937;
  text-decoration: none;
  transition: color 0.2s ease;
}

.product-card__title a:hover {
  color: #007bff;
}

.product-card__rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.product-card__stars {
  display: flex;
  gap: 1px;
}

.star {
  width: 14px;
  height: 14px;
  fill: #283348;
  color: #283348;
}

.rating-text {
  font-size: 12px;
  color: #6b7280;
  font-weight: 400;
}

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

.product-card__price--original {
  color: #9ca3af;
  text-decoration: line-through;
  font-size: 14px;
  font-weight: 400;
}

.product-card__price {
  color: #dc2626;
  font-weight: 600;
  font-size: 16px;
}

.product-card__colors {
  display: flex;
  gap: 6px;
  align-items: center;
  margin: 0;
  overflow: visible;
  position: relative;
  /* z-index: 9999 !important; */
}

.color-swatch {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #d1d5db;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  z-index: 10000 !important;
}

.color-swatch--clickable:hover {
  transform: scale(1.1);
  border-color: #6b7280;
  z-index: 10001 !important;
}

.color-swatch--active {
  border-color: #1f2937 !important;
  border-width: 2px;
  transform: scale(1.1);
  z-index: 10001 !important;
}

.color-swatch--more {
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  color: #666;
  border: 1px solid #e0e0e0;
}

.color-tooltip {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.1s ease;
  z-index: 10002 !important;
}

.color-swatch:hover .color-tooltip {
  opacity: 1;
}

.color-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-top-color: #333;
}

.product-card__quick-actions {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  display: flex;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 10;
}

.product-card__image-wrapper:hover .product-card__quick-actions {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.quick-action-btn {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 10px 16px;
  border-radius: 24px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  color: #333;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  min-width: auto;
  justify-content: center;
  backdrop-filter: blur(10px);
  white-space: nowrap;
}

.quick-action-btn:hover {
  background: white;
  color: #1f2937;
  border-color: rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.quick-action-btn svg {
  opacity: 1;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: scale(1);
}

.quick-action-text {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Quick View Icon - Hidden by default */
.quick-action-btn.quick-view .quick-view-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 10;
  color: #ffffff;
}

.quick-action-btn.quick-view:hover .quick-view-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.quick-action-btn.quick-view .quick-action-text {
  opacity: 1;
  transform: scale(1);
  position: relative;
  z-index: 6;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.quick-action-btn.quick-view:hover .quick-action-text {
  opacity: 0;
  transform: scale(0.8);
}



.product-card__badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #dc2626;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  z-index: 3;
}

.product-card__wishlist {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 15;
}

.product-card__wishlist:hover,
.product-card__wishlist--active {
  background: #dc3545;
  color: white;
  transform: scale(1.1);
}

.product-card__wishlist svg {
  width: 18px;
  height: 18px;
}

/* Products Grid - Dynamic Width System */
.products-grid {
  display: grid;
  padding: 20px 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.products-grid--2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  /* 2 columns: (1760px - 40px) ÷ 2 = 860px per product */
}

.products-grid--3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  /* 3 columns: (1760px - 60px) ÷ 3 = 567px per product */
}

.products-grid--4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  /* 4 columns: (1760px - 72px) ÷ 4 = 422px per product */
}

.products-grid--5 {
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  /* 5 columns: (1760px - 80px) ÷ 5 = 336px per product */
}

.products-grid--6 {
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  /* 6 columns: (1760px - 80px) ÷ 6 = 280px per product */
}

/* Collection Layout */
.collection-layout {
  margin: 0;
  padding: 0;
}

.collection-header {
  padding: 80px 0;
  text-align: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.collection-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
  z-index: 1;
}

.collection-header > * {
  position: relative;
  z-index: 2;
}

.collection-header__content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.collection-content {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.collection-header__breadcrumb {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
}

.collection-header__breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
}

.collection-header__breadcrumb a:hover {
  color: white;
}

.collection-header__title {
  font-size: 48px;
  font-weight: 700;
  margin: 0;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Filter Bar */
.filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 32px;
  background: white;
}

.filter-bar__toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1px solid #d1d5db;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  color: #374151;
  font-weight: 500;
  transition: all 0.2s ease;
}

.filter-bar__toggle:hover {
  border-color: #9ca3af;
  background: #f9fafb;
}

.view-options {
  display: flex;
  gap: 4px;
  background: #f3f4f6;
  padding: 4px;
  border-radius: 8px;
}

.view-option {
  height: 36px;
  border: none;
  background: transparent;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  color: #6b7280;
  padding: 0 8px;
}

.view-option--2 {
  width: 44px;
}

.view-option--3 {
  width: 54px;
}

.view-option--4 {
  width: 64px;
}

.view-option--5 {
  width: 74px;
}

.view-option--6 {
  width: 84px;
}

.view-option:hover {
  background: #e5e7eb;
  color: #374151;
}

.view-option--active {
  background: white;
  color: #111827;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.sort-dropdown {
  padding: 10px 16px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: white;
  cursor: pointer;
  font-size: 14px;
  min-width: 180px;
  color: #374151;
  font-weight: 500;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
}

.sort-dropdown:hover {
  border-color: #9ca3af;
}

.sort-dropdown:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Sidebar Filters */
.sidebar {
  position: fixed;
  top: 0;
  left: -350px;
  width: 350px;
  height: 100vh;
  background: white;
  z-index: 1000;
  transition: left 0.3s ease;
  overflow-y: auto;
  box-shadow: 2px 0 10px rgba(0,0,0,0.1);
  overflow-x: visible;
}

.sidebar--active {
  left: 0;
}

.sidebar__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.sidebar__title {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.sidebar__close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 5px;
}

.filter-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.filter-actions {
  padding: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.btn {
  padding: 10px 20px;
  border: 1px solid #e0e0e0;
  background: white;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease;
}

.btn--secondary {
  border-color: #333;
  color: #333;
}

.btn--secondary:hover {
  background: #333;
  color: white;
}

.filter-section {
  border-bottom: 1px solid #e0e0e0;
}

.filter-section__title {
  padding: 16px 18px;
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.filter-section__content {
  padding: 0 18px 16px;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  padding: 2px 0;
}

.color-filter-grid {
  display: grid;
  gap: 4px;
}

.color-filter-option {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
  transition: all 0.2s ease;
  padding: 2px;
}

.color-filter-option:hover {
  background: #f9fafb;
  padding: 4px;
  border-radius: 4px;
  position: relative;
  z-index: 1001;
}

.color-filter-checkbox {
  margin: 0;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.color-filter-label {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  flex: 1;
  font-size: 13px;
  line-height: 1.2;
}

.color-filter-swatch {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  display: inline-block;
  flex-shrink: 0;
}

.color-filter-name {
  flex: 1;
  font-size: 13px;
  line-height: 1.3;
}

.filter-option input {
  margin: 0;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.filter-option label {
  flex: 1;
  font-size: 13px;
  cursor: pointer;
  line-height: 1.3;
}

.filter-count {
  font-size: 11px;
  color: #666;
  line-height: 1.3;
  flex-shrink: 0;
}

.price-range__inputs {
  display: flex;
  gap: 10px;
  align-items: center;
}

.price-range__input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 14px;
}

/* Notifications */
.wishlist-notification,
.cart-notification {
  position: fixed;
  top: 20px;
  right: -400px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  z-index: 10000;
  transition: right 0.3s ease;
  overflow: hidden;
}

.wishlist-notification--show,
.cart-notification--show {
  right: 20px;
}

.wishlist-notification__content,
.cart-notification__content {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  min-width: 300px;
}

.cart-notification__close {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #666;
  padding: 0;
}

/* Responsive Design */
/* Responsive Grid - Maintain optimal card sizes */
@media (max-width: 1200px) {
  .products-grid--6 {
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
  }
  
  .collection-content {
    max-width: 1200px;
    padding: 0 16px;
  }
}

@media (max-width: 1600px) {
  .collection-content {
    max-width: 1200px;
    padding: 0 18px;
  }
  
  .products-grid--5 {
    gap: 22px;
  }
  
  .products-grid--4 {
    gap: 26px;
  }
  
  .products-grid--3 {
    gap: 32px;
  }
  
  .products-grid--2 {
    gap: 44px;
  }
}

@media (max-width: 1200px) {
  .collection-content {
    max-width: 1000px;
    padding: 0 16px;
  }
  
  .products-grid--6,
  .products-grid--5 {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  
  .products-grid--4 {
    gap: 28px;
  }
  
  .products-grid--3 {
    gap: 36px;
  }
  
  .products-grid--2 {
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .collection-header {
    padding: 60px 0;
  }
  
  .collection-header__title {
    font-size: 36px;
  }
}



@media (max-width: 900px) {
  .collection-content {
    padding: 0 16px;
  }
  
  .products-grid--6,
  .products-grid--5,
  .products-grid--4 {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .products-grid--3 {
    gap: 28px;
  }
  
  .products-grid--2 {
    gap: 40px;
  }
  
  .collection-header__title {
    font-size: 36px;
  }
  
  .filter-bar {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  
  .filter-bar__center {
    order: 3;
    display: flex;
    justify-content: center;
  }
  
  .filter-bar__left,
  .filter-bar__right {
    flex: 1;
  }
}

@media (max-width: 600px) {
  .collection-content {
    padding: 0 12px;
  }
  
  .products-grid--6,
  .products-grid--5,
  .products-grid--4,
  .products-grid--3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .products-grid--2 {
    gap: 28px;
  }
  
  .products-grid {
    padding: 16px 0;
  }
  
  .collection-content {
    padding: 0 12px;
  }
}

.view-options {
    padding: 3px;
    gap: 2px;
  }
  
  .view-option {
    height: 32px;
    padding: 0 6px;
  }
  
  .view-option--2 {
    width: 38px;
  }

  .view-option--3 {
    width: 46px;
  }

  .view-option--4 {
    width: 54px;
  }

  .view-option--5 {
    width: 62px;
  }

  .view-option--6 {
    width: 70px;
  }
  
  .sort-dropdown {
    font-size: 13px;
    min-width: 150px;
  }
  
  .product-card__quick-actions {
    transform: translateX(-50%) scale(0.85);
    gap: 6px;
  }
  
  .quick-action-btn {
    min-width: 100px;
    padding: 10px 16px;
    font-size: 12px;
  }
  
  .color-swatch {
    width: 16px;
    height: 16px;
  }
  
  .color-swatch--more {
    font-size: 8px;
  }
}

/* Touch device improvements */
@media (hover: none) and (pointer: coarse) {
  .product-card__quick-actions {
    opacity: 1;
    visibility: visible;
    position: static;
    transform: none;
    margin-top: 12px;
    flex-direction: row;
    justify-content: center;
  }
  
  .quick-action-btn {
    min-width: auto;
    padding: 8px 12px;
  }
  
  .quick-action-btn svg {
    opacity: 1;
    position: static;
  }
  
  .quick-action-text {
    display: none;
  }
  
  /* Disable hover image change on touch devices */
  .product-card__image-wrapper:hover .product-card__image--primary {
    opacity: 1;
    transform: scale(1);
  }
  
  .product-card__image-wrapper:hover .product-card__image--secondary {
    opacity: 0;
    transform: scale(1.05);
  }
  
  .product-card__image-wrapper:hover .product-card__image:only-child {
    transform: scale(1);
  }
}

/* Preload optimization */
.product-card__image--secondary {
  content-visibility: auto;
  contain-intrinsic-size: 300px 300px;
}

/* Header Styles */
.header,
.header.full-width {
  background: white;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  -webkit-position: sticky;
  -webkit-top: 0;
}

.header__wrapper {
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  position: relative;
  z-index: 1001;
}

.header__mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #333;
}

.header__logo {
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
  color: #333;
  letter-spacing: 1px;
}

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

.header__nav-item {
  text-decoration: none;
  color: #333;
  font-weight: 400;
  font-size: 14px;
  transition: color 0.2s ease;
  position: relative;
}

.header__nav-item:hover {
  color: #007bff;
}

.header__nav-item--sale {
  color: #dc2626;
  font-weight: 600;
}

.header__nav-item--sale::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #dc2626;
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.header__nav-item--sale:hover::after {
  transform: scaleX(1);
}

.header__actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

.header__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  cursor: pointer;
  color: #333;
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease;
}

.header__icon:hover {
  color: #007bff;
}

.header__icon--desktop-only {
  display: flex;
}

.header__cart-count,
.header__wishlist-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #dc2626;
  color: white;
  font-size: 10px;
  font-weight: 600;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Menu Styles */
.header__mobile-menu {
  position: fixed;
  top: 60px;
  left: 0;
  width: 60vw;
  height: calc(100vh - 60px);
  background: white;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 1000;
  border-top: 1px solid #e0e0e0;
  box-shadow: 2px 0 10px rgba(0,0,0,0.1);
}

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

/* Modal Overlay */
.header__mobile-overlay {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  height: calc(100vh - 60px);
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 999;
}

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

/* Prevent body scroll when modal is active */
body.modal-open {
  overflow: hidden;
}

.header__mobile-menu-content {
  padding: 20px;
  height: 100%;
  overflow-y: auto;
}

.header__mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.header__mobile-nav-item {
  display: block;
  padding: 15px 0;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 16px;
  border-bottom: 1px solid #f0f0f0;
  transition: color 0.2s ease;
}

.header__mobile-nav-item:hover {
  color: #007bff;
}

.header__mobile-nav-item--sale {
  color: #dc2626;
  font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .header__wrapper {
    padding: 0 15px;
    height: 60px;
  }
  
  .header__mobile-menu-btn {
    display: flex;
  }
  
  .header__logo {
    font-size: 20px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .header__nav {
    display: none;
  }
  
  .header__icon--desktop-only {
    display: none;
  }
  
  .header__actions {
    gap: 10px;
  }
  
  .header__icon {
    width: 35px;
    height: 35px;
  }
}

/* Collection Page Styles */
.collection-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  background: white;
  min-height: 100vh;
}

.collection-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  padding: 20px 0;
}

.collection-product {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.collection-product:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.collection-product__image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.collection-product__content {
  padding: 16px;
}

.collection-product__content p {
  margin: 0 0 8px;
}

.collection-product__content p:first-child {
  font-weight: 600;
}

.collection-product__content p:first-child a {
  text-decoration: none;
  color: #333;
  transition: color 0.2s ease;
}

.collection-product__content p:first-child a:hover {
  color: #007bff;
}

.collection-product__content p:last-child {
  font-size: 18px;
  font-weight: 600;
  color: #dc3545;
}

/* Product Page Specific Styles */
.product-page {
  background: white;
  min-height: 100vh;
}

.breadcrumb {
  background: white;
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
  font-size: 14px;
}

.breadcrumb a {
  color: #666;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #333;
}

.breadcrumb-separator {
  margin: 0 8px;
  color: #999;
}

.breadcrumb-current {
  color: #333;
}

.product-container {
  display: grid;
  grid-template-columns: 600px 1fr;
  gap: 50px;
  background: white;
  padding: 40px;
  margin: 0;
  border-radius: 0;
}

/* Product Gallery */
.product-gallery {
  position: relative;
}

.product-badge-discount {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #ff4444;
  color: white;
  padding: 8px 12px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: bold;
  z-index: 2;
  min-width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: all 0.2s;
}

.gallery-nav:hover {
  background: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.gallery-nav--prev {
  left: 20px;
}

.gallery-nav--next {
  right: 20px;
}

.product-gallery__main {
  margin-bottom: 15px;
}

.product-gallery__main img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.product-gallery__thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
}

.product-gallery__thumb {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  background: none;
  padding: 0;
  transition: border-color 0.2s;
}

.product-gallery__thumb.active {
  border-color: #333;
}

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

/* Pagination Styles */
.pagination-wrapper {
  grid-column: 1 / -1;
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.pagination {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pagination li {
  margin: 0;
}

.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  transition: all 0.2s ease;
}

.pagination a:hover {
  border-color: #333;
  background: #333;
  color: white;
}

.pagination .current {
  background: #333;
  color: white;
  border-color: #333;
}

.pagination .prev,
.pagination .next {
  width: auto;
  padding: 0 16px;
  font-weight: 500;
}

.pagination .disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination .disabled:hover {
  border-color: #e0e0e0;
  background: white;
  color: #333;
}

/* Quick View Modal Styles */
.quick-view-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quick-view-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

.quick-view-content {
  position: relative;
  z-index: 2;
  background: white;
  max-width: 1000px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 8px;
}

.quick-view-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.quick-view-close:hover {
  background: rgba(0, 0, 0, 0.7);
}

.quick-view-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #e74c3c;
  color: white;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  z-index: 3;
}

.quick-view-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.quick-view-grid.no-images {
  grid-template-columns: 1fr;
  max-height: none;
  height: auto;
}

.quick-view-content.no-images {
  max-height: 90vh;
  height: auto;
  overflow-y: auto;
}

.quick-view-grid.no-images {
  grid-template-columns: 1fr;
  max-height: none;
  height: auto;
  min-height: auto;
}

.quick-view-images {
  position: relative;
  background: white;
}

.quick-view-gallery {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-main {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-image.active {
  opacity: 1;
}

.quick-view-info {
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.quick-view-title {
  font-size: 24px;
  font-weight: 500;
  /* margin: 0 0 20px; */
  line-height: 1.3;
}

.quick-view-prices {
  display: flex;
  align-items: baseline;
  gap: 12px;
  /* margin-bottom: 15px; */
}

.quick-view-price {
  font-size: 28px;
  font-weight: 400;
  color: #e74c3c;
}

.quick-view-price--original {
  font-size: 20px;
  color: #999;
  text-decoration: line-through;
}

.quick-view-shipping {
  color: #666;
  font-size: 14px;
  /* margin-bottom: 20px; */
}

.quick-view-description {
  margin-bottom: 25px;
}

.description-content {
  line-height: 1.6;
  color: #555;
  max-height: 100px;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.description-content.expanded {
  max-height: none;
}

.view-more-btn {
  background: none;
  border: none;
  color: #007bff;
  cursor: pointer;
  font-size: 14px;
  text-decoration: underline;
  margin-top: 8px;
}

.quick-view-option {
  margin-bottom: 20px;
}

.option-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.color-swatches {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.size-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
  gap: 8px;
  /* max-width: 400px; */
}

.size-option {
  padding: 10px;
  border: 1px solid #ddd;
  background: white;
  cursor: pointer;
  text-align: center;
  font-size: 14px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.size-option.active,
.size-option:hover {
  border-color: #333;
  background: #333;
  color: white;
}

.quick-view-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 20px;
}

.quantity-selector {
  display: flex;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: white;
}

.qty-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.qty-btn:hover {
  background: #f5f5f5;
}

.qty-input {
  width: 60px;
  height: 40px;
  text-align: center;
  border: none;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  font-size: 14px;
}

.btn-add-cart {
  flex: 1;
  background: #333;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-add-cart:hover {
  background: #555;
}

.btn-wishlist {
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  background: white;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.btn-wishlist:hover {
  border-color: #333;
  color: #e74c3c;
}

.btn-wishlist--active {
  background: #e74c3c;
  border-color: #e74c3c;
  color: white;
}

.btn-wishlist--active:hover {
  background: #c0392b;
  border-color: #c0392b;
  color: white;
}

.btn-google-pay {
  width: 100%;
  background: #000;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 15px;
}

.more-payment-options {
  text-align: center;
  color: #666;
  font-size: 14px;
  margin-bottom: 25px;
}

.product-details {
  border-top: 1px solid #e0e0e0;
  padding-top: 25px;
}

.ask-question {
  font-size: 16px;
  margin: 0 0 15px;
  color: #333;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
}

.detail-label {
  color: #666;
  font-weight: 500;
}

.detail-value {
  color: #333;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .header__nav {
    display: none;
  }
  
  .header__actions {
    gap: 15px;
  }
  
  .collection-products {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
  }
  
  .product-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 20px;
  }
  
  .quick-view-grid {
    grid-template-columns: 1fr;
  }
  
  .quick-view-info {
    padding: 20px;
  }
  
  .quick-view-title {
    font-size: 20px;
  }
  
  .quick-view-price {
    font-size: 24px;
  }
  
  .pagination a,
  .pagination span {
    width: 35px;
    height: 35px;
    font-size: 12px;
  }
}

/* Quick View Modal Styles */
.quick-view-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.quick-view-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
}

.quick-view-content {
  position: relative;
  background: white;
  border-radius: 12px;
  max-width: 1200px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.quick-view-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.1);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.quick-view-close:hover {
  background: rgba(0, 0, 0, 0.2);
}

.quick-view-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 80vh;
  max-height: 600px;
}

/* Fixed height images section */
.quick-view-images {
  position: relative;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
}

.quick-view-gallery {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-main {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-image.active {
  opacity: 1;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gallery-nav:hover {
  background: white;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.gallery-nav--prev {
  left: 20px;
}

.gallery-nav--next {
  right: 20px;
}

/* Scrollable info section */
.quick-view-info {
  height: 100%;
  overflow-y: auto;
  padding: 40px;
  position: relative;
}

.quick-view-info::-webkit-scrollbar {
  width: 6px;
}

.quick-view-info::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.quick-view-info::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}

.quick-view-info::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* Quick View Additional Styles */
.quick-view-description {
  margin: 10px 0;
}

.description-content {
  font-size: 14px;
  line-height: 1.6;
  color: #6b7280;
  overflow: hidden;
  transition: all 0.3s ease;
}

.description-content.collapsed {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.description-content.expanded {
  display: block;
  max-height: none;
}

.view-more-btn {
  background: none;
  border: none;
  color: #1f2937;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  padding: 8px 0;
  margin-top: 8px;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.view-more-btn:hover {
  color: #374151;
}

.color-swatches {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.color-swatch {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #e5e7eb;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.color-swatch.active {
  border-color: #1f2937;
  transform: scale(1.1);
}

.color-swatch:hover {
  transform: scale(1.05);
  border-color: #6b7280;
}

.size-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-top: 8px;
}

.size-option {
  padding: 8px 12px;
  border: 1px solid #d1d5db;
  background: white;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  text-align: center;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.size-option:hover {
  border-color: #6b7280;
  background: #f9fafb;
}

.size-option.active {
  border-color: #1f2937;
  background: #1f2937;
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .quick-view-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 300px 1fr;
    height: 90vh;
  }
  
  .quick-view-images {
    height: 300px;
  }
  
  .quick-view-info {
    padding: 20px;
  }
  
  .size-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .quick-view-grid.no-images {
    grid-template-rows: 1fr;
    height: auto;
    min-height: auto;
  }
  
  .quick-view-content.no-images {
    max-height: 75vh;
    height: auto;
  }
}

/* Additional CSS to ensure color swatches are always visible */
.product-card__colors * {
  z-index: inherit !important;
}

.color-swatch--clickable {
  will-change: transform;
  transform: translateZ(0);
}

.color-swatch--clickable:hover,
.color-swatch--active {
  will-change: transform;
  transform: scale(1.1) translateZ(0);
}

.product-card__colors::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  z-index: 9998;
  pointer-events: none;
}

/* Enhanced Eye Hover Effects */
.quick-view {
  position: relative;
}





/* Black overlay effect for quick-view */
.quick-action-btn.quick-view {
  position: relative;
  overflow: hidden;
}

.quick-action-btn.quick-view::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000000;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 5;
}

.quick-action-btn.quick-view:hover::before {
  opacity: 1;
}

.quick-action-btn.quick-view:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 6px 20px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.2),
    0 0 15px rgba(255, 255, 255, 0.1);
}



/* Quick View button specific styles */
.quick-view {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.quick-view .quick-action-text {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: scale(1);
}

/* ====================================
   BIRKENSTOCK-STYLE CART PAGE
   ==================================== */

/* Cart Header Banner */
.cart-header-banner {
  background: #666666;
  padding: 40px 0;
  margin-bottom: 40px;
}

.cart-header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.cart-header-title {
  color: white;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 2px;
  margin: 0;
  text-transform: uppercase;
}

/* Cart Page Container */
.cart-page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  background: white;
}

/* Cart Main Content */
.cart-main-content {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 60px;
  align-items: start;
}

/* Cart Table */
.cart-table-wrapper {
  display: block;
}

.cart-mobile-items {
  display: none;
}

.cart-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: white;
}

.cart-table-header {
  border-bottom: 1px solid #ddd;
}

.cart-table-header th {
  padding: 20px 10px;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #333;
  text-transform: uppercase;
  border-bottom: 1px solid #ddd;
}

.cart-col-product {
  width: 45%;
}

.cart-col-price {
  width: 20%;
}

.cart-col-quantity {
  width: 20%;
}

.cart-col-total {
  width: 15%;
  text-align: right;
}

/* Cart Item Row */
.cart-item-row {
  border-bottom: 1px solid #f0f0f0;
}

.cart-item-row td {
  padding: 30px 10px;
  vertical-align: top;
}

/* Product Cell */
.cart-product {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.cart-product-image {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  background: #f8f8f8;
}

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

.cart-product-info {
  flex: 1;
}

.cart-product-title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}

.cart-product-title a {
  color: #333;
  text-decoration: none;
}

.cart-product-title a:hover {
  text-decoration: underline;
}

.cart-product-variant {
  margin: 4px 0;
  font-size: 14px;
  color: #666;
}

.cart-product-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cart-product-edit,
.cart-product-remove {
  width: 20px;
  height: 20px;
  border: none;
  background: none;
  cursor: pointer;
  color: #999;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-product-edit:hover,
.cart-product-remove:hover {
  color: #333;
}

/* Price Cell */
.cart-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cart-price-original {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
}

.cart-price-sale {
  font-size: 16px;
  color: #d63031;
  font-weight: 500;
}

.cart-price-regular {
  font-size: 16px;
  color: #333;
  font-weight: 500;
}

/* Quantity Cell */
.cart-quantity {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
  width: fit-content;
}

.qty-btn {
  width: 35px;
  height: 35px;
  border: none;
  background: #f8f8f8;
  color: #333;
  cursor: pointer;
  font-size: 18px;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.qty-btn:hover {
  background: #e8e8e8;
}

.qty-input {
  width: 50px;
  height: 35px;
  border: none;
  text-align: center;
  font-size: 14px;
  background: white;
  color: #333;
}

.qty-input:focus {
  outline: none;
}

/* Total Cell */
.cart-total-cell {
  text-align: right;
}

.cart-line-price {
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

/* Cart Sidebar */
.cart-sidebar {
  background: white;
  padding: 0;
}

/* Order Note Section */
.cart-note-section {
  margin-bottom: 30px;
}

.cart-note-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
}

.cart-note-input {
  width: 100%;
  height: 100px;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  resize: vertical;
  box-sizing: border-box;
}

.cart-note-input:focus {
  outline: none;
  border-color: #333;
}

/* Discount Info */
.cart-discount-info {
  margin-bottom: 20px;
}

.discount-text {
  font-size: 12px;
  color: #d63031;
  margin: 0;
  font-weight: 500;
}

/* Subtotal */
.cart-subtotal {
  margin-bottom: 20px;
  text-align: right;
}

.subtotal-line {
  margin-bottom: 8px;
}

.subtotal-amount {
  font-size: 18px;
  color: #333;
}

.subtotal-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 14px;
  color: #666;
}

.subtotal-discount {
  color: #d63031;
  font-weight: 500;
}

.subtotal-final {
  font-size: 20px;
  font-weight: 600;
  color: #333;
}

.cart-tax-note {
  font-size: 12px;
  color: #666;
  margin: 10px 0 30px;
  text-align: center;
}

/* Coupon Section */
.cart-coupon-section {
  margin-bottom: 30px;
}

.coupon-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-bottom: 5px;
}

.coupon-note {
  font-size: 12px;
  color: #666;
  margin: 0 0 10px;
}

.coupon-input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  box-sizing: border-box;
}

.coupon-input:focus {
  outline: none;
  border-color: #333;
}

/* Checkout Button */
.cart-checkout-button {
  width: 100%;
  background: #4a5568;
  color: white;
  border: none;
  padding: 15px 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease;
  margin-bottom: 30px;
}

.cart-checkout-button:hover {
  background: #2d3748;
}

/* Shipping Estimator */
.shipping-estimator {
  border-top: 1px solid #f0f0f0;
  padding-top: 30px;
}

.shipping-title {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  margin: 0 0 20px;
}

.shipping-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.shipping-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.shipping-field {
  display: flex;
  flex-direction: column;
}

.shipping-field label {
  font-size: 12px;
  color: #666;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.shipping-select,
.shipping-input {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  background: white;
}

.shipping-select:focus,
.shipping-input:focus {
  outline: none;
  border-color: #333;
}

.shipping-estimate-btn {
  background: #4a5568;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease;
  align-self: flex-start;
}

.shipping-estimate-btn:hover {
  background: #2d3748;
}

/* Empty Cart */
.cart-empty {
  text-align: center;
  padding: 80px 20px;
}

.cart-empty__icon {
  margin-bottom: 24px;
  opacity: 0.3;
}

.cart-empty__title {
  font-size: 24px;
  font-weight: 500;
  color: #333;
  margin: 0 0 12px;
}

.cart-empty__text {
  font-size: 16px;
  color: #666;
  margin: 0 0 32px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.cart-empty__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #4a5568;
  color: white;
  text-decoration: none;
  padding: 12px 24px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background-color 0.2s ease;
}

.cart-empty__button:hover {
  background: #2d3748;
}

/* Responsive Design */
@media (max-width: 768px) {
  .cart-header-banner {
    padding: 30px 0;
  }
  
  .cart-header-title {
    font-size: 24px;
  }
  
  .cart-page-container {
    padding: 0 15px;
  }
  
  .cart-main-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .cart-table-header th {
    padding: 15px 8px;
    font-size: 11px;
  }
  
  .cart-item-row td {
    padding: 20px 8px;
  }
  
  .cart-product {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }
  
  .cart-product-image {
    width: 100px;
    height: 100px;
  }
  
  .shipping-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .cart-table-header th {
    padding: 10px 5px;
    font-size: 10px;
  }
  
  .cart-item-row td {
    padding: 15px 5px;
  }
  
  .cart-product-image {
    width: 80px;
    height: 80px;
  }
  
  .qty-btn {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
  
  .qty-input {
    width: 40px;
    height: 30px;
  }
}

/* ====================================
   BIRKENSTOCK-STYLE FOOTER
   ==================================== */

.footer {
  background: #f8f8f8;
  border-top: 1px solid #e0e0e0;
  margin-top: 60px;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.footer__content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.footer__column {
  display: flex;
  flex-direction: column;
}

.footer__heading {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  margin: 0 0 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link {
  color: #666;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.footer__link:hover {
  color: #333;
  text-decoration: underline;
}

/* Newsletter Section */
.footer__newsletter-text {
  font-size: 14px;
  color: #666;
  margin: 0 0 16px;
  line-height: 1.4;
}

.footer__newsletter-form {
  margin-bottom: 30px;
}

.footer__newsletter-input {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.footer__email-input {
  flex: 1;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  background: white;
  color: #333;
}

.footer__email-input:focus {
  outline: none;
  border-color: #333;
}

.footer__subscribe-btn {
  background: #4a5568;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}

.footer__subscribe-btn:hover {
  background: #2d3748;
}

/* Payment Section */
.footer__payment {
  margin-bottom: 30px;
}

.footer__payment-title {
  display: block;
  font-size: 12px;
  color: #666;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer__payment-icons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.footer__payment-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Social Media Section */
.footer__social {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  color: #666;
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer__social-link:hover {
  background: #333;
  border-color: #333;
  color: white;
  transform: translateY(-2px);
}

/* Contact Info */
.footer__contact {
  padding-top: 16px;
  border-top: 1px solid #e0e0e0;
}

.footer__contact-text {
  font-size: 12px;
  color: #666;
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer__contact-link {
  font-size: 16px;
  color: #333;
  margin: 0 0 4px;
  font-weight: 500;
}

.footer__contact-hours {
  font-size: 12px;
  color: #666;
  margin: 0;
}

/* Bottom Bar */
.footer__bottom {
  border-top: 1px solid #e0e0e0;
  padding: 24px 0;
}

.footer__bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__copyright {
  font-size: 12px;
  color: #666;
  margin: 0;
  line-height: 1.4;
}

.footer__legal-links {
  display: flex;
  gap: 20px;
}

.footer__legal-link {
  font-size: 12px;
  color: #666;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__legal-link:hover {
  color: #333;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 40px 0 30px;
  }
  
  .footer__heading {
    font-size: 14px;
    margin-bottom: 16px;
  }
  
  .footer__link {
    font-size: 13px;
  }
  
  .footer__newsletter-input {
    flex-direction: column;
    gap: 12px;
  }
  
  .footer__subscribe-btn {
    padding: 14px 20px;
  }
  
  .footer__payment-icons {
    gap: 6px;
  }
  
  .footer__social {
    gap: 12px;
  }
  
  .footer__social-link {
    width: 36px;
    height: 36px;
  }
  
  .footer__bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .footer__legal-links {
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .footer__content {
    padding: 0 15px;
  }
  
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 30px 0 24px;
  }
  
  .footer__column {
    text-align: center;
  }
  
  .footer__payment-icons {
    justify-content: center;
  }
  
  .footer__social {
    justify-content: center;
  }
  
  .footer__contact {
    border-top: none;
    padding-top: 0;
  }
  
  .footer__legal-links {
    flex-direction: column;
    gap: 8px;
  }
}

.color-swatch--more {
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  color: #666;
  border: 1px solid #e0e0e0;
}

.color-swatch--desktop-only {
  display: flex;
}

.color-swatch--mobile-only {
  display: none;
}

.color-swatch--mobile-hidden {
  display: flex;
}

/* Mobile styles for color swatches */
@media (max-width: 768px) {
  .color-swatch--desktop-only {
    display: none;
  }
  
  .color-swatch--mobile-only {
    display: flex;
  }
  
  .color-swatch--mobile-hidden {
    display: none;
  }
  
  /* Hide footer columns on mobile */
  .footer__column--mobile-hidden {
    display: none;
  }
}

/* Mobile Quick View Button */
.product-card__mobile-quick-view {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 35px;
  height: 35px;
  background: white;
  border: none;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: all 0.2s ease;
  z-index: 10;
}

.product-card__mobile-quick-view:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.product-card__mobile-quick-view svg {
  color: #333;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .product-card__quick-actions {
    display: none;
  }
  
  .product-card__mobile-quick-view {
    display: flex;
  }
  
  .product-card__wishlist {
    top: 12px;
    right: 12px;
    bottom: auto;
    left: auto;
  }
  
  /* Stacked layout for mobile buttons */
  .product-card__wishlist {
    top: 12px;
    right: 12px;
  }
  
  .product-card__mobile-quick-view {
    top: 55px;
    right: 12px;
  }
  
  .product-card__mobile-cart {
    position: absolute;
    top: 98px;
    right: 12px;
    width: 35px;
    height: 35px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: all 0.2s ease;
    z-index: 10;
  }
  
  .product-card__mobile-cart:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }
  
  .product-card__mobile-cart svg {
    color: #333;
  }
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: white;
  border-top: 1px solid #e0e0e0;
  display: none;
  z-index: 10000;
  padding: 8px 0;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.mobile-bottom-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  text-decoration: none;
  color: #333;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 4px;
  transition: color 0.2s ease;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-bottom-nav__item:hover {
  color: #007bff;
}

.mobile-bottom-nav__wishlist-btn {
  font-family: inherit;
  font-size: inherit;
}

.mobile-bottom-nav__icon {
  width: 24px;
  height: 24px;
  margin-bottom: 4px;
}

.mobile-bottom-nav__icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.mobile-bottom-nav__label {
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
}

.mobile-bottom-nav__badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #000;
  color: white;
  font-size: 10px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.mobile-bottom-nav__badge--wishlist {
  display: none;
}

.mobile-bottom-nav__badge--wishlist:not(:empty):not([style*="display: none"]) {
  display: flex;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .mobile-bottom-nav {
    display: flex;
  }
  
  /* Add bottom padding to body to account for mobile nav */
  body {
    padding-bottom: 80px;
    overflow-x: hidden;
  }
  
  /* Hide filter-bar__center on mobile */
  .filter-bar__center {
    display: none;
  }
  
  /* Adjust filter bar layout for mobile */
  .filter-bar {
    justify-content: space-between;
    flex-direction: row;
  }
  
  .filter-bar__left,
  .filter-bar__right {
    flex: 0 0 auto;
  }
  
  /* Prevent horizontal scroll for collection-content and products-grid */
  .collection-content,
  .products-grid {
    /* width: 100vw !important; */
    max-width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box;
  }
  .collection-layout {
    overflow-x: hidden;
    padding: 0;
  }
  .collection-header__content {
    padding: 0;
  }
  
  /* Quick view modal adjustments for mobile */
  .quick-view-grid {
    height: 80vh;
  }
  
  /* Mobile Cart Layout */
  .cart-table-wrapper {
    display: none;
  }
  
  .cart-mobile-items {
    display: block;
  }
  
  .cart-main-content {
    display: block;
  }
  
  .cart-sidebar {
    width: 100%;
    margin-top: 20px;
  }
  
  /* Remove padding from cart page container on mobile */
  .cart-page-container {
    padding-left: 0;
    padding-right: 0;
  }
  
  /* Mobile Cart Items */
  .cart-mobile-item {
    display: flex;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid #e5e7eb;
    gap: 15px;
  }
  
  .cart-mobile-item:last-child {
    border-bottom: none;
  }
  
  .cart-mobile-image {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
  }
  
  .cart-mobile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
  }
  
  .cart-mobile-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .cart-mobile-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    color: #111827;
    margin: 0;
  }
  
  .cart-mobile-title a {
    color: inherit;
    text-decoration: none;
  }
  
  .cart-mobile-variant {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
  }
  
  .cart-mobile-variant .variant-label {
    font-weight: normal;
  }
  
  .cart-mobile-variant .variant-value {
    font-weight: 500;
  }
  
  .cart-mobile-actions {
    display: flex;
    gap: 12px;
    margin-top: 4px;
  }
  
  .cart-mobile-edit,
  .cart-mobile-remove {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: #6b7280;
    transition: color 0.2s;
  }
  
  .cart-mobile-edit:hover,
  .cart-mobile-remove:hover {
    color: #374151;
  }
  
  .cart-mobile-edit svg,
  .cart-mobile-remove svg {
    width: 16px;
    height: 16px;
  }
  
  .cart-mobile-prices {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
  }
  
  .cart-mobile-price-original {
    font-size: 14px;
    color: #9ca3af;
    text-decoration: line-through;
  }
  
  .cart-mobile-price-sale {
    font-size: 16px;
    font-weight: 600;
    color: #dc2626;
  }
  
  .cart-mobile-price-regular {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
  }
  
  .cart-mobile-quantity {
    display: flex;
    align-items: center;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    width: fit-content;
    margin-top: 12px;
  }
  
  .cart-mobile-qty-btn {
    background: none;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    color: #374151;
    font-size: 16px;
    font-weight: 500;
  }
  
  .cart-mobile-qty-btn:hover {
    background-color: #f3f4f6;
  }
  
  .cart-mobile-qty-input {
    border: none;
    text-align: center;
    width: 50px;
    padding: 8px 0;
    font-size: 16px;
    font-weight: 500;
    color: #111827;
    background: none;
  }
  
  .cart-mobile-qty-input:focus {
    outline: none;
  }
  
  .cart-mobile-total {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-top: 12px;
  }
}

/* Chat Widget */
.chat-app {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10000;
  font-family: 'Poppins', sans-serif;
}

.chat-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background-color: #293349;
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.chat-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.chat-title {
  font-weight: 600;
}

.chat-pre-form,
.chat-window {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 320px;
  height: 450px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.chat-form-content {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
}

.chat-user-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.form-group input[type="text"],
.form-group input[type="email"] {
  padding: 10px 12px;
  border: 1px solid #e9ecef;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-group input:focus {
  border-color: #007bff;
}

.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: #666;
  cursor: pointer;
  line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
  margin: 0;
  width: 16px;
  height: 16px;
  accent-color: #007bff;
}

.chat-start-btn {
  background: #007bff;
  color: white;
  border: none;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
  margin-top: 8px;
}

.chat-start-btn:hover {
  background: #0056b3;
}

.chat-disclaimer {
  margin-top: 16px;
  font-size: 11px;
  color: #999;
  line-height: 1.4;
}

.chat-disclaimer a {
  color: #007bff;
  text-decoration: underline;
}

.chat-disclaimer a:hover {
  color: #0056b3;
}

.chat-header {
  background: #293349;
  color: white;
  padding: 16px;
  position: relative;
}

.chat-header h3 {
  margin: 0 0 4px 0;
  font-size: 16px;
  font-weight: 600;
}

.chat-header p {
  margin: 0;
  font-size: 12px;
  opacity: 0.9;
}

.chat-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.chat-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.chat-messages {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  background: #f8f9fa;
}

.chat-message {
  margin-bottom: 12px;
}

.chat-message--bot {
  text-align: left;
}

.chat-message--user {
  text-align: right;
}

.chat-message-content {
  display: inline-block;
  max-width: 80%;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.4;
}

.chat-message--bot .chat-message-content {
  background: white;
  color: #333;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.chat-message--user .chat-message-content {
  background: #007bff;
  color: white;
}

.chat-input-area {
  padding: 16px;
  background: white;
  border-top: 1px solid #e9ecef;
  display: flex;
  gap: 8px;
  align-items: center;
}

.chat-input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid #e9ecef;
  border-radius: 20px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease;
}

.chat-input:focus {
  border-color: #007bff;
}

.chat-send {
  background: #007bff;
  color: white;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.chat-send:hover {
  background: #0056b3;
}

.chat-quick-actions {
  padding: 12px 16px;
  background: white;
  border-top: 1px solid #e9ecef;
}

.chat-quick-actions h4 {
  margin: 0 0 8px 0;
  font-size: 12px;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.chat-quick-action {
  width: 100%;
  padding: 8px 12px;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 6px;
  font-size: 12px;
  color: #333;
  cursor: pointer;
  transition: all 0.2s ease;
}

.chat-quick-action:hover {
  background: #e9ecef;
  border-color: #dee2e6;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .chat-app {
    bottom: 80px;
    right: 16px;
  }
  
  .chat-window {
    width: 280px;
    height: 400px;
    bottom: 60px;
  }
  
  .chat-toggle {
    padding: 10px 14px;
    font-size: 13px;
  }
}

/* Policy Pages Layout */
.page-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 20px;
  line-height: 1.6;
}

.page-content h1 {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 24px;
  text-align: center;
}

.page-content h2 {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin: 32px 0 16px 0;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 8px;
}

.page-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin: 24px 0 12px 0;
}

.page-content p {
  margin-bottom: 16px;
  color: #555;
}

.page-content ul,
.page-content ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

.page-content li {
  margin-bottom: 8px;
  color: #555;
}

.page-content blockquote {
  background: #f8f9fa;
  border-left: 4px solid #007bff;
  padding: 16px 20px;
  margin: 20px 0;
  font-style: italic;
  color: #666;
}

.page-content a {
  color: #007bff;
  text-decoration: underline;
}

.page-content a:hover {
  color: #0056b3;
}

.page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.page-content th,
.page-content td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #e9ecef;
}

.page-content th {
  background: #f8f9fa;
  font-weight: 600;
  color: #333;
}

/* Mobile responsive for policy pages */
@media (max-width: 768px) {
  .page-content {
    padding: 20px 16px;
  }
  
  .page-content h1 {
    font-size: 28px;
  }
  
  .page-content h2 {
    font-size: 22px;
  }
  
  .page-content h3 {
    font-size: 18px;
  }
}
