/* E-Commerce Styling for Thulira */
:root {
  --thulira-orange: #7cb170;
  --thulira-orange-dark: #8B9A8B;
  --thulira-bg-dark: #4B4E54;
  --thulira-bg-card: #4B4E54;
  --thulira-border: rgba(255, 255, 255, 0.2);
  --thulira-text-light: #E1E6E8;
  --thulira-text-muted: #B7C9C5;
  --thulira-font: 'Inter', sans-serif;
  --thulira-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --_colors---orange: #A8CBA0 !important;
  --_colors---orange-dark: #8B9A8B !important;
}

/* Nav Cart Trigger Styles */
.nav__cart-trigger {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: var(--thulira-transition);
  color: #000000 !important;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
}

.nav__cart-trigger:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.nav__cart-trigger svg {
  stroke: #000000;
}

.cart-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--thulira-orange);
  color: #ffffff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 10px;
  font-weight: 800;
  position: absolute;
  top: -2px;
  right: -2px;
  box-shadow: 0 0 0 2px var(--thulira-bg-dark);
}

/* Cart Overlay/Backdrop */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: var(--thulira-transition);
  z-index: 9998;
}

.cart-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* Cart Drawer */
.cart-drawer {
  position: fixed;
  top: 1rem;
  right: -450px;
  width: calc(100% - 2rem);
  max-width: 450px;
  height: calc(100% - 2rem);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: -5px 10px 40px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  overscroll-behavior: contain;
  transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 9999;
  font-family: var(--thulira-font);
  color: #000000;
  opacity: 0;
  transform: scale(0.98);
}

.cart-drawer.active {
  right: 1rem;
  opacity: 1;
  transform: scale(1);
}

.cart-header {
  padding: 2rem 1.5rem;
  border-bottom: 1px solid #f3f4f6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.cart-header h2 {
  font-size: 2rem;
  font-weight: 400;
  margin: 0;
  color: #000000;
}

.cart-close-btn {
  background: #e5e7eb;
  border: none;
  color: #374151;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--thulira-transition);
  border-radius: 50%;
  width: 36px;
  height: 36px;
}

.cart-close-btn:hover {
  color: #111827;
  transform: rotate(90deg);
}

/* Cart Scrollable Items List */
.cart-items-list {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Scrollbar styling */
.cart-items-list::-webkit-scrollbar {
  width: 6px;
}
.cart-items-list::-webkit-scrollbar-track {
  background: transparent;
}
.cart-items-list::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 3px;
}
.cart-items-list::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}

/* Empty Cart State */
.cart-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  color: #6b7280;
  gap: 1rem;
}

.cart-empty-state svg {
  stroke: #6b7280;
  opacity: 0.5;
}

/* Cart Item Layout */
.cart-item {
  display: flex;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.cart-item-image {
  width: 90px;
  height: 90px;
  object-fit: cover;
  background: #e5e7eb;
}

.cart-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cart-item-title {
  font-size: 1.25rem;
  font-weight: 400;
  margin: 0 0 0.25rem 0;
  line-height: 1.3;
  color: #000000;
}

.cart-item-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--thulira-orange);
}

.cart-item-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.5rem;
}

.quantity-picker {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 4px;
}

.quantity-btn {
  background: none;
  border: none;
  color: #000000;
  width: 28px;
  height: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--thulira-transition);
}

.quantity-btn:hover {
  background: #f3f4f6;
}

.quantity-value {
  padding: 0 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #000000;
  min-width: 20px;
  text-align: center;
}

.cart-item-remove {
  background: none;
  border: none;
  color: #6b7280;
  cursor: pointer;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--thulira-transition);
  padding: 4px;
}

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

/* Cart Footer */
.cart-footer {
  padding: 1.5rem;
  border-top: 1px solid #e5e7eb;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  color: #374151;
}

.cart-summary-line.total {
  font-size: 1.2rem;
  font-weight: 800;
  border-top: 1px solid #e5e7eb;
  padding-top: 0.75rem;
  color: #000000;
}

.cart-checkout-btn {
  background: var(--thulira-orange);
  color: #ffffff;
  border: none;
  padding: 0.9rem;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--thulira-transition);
}

.cart-checkout-btn:hover {
  background: var(--thulira-orange-dark);
  transform: translateY(-2px);
}

.cart-checkout-btn:active {
  transform: translateY(0);
}

/* ADD TO CART POPUP ACCENT */
.add-to-cart-popup-btn {
  background: var(--thulira-orange);
  color: #ffffff;
  border: none;
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--thulira-transition);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  margin-top: 1rem;
}
  

