@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Poppins:wght@300;400;500&display=swap');
:root {
  --laven-crimson: #7b1a2e;
  --laven-dark: #4a0f1c;
  --laven-cream: #f5f0ea;
  --laven-warm: #ede5d8;
  --laven-gold: #c9a96e;
  --laven-text: #2c1a14;
  --laven-muted: #8a7060;
  --laven-border: #d9cebf;
  --laven-white: #ffffff;
  --radius: 2px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.rounded {
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}
.ml-5 {
  margin-left: 5px;
}
.ml-10 {
  margin-left: 10px;
}
.mr-5 {
  margin-right: 5px;
}
.mr-10 {
  margin-right: 10px;
}
.text-size {
  font-size: 15px;
}
.img-style-category img {
  border-radius: 50%;
  height: 150px;
  width: 150px;
  object-fit: cover;
  object-position: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.img-all-cover img {
  border-radius: 50%;
  width: 150px;
  height: 150px;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s ease;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

#home-category-img img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .img-all-cover img {
    width: 300px;
    height: 285px;
    object-fit: cover;
    object-position: center;
  }

  .text-size {
    font-size: 22px;
  }

  #home-category-img img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
  }
}

#cat-new-title {
  font-size: 15px;
}

.tf-grid-layout {
  display: grid;
  gap: 20px;
}

.sm-col-2 {
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .md-col-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .lg-col-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.bg-linear-dark-brown-2 {
  background-color: #4e0303;
}
.contact-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #7a0b1e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 999;
}

.contact-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.contact-btn.active {
  transform: rotate(45deg);
}

.contact-btn svg {
  width: 30px;
  height: 30px;
  fill: white;
}

/* Popup container */
.contact-popup {
  position: fixed;
  bottom: 100px;
  right: 30px;
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 998;
  min-width: 200px;
}

.contact-popup.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.contact-popup h3 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #333;
  text-align: center;
}

/* Ä°letiÅŸim seÃ§enekleri */
.contact-option {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-bottom: 10px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #333;
}

.contact-option:last-child {
  margin-bottom: 0;
}

.contact-option:hover {
  transform: translateX(5px);
}

.contact-option.phone {
  background: #e3f2fd;
}

.contact-option.phone:hover {
  background: #2196f3;
  color: white;
}

.contact-option.whatsapp {
  background: #e8f5e9;
}

.contact-option.whatsapp:hover {
  background: #25d366;
  color: white;
}

.contact-option svg {
  width: 24px;
  height: 24px;
  margin-right: 12px;
  flex-shrink: 0;
}

.contact-option.phone svg {
  fill: #2196f3;
}

.contact-option.whatsapp svg {
  fill: #25d366;
}

.contact-option:hover svg {
  fill: white;
}

