@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --cream: #FAF7F2;
  --warm-white: #FFFEF9;
  --linen: #E8DFD0;
  --linen-dark: #C9B99A;
  --sand: #B8A48C;
  --brown: #5C4A35;
  --brown-dark: #3D2E1E;
  --accent: #8B6F47;
  --accent-light: #D4B896;
  --green: #4A7C59;
  --green-light: #E8F2EC;
  --red: #C0392B;
  --red-light: #FDECEA;
  --text-dark: #2C1E0F;
  --text-mid: #5C4A35;
  --text-light: #9A8570;
  --shadow-sm: 0 2px 8px rgba(92,74,53,0.08);
  --shadow-md: 0 8px 32px rgba(92,74,53,0.12);
  --shadow-lg: 0 16px 48px rgba(92,74,53,0.16);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}



/* ── NAVBAR ── */
.navbar {
  background: #FFFEF9;
  border-bottom: 1px solid #E8DFD0;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(92,74,53,0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 38px;
  height: 38px;
  background: #335089;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.nav-logo-text {

  font-size: 20px;
  font-weight: 700;
  color: #3D2E1E;
  line-height: 1;
}
.nav-logo-text span { color: #8B6F47; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  text-decoration: none;
  color: #5C4A35;
  font-weight: 500;
  font-size: 14px;
  padding: 8px 16px;
  border-radius:8px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-links a:hover { background: #E8DFD0; color: #3D2E1E; }
.nav-links a.active { background: #335089; color: #fff; }

.cart-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #335089;
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.cart-badge:hover { background: #3D2E1E; transform: translateY(-1px); }
.cart-badge .badge-count {
  background: #D4B896;
  color: #3D2E1E;
  font-weight: 700;
  font-size: 12px;
  padding: 2px 7px;
  border-radius: 10px;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #3D2E1E 0%, #335089 60%, var(--accent) 100%);
  color: #fff;
  padding: 72px 5% 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner { position: relative; max-width: 600px; }
.hero-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: #D4B896;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.hero h1 {

  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero h1 em { font-style: italic; color: #D4B896; }
.hero p {
  font-size: 16px;
  opacity: 0.85;
  max-width: 440px;
  line-height: 1.7;
}

/* ── SECTION ── */
.section-header {
 
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.prodct{
    position:relative;
    padding:5rem 0;
}
.section-header p { color: #9A8570; font-size: 14px; }

.continue-booking-btn {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 12px 20px;
  border-radius: 999px;
  background: #0D7FF2FF;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(74,124,89,0.18);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.continue-booking-btn.is-visible {
  display: inline-flex;
}

.continue-booking-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(74,124,89,0.24);
  background: #3f6b4c;
}

/* ── PRODUCT GRID ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  
}

.product-card {
  background: #FFFEF9;
  border-radius:16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(92,74,53,0.08);
  border: 1px solid #E8DFD0;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(92,74,53,0.12);
  border-color: #C9B99A;
}

.product-img-wrap {
  position: relative;
  /*height: 235px;*/
  overflow: hidden;
  background: #E8DFD0;
}
.product-detail-trigger {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 999px;
  background: rgba(51, 80, 137, 0.92);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.product-detail-trigger:hover {
  background: #3D2E1E;
  transform: scale(1.05);
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }

.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: #335089;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}

.product-body { 
    padding: 20px; 

 }
.proct-combt{
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    align-items: start;
}
.product-name {

  font-size: 16px;
  color: #3D2E1E;
  font-weight: 600;
}
.product-desc { font-size: 13px; color: #9A8570; line-height: 1.5;display:none; }

.product-price {
  display: flex;
    /* align-items: baseline; */
    /* gap: 4px; */
    flex-direction: column;
}
.product-price .amount {
  font-size: 24px;
  font-weight: 700;
  color: #335089;

}
.product-price .unit { font-size: 13px; color: #9A8570; }

.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid #C9B99A;
  border-radius: 5px;
  overflow: hidden;
  width: fit-content;
}
.qty-btn {
  width: 36px; height: 36px;
  background: #E8DFD0;
  border: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  color: #335089;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; align-items: center; justify-content: center;
}
.qty-btn:hover { background: #C9B99A; color: #3D2E1E; }
.qty-input {
  width: 37px; height: 36px;
  border: none;
  background: #FFFEF9;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: #3D2E1E;
 /*padding-left:14px;*/
  outline: none;
  text-align:right;
}

.add-cart-btn {
  width: 100%;
  padding: 12px;
  background: #335089;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
 position:relative;
  letter-spacing: 0.3px;
  margin-top: auto;
}

.add-cart-btn:hover { background: #3D2E1E; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(92,74,53,0.25); }
.add-cart-btn.added { background: #0D7FF2FF }

.product-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1200;
}
.product-modal.is-open {
  display: block;
}
.product-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 18, 11, 0.58);
}
.product-modal-dialog {
  position: relative;
  width: min(920px, calc(100% - 28px));
  max-height: calc(100vh - 40px);
  margin: 13% auto;
  background: #FFFEF9;
  border-radius: 18px;
  overflow: auto;
  box-shadow: 0 24px 64px rgba(44, 30, 15, 0.3);
}
.product-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 999px;
  background: #E8DFD0;
  color: #3D2E1E;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
}
.product-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
}
.product-modal-media {
  background: #E8DFD0;
}
.product-modal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-modal-content {
  padding: 28px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.product-modal-content h3 {
  margin: 0;
  color: #3D2E1E;
  font-size: 28px;
}
.product-modal-content p {
  margin: 0;
  color: #5C4A35;
  font-size: 14px;
  line-height: 1.6;
}
.product-modal-content .proct-combt {
  justify-content: flex-start;
  margin-bottom: 0;
}
.product-modal-content .add-cart-btn {
  margin-top: 6px;
}

.prodct .nav-tabs{
    border:0;
    margin-bottom:2rem !important;
    justify-content:center;
}
.prodct .nav-tabs .nav-link.active{
        border: 0;
    background: #335089;
    color: #fff;
    border-radius: 10px;
}

 .prodct .nav-tabs .nav-link:hover{
    border:unset;
}
.prodct .nav-tabs .nav-link{
    border:unset;
}
/* ── TOAST ── */
.toast {
      position: fixed;
    top: 12%;
    left: 0;
    right: 0;
    margin: auto;
    background: #3D2E1E;
    color: #fff;
    padding: 14px 22px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 16px 48px rgba(92, 74, 53, 0.16);
    transform: translateY(80px);
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 320px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { background:  #4A7C59; }
.toast.error { background: #C0392B; }

/* ── CART PAGE ── */
.cart-layout {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 32px;
  padding: 40px 5% 60px;
  align-items: start;
}

@media (max-width: 900px) {
  .cart-layout { grid-template-columns: 1fr; }
}

.cart-left, .cart-right {
  background: #FFFEF9;
  border-radius:16px;
  border: 1px solid #E8DFD0;
  box-shadow: 0 2px 8px rgba(92,74,53,0.08);
  overflow: hidden;
}

.panel-header {
  padding: 22px 24px;
  border-bottom: 1px solid #E8DFD0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.panel-header h3 {
 
  font-size: 18px;
  color: #3D2E1E;
}
.panel-header .item-count {
  background: #E8DFD0;
  color: #5C4A35;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}

.cart-items { padding: 16px; display: flex; flex-direction: column; gap: 12px; }

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px;
  border: 1px solid #E8DFD0;
  border-radius: 12px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  background: #FAF7F2;
}
.cart-item:hover { border-color: #C9B99A; }

.cart-item-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cart-item-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cart-item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.cart-item-img {
  width: 70px; height: 70px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }

.cart-item-name { font-weight: 600; font-size: 14px; color: #3D2E1E; }
.cart-item-price { font-size: 13px; color: #9A8570; }

.cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.remove-btn {
  background: none;
  border: none;
  color: #C0392B;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 6px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
 
}
.remove-btn:hover { background: #FDECEA; }

.cart-empty {
  padding: 48px 24px;
  text-align: center;
  color: #9A8570;
}

.cart-empty-page {
  padding: 32px 5% 60px;
}

.cart-empty-page .cart-empty {
 max-width: 520px;
    margin: 0 auto;
    background: #FFFEF9;
    border: 1px solid #E8DFD0;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(92, 74, 53, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.cart-empty .empty-icon { font-size: 40px; color:#335089; margin-bottom: 12px; }
.cart-empty p { font-size: 14px; }
.cart-empty a {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 22px;
  background: #335089;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.cart-empty a:hover { background: #0D7FF2FF; }

/* ── RIGHT PANEL ── */
.panel-body { padding: 24px; display: flex; flex-direction: column; gap: 24px; }

.form-section-title {

  font-size: 15px;
  color: #3D2E1E;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.form-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #E8DFD0;
}

.date-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.address-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.address-search-group {
  position: relative;
}

.address-suggestions {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 30;
  display: none;
  max-height: 220px;
  overflow-y: auto;
  background: #FFFEF9;
  border: 1px solid #C9B99A;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(92,74,53,0.12);
}

.address-suggestions.show {
  display: block;
}

.address-suggestion {
  padding: 10px 12px;
  border-bottom: 1px solid #E8DFD0;
  cursor: pointer;
  color: #2C1E0F;
  font-size: 13px;
}

.address-suggestion:last-child {
  border-bottom: none;
}

.address-suggestion:hover {
  background: #FAF7F2;
}

.address-suggestion small {
  display: block;
  margin-top: 3px;
  color: #9A8570;
  font-size: 11px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 12px; font-weight: 600; color: #5C4A35; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid #C9B99A;
  border-radius: 10px;
  font-size: 14px;
 
  color: #2C1E0F;
  background: #FFFEF9;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #8B6F47;
  box-shadow: 0 0 0 3px rgba(139,111,71,0.1);
}

.form-group input[readonly] {
  background: #f6f1e8;
}

/* Price summary */
.price-summary { background: #FAF7F2; border-radius: 12px; padding: 18px; display: flex; flex-direction: column; gap: 10px; }
.price-row { display: flex; justify-content: space-between; align-items: center; font-size: 14px; }
.price-row .label { color: #9A8570; }
.price-row .value { font-weight: 600; color: #2C1E0F; }
.price-row.days-row .value { color: #8B6F47; }
.price-divider { height: 1px; background: #C9B99A; }
.price-row.total-row { font-size: 18px; }
.price-row.total-row .label { color: #3D2E1E; font-weight: 600; }
.price-row.total-row .value { color: #335089; font-size: 22px; }
.price-row.discount-row .value { color:  #4A7C59; }

/* Coupon */
.coupon-wrap { display: flex; gap: 8px; }
.coupon-wrap input { flex: 1; }
.coupon-btn {
  padding: 11px 18px;
  background: #E8DFD0;
  color: #335089;
  border: 1.5px solid #C9B99A;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;

}
.coupon-btn:hover { background: #C9B99A; }
.coupon-btn.applied { background:  #4A7C59; color: #fff; border-color:  #4A7C59; }
.coupon-msg { font-size: 12px; margin-top: 4px; }
.coupon-msg.success { color:  #4A7C59; }
.coupon-msg.error { color: #C0392B; }

/* Proceed button */
.proceed-btn {
  width: 100%;
  padding: 16px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);

  letter-spacing: 0.3px;
  box-shadow: 0 4px 20px rgba(92,74,53,0.3);
}
.proceed-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(92,74,53,0.4); }
.proceed-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* ── CHECKOUT ── */
.checkout-wrap { 
    /*padding: 40px 5% 60px; */
    display: none;
    padding-bottom:3rem;
    }
.checkout-wrap.active { display: block; }

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: start;
   padding: 28px 5% 0;
}
@media (max-width: 900px) { .checkout-grid { grid-template-columns: 1fr; } }

.order-summary-card, .checkout-form-card {
  background: #FFFEF9;
  border-radius:16px;
  border: 1px solid #E8DFD0;
  box-shadow: 0 2px 8px rgba(92,74,53,0.08);
  overflow: hidden;
}

.summary-items { padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.summary-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: #FAF7F2;
  border-radius: 10px;
}
.summary-item img { width: 48px; height: 48px; border-radius: 6px; object-fit: cover; }
.summary-item-info { flex: 1; }
.summary-item-name { font-size: 13px; font-weight: 600; color: #3D2E1E; }
.summary-item-details { font-size: 12px; color: #9A8570; margin-top: 2px; }
.summary-item-price { font-weight: 700; color: #335089; font-size: 14px; }

.summary-dates {
  padding: 14px 16px;
  background: #E8DFD0;
  margin: 0 16px 16px;
  border-radius: 10px;
  font-size: 13px;
  color: #5C4A35;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.summary-dates span { display: flex; align-items: center; gap: 6px; }

.edit-address-btn {
  background: #335089;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.edit-address-btn:hover { background: #3D2E1E; }
.edit-address-btn:active { transform: scale(0.98); }

.summary-totals { padding: 16px; border-top: 1px solid #E8DFD0; display: flex; flex-direction: column; gap: 8px; }

.checkout-form { padding: 24px; display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.submit-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #3D2E1E 0%, #335089 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);

  box-shadow: 0 4px 20px rgba(44,30,15,0.3);
}
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(44,30,15,0.4); }

/* ── SUCCESS PAGE ── */
.success-page {
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 5%;
}
.success-card {
  background: #FFFEF9;
  border-radius: 24px;
  padding: 60px 48px;
  text-align: center;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 16px 48px rgba(92,74,53,0.16);
  border: 1px solid #E8DFD0;
}
.success-icon {
  width: 80px; height: 80px;
  background:  #E8F2EC;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 24px;
  animation: scaleIn 0.5s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes scaleIn { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.success-card h2 {

  font-size: 32px;
  color: #3D2E1E;
  margin-bottom: 12px;
}
.success-card p { color: #9A8570; font-size: 15px; line-height: 1.7; }
.success-actions { display: flex; gap: 12px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }
.btn-outline {
  padding: 12px 28px;
  border: 2px solid #335089;
  color: #335089;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);

}
.btn-outline:hover { background: #335089; color: #fff; }
.btn-filled {
  padding: 12px 28px;
  background: #335089;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid #335089;

}
.btn-filled:hover { background: #3D2E1E; border-color: #3D2E1E; }

 /*── PAGE TITLE BAR ── */
.page-title-bar {
  padding: 28px 5% 0;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #9A8570;
  margin-bottom: 12px;
}
.breadcrumb a { color: #fff; text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-btn,
.previous-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: #335089;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.3px;
  box-shadow: 0 4px 20px rgba(92,74,53,0.3);
  text-decoration: none;
}
.breadcrumb-btn:hover,
.previous-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(92,74,53,0.4);
}
.breadcrumb-btn:active,
.previous-btn:active { transform: translateY(0); }
.page-title-bar h1 {

  font-size: 28px;
  color: #3D2E1E;
}

/* ── ALERTS ── */
.alert {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  margin: 0 5% 16px;
}
.alert.success { background:  #E8F2EC; color:  #4A7C59; border: 1px solid #b8d9c3; }
.alert.error { background: #FDECEA; color: #C0392B; border: 1px solid #f5c6c2; }

/*.qty-input{*/
/*        margin-left:15px;*/
/*    }*/

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .navbar { padding: 0 4%; }
  .hero { padding: 48px 4%; }
  .section-header { padding: 32px 4% 16px; }
  .cart-layout { padding: 24px 4% 40px; }
  /*.checkout-wrap { padding: 24px 4% 40px; }*/
  .product-modal-dialog {
    width: calc(100% - 16px);
    margin: 8px auto;
    max-height: calc(100vh - 16px);
  }
  .product-modal-grid {
    grid-template-columns: 1fr;
  }
  .product-modal-media {
    max-height: 280px;
  }
  .product-modal-content h3 {
    font-size: 22px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1350px){
    .qty-input{
        margin-left:0;
        padding-left:0;
        text-align:center;
    }
}


@media(max-width : 767px){
    .cart-empty .empty-icon{
        font-size:30px;
    }
    .cart-empty img{
        width:200px;
    }
    .cart-empty{
        padding:2rem;
    }
    .prodct{
        padding:2rem 0;
    }
    .category-title{
        text-align:center;
    }
    .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(146px, 1fr));
    gap: 16px;
     }
     .product-img-wrap{
         height:140px;
     }
     .product-body {
    padding: 12px;
}
.product-name {
    font-size: 16px;
}
.product-desc{
    font-size:13px;
}
.proct-combt{
    margin: 15px 0;
}
.product-price{
    flex-direction: column;
}
.qty-input{
           margin: 0;
        /* width: 22px; */
        font-size: 15px;
        /* padding: 0; */
        padding-right: 14px;
}
.add-cart-btn{
    font-size: 10px;
}
.add-cart-btn::before{
        width: 16px;
    height: 16px;
    left: 11%;
}
.product-price .unit{
    font-size: 10px;
}
.product-price .amount{
    font-size: 17px;
}
.continue-booking-btn{
        min-width: unset;
    padding: 12px 17px;
    font-size: 10px;
}
.product-modal{
    z-index:99999;
}
.success-card{
    padding:1rem;
}
.success-icon{
    width:60px;
    height:60px;
}
.success-card h2{
    font-size:25px;
}
.product-detail-trigger{
        width: 30px;
    height: 30px;
    font-size: 16px;
}
.date-grid{
    display:unset !important;
}
.breadcrumb{
    justify-content: center;
}
}