.add-to-cart-popup-btn:hover {
  background: var(--thulira-orange-dark);
}

.popup-price-tag {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--thulira-orange);
  margin-bottom: 0.5rem;
}

/* Checkout Page Grid Layout */
.checkout-page-wrapper {
  min-height: 100vh;
  background: #f9fafb;
  color: #111827;
  font-family: var(--thulira-font);
  padding: 8rem 1rem 4rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

@media (min-width: 992px) {
  .checkout-grid {
    grid-template-columns: 1.3fr 1fr;
    justify-content: center;
  }
}

.checkout-panel {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.checkout-panel h2 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 0.75rem;
  color: #111827;
}

/* Checkout Form elements */
.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

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

@media (min-width: 768px) {
  .form-row.two-cols {
    grid-template-columns: 1fr 1fr;
  }
  .form-row.three-cols {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #4b5563;
}

.form-input {
  background: #ffffff;
  border: 1px solid #d1d5db;
  color: #111827;
  padding: 0.75rem;
  border-radius: 4px;
  font-size: 0.95rem;
  font-family: var(--thulira-font);
  transition: var(--thulira-transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--thulira-orange);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 165, 116, 0.2);
}

/* Order Summary Column */
.order-summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.order-summary-item-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.order-summary-item-qty {
  color: #6b7280;
  font-size: 0.85rem;
  margin-left: 0.5rem;
}

.order-summary-item-price {
  font-weight: 700;
}

.order-summary-totals {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

.order-summary-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
}

.order-summary-total-row.grand-total {
  font-size: 1.25rem;
  font-weight: 800;
  color: #111827;
  border-top: 2px solid #e5e7eb;
  padding-top: 1rem;
  margin-top: 0.5rem;
}

.place-order-btn {
  background: var(--thulira-orange);
  color: #000000;
  border: none;
  padding: 1rem;
  font-weight: 800;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1.05rem;
  text-align: center;
  transition: var(--thulira-transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 1.5rem;
}

.place-order-btn:hover {
  background: var(--thulira-orange-dark);
  transform: translateY(-2px);
}

/* Success Page Styling */
.success-page-container {
  max-width: 600px;
  margin: 8rem auto 4rem auto;
  padding: 2.5rem;
  background: var(--thulira-bg-card);
  border: 1px solid var(--thulira-border);
  border-radius: 8px;
  text-align: center;
  color: var(--thulira-text-light);
  font-family: var(--thulira-font);
}

.success-icon-wrapper {
  width: 72px;
  height: 72px;
  background: rgba(16, 185, 129, 0.1);
  border: 2px solid #10b981;
  color: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
}

.success-page-container h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.success-details-card {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--thulira-border);
  border-radius: 6px;
  padding: 1.5rem;
  margin: 2rem 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.success-detail-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
}

.success-detail-label {
  color: var(--thulira-text-muted);
}

.success-detail-val {
  font-weight: 600;
}

.success-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 480px) {
  .success-actions {
    flex-direction: row;
    justify-content: center;
  }
}

.button-link {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--thulira-transition);
}

.button-link.primary {
  background: var(--thulira-orange);
  color: #000000;
}

.button-link.primary:hover {
  background: var(--thulira-orange-dark);
}

.button-link.secondary {
  border: 1px solid var(--thulira-border);
  color: var(--thulira-text-light);
}

.button-link.secondary:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* Orders Dashboard page */
.orders-page-container {
  max-width: 1000px;
  margin: 7rem auto 4rem auto;
  padding: 2rem 1.5rem;
  color: var(--thulira-text-light);
  font-family: var(--thulira-font);
}

.orders-page-header {
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.orders-page-header h1 {
  font-size: 2.2rem;
  font-weight: 800;
  margin: 0;
}

.orders-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.order-card {
  background: var(--thulira-bg-card);
  border: 1px solid var(--thulira-border);
  border-radius: 8px;
  overflow: hidden;
}

.order-card-header {
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--thulira-border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.order-header-info {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.order-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.order-meta-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--thulira-text-muted);
}

.order-meta-val {
  font-size: 0.9rem;
  font-weight: 700;
}

.order-card-body {
  padding: 1.5rem;
}

.order-items-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.order-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
}