.contact-option span {
  font-size: 14px;
  font-weight: 500;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 997;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobil responsive */
@media (max-width: 768px) {
  .contact-btn {
    width: 55px;
    height: 55px;
    bottom: 80px;
    right: 20px;
  }

  .contact-popup {
    bottom: 85px;
    right: 20px;
    left: 20px;
    min-width: auto;
  }
}

.text-white {
  color: #ffffff !important;
}
.bg-white {
  background-color: #ffffff !important;
}
.bg-coffee {
  background-color: #7a0b1e !important;
}
.text-coffee {
  color: #7a0b1e !important;
}

.select2-container {
  width: 100% !important;
}

.select2-container--default .select2-selection--single {
  height: 52px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  background-color: #fff;
  display: flex;
  align-items: center;
  transition: border-color 0.2s;
}

.select2-container--default.select2-container--open .select2-selection--single,
.select2-container--default.select2-container--focus
  .select2-selection--single {
  border-color: #222;
  outline: none;
  box-shadow: none;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  line-height: 52px;
  padding-left: 14px;
  padding-right: 36px;
  color: #222;
  font-size: 14px;
  font-family: inherit;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__placeholder {
  color: #999;
  font-size: 14px;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 52px;
  width: 36px;
  right: 4px;
  top: 0;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  border-color: #888 transparent transparent transparent;
  border-width: 5px 4px 0 4px;
  margin-top: -2px;
}

.select2-container--default.select2-container--open
  .select2-selection--single
  .select2-selection__arrow
  b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__clear {
  display: none;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__clear:hover {
  color: #333;
}

.select2-dropdown {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  background: #fff;
  margin-top: 2px;
  overflow: hidden;
}

.select2-container--default.select2-container--open.select2-container--above
  .select2-selection--single {
  border-radius: 0 0 6px 6px;
}

.select2-container--default.select2-container--open.select2-container--below
  .select2-selection--single {
  border-radius: 6px 6px 0 0;
}

.select2-search--dropdown {
  padding: 8px 10px;
  border-bottom: 1px solid #f0f0f0;
}

.select2-search--dropdown .select2-search__field {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 7px 10px;
  font-size: 13px;
  font-family: inherit;
  color: #222;
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
}

.select2-search--dropdown .select2-search__field:focus {
  border-color: #222;
}

.select2-results__options {
  max-height: 220px;
  overflow-y: auto;
  padding: 4px 0;
}

.select2-container--default .select2-results__option {
  padding: 9px 14px;
  font-size: 14px;
  font-family: inherit;
  color: #333;
  transition: background 0.12s;
  cursor: pointer;
}

.select2-container--default
  .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #f5f5f5;
  color: #111;
}

.select2-container--default .select2-results__option--selected {
  background-color: #f0f0f0;
  color: #111;
  font-weight: 500;
}

.select2-results__options::-webkit-scrollbar {
  width: 4px;
}

.select2-results__options::-webkit-scrollbar-track {
  background: transparent;
}

.select2-results__options::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 4px;
}

.select2-container--default.select2-container--disabled
  .select2-selection--single {
  background-color: #fafafa;
  border-color: #ebebeb;
  cursor: not-allowed;
  opacity: 0.65;
}

.select2-container--default.select2-container--disabled
  .select2-selection--single
  .select2-selection__rendered {
  color: #aaa;
}
/* ── BREADCRUMB ───────────────────────────────────────── */
.laven-track-hero {
  background: var(--laven-cream);
  padding: 0;
}

/* ── SEARCH BOX ───────────────────────────────────────── */
.laven-search-section {
  padding: 56px 0 48px;
  background: var(--laven-cream);
}

.laven-search-card {
  max-width: 920px;
  margin: 0 auto;
  background: var(--laven-white);
  border: 1px solid var(--laven-border);
  padding: 48px 44px;
  position: relative;
}

.laven-search-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 3px;
  background: var(--laven-crimson);
}

.laven-search-card h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--laven-text);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.laven-search-card p.hint {
  font-size: 13px;
  color: var(--laven-muted);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.laven-input-group {
  display: flex;
  gap: 0;
  border: 1px solid var(--laven-border);
}

.laven-input-group input {
  flex: 1;
  border: none;
  outline: none;
  padding: 14px 18px;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--laven-text);
  background: var(--laven-white);
  font-family: inherit;
}

.laven-input-group input::placeholder {
  color: var(--laven-muted);
}

.laven-input-group button {
  background: var(--laven-crimson);
  color: #fff;
  border: none;
  padding: 14px 26px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition);
  font-family: inherit;
  white-space: nowrap;
}

.laven-input-group button:hover {
  background: var(--laven-dark);
}

/* ── ERROR ────────────────────────────────────────────── */
.laven-error {
  margin-top: 16px;
  padding: 12px 16px;
  background: #fff0f2;
  border-left: 3px solid var(--laven-crimson);
  font-size: 13px;
  color: var(--laven-crimson);
  letter-spacing: 0.02em;
}

/* ── RESULT SECTION ───────────────────────────────────── */
.laven-result-section {
  padding: 0 0 80px;
  background: var(--laven-cream);
}

.laven-result-wrap {
  max-width: 920px;
  margin: 0 auto;
}

/* ── ORDER HEADER ─────────────────────────────────────── */
.laven-order-header {
  background: var(--laven-white);
  border: 1px solid var(--laven-border);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 2px;
}