.order-item-desc {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.order-item-qty-badge {
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 0.8rem;
  font-weight: 600;
}

.order-card-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.order-status-pill {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.status-scheduled {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.status-pending {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.status-completed {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.no-orders-box {
  background: var(--thulira-bg-card);
  border: 1px dashed var(--thulira-border);
  border-radius: 8px;
  padding: 4rem 2rem;
  text-align: center;
  color: var(--thulira-text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.no-orders-box svg {
  stroke: var(--thulira-text-muted);
  opacity: 0.4;
}

/* Spinner for simulated loading states */
.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(0, 0, 0, 0.3);
  border-top-color: #000;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Size Selector Styles */
.size-selector-group {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.size-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--thulira-border);
  color: var(--thulira-text-light);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--thulira-transition);
}

.size-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.size-btn.active {
  background: var(--thulira-orange);
  color: #000;
  border-color: var(--thulira-orange);
}

.cart-item-size-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 0.75rem;
  margin-left: 6px;
  vertical-align: middle;
}

/* Admin Tabs */
.admin-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--thulira-border);
  padding-bottom: 0.5rem;
  overflow-x: auto;
}

.admin-tab {
  background: none;
  border: none;
  color: var(--thulira-text-muted);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.5rem 1rem;
  transition: var(--thulira-transition);
  border-bottom: 2px solid transparent;
}

.admin-tab:hover {
  color: var(--thulira-text-light);
}

.admin-tab.active {
  color: var(--thulira-orange);
  border-bottom-color: var(--thulira-orange);
}

.admin-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-action-btn {
  background: rgba(255, 255, 255, 0.1);
  color: var(--thulira-text-light);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--thulira-transition);
}

.admin-action-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.admin-action-btn.confirm {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
}

.admin-action-btn.confirm:hover {
  background: rgba(16, 185, 129, 0.3);
}

.admin-action-btn.deliver {
  background: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
}

.admin-action-btn.deliver:hover {
  background: rgba(59, 130, 246, 0.3);
}

.admin-action-btn.cancel {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

.admin-action-btn.cancel:hover {
  background: rgba(239, 68, 68, 0.3);
}



/* 4 Column Grid for Products (2 columns on Mobile) */
#shopGrid, #bottlesGrid, #drinkwareGrid, #featuredGrid, .projecten__grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 1.5rem;
}

@media (max-width: 1200px) {
  #shopGrid, #bottlesGrid, #drinkwareGrid, #featuredGrid, .projecten__grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 991px) {
  #shopGrid, #bottlesGrid, #drinkwareGrid, #featuredGrid, .projecten__grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
  }
}

@media (max-width: 767px) {
  #shopGrid, #bottlesGrid, #drinkwareGrid, #featuredGrid, .projecten__grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }
  
  .product-card__image-container {
    height: 200px !important;
  }

  .product-card__title {
    font-size: 1rem !important;
  }

  .product-card__price {
    font-size: 1.1rem !important;
  }

  .product-card .size-btn {
    font-size: 0.65rem !important;
    padding: 0.2rem 0.4rem !important;
  }

  .product-card__info-row {
    flex-wrap: wrap;
    gap: 0.4rem;
  }

  .shop-top-bar {
    margin-top: 2.5rem !important;
    margin-bottom: 1rem !important;
  }

  .shop-top-bar h2 {
    font-size: 1.35rem !important;
  }

  .shop-category-header {
    margin-top: 1.25rem !important;
    margin-bottom: 1rem !important;
  }

  .shop-category-header h2 {
    font-size: 2.2rem !important;
  }
}

@media (max-width: 479px) {
  #shopGrid, #bottlesGrid, #drinkwareGrid, #featuredGrid, .projecten__grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.5rem !important;
  }

  .product-card__image-container {
    height: 175px !important;
  }

  .product-card__title {
    font-size: 0.9rem !important;
  }

  .product-card__price {
    font-size: 1rem !important;
  }

  .product-card .size-btn {
    font-size: 0.6rem !important;
    padding: 0.15rem 0.3rem !important;
  }

  .shop-top-bar {
    margin-top: 3.5rem !important;
    margin-bottom: 1rem !important;
  }

  .shop-top-bar h2 {
    font-size: 1.25rem !important;
  }

  .shop-category-header {
    margin-top: 0.75rem !important;
    margin-bottom: 0.5rem !important;
  }

  .shop-category-header h2 {
    font-size: 2.1rem !important;
  }
}

.shop-category-header {
  grid-column: 1 / -1;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}



/* Navbar Overrides for Desktop Hamburger Menu */
.nav__toggle {
  display: block !important;
}

/* Hide old desktop menu links if they still exist anywhere */
.nav__left > .nav__link {
  display: none !important;
}