.laven-order-id {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--laven-text);
  letter-spacing: 0.04em;
}

.laven-order-id span {
  font-family: inherit;
  font-size: 13px;
  color: var(--laven-muted);
  font-weight: 400;
  display: block;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.laven-order-meta {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.laven-meta-item {
  text-align: right;
}

.laven-meta-item label {
  display: flex;
  justify-content: center;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--laven-muted);
  margin-bottom: 4px;
}

.laven-meta-item strong {
  font-size: 14px;
  color: var(--laven-text);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ── STATUS BADGE ─────────────────────────────────────── */
.laven-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: var(--radius);
}

.laven-status-badge.shipping {
  background: #fff8ec;
  color: #b07d2a;
  border: 1px solid #e8d5a3;
}

.laven-status-badge.delivered {
  background: #f0f9f4;
  color: #2a7b4f;
  border: 1px solid #a8d9bc;
}

.laven-status-badge.pending,
.laven-status-badge.processing {
  background: #f0f4ff;
  color: #3a5bd9;
  border: 1px solid #b0c0f0;
}

.laven-status-badge.cancelled {
  background: #fff0f2;
  color: var(--laven-crimson);
  border: 1px solid #f0b8c0;
}

.laven-status-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

/* ── PROGRESS TRACKER ─────────────────────────────────── */
.laven-progress-section {
  background: var(--laven-white);
  border: 1px solid var(--laven-border);
  border-top: none;
  padding: 40px 36px 36px;
  margin-bottom: 2px;
}

.laven-progress-track {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  padding: 0 20px;
}

.laven-progress-track::before {
  content: '';
  position: absolute;
  top: 17px;
  left: 20px;
  right: 20px;
  height: 1px;
  background: var(--laven-border);
  z-index: 0;
}

.laven-progress-fill {
  position: absolute;
  top: 17px;
  left: 20px;
  height: 1px;
  background: var(--laven-crimson);
  z-index: 1;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.laven-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
  position: relative;
}

.laven-step-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--laven-border);
  background: var(--laven-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--laven-muted);
  transition: all var(--transition);
}

.laven-step.done .laven-step-dot {
  background: var(--laven-crimson);
  border-color: var(--laven-crimson);
  color: #fff;
}

.laven-step.active .laven-step-dot {
  background: var(--laven-white);
  border-color: var(--laven-crimson);
  color: var(--laven-crimson);
  box-shadow: 0 0 0 4px rgba(123, 26, 46, 0.1);
}

.laven-step-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--laven-muted);
  text-align: center;
  line-height: 1.4;
  max-width: 120px;
}

.laven-step.done .laven-step-label,
.laven-step.active .laven-step-label {
  color: var(--laven-text);
  font-weight: 500;
}

/* ── KARGO BİLGİSİ ────────────────────────────────────── */
.laven-kargo-bar {
  background: var(--laven-warm);
  border: 1px solid var(--laven-border);
  border-top: none;
  padding: 14px 36px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2px;
  font-size: 13px;
  color: var(--laven-text);
}

.laven-kargo-bar svg {
  color: var(--laven-crimson);
  flex-shrink: 0;
}

.laven-kargo-bar a {
  color: var(--laven-crimson);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}

/* ── ÜRÜNLER ──────────────────────────────────────────── */
.laven-items-section {
  background: var(--laven-white);
  border: 1px solid var(--laven-border);
  border-top: none;
  margin-bottom: 2px;
}

.laven-items-head {
  padding: 18px 36px;
  border-bottom: 1px solid var(--laven-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.laven-items-head h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--laven-text);
  margin: 0;
}

.laven-items-head span {
  font-size: 12px;
  color: var(--laven-muted);
  letter-spacing: 0.04em;
}

.laven-item-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 36px;
  border-bottom: 1px solid var(--laven-border);
}

.laven-item-row:last-child {
  border-bottom: none;
}

.laven-item-img {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border: 1px solid var(--laven-border);
  overflow: hidden;
  background: var(--laven-warm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.laven-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.laven-item-img-placeholder {
  font-size: 26px;
  color: var(--laven-muted);
}

.laven-item-info {
  flex: 1;
}

.laven-item-info h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--laven-text);
  margin: 0 0 4px;
}

.laven-item-info p {
  font-size: 12px;
  color: var(--laven-muted);
  margin: 0;
  letter-spacing: 0.03em;
}

.laven-item-qty {
  font-size: 13px;
  color: var(--laven-muted);
  min-width: 60px;
  text-align: center;
}

.laven-item-price {
  font-size: 15px;
  font-weight: 600;
  color: var(--laven-text);
  letter-spacing: 0.02em;
  min-width: 100px;
  text-align: right;
}

/* ── TOPLAM ───────────────────────────────────────────── */
.laven-total-row {
  background: var(--laven-white);
  border: 1px solid var(--laven-border);
  border-top: none;
  padding: 20px 36px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
}

.laven-total-row .label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--laven-muted);
}

.laven-total-row .amount {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--laven-crimson);
}

/* ── ADDRESS ──────────────────────────────────────────── */
.laven-address-section {
  background: var(--laven-white);
  border: 1px solid var(--laven-border);
  border-top: none;
  padding: 22px 36px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.laven-address-section svg {
  color: var(--laven-crimson);
  margin-top: 2px;
  flex-shrink: 0;
}

.laven-address-section h4 {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--laven-muted);
  margin: 0 0 5px;
  font-weight: 500;
}

.laven-address-section p {
  font-size: 13px;
  color: var(--laven-text);
  margin: 0;
  line-height: 1.6;
}

/* ── INFO BOX (no order yet) ─────────────────────────── */
.laven-info-box {
  max-width: 920px;
  margin: 0 auto;
  padding: 36px;
  text-align: center;
  background: var(--laven-white);
  border: 1px solid var(--laven-border);
}

.laven-info-box .icon {
  font-size: 36px;
  margin-bottom: 12px;
  display: block;
}

.laven-info-box p {
  font-size: 13px;
  color: var(--laven-muted);
  line-height: 1.7;
  margin: 0;
  letter-spacing: 0.02em;
}

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 640px) {
  .laven-search-card {
    padding: 32px 20px;
  }

  .laven-order-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .laven-order-meta {
    gap: 16px;
  }

  .laven-meta-item {
    text-align: left;
  }

  .laven-progress-section {
    padding: 32px 16px 28px;
  }

  .laven-progress-track {
    padding: 0 10px;
  }

  .laven-item-row {
    flex-wrap: wrap;
    padding: 16px 20px;
  }

  .laven-kargo-bar,
  .laven-items-head,
  .laven-total-row,
  .laven-address-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .laven-step-label {
    font-size: 9px;
    max-width: 66px;
  }
}

/*CAROUSEL PRODUCT SLIDER START*/
.car-slider-section {
  width: 100%;
  padding: 100px 0;
  background-color: #f1ece7;
  overflow: hidden;
}