/* From Uiverse.io by david-mohseni */ 
.wrapper {
  display: inline-flex;
  list-style: none;
  height: 120px;
  width: 100%;
  padding-top: 40px;
  font-family: "Poppins", sans-serif;
  justify-content: center;
}

.wrapper .icon {
  position: relative;
  background: #fff;
  border-radius: 8px;
  margin: 10px;
  width: 50px;
  height: 50px;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .facebook { color: #1877f2; }
.wrapper .whatsapp { color: #25D366; }
.wrapper .instagram { color: #e4405f; }

.wrapper .tooltip {
  position: absolute;
  top: 0;
  font-size: 14px;
  background: #fff;
  color: #fff;
  padding: 5px 8px;
  border-radius: 5px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  background: #fff;
  top: -3px;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon:hover .tooltip {
  top: 65px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.wrapper .icon:hover span,
.wrapper .icon:hover .tooltip {
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.wrapper .facebook:hover,
.wrapper .facebook:hover .tooltip,
.wrapper .facebook:hover .tooltip::before {
  background: #1877f2;
  color: #fff;
}

.wrapper .whatsapp:hover,
.wrapper .whatsapp:hover .tooltip,
.wrapper .whatsapp:hover .tooltip::before {
  background: #25D366;
  color: #fff;
}

.wrapper .instagram:hover,
.wrapper .instagram:hover .tooltip,
.wrapper .instagram:hover .tooltip::before {
  background: #e4405f;
  color: #fff;
}



/* --- CLEAN NAVBAR TOGGLE FIXES --- */

/* 1. Reset button layout */
.nav__toggle {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  padding: 0.5rem;
  background: transparent;
  border: none;
}

/* 2. Reset icon positioning inside button */
.nav__toggle .icon__24,
.nav__toggle [data-menu-icon-close],
.nav__toggle [data-menu-icon-open] {
  position: relative !important;
  top: 0 !important;
  left: 0 !important;
  right: auto !important;
  bottom: auto !important;
  transform: none !important;
  margin: 0 !important;
}

/* 3. Default State (Menu Closed) */
.nav__toggle [data-menu-icon-open] {
  display: flex !important;
}
.nav__toggle [data-menu-icon-close] {
  display: none !important;
}

/* 4. Active State (Menu Open) */
.nav__toggle.w--open [data-menu-icon-open],
.nav__toggle.is-active [data-menu-icon-open] {
  display: none !important;
}
.nav__toggle.w--open [data-menu-icon-close],
.nav__toggle.is-active [data-menu-icon-close] {
  display: flex !important;
}

/* 5. Hide Webflow dropdown arrows */
.nav__toggle::after, .nav__toggle::before {
  display: none !important;
}
.w-icon-nav-menu {
  display: none !important;
}

/* Prevent Webflow menu scale-down interaction on the page content */
.page__wrapper,
.main__wrapper,
main {
  transform: none !important;
  scale: none !important;
}

/* ==========================================================================
   Product Card Redesign (TravelCard Style with Hover Interactions)
   ========================================================================== */

/* Card Container */
.product-card {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
  overflow: visible;
  border-radius: 4px; /* Sharpened edges */
  border: none !important;
  outline: none !important;
  background-color: transparent;
  box-shadow: none !important; /* Removed shadow */
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-sizing: border-box;
}

.product-card:hover {
  box-shadow: none !important; /* Removed hover shadow */
  transform: translateY(-8px); /* hover:-translate-y-2 */
}

/* Background Image with Zoom Effect on Hover */
.product-card__image-container {
  width: 100%;
  height: 450px;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background-color: var(--thulira-bg-dark, #121212);
}
.product-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.product-card:hover .product-card__image {
  transform: scale(1.1); /* hover:scale-110 */
}

/* Gradient Overlay for Text Readability */
.product-card__overlay {
  position: absolute;
  inset: 0;
  background: none;
  z-index: 2;
  transition: opacity 0.5s ease;
}

/* Content Container */
.product-card__content {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1rem 0 0 0;
  z-index: 3;
  color: #4B4E54;
  box-sizing: border-box;
}

/* Top Section: Spacer */
.product-card__top {
  display: none;
}

/* Middle Section: Details (slides up on hover) */
.product-card__details {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 0.25rem;
}

/* Slide up by the height of bottom button on hover */
.product-card:hover .product-card__details {
  transform: none;
}

.product-card__title {
  margin: 0 0 0.25rem 0;
  font-size: 1.6rem;
  font-weight: 700;
  color: #4B4E54;
  line-height: 1.2;
}

/* Flex row for displaying Price and Size inline */
.product-card__info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 0.5rem;
}

.product-card__price {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--thulira-orange, #f78c44);
  text-shadow: none;
}

.product-card__sizes-col {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.25rem;
}

/* Bottom Section: Add to Cart Button (revealed on hover) */
.product-card__bottom {
  position: absolute;
  bottom: -65px; /* hidden off-card */
  left: 0;
  width: 100%;
  padding: 0 1.5rem 1.5rem 1.5rem;
  box-sizing: border-box;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 4;
}

.product-card:hover .product-card__bottom {
  bottom: 0;
  opacity: 1;
}

/* Style for size buttons inside the card to fit dark backdrop */
.product-card .size-btn {
  background: transparent !important;
  color: #4B4E54 !important;
  border: 1px solid #4B4E54 !important;
  padding: 0.25rem 0.5rem !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  border-radius: 4px !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  margin: 0 !important;
}

.product-card .size-btn.active,
.product-card .size-btn:hover {
  background: #ffffff !important;
  color: #000000 !important;
  border-color: #ffffff !important;
}

.product-card__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--thulira-orange, #f78c44);
  color: #ffffff;
  border: none;
  padding: 0.75rem 1rem;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.95rem;
  transition: background-color 0.2s ease, transform 0.1s ease;
  gap: 0.5rem;
}

.product-card__button:hover {
  background: #ff9e5e;
}

.product-card__button .arrow-icon {
  transition: transform 0.2s ease;
}

.product-card__button:hover .arrow-icon {
  transform: translateX(4px);
}

/* Global border radius matching Webflow usp-cards (0.25rem / 4px) */
:root {
  --_sizing---3xs: 0.25rem !important;
}

button, .button, .btn,
.usp-card, .card, .checkout-panel, .auth-modal, .cart-panel,
.order-summary, .product-card, .review-card,
input:not([type="radio"]):not([type="checkbox"]),
textarea, select, .form-input, .quantity-btn,
img:not(.close-icon):not([src*="svg"]),
video, iframe {
  border-radius: 0.25rem !important;
}

/* Exempt perfectly round elements */
.close-cart, .close-auth, [type="radio"], [type="checkbox"], .cart-count, .color-option {
  border-radius: 50% !important;
}

/* Custom Navbar Layout */
.nav__flex {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  width: 100% !important;
  position: relative !important;
}
.nav__left, .nav__right {
  display: flex !important;
}
.nav__left {
  justify-content: flex-start !important;
}
.nav__toggle {
  margin-left: 0 !important;
  padding-left: 0 !important;
}
.nav__right {
  justify-content: flex-end !important;
  align-items: center !important;
  gap: 1rem;
}
.nav__cart-trigger {
  margin-right: 0 !important;
}
.nav__center {
  position: absolute !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  display: flex !important;
  justify-content: center !important;
}

/* Hide footer decorative green lines */
.footer__deco {
  display: none !important;
}

/* Reduce space above footer logo */
.footer__logo-text-wrap {
  padding-top: 0 !important;
  margin-top: -3rem !important;
}

/* Reduce space above Built on Trust section */
.footer__topper {
  padding-top: 2rem !important;
  margin-top: 0 !important;
}
.footer__wrapper {
  margin-top: 0 !important;
}

/* Mobile Checkout Page Overrides */
@media screen and (max-width: 991px) {
  .flat-on-mobile {
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    border: none !important;
    padding-bottom: 160px !important; /* space for sticky footer */
    max-height: none !important;
    overflow-y: visible !important;
  }
  /* Force disable parent transforms to ensure fixed positioning works on viewport */
  html, body, .page__wrapper, .section, .container, .w-container, .w-layout-blockcontainer, #checkout-page-container {
    transform: none !important;
    filter: none !important;
    perspective: none !important;
    will-change: auto !important;
    contain: none !important;
    backdrop-filter: none !important;
  }
  .sticky-footer-mobile {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background: #fff !important;
    padding: 1rem 1.5rem 1rem 1.5rem !important;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.1) !important;
    z-index: 9999 !important;
  }
  .sticky-footer-mobile > div:first-child {
    margin-top: 0 !important;
    padding-top: 0 !important;
    border-top: none !important;
  }
  .sticky-footer-mobile > div:last-child {
    margin-top: 1rem !important;
  }
  .checkout-section-mobile {
    padding-top: 50px !important;
  }
}

/* Center navbar wrapper always */
.nav__wrapper {
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (max-width: 767px) {
  .nav__wrapper {
    left: 0 !important;
    right: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: calc(100% - 40px) !important;
    padding-top: 0.35rem !important;
    padding-bottom: 0.35rem !important;
    height: auto !important;
    min-height: 0 !important;
  }

  .nav__flex {
    height: 48px !important;
    min-height: 0 !important;
  }

  .nav__left, .nav__center, .nav__right {
    height: 100% !important;
    min-height: 0 !important;
    display: flex !important;
    align-items: center !important;
  }

  .nav__logo img {
    height: 24px !important;
    width: auto !important;
  }

  .nav__toggle {
    width: 32px !important;
    height: 32px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .nav__toggle .icon__24, .nav__toggle svg {
    width: 20px !important;
    height: 20px !important;
  }

  .nav__cart-trigger {
    margin-right: 0.rem !important;
  }

  .nav__cart-trigger svg {
    width: 20px !important;
    height: 20px !important;
  }

  .nav__cart-trigger .cart-badge {
    font-size: 0.7rem !important;
    padding: 1px 5px !important;
  }

  /* Spacious Dropdown Menu and Text Button Gaps */
  .nav__menu-wrapper.w--open {
    padding-top: 1.5rem !important;
    padding-bottom: 2rem !important;
  }

  .nav__menu-inner li,
  #thulira-dropdown li {
    margin-bottom: 0.75rem !important;
  }

  .nav__menu-link {
    font-size: 1.35rem !important;
    padding-top: 0.65rem !important;
    padding-bottom: 0.65rem !important;
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
    line-height: 1.3 !important;
    border-radius: 8px !important;
  }

  #menuCartTrigger {
    font-size: 1.35rem !important;
    padding-top: 0.65rem !important;
    padding-bottom: 0.65rem !important;
  }

  #menuCartTrigger .cart-badge {
    font-size: 0.75rem !important;
    padding: 2px 6px !important;
  }
}

/* PDP Gallery Layout */
.pdp-gallery-container {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  display: flex;
  gap: 1rem;
}

.pdp-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 80px;
  max-height: 480px;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.pdp-thumbnails::-webkit-scrollbar {
  display: none;
}

.pdp-main-image-wrap {
  flex: 1;
  padding-top: 100%;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #f5f5f5;
}

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

.pdp-thumbnail-btn {
  width: 100%;
  aspect-ratio: 1;
  background: #f5f5f5;
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
  transition: opacity 0.2s;
  flex-shrink: 0;
  box-sizing: border-box;
}

/* Mobile View pdp gallery overrides */
@media (max-width: 767px) {
  .pdp-gallery-container {
    flex-direction: column-reverse !important; /* Stack vertically, thumbnails at bottom */
    gap: 1rem !important;
  }

  .pdp-thumbnails {
    flex-direction: row !important; /* Horizontal thumbnails */
    width: 100% !important; /* Take full width */
    max-height: none !important;
    overflow-x: auto !important; /* Horizontal scrolling */
    overflow-y: visible !important;
    padding-bottom: 0.5rem !important;
  }

  /* Each thumbnail on mobile */
  .pdp-thumbnails .pdp-thumbnail-btn {
    width: 72px !important; /* Fixed width on mobile */
    height: 72px !important; /* Fixed height on mobile */
    aspect-ratio: 1 !important;
  }
}

/* PDP Details Styling */
.pdp-details-container {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pdp-category {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #666;
  margin-bottom: 1rem;
}

.pdp-title {
  font-size: 3rem;
  font-weight: 700;
  color: #111;
  margin-top: 0;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.pdp-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--thulira-orange);
  margin-bottom: 2rem;
}

.pdp-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 2.5rem;
}

.pdp-section-title {
  font-weight: 700;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  color: #111;
}

.pdp-add-to-cart-btn {
  flex: 1;
  font-size: 1.2rem;
  padding: 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Quantity selector */
.pdp-qty-container {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 1rem;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  width: fit-content;
  overflow: hidden;
}

.pdp-qty-btn {
  background: #f7f7f5;
  border: none;
  width: 42px;
  height: 44px;
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  transition: background 0.15s;
}

.pdp-qty-btn:hover {
  background: #efefec;
}

.pdp-qty-val {
  min-width: 44px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: #111;
  padding: 0 0.5rem;
}

/* PDP Colors */
.pdp-color-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid white;
  box-shadow: 0 0 0 2px transparent;
  transition: box-shadow 0.2s;
}

/* PDP Size Buttons overrides */
.pdp-variants-wrapper .size-btn {
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid #ccc;
  background: white;
  cursor: pointer;
}

/* Mobile responsive scaling down of text and buttons */
@media (max-width: 767px) {
  .pdp-title {
    font-size: 1.8rem !important; /* significantly smaller title */
    margin-bottom: 1rem !important;
  }

  .pdp-price {
    font-size: 1.5rem !important; /* smaller price */
    margin-bottom: 1.5rem !important;
  }

  .pdp-description {
    font-size: 0.95rem !important; /* smaller description */
    margin-bottom: 2rem !important;
    line-height: 1.5 !important;
  }

  .pdp-section-title {
    font-size: 0.95rem !important; /* smaller headers */
    margin-bottom: 0.5rem !important;
  }

  /* Smaller Size Buttons */
  .pdp-variants-wrapper .size-btn {
    padding: 0.35rem 0.75rem !important;
    font-size: 0.85rem !important;
  }

  /* Smaller Color Buttons */
  .pdp-color-btn {
    width: 28px !important;
    height: 28px !important;
  }

  /* Smaller Quantity Picker */
  .pdp-qty-btn {
    width: 34px !important;
    height: 36px !important;
    font-size: 1.1rem !important;
  }

  .pdp-qty-val {
    min-width: 36px !important;
    font-size: 0.95rem !important;
  }

  /* Smaller Add to Cart Button */
  .pdp-add-to-cart-btn {
    font-size: 1.05rem !important;
    padding: 0.9rem !important;
  }
}

/* Responsive Heading Sizes & Text Wrapping for Mobile */
html, body {
  overflow-x: hidden !important;
  max-width: 100vw !important;
}

@media (max-width: 767px) {
  .h1, h1, .h2, h2, .h3, h3, .h4, h4, .h5, h5, .h6, h6 {
    white-space: normal !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
  }

  .h1, h1 {
    font-size: 1.75rem !important;
  }

  .h2, h2 {
    font-size: 1.45rem !important;
  }

  .h3, h3 {
    font-size: 1.25rem !important;
  }

  .h1 br, h1 br, .h2 br, h2 br, .h3 br, h3 br {
    display: none !important;
  }

  .page__wrapper, .main__wrapper, main, section, .section, .container, .w-container, .w-layout-blockcontainer {
    max-width: 100vw !important;
    box-sizing: border-box !important;
  }

  p, h1, h2, h3, h4, h5, h6, span, a, div {
    overflow-wrap: break-word;
    word-break: break-word;
  }

  img, video, iframe {
    max-width: 100% !important;
  }

  /* Keep bulk gifting cards single column on mobile */
  .bulk-gifting-section [style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }

  /* Reduce vertical spacing around section titles on mobile */
  .section {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .section h1, .section .h1, .section h2, .section .h2 {
    margin-top: 0.5rem !important;
    margin-bottom: 1rem !important;
  }

  .process__stick {
    margin-top: 1.5rem !important; /* overrides the default 7rem spacing */
  }

  /* Vertical compact cards layout on mobile */
  .col__3 {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    gap: 1.5rem !important;
    padding: 0.5rem 0 !important;
    width: 100% !important;
  }

  .col__3 .usp-card {
    width: 100% !important;
    max-width: none !important;
    padding: 1.25rem !important; /* reduce padding inside card */
  }

  .col__3 .usp-card h3 {
    font-size: 1.35rem !important;
    margin-bottom: 0.5rem !important;
  }

  .col__3 .usp-card h3 + div {
    font-size: 0.95rem !important; /* make sub-title smaller */
    margin-bottom: 1rem !important;
  }

  .col__3 .usp-card img {
    height: 160px !important; /* make the image smaller */
    margin-bottom: 1rem !important;
  }

  .col__3 .usp-card p {
    font-size: 0.85rem !important; /* make paragraph text smaller */
    line-height: 1.4 !important;
  }
}

@media (max-width: 479px) {
  .h1, h1 {
    font-size: 1.35rem !important;
  }

  .h2, h2 {
    font-size: 1.2rem !important;
  }

  .h3, h3 {
    font-size: 1.05rem !important;
  }
}

/* WhatsApp mobile menu button visibility rule */
[data-nav-menu-whatsapp] {
  display: block !important;
}

@media (min-width: 992px) {
  [data-nav-menu-whatsapp] {
    display: none !important;
  }
}

/* Homepage USP cards background matching the About page Promise section */
.usp-card {
  background-color: var(--_colors---dark-grey, #3b3940) !important;
  color: var(--_colors---white, white) !important;
}

.usp-card.is__2 {
  background-color: var(--_colors---mid-grey, #848c8f) !important;
  color: var(--_colors---white, white) !important;
}

.usp-card.is__3 {
  background-color: var(--_colors---orange, #A8CBA0) !important;
  color: var(--_colors---white, white) !important;
}

/* Navigation Dropdown Styles */
.dropdown {
  position: relative;
  width: 100%;
}

.dropdown-toggle {
  display: flex !important;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

.dropdown-toggle .arrow {
  font-size: 0.8em;
  transition: transform 0.3s ease;
  display: inline-block;
}

.dropdown.active .dropdown-toggle .arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  display: none;
  list-style: none;
  padding: 0.5rem 0 0.5rem 2rem;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  position: static !important;
  transform: none !important;
}

.dropdown.active .dropdown-menu {
  display: block !important;
  animation: slideDownMenu 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideDownMenu {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-item {
  display: block;
  padding: 0.6rem 0;
  color: rgba(255, 255, 255, 0.75) !important;
  text-decoration: none;
  font-size: 1.55rem !important;
  font-weight: 500;
  transition: color 0.2s ease, padding-left 0.2s ease;
  text-align: left !important;
}

.dropdown-item:hover {
  background-color: transparent !important;
  color: var(--thulira-orange, #A8CBA0) !important;
  padding-left: 4px;
}

/* 2 columns by default on all viewports */
.projecten__grid {
  grid-template-columns: repeat(2, 1fr) !important;
}

/* 4 columns on desktop */
@media (min-width: 992px) {
  .projecten__grid {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}

/* Remove underlines from navbar links and add green hover state */
.nav__menu-link,
.dropdown-toggle,
.dropdown-item,
#menuCartTrigger {
  text-decoration: none !important;
}

.nav__menu-link:hover,
.dropdown-toggle:hover,
#menuCartTrigger:hover,
.dropdown-item:hover {
  color: var(--thulira-orange, #A8CBA0) !important;
  text-decoration: none !important;
}

/* --- Filter Drawer --- */
.filter-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.filter-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.filter-drawer-container {
  position: fixed;
  top: 0;
  left: -100%; /* Hidden off-screen left */
  width: 350px;
  max-width: 90vw;
  height: 100vh;
  background: white;
  z-index: 1001;
  transition: left 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 2px 0 10px rgba(0,0,0,0.1);
}

.filter-drawer-container.active {
  left: 0;
}

.filter-drawer-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.filter-drawer-body {
  padding: 1.5rem;
  overflow-y: auto;
  flex-grow: 1;
}

.filter-group {
  margin-bottom: 2rem;
}

.filter-group:last-child {
  margin-bottom: 0;
}

.filter-group__title {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #555;
  margin-bottom: 1rem;
  margin-top: 0;
}

.filter-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  cursor: pointer;
  font-size: 1rem;
  color: #333;
  transition: color 0.2s ease;
}

.filter-label:hover {
  color: var(--thulira-orange, #A8CBA0);
}

.filter-label input[type="radio"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #ccc;
  border-radius: 50%;
  margin: 0;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}

.filter-label input[type="radio"]:checked {
  border-color: var(--thulira-orange, #A8CBA0);
}

.filter-label input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: var(--thulira-orange, #A8CBA0);
  border-radius: 50%;
}

.filter-colors {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem 0.4rem;
}

/* New labelled color item */
.color-filter-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  padding: 6px 4px;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}

.color-filter-item:hover {
  background: rgba(168, 203, 160, 0.1);
  transform: translateY(-1px);
}

.color-filter-item.active {
  border-color: var(--thulira-orange, #A8CBA0);
  background: rgba(168, 203, 160, 0.12);
}

.color-filter-item .color-swatch {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.12);
  flex-shrink: 0;
}

.color-swatch-label {
  font-size: 0.62rem;
  font-weight: 500;
  color: #444;
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 58px;
}

.color-filter-item.active .color-swatch-label {
  color: #2d5026;
  font-weight: 700;
}

/* Keep old .color-swatch-wrapper for backward compat */
.color-swatch-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s ease, transform 0.2s ease;
  padding: 2px;
}

.color-swatch-wrapper:hover {
  transform: scale(1.1);
}

.color-swatch-wrapper.active {
  border-color: var(--thulira-orange, #A8CBA0);
}

.color-swatch {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1);
}