.slider-container {
  width: 100%;
  max-width: 1400px;
  height: 550px;
  position: relative;
  margin: 0 auto;
  perspective: 1500px;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide {
  position: absolute;
  width: 380px;
  height: 520px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 25px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
}

.slide.active {
  transform: translateX(0) translateZ(0) scale(1);
  opacity: 1;
  z-index: 3;
  pointer-events: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.slide.prev {
  transform: translateX(-450px) translateZ(-200px) rotateY(25deg) scale(0.75);
  opacity: 0.6;
  z-index: 2;
  pointer-events: auto;
}

.slide.next {
  transform: translateX(450px) translateZ(-200px) rotateY(-25deg) scale(0.75);
  opacity: 0.6;
  z-index: 2;
  pointer-events: auto;
}

.slide.far-left {
  transform: translateX(-750px) translateZ(-350px) rotateY(35deg) scale(0.5);
  opacity: 0.3;
  z-index: 1;
}

.slide.far-right {
  transform: translateX(750px) translateZ(-350px) rotateY(-35deg) scale(0.5);
  opacity: 0.3;
  z-index: 1;
}

.badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #5a7d7c;
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: capitalize;
}

.slide img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  margin-top: 40px;
  margin-bottom: 30px;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.slide h3 {
  font-size: 22px;
  color: #2c3e50;
  margin-bottom: 25px;
  text-align: center;
  font-weight: 600;
}

.call-btn,
.whatsapp-btn {
  width: 100%;
  padding: 14px 20px;
  border: none;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.call-btn {
  background: #7a0b1e;
  color: white;
  margin-bottom: 12px;
  justify-content: center;
}

.call-btn:hover {
  background: #1a252f;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(44, 62, 80, 0.3);
}

.whatsapp-btn {
  background: transparent;
  color: #5a7d7c;
  border: 2px solid #5a7d7c;
  justify-content: center;
}

.whatsapp-btn:hover {
  background: #ff6c4e;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(90, 125, 124, 0.3);
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  z-index: 10;
  color: #2c3e50;
}

.nav-btn:hover {
  background: #2c3e50;
  color: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.prev-btn {
  left: 50px;
}

.next-btn {
  right: 50px;
}

@media (max-width: 1200px) {
  .slide.prev {
    transform: translateX(-350px) translateZ(-150px) rotateY(25deg) scale(0.7);
  }

  .slide.next {
    transform: translateX(350px) translateZ(-150px) rotateY(-25deg) scale(0.7);
  }
}

@media (max-width: 768px) {
  .slider-container {
    height: 500px;
  }

  .slide {
    width: 320px;
    height: 475px;
    padding: 25px 20px;
  }

  .slide.prev,
  .slide.next {
    transform: translateX(-280px) translateZ(-100px) rotateY(20deg) scale(0.6);
    opacity: 0.4;
  }

  .slide.next {
    transform: translateX(280px) translateZ(-100px) rotateY(-20deg) scale(0.6);
  }

  .slide.far-left,
  .slide.far-right {
    display: none;
  }

  .nav-btn {
    width: 50px;
    height: 50px;
  }

  .prev-btn {
    left: 20px;
  }

  .next-btn {
    right: 20px;
  }

  .slide h3 {
    font-size: 18px;
  }

  .slide img {
    height: 180px;
  }
}
/*CAROUSEL PRODUCT SLIDER END*/

/*PAGINATION START*/
.tf-pagination {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tf-pagination li a.pagination-link {
  width: 40px;
  height: 40px;
  border: 1px solid #d4c5b0;
  background: transparent;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.05em;
  transition:
    background 0.25s,
    color 0.25s,
    border-color 0.25s;
}

.tf-pagination li a.pagination-link:hover {
  background: #1a1a1a;
  color: #fff;
  border-color: #1a1a1a;
}

.tf-pagination li a.pagination-link.active {
  background: #1a1a1a;
  color: #fff;
  border-color: #1a1a1a;
  pointer-events: none;
}

.tf-pagination li a.pagination-link.disabled-link {
  opacity: 0.35;
  pointer-events: none;
}

.tf-pagination li .pagination-dots {
  padding: 0 4px;
  color: #999;
  line-height: 40px;
}

.tf-pagination-info {
  text-align: center;
  margin-top: 12px;
  font-size: 12px;
  color: #999;
  letter-spacing: 0.08em;
}
/*PAGINATION END*/

/*PRELOADER START*/
.preload-two-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition:
    opacity 0.8s ease,
    visibility 0.8s ease;
}

.preload-two-wrapper.preload-two-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preload-two-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0f 50%, #0a0a0a 100%);
  z-index: 1;
}

.preload-two-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 30% 50%,
      rgba(139, 69, 19, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 50%,
      rgba(75, 0, 130, 0.1) 0%,
      transparent 50%
    );
  animation: preload-two-bg-pulse 4s ease-in-out infinite;
}

@keyframes preload-two-bg-pulse {
  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 0.6;
  }
}

.preload-two-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

/* Logo Styles */
.preload-two-logo {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.preload-two-letter {
  font-family: 'Cinzel', serif;
  font-size: 48px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 8px;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
  animation: preload-two-letter-glow 2s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.1s);
}

.preload-two-letter:nth-child(1) {
  --i: 1;
}

.preload-two-letter:nth-child(2) {
  --i: 2;
}

.preload-two-letter:nth-child(3) {
  --i: 3;
}

.preload-two-letter:nth-child(4) {
  --i: 4;
}

.preload-two-letter:nth-child(5) {
  --i: 5;
}

.preload-two-letter:nth-child(6) {
  --i: 6;
}

@keyframes preload-two-letter-glow {
  0%,
  100% {
    opacity: 1;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
  }

  50% {
    opacity: 0.7;
    text-shadow:
      0 0 30px rgba(255, 255, 255, 0.8),
      0 0 40px rgba(212, 175, 55, 0.4);
  }
}

/* Ring Container */
.preload-two-ring-container {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preload-two-ring-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.3) 0%,
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(40px);
  animation: preload-two-glow-pulse 3s ease-in-out infinite;
}

@keyframes preload-two-glow-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

.preload-two-ring-image {
  position: relative;
  width: 250px;
  height: 250px;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(212, 175, 55, 0.5));
  z-index: 2;
}

@keyframes preload-two-ring-rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes preload-two-ring-fade {
  0%,
  100% {
    opacity: 1;
    filter: drop-shadow(0 10px 30px rgba(212, 175, 55, 0.5));
  }

  50% {
    opacity: 0.6;
    filter: drop-shadow(0 10px 50px rgba(212, 175, 55, 0.8));
  }
}

/* Sparkle Effects */
.preload-two-sparkle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: radial-gradient(circle, #fff 0%, #d4af37 50%, transparent 70%);
  border-radius: 50%;
  box-shadow:
    0 0 10px #d4af37,
    0 0 20px #fff;
  animation: preload-two-sparkle-anim 2s ease-in-out infinite;
}

.preload-two-sparkle-1 {
  top: 15%;
  left: 20%;
  animation-delay: 0s;
}

.preload-two-sparkle-2 {
  top: 25%;
  right: 18%;
  animation-delay: 0.7s;
}

.preload-two-sparkle-3 {
  bottom: 20%;
  left: 25%;
  animation-delay: 1.4s;
}

@keyframes preload-two-sparkle-anim {
  0%,
  100% {
    opacity: 0;
    transform: scale(0);
  }

  50% {
    opacity: 1;
    transform: scale(1.5);
  }
}

/* Loading Section */
.preload-two-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  min-width: 350px;
}

.preload-two-loading-text {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  letter-spacing: 2px;
}

.preload-two-percentage {
  font-weight: 500;
  color: #d4af37;
  font-size: 18px;
  min-width: 50px;
  text-align: right;
}

.preload-two-progress-bar {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.preload-two-progress-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.3),
    transparent
  );
  animation: preload-two-shimmer 2s linear infinite;
}

@keyframes preload-two-shimmer {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.preload-two-progress-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #d4af37 0%, #ffd700 50%, #d4af37 100%);
  background-size: 200% 100%;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
  animation: preload-two-gradient-shift 1.5s linear infinite;
  transition: width 0.3s ease;
}

@keyframes preload-two-gradient-shift {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 200% 50%;
  }
}

.preload-two-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .preload-two-logo {
    gap: 8px;
  }

  .preload-two-letter {
    font-size: 32px;
    letter-spacing: 5px;
  }

  .preload-two-ring-container {
    width: 250px;
    height: 250px;
  }

  .preload-two-ring-image {
    width: 200px;
    height: 200px;
  }

  .preload-two-loading {
    min-width: 280px;
  }

  .preload-two-loading-text {
    font-size: 14px;
  }

  .preload-two-percentage {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .preload-two-letter {
    font-size: 24px;
    letter-spacing: 3px;
  }

  .preload-two-ring-container {
    width: 200px;
    height: 200px;
  }

  .preload-two-ring-image {
    width: 160px;
    height: 160px;
  }

  .preload-two-loading {
    min-width: 240px;
  }

  .preload-two-content {
    gap: 40px;
  }
}
/*PRELOADER END*/
