/* ===== Global Reset and Base Styles ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f5f5f5;
  color: #333;
}

/* ===== Typography - Headings with optimized letter-spacing and responsive scaling ===== */
h1, .h1 {
  font-size: clamp(32px, 5vw, 48px);
  letter-spacing: -0.8px;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 0.5em;
}

h2, .h2 {
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.6px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 0.5em;
}

h3, .h3 {
  font-size: clamp(24px, 3.5vw, 32px);
  letter-spacing: -0.4px;
  line-height: 1.25;
  font-weight: 600;
  margin-bottom: 0.5em;
}

h4, .h4 {
  font-size: clamp(20px, 3vw, 24px);
  letter-spacing: -0.3px;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 0.5em;
}

h5, .h5 {
  font-size: clamp(18px, 2.5vw, 20px);
  letter-spacing: -0.2px;
  line-height: 1.35;
  font-weight: 600;
  margin-bottom: 0.5em;
}

h6, .h6 {
  font-size: clamp(16px, 2vw, 18px);
  letter-spacing: -0.1px;
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: 0.5em;
}

/* ===== Top Banner ===== */
.top-banner {
  background: #333;
  color: white;
  text-align: center;
  padding: 8px 0;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
}


.header-content {
  max-width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: Arial, Helvetica, sans-serif;
  padding: 15px 0;
  gap: 95px;
}


.site-title {
  flex: 1;
  text-align: center;
  display: block;
  padding-left: 0;
  align-items: center;
}

.site-title h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: bold;
  text-transform: uppercase;
  color: #333;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  line-height: 1.15;
  letter-spacing: -0.8px;
}

/* Header Cart Icon */
.header-cart {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-icon-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
  color: grey;
  font-size: 20px;
}

.cart-icon-btn:hover {
  background-color: #f0f0f0;
  transform: scale(1.1);
}

.cart-icon-btn i {
  font-size: 20px;
}

.cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #e74c3c;
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: bold;
  min-width: 18px;
  line-height: 1;
}

.cart-count:empty {
  display: none;
}

/* ===== Navigation Menu ===== */
nav {
  margin-top: 0px;
  text-align: center;
}

/* Mobile menu toggle - hidden by default */
.mobile-menu-toggle {
  display: none;
}

/* Mobile menu overlay - hidden by default */
.mobile-menu-overlay {
  display: none;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  transition: color 0.3s;
  padding: 15px 30px;
  background: none;
}

.nav-menu a:hover {
  color: #333;
}

/* ===== Main Container ===== */
.main-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  gap: 30px;
}

/* ===== Left Sidebar Filters ===== */
.filters-sidebar {
  width: 280px;
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  height: fit-content;

}

/* Hide mobile filter toggle on desktop */
.mobile-filter-toggle {
  display: none;
}

.filter-section {
  margin-bottom: 25px;
}

.filter-section h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #2c3e50;
  padding-bottom: 8px;
  border-bottom: 2px solid #667eea;
}

.date-filter {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  margin-bottom: 10px;
}

.date-filter .day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  cursor: pointer;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: all 0.2s;
}

.date-filter .day:hover {
  background-color: #f0f0f0;
}

.date-filter .day.selected {
  background-color: #e9ecef;
  color: black;
  border-color: none;
}

.month-year-selector {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.month-year-selector button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  color: #667eea;
}

.direct-date-input {
  margin-bottom: 15px;
  padding: 10px;
  background: #f8f9fa;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
}

.direct-date-input label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #2c3e50;
  margin-bottom: 8px;
}

.direct-date-input input[type="date"] {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  color: #333;
  background: white;
  cursor: pointer;
}

.direct-date-input input[type="date"]:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.2);
}

.publication-type-filter {
  display: flex;
  gap: 8px;
}

.region-filter {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.region-group {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 15px;
}

.region-header .expand-arrow {
  margin-right: 10px;
  font-size: 12px;
  color: #666;
  transition: transform 0.2s;
}

.region-group.collapsed .expand-arrow {
  transform: rotate(-90deg);
}

.region-subgroup {
  margin-left: 20px;
  margin-top: 8px;
  padding-left: 15px;
  padding: 8px 8px 8px 24px;
  background: white;
  transition: all 0.3s ease;
}

.region-group.collapsed .region-subgroup {
  display: none;
}

.region-header {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  border-bottom: 1px solid #e0e0e0;
  border-radius: 4px;
  border: 1px solid transparent;
  padding: 8px 0;
  cursor: pointer;
  transition: background 0.2s;
}

.region-header input[type="radio"],
.region-header input[type="checkbox"] {
  margin-left: 10px;
  cursor: pointer;
  pointer-events: none;
  /* Prevent direct clicking on input */
}

.region-header label {
  flex: 1;
  cursor: pointer;
  font-weight: 500;
  pointer-events: none;
  /* Prevent direct clicking on label */
}

.region-header:active {
  background-color: #e9ecef;
}


.region-group.collapsed .expand-arrow {
  transform: rotate(-90deg);
}

.sub-region {
  padding: 6px 8px;
  margin-bottom: 4px;
}

.sub-region:last-child {
  margin-bottom: 0;
}

.filter-checkbox {
  display: flex;
  align-items: center;
  padding: 1px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 5px;
}


.filter-checkbox:active {
  background-color: #e9ecef;
}

.filter-checkbox input[type="radio"],
.filter-checkbox input[type="checkbox"] {
  margin-right: 10px;
  cursor: pointer;
  pointer-events: none;
  /* Prevent direct clicking on input */
}

.filter-checkbox input[type="radio"]:disabled,
.filter-checkbox input[type="checkbox"]:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.filter-checkbox input[type="radio"]:disabled+label,
.filter-checkbox input[type="checkbox"]:disabled+label {
  color: #999;
  cursor: not-allowed;
}

.filter-checkbox label {
  cursor: pointer;
  font-size: 14px;
  flex: 1;
  pointer-events: none;
  /* Prevent direct clicking on label */
}

.apply-filters-btn {
  width: 100%;
  padding: 12px;
  background: #6c757d;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}



.clear-filters {
  width: 100%;
  padding: 10px;
  background: transparent;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
  margin-top: 10px;
  transition: all 0.2s;
}



/* ===== Main Content Area ===== */
.content-area {
  flex: 1;
}

.search-summary {
  background: white;
  padding: 15px 20px;
  margin-bottom: 20px;
}

.search-summary h2 {
  font-size: 18px;
  color: #2c3e50;
}


.result-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.result-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.result-image {
  height: auto;
  background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #999;
}

.result-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  position: relative;
}


.result-title {
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
  line-height: 1.4;
}

.result-price {
  font-size: 14px;
  color: #333;
  font-weight: 600;
  margin-bottom: 12px;
  background: #e0e0e0;
  border: 1px solid #ccc;
  border-radius: 16px;
  padding: 4px 10px;
  display: inline-block;
  text-align: center;
}

.result-date {
  font-size: 12px;
  color: #7f8c8d;
  margin-bottom: 5px;
}

.result-actions {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.btn-add-to-cart,
.btn-more-info {
  flex: 1;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 10px;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 600;
}

.btn-add-to-cart {
  background-color: #595959;
  color: white;
  border: 1px solid #595959;
}

.btn-add-to-cart:hover {
  background-color: #444444;
  border-color: #444444;
}

.btn-more-info {
  background-color: #f0f0f0;
  color: #595959;
  border: 1px solid #ddd;
}

.btn-more-info:hover {
  background-color: #e0e0e0;
  border-color: #ccc;
}

/* ===== Pagination ===== */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 40px 0;
  padding: 20px 0;
}

.pagination button,
.pagination span {
  padding: 10px 14px;
  border: 1px solid #ddd;
  background: white;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 500;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}



.pagination span.current {
  color: black;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.pagination button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: #f8f9fa;
  color: #999;
}

.pagination .page-info {
  margin: 0 15px;
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.pagination .nav-btn {
  padding: 10px 16px;
  font-weight: 600;
}

/* ===== No Results State ===== */
.no-results {
  text-align: center;
  padding: 60px 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.no-results h3 {
  font-size: 24px;
  color: #2c3e50;
  margin-bottom: 10px;
}

.no-results p {
  color: #7f8c8d;
  font-size: 16px;
}

/* ===== Footer ===== */
.footer {
  background: #181818;
  color: #fff;
  padding: 48px 0 20px;
  font-family: Arial, Helvetica, sans-serif;
}

.footer-container {
  max-width: 90%;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  margin-bottom: 28px;
}

.footer-section h4 {
  font-size: 18px;
  margin: 0 0 16px;
  color: #fff;
}

.footer-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-section ul li {
  list-style: none;
  margin-bottom: 10px;
}

.footer a,
.footer a:visited {
  color: #cfcfcf;
  text-decoration: none;

}

.footer a:hover,
.footer a:focus-visible {
  color: #fff;
  text-decoration: none;
}

.brand-title {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.4px;
  margin: 0 0 22px;
}

.contact-block p,
.footer-section ul li {
  margin: 6px 0;
  color: #d8d8d8;
  font-size: 15px;
}

.contact-block strong,
.footer-section ul li strong {
  color: #fff;
  font-weight: 700;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  transition: color 0.25s ease;
}

.social-block h5 {
  margin: 22px 0 10px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.follow-us h5 {
  margin: 0 0 15px 0;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.social-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 12px;
  align-items: center;
}

.social-btn {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #f1f1f1;
  border: 1px solid #cfcfcf;
  border-radius: 50%;
  background: transparent;
  transition: border-color 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.social-btn:hover,
.social-btn:focus-visible {
  border-color: #fff;
  transform: translateY(-1px);
  background-color: rgba(255, 255, 255, 0.05);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 16px;
  border-top: 1px solid #2b2b2b;
  color: #bdbdbd;
  font-size: 14px;
}

.follow-us ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.follow-us li {
  list-style: none;
}

.card-logos {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 0;
}

.card-logos img {
  height: 30px;
  width: 40px;
  display: block;
  background: transparent;
  border: none;
  border-radius: 5px;
  box-shadow: none;
}

/* ===== Shopping Cart Sidebar ===== */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 350px;
  height: 100%;
  background: #fff;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
  transition: right 0.3s ease;
  z-index: 1001;
  display: flex;
  flex-direction: column;
}

.cart-sidebar.open {
  right: 0;
}

.cart-header,
.cart-footer {
  padding: 16px;
  border-bottom: 1px solid #eee;
}

.cart-footer {
  border-top: 1px solid #eee;
  margin-top: auto;
}

.cart-items {
  flex: 2;
  overflow-y: auto;
  padding: 16px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.cart-item div {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cart-item button {
  width: 24px;
  height: 24px;
  border: 1px solid #ccc;
  background: #f5f5f5;
  cursor: pointer;
}

.close-btn {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  float: right;
}

.checkout-btn {
  width: 100%;
  padding: 12px;
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  border-radius: 4px;
}

.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 1000;
}

.cart-overlay.active {
  display: block;
}

/* ===== Shopping Cart Popup Styles ===== */
.cart-popup {
  position: fixed;
  top: 0;
  right: -600px;
  width: 600px;
  height: 85%;
  background: white;
  z-index: 2000;
  transition: right 0.3s ease;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  border-left: 1px solid #eee;
}

.cart-popup.show {
  right: 0;
}

.cart-popup-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.cart-popup-header {
  padding: 24px 24px 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  background: #f8f9fa;
}

.cart-popup-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #333;
}

.cart-popup-close {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #666;
  padding: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s;
}

.cart-popup-close:hover {
  background: #e9ecef;
  color: #333;
}

.cart-popup-items {
  padding: 24px;
  flex: 1 1 auto;
  overflow-y: auto;
  background: white;
  min-height: 0;
}

.cart-popup-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid #f0f0f0;
}

.cart-popup-item:last-child {
  border-bottom: none;
}

.cart-popup-item-image {
  width: 70px;
  height: 70px;
  background: #f0f0f0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #999;
  flex-shrink: 0;
  border: 1px solid #e0e0e0;
}

.cart-popup-item-content {
  flex: 1;
  min-width: 0;
}

.cart-popup-item-title {
  font-weight: 700;
  color: #333;
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 1.2;
}

.cart-popup-item-price {
  font-size: 14px;
  color: #333;
  margin-bottom: 6px;
}

.cart-popup-item-date {
  font-size: 12px;
  color: #333;
  margin-bottom: 4px;
}

.cart-popup-item-type {
  font-size: 12px;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.cart-popup-item-remove {
  background: none;
  border: none;
  color: #999;
  padding: 0;
  border-radius: 0;
  cursor: pointer;
  font-size: 12px;
  font-weight: 400;
  transition: all 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.cart-popup-item-remove:hover {
  background: none;
  color: #666;
}

.cart-popup-recommendations {
  padding: 20px 24px;
  border-top: 1px solid #eee;
  background: #f8f9fa;
  /* flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto; */
  flex-shrink: 0;
  max-height: fit-content;
}

.cart-popup-recommendations h4 {
  margin: 0 0 16px 0;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.recommendations-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
  position: relative;
}



.recommendation-item {
  min-width: 200px;
  background: white;
  border-radius: 8px;
  padding: 16px;
  border: 1px solid #e9ecef;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rec-content-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.rec-image {
  width: 80px;
  height: 80px;
  background: #f0f0f0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #999;
  border: 1px solid #e0e0e0;
  flex-shrink: 0;
}

.rec-content {
  flex: 1;
  min-width: 0;
}

.rec-title {
  font-weight: 700;
  color: #333;
  margin-bottom: 3px;
  font-size: 16px;
}

.rec-date {
  font-size: 14px;
  color: #333;
  margin-bottom: 2px;
}

.rec-type {
  font-size: 12px;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  font-weight: 500;
}

.rec-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.btn-add-to-cart-rec {
  flex: 1;
  background: #595959;
  color: white;
  border: 1px solid #595959;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 9px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-add-to-cart-rec:hover {
  background: #444444;
  border-color: #444444;
}

.btn-more-info-rec {
  flex: 1;
  background: #f0f0f0;
  color: #595959;
  border: 1px solid #ddd;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 9px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-more-info-rec:hover {
  background: #e0e0e0;
  border-color: #ccc;
}

.cart-popup-footer {
  padding: 24px;
  display: flex;
  justify-content: center;
  flex-shrink: 0;
  border-top: 1px solid #eee;
  background: white;
  gap: 100px;
}



.btn-proceed {
  background: #595959;
  color: white;
  border: 1px solid #595959;
  padding: 16px 24px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  min-width: 180px;
  /* margin-left: auto; */
}

@media (max-width: 768px) {
  .cart-popup-footer {
    justify-content: space-between;
  }

  .btn-proceed {
    padding: 8px 24px;
    min-width: 120px;
  }
}

.btn-proceed:hover {
  background: #444444;
  border-color: #444444;
}

.cart-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1999;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cart-popup-overlay.show {
  display: block;
  opacity: 1;
}

.cart-popup-total {
  padding: 20px 24px;
  border-top: 2px solid #eee;
  background: #f8f9fa;
  flex-shrink: 0;
}

.cart-total-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 15px;
  color: #666;
}

.cart-total-item.final {
  font-weight: 700;
  font-size: 18px;
  color: #2c3e50;
  border-top: 1px solid #ddd;
  padding-top: 12px;
  margin-top: 8px;
}

/* ===== More Info Modal Styles ===== */
.more-info-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
}

.more-info-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.more-info-modal-content {
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  width: 80%;
  max-height: 80vh;
  overflow: hidden;
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(-20px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.more-info-modal-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0px 24px;
  /* border-bottom: 1px solid #eee; */
  /* background: #f8f9fa; */
}

.more-info-modal-header h3 {
  margin: 0;
  font-size: 18px;
  color: #333;
  font-weight: 600;
}

.more-info-modal-close {
  margin-top: 20px;
  background: none;
  border: none;
  font-size: 24px;
  color: #666;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.2s ease;
  line-height: 1;
}

.more-info-modal-close:hover {
  background: #e9ecef;
  color: #333;
}

.more-info-modal-body {
  display: flex;
  padding: 0 24px 24px 24px;
  gap: 24px;
}

.more-info-image {
  width: 400px;
  height: 400px;
  margin: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
  border-radius: 8px;
  overflow: hidden;
  min-height: 200px;
}

.more-info-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.more-info-image span {
  color: #666;
  font-size: 14px;
  text-align: center;
}

.more-info-details {
  width: 70%;
  margin: 30px 30px 30px 0px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.more-info-details h4 {
  margin: 0;
  font-size: 30px;
  color: #333;
  font-weight: 600;
  line-height: 1.3;
}

.more-info-price {
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
}

.more-info-date {
  font-size: 14px;
  font-weight: 600;
  color: #2c3e50;
  font-style: italic;
}

.more-info-description {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  flex: 1;
}

.more-info-actions {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #eee;
}

.btn-add-to-cart-modal {
  background: #2c3e50;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-add-to-cart-modal:hover {
  background: #34495e;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.3);
}

.btn-add-to-cart-modal:active {
  transform: translateY(0);
}

/* Mobile responsive for More Info Modal - 768px and below */
@media (max-width: 768px) {
  .more-info-modal {
    align-items: flex-start;
    padding: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .more-info-modal-content {
    width: 100%;
    max-width: 100%;
    max-height: 100vh;
    height: 100%;
    border-radius: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
  }

  .more-info-modal-header {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    background: white;
    z-index: 10;
  }

  .more-info-modal-close {
    margin-top: 0;
    background: #f0f0f0;
    min-width: 48px;
    min-height: 48px;
    font-size: 32px;
    padding: 8px 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .more-info-modal-close:hover {
    background: #e0e0e0;
  }

  .more-info-modal-body {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    overflow-y: auto;
    flex: 1;
  }

  .more-info-image {
    width: 100%;
    height: auto;
    min-height: 250px;
    max-height: 300px;
    margin: 0;
  }

  .more-info-details {
    width: 100%;
    margin: 0;
  }

  .more-info-details h4 {
    font-size: 22px;
    word-wrap: break-word;
  }

  .more-info-price {
    font-size: 18px;
  }

  .more-info-date {
    font-size: 14px;
    color: #666;
  }

  .more-info-description {
    font-size: 14px;
    line-height: 1.5;
    word-wrap: break-word;
  }
}

/* Small screen optimization - 480px and below */
@media (max-width: 480px) {
  .more-info-modal-header {
    padding: 12px 16px;
  }

  .more-info-modal-body {
    padding: 16px;
    gap: 16px;
  }

  .more-info-image {
    min-height: 200px;
    max-height: 250px;
  }

  .more-info-details h4 {
    font-size: 20px;
  }

  .more-info-price {
    font-size: 16px;
  }

  .more-info-date {
    font-size: 13px;
  }

  .more-info-description {
    font-size: 13px;
  }
}

/* Touch device optimization */
@media (hover: none) and (pointer: coarse) {
  .more-info-modal-close:active {
    background: #d0d0d0;
    transform: scale(0.95);
  }
}

/* ===== Proceed Button Styles ===== */
.proceed-button-container {
  position: static;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  /* Don't shrink */
  margin-left: 20px;
  /* Add some spacing from pagination */
}

.proceed-button {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #595959;
  color: white;
  border: none;
  padding: 16px 24px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(44, 62, 80, 0.3);
  min-width: 140px;
  justify-content: center;
  animation: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}



.proceed-button:hover {
  background: #34495e;
  transform: none;
  box-shadow: 0 8px 25px rgba(44, 62, 80, 0.4);
}

.proceed-button:active {
  transform: translateY(0);
}

.proceed-button i {
  font-size: 18px;
}

.proceed-button .cart-count {
  background: #e74c3c;
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  margin-left: 4px;
  transition: all 0.3s ease;
  animation: pulse 0.6s ease-in-out;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

.proceed-button:disabled {
  background: #95a5a6;
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 2px 10px rgba(149, 165, 166, 0.3);
}

.proceed-button:disabled:hover {
  background: #95a5a6;
  transform: none;
  box-shadow: 0 2px 10px rgba(149, 165, 166, 0.3);
}

.proceed-button.empty-cart {
  background: #95a5a6;
  cursor: not-allowed;
}

.proceed-button.has-items {
  background: #2c3e50;
  cursor: pointer;
}

.proceed-button.has-items:hover {
  background: #34495e;
  transform: none;
  box-shadow: 0 8px 25px rgba(44, 62, 80, 0.4);
}

.cart-total-display {
  position: absolute;
  top: -40px;
  right: 0;
  background: #2c3e50;
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(44, 62, 80, 0.2);
  animation: slideInDown 0.3s ease-out;
}

.cart-total-display::after {
  content: '';
  position: absolute;
  top: 100%;
  right: 20px;
  border: 6px solid transparent;
  border-top-color: #2c3e50;
}

@keyframes slideInDown {
  from {
    transform: translateY(-10px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Pagination jump input styles */
.page-jump {
  display: inline-flex;
  align-items: center;
  margin: 0 5px;
}

.page-jump input {
  width: 70px !important;
  height: 40px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 8px 6px;
  font-size: 14px;
  background: white;
  transition: all 0.3s ease;
}

@media (max-width: 900px) {
  .page-jump input {
    height: 30px;
  }
}

.page-jump input:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.2);
}

.page-jump input:hover {
  border-color: #999;
}

/* Ensure pagination container displays correctly */
#pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 40px 0;
  padding: 20px 0;
}

/* Hide page info by default */
.page-info {
  display: none !important;
}


body {
  font-family: Arial, Helvetica, sans-serif;
}


.logo img {
  height: 70px;
  /* adjust as needed */
  width: 150PX;

}


/* Navigation */
nav {
  text-align: center;
  margin-top: 0px;
}



.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  transition: color 0.3s;
  padding: 5px 0;
  background: none;
  padding: 15px 30px;
}

.nav-menu a:hover {
  color: #333;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 500px;
  background: rgb(79, 79, 79);
  overflow: hidden;
}

.hero-slider {
  height: 100%;
  position: relative;
}

.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-content {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 50px;
  width: 100%;
  position: relative;
}

.hero-slider-image {
  width: 100%;
  height: 498px;
  object-fit: cover;
}

.hero-site-image {
    width: 100%;
    display: block;
    height: 100%;
    object-fit: cover;
}

/* Hero Overlay Styles */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.hero-overlay-content {
  text-align: left;
  color: white;
  max-width: 600px;
  padding: 40px;
}

.hero-overlay-content h3 {
  font-size: 48px;
  font-weight: bold;
  color: yellow;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.hero-overlay-content p {
  font-size: 24px;
  color: yellow;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
  line-height: 1.4;
}

.hero-cta {
  display: inline-block;
  background: #9C7411;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-cta:hover {
  background: #7a5d0e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  text-decoration: none;
  color: white;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  width: 38%;
  min-width: 250px;
  max-width: min(600px, calc(100% - 10%));
  background: white;
  border: 1px solid #ddd;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 15px;
  border-radius: 8px;
  z-index: 10;
  box-sizing: border-box;
  container-type: inline-size;
  container-name: hero-text;
}

.hero-text h2 {
  font-size: clamp(14px, 10cqi, 36px);
  letter-spacing: -0.3px;
  line-height: 1.3;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  margin-bottom: 20px;
  color: #333;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
  max-width: 100%;
  white-space: normal !important;
}

.hero-text p {
  font-size: clamp(12px, 5cqi, 18px);
  margin-bottom: 25px;
  color: #333;
  line-height: 1.5;
  font-weight: 500;
}

.cta-button {
  background: #9C7411;
  color: white;
  padding: 12px 30px;
  border: none;
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  cursor: pointer;
  transition: background 0.3s;
  text-decoration: none;
  border-radius: 3px;
  position: relative;
  display: block;
  margin-left: auto;
  width: fit-content;
}

.cta-button:hover {
  text-decoration: none;
  color: white;
  background: #7a5d0e;
}

.hero-visual {
  flex: 1;
  text-align: center;
}

.newspaper-mockup {
  width: 300px;
  height: 400px;
  background: white;
  border: 1px solid #ddd;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  margin: 0 auto;
  display: none;
}

.newspaper-header {
  background: #333;
  color: white;
  padding: 10px;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
}

.newspaper-content {
  padding: 20px;
  font-size: 12px;
  line-height: 1.4;
  text-align: left;
}

.newspaper-content h3 {
  margin-bottom: 10px;
  font-size: 14px;
}

/* Navigation Arrows */
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  padding: 15px 20px;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.3s;
  border-radius: 5px;
  z-index: 20;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-nav:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translateY(-50%) scale(1.1);
}

.hero-prev {
  left: 10px;
}

.hero-next {
  right: 10px;
}

.hero-collapse-toggle {
  position: absolute;
  bottom: 10px;
  right: 50%;
  transform: translateX(50%);
  background: #333;
  color: white;
  border: 0.5px solid;
  border-radius: 3px;
  padding: 6px 15px;
  cursor: pointer;
  font-size: 16px;
  font-weight: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 30;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-collapse-toggle:hover {
  background: white;
  color: #333;
  transform: translateX(50%);
}

.hero-section {
  transition: height 0.4s ease, min-height 0.4s ease, background-color 0.4s ease;
  position: relative;
}

.hero-section.hero-collapsed {
  height: 60px !important;
  min-height: 60px !important;
  overflow: hidden;
  background-color: white !important;
}

.hero-section.hero-collapsed .hero-slider {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.hero-section.hero-collapsed .hero-nav {
  display: none;
}

.hero-section.hero-collapsed .hero-collapse-toggle {
  top: 50%;
  bottom: auto;
  transform: translate(50%, -50%);
}

@media (max-width: 768px) {
  .hero-collapse-toggle {
    display: flex;
  }
  
  .hero-section.hero-collapsed {
    height: 50px !important;
    min-height: 50px !important;
  }
}

@media (min-width: 769px) {
  .hero-collapse-toggle {
    display: none;
  }
}

/* Search Section */
.search-section {
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
  padding: 60px 0;
}

.search-container {
  max-width: auto;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

.search-title {
  font-size: 46px;
  font-weight: bolder;
  margin-bottom: 15px;
  color: #000000;
}

.search-subtitle {
  font-size: 28px;
  color: #000000;
  font-weight: bold;
  margin-bottom: 40px;
}

.search-form {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.search-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23333' stroke-width='2' fill='none'/%3E%3C/svg%3E") no-repeat right 8px center;
  padding-right: 28px;
}

.search-input,
.search-select {
  padding: 12px 15px;
  border: 2px solid #ddd;
  font-size: 16px;
  min-width: 200px;
  border-radius: 3px;
}

.search-input:focus,
.search-select:focus {
  outline: none;
}


.search-button {
  background: #333;
  color: white;
  ;
  padding: 12px 30px;
  border: 0.5px solid;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
  border-radius: 3px;
}

.search-button:hover {
  background: white;
  color: #333;
}

/* Features Section */


.feature-bar {
  /* base look */
  --sep-color: rgba(255,255,255,0.5);
  --sep-width: 1px; /* separator thickness - thinner */
  --sep-height: 56px;
  /* separator height */
  --text-color: #cfd8dc;
  /* body text on dark bg */
  --title-color: #b0bec5;
  /* heading color */
  --bg: #1f1f1f;
  /* dark background */
  --container-max: 1200px;
  --x-pad: 16px;
  min-height: 200px;
  background: var(--bg);
  color: var(--text-color);
  font-family: Arial, Helvetica, sans-serif;
  /* page-level default if needed */
  padding: 0;
  display: flex;
  flex-direction: column;
}

/* Title container (full width) */
.feature-bar .features-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--x-pad);
  text-align: center;
  display: flex;
  align-items: center;   /* vertical center */
  justify-content: center; /* horizontal center */
  min-height: 64px;      /* ensure a sensible title band height */
}

/* Title */
.feature-bar .features-title {
  margin: 0;
  text-align: center;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  font-size: clamp(18px, 2.6vw, 28px);
}

/* Content container (grid wrapper) */
.feature-bar .container {
  font-size: 18px;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.5);  /* divider line between title and items */
  flex: 1 1 auto; /* occupy remaining space under the title */
  display: flex;
  flex-direction: column;
  position: relative; /* for separator positioning relative to container */
}

/* Five items in a row with separators between them */
.feature-bar .feature-grid {
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  width: 100%;
  gap: 0;
  flex: 1 1 auto; /* fill container height */
  position: relative; /* for separator positioning */
  margin: 0;
  padding: 0;
}

/* Each item - with grid-like borders */
.feature-bar .feature-item {
  color: white;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  /* equal widths */
  min-width: 0;
  /* prevents overflow on small screens */
  padding: 0 40px;
  /* room for separators */
  text-align: center;
  /* change to center if you prefer */
  line-height: 1.35;
  margin: 0;
  align-self: stretch; /* ensure item stretches to grid height */
}

/* No outer borders; separators only between items */

/* Vertical separator BETWEEN items (not before the first) - full container height */
.feature-bar .feature-item + .feature-item::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: var(--sep-width);
  height: 100%;
  background: var(--sep-color);
  border-radius: 0;
}

/* Optional: slightly lighter text inside items */
.feature-bar .feature-item {
  color: white;
  font-weight: bold;
  text-align: center;
}

/* -------------------------
   Responsive (stacked view)
   ------------------------- */
@media (max-width: 768px) {
  .feature-bar {
      width: 100%;
      overflow: hidden;
      box-sizing: border-box;
  }

  .feature-bar .features-container {
      padding: 0 15px;
      width: 100%;
      overflow: hidden;
      box-sizing: border-box;
  }
  
  .feature-bar * {
      word-break: normal !important;
      overflow-wrap: break-word !important;
      white-space: normal !important;
      hyphens: manual !important;
      max-width: 100%;
      box-sizing: border-box !important;
  }

  .feature-bar .feature-grid {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .feature-bar .feature-item {
    padding: 14px 0;
    text-align: center;
  }

  /* Convert separators to horizontal lines between stacked items */
  .feature-bar .feature-item+.feature-item::before {
    left: 50%;
    top: 0;
    transform: translate(-50%, 0);
    /* width: var(--sep-width); */
    height: var(--sep-height);
  }
}

/* ------------------------------
   High-contrast/print friendliness
   ------------------------------ */
@media print {
  .feature-bar {
    background: #fff;
    color: #000;
  }

  .feature-bar .feature-item+.feature-item::before {
    background: #777;
  }
}



/* Info Blocks */
.info-blocks {
  width: 100%;
}

.info-row {
  display: flex;
  flex-wrap: nowrap;
  /* keep side-by-side on desktop */
  min-height: 300px;
}

/* Columns */
.info-col {
  width: 50%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
}

/* Base Colors */
.info-col.white {
  background-color: #ffffff;
  color: #333;
}

.info-col.grey {
  background-color: white;
  color: #333;
}

/* Alternate Row Styling (excluding last row) */
.info-row:not(.last-row):nth-child(odd) .info-col:first-child {
  background-color: #ffffff;
  /* left white */
}

.info-row:not(.last-row):nth-child(odd) .info-col:last-child {
  background-color: white;
  /* right grey */
}

.info-row:not(.last-row):nth-child(even) .info-col:first-child {
  background-color: white;
  /* left grey */
}

.info-row:not(.last-row):nth-child(even) .info-col:last-child {
  background-color: #ffffff;
  /* right white */
}

/* Last row: full black */
.last-row .info-col {
  background-color: #000000;
  color: white;
}

/* Text Styling */
.info-text {
  text-align: left;
  flex: 1;
  padding-left: 10%;
  padding-right: 10%;
  width: 70vh !important;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  box-sizing: border-box;
  min-width: 0;
}

.info-text h3 {
  font-size: clamp(24px, 3.5vw, 5vh);
  letter-spacing: -0.4px;
  line-height: 1.25;
  margin-bottom: 10px;
  font-weight: 700;
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: none;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
  width: 100%;
}

.info-text p {
  font-size: 1rem;
  line-height: 1.6;
  text-align: left;
  font-weight: bold;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

/* Info Sections */
.info-sections {
  padding: 80px 0;
}

.info-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 50px;
  margin-bottom: 60px;
}

.info-block {
  display: flex;
  align-items: center;
  gap: 30px;
}

.info-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
}

.info-description {
  color: #666;
  line-height: 1.6;
}

.info-visual {
  width: 150px;
  height: 200px;
  background: linear-gradient(45deg, #c8102e, #a00d26);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  font-weight: bold;
  border-radius: 5px;
}

/* Search Results Styles */
.search-results-section {
  padding: 60px 0;
  background: #f8f9fa;
}

.search-results-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Main Container Layout */
.main-container {
  display: flex;
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
  min-height: calc(100vh - 200px);
  /* Adjust based on header/footer height */
}

/* Filters Sidebar */
.filters-sidebar {
  flex: 0 0 300px;
  /* Fixed width, won't shrink */
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  height: fit-content;
  position: sticky;

}

/* Content Area */
.content-area {
  flex: 1;
  /* Take remaining space */
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  overflow-y: auto;
  /* Add scroll when content exceeds height */
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 200px);
  /* Ensure minimum height */
}

/* Advanced Filters Heading */
.advanced-filters-heading {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #e2e5f0;
}

.advanced-filters-heading h2 {
  font-size: 20px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0;
  text-align: center;
}

/* Filter Section Styles */
.filter-section {
  margin-bottom: 0px;
  padding-bottom: 0px;
  border-bottom: 0px solid #eee;
}

.filter-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.filter-section h3 {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 2px solid #f0f0f0;
}

/* Date Filter Styles */
.direct-date-input {
  margin-bottom: 15px;
}

.direct-date-input label {
  display: block;
  font-size: 14px;
  color: #666;
  margin-bottom: 5px;
}

.direct-date-input input[type="date"] {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

.month-year-selector {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  padding: 8px 12px;
  background: #f8f9fa;
  border-radius: 4px;
}

.month-year-selector button {
  background: none;
  border: none;
  font-size: 18px;
  color: #666;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 3px;
  transition: background 0.2s;
}

.month-year-selector button:hover {
  background: rgba(0, 0, 0, 0.1);
}

.month-year-selector span {
  font-weight: bold;
  color: #333;
}

/* Calendar Grid */
.date-filter {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 15px;
}

.date-filter .day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  cursor: pointer;
  border-radius: 3px;
  transition: all 0.2s;
  border: 1px solid transparent;
}

.date-filter .day:hover {
  background: #e9ecef;
}

.date-filter .day.selected {
  background-color: #e9ecef;
  color: black;
  border-color: none;
}


.filter-checkbox input[type="checkbox"] {
  margin-right: 8px;
}

.filter-checkbox label {
  font-size: 14px;
  color: #333;
  cursor: pointer;
  user-select: none;
}

.filter-checkbox label:hover {
  color: #007bff;
}



/* Filter Action Buttons */
.apply-filters-btn,
.clear-filters {
  width: 100%;
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 10px;
}


.clear-filters {
  background: #f0f0f0;
  color: #595959;
}


.search-filters {
  background: white;
  padding: 30px;
  margin-bottom: 40px;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.filter-form {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
}

.filter-form input,
.filter-form select {
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-size: 14px;
}

.filter-form button {
  background: #c8102e;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.3s;
}

.filter-form button:hover {
  background: #a00d26;
}

.result-placeholder {
  width: 100%;
  height: 200px;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #ccc;
}

.result-content {
  padding: 10px;
}

.result-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
}

.result-date,
.result-region {
  font-size: 14px;
  color: #666;
  margin-bottom: 5px;
}


.view-details-btn {
  background: #333;
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 3px;
  font-size: 14px;
  transition: background 0.3s;
  display: inline-block;
}

.view-details-btn:hover {
  background: #555;
  text-decoration: none;
  color: white;
}

.no-results {
  text-align: center;
  padding: 60px 20px;
  grid-column: 1 / -1;
}

/* Content Area Scrollbar Styling */
.content-area::-webkit-scrollbar {
  width: 8px;
}

.content-area::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.content-area::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
}

.content-area::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* Filters Sidebar Scrollbar Styling */
.filters-sidebar::-webkit-scrollbar {
  width: 6px;
}

.filters-sidebar::-webkit-scrollbar-track {
  background: #f8f9fa;
  border-radius: 3px;
}

.filters-sidebar::-webkit-scrollbar-thumb {
  background: #dee2e6;
  border-radius: 3px;
}

.filters-sidebar::-webkit-scrollbar-thumb:hover {
  background: #adb5bd;
}


/* Results Grid in Content Area */
.content-area .results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
  overflow-y: visible;
  min-height: auto !important;
  /* Let parent handle scrolling */
}

/* Bottom Container - Always at bottom */
.bottom-container {
  margin-top: auto;
  /* Push to bottom of content area */
  padding-top: 20px;
  border-top: 1px solid #eee;
  flex-shrink: 0;
  /* Don't shrink when content overflows */
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Pagination Styling */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.pagination button,
.pagination span {
  display: inline-block;
  padding: 8px 12px;
  margin: 0 2px;
  text-decoration: none;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: white;
  color: #333;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 14px;
}

.pagination button:hover:not(:disabled) {
  background: #e9ecef;
  border-color: #adb5bd;
}

.pagination button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination .current {
  color: white;
}

.pagination .nav-btn {
  font-weight: bold;

}

@media (max-width: 900px) {
  .pagination .nav-btn {
    display: none;
  }
}

.pagination .page-info {
  font-size: 13px;
  color: #666;
  border: none;
  background: none;
  cursor: default;
  margin: 0 10px;
}

/* Footer */

/* ---------- Base ---------- */
.footer {
  background: #181818;
  /* dark like the screenshot */
  color: #fff;
  padding: 48px 0 20px;
  font-family: Arial, Helvetica, sans-serif;
}

.footer-container {
  max-width: 90%;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Top grid ---------- */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  /* left wider than right */
  gap: 80px;
  margin-bottom: 28px;
}

/* Title + list resets (FIX) */
.footer-section h4 {
  font-size: 18px;
  margin: 0 0 16px;
  color: #fff;
}

.footer-section ul {
  list-style: none;
  /* remove bullets */
  margin: 0;
  padding: 0;
}

.footer-section ul li {
  list-style: none;
  /* ensure no bullets on li either */
  margin-bottom: 10px;
}

/* Global footer links (apply to both columns) */
.footer a,
.footer a:visited {
  color: #cfcfcf;
  text-decoration: none;
}

.footer a:hover,
.footer a:focus-visible {
  color: #fff;
  text-decoration: none;
}

/* Brand title */
.brand-title {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.4px;
  margin: 0 0 22px;
}

/* Contact block (works whether you use <ul><li> or <p>) */
.contact-block p,
.footer-section ul li {
  /* keep spacing consistent */
  margin: 6px 0;
  color: #d8d8d8;
  font-size: 15px;
  font-weight: bold;
}

.contact-block strong,
.footer-section ul li strong {
  color: #fff;
  font-weight: 700;
}

/* Right column links */
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  transition: color .25s ease;
}

/* ---------- Social icons ---------- */
.social-block h5 {
  margin: 22px 0 10px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.social-list {
  list-style: none;
  /* ensure no bullets */
  padding: 0;
  margin: 0;
  display: flex;
  gap: 12px;
  align-items: center;
}

.social-btn {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #f1f1f1;
  border: 1px solid #cfcfcf;
  border-radius: 50%;
  background: transparent;
  transition: border-color .2s ease, transform .2s ease, background-color .2s ease;
}

.social-btn:hover,
.social-btn:focus-visible {
  border-color: #fff;
  transform: translateY(-1px);
  background-color: rgba(255, 255, 255, 0.05);
}

/* ---------- Bottom bar ---------- */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* copyright left, cards right */
  gap: 20px;
  padding-top: 16px;
  border-top: 1px solid #2b2b2b;
  color: #bdbdbd;
  font-size: 14px;
}

/* If you still have a simple "Follow Us" list in the bottom bar */
.follow-us ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.follow-us li {
  list-style: none;
}

/* Payment logos */
.card-logos {
  list-style: none;
  /* remove bullets */
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .card-logos {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {

  .social-btn,
  .footer a {
    transition: none;
  }
}



/* Mobile Sticky Header Styles */
/* Responsive breakpoint for info-text - ensures proper wrapping at all sizes */
@media (max-width: 1400px) {
  .info-text {
    max-width: 100% !important;
    box-sizing: border-box !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }

  .info-text h3 {
    max-width: 100% !important;
    box-sizing: border-box !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }

  .info-text p {
    max-width: 100% !important;
    box-sizing: border-box !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }
}

@media (max-width: 768px) {
  /* Make header fixed on mobile */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  /* Add padding to body to prevent content from being hidden under fixed header */
  body {
    padding-top: 64px;
  }

  /* Top banner - hide on mobile for space */
  .top-banner {
    display: none;
  }

  /* Compact mobile header with hamburger menu */
  .header-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    gap: 10px;
    max-width: 100%;
  }

  /* Mobile menu toggle button (hamburger) */
  .mobile-menu-toggle {
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    order: 1;
  }

  .mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  /* Logo - centered on mobile */
  .logo {
    order: 2;
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
  }

  .logo img {
    height: 40px;
    width: auto;
  }

  /* Site title - hide on mobile */
  .site-title {
    display: none;
  }

  /* Cart icon - right side */
  .header-cart {
    order: 3;
    flex: 0 0 auto;
  }

  /* Navigation menu - slide-in from left */
  nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 250px;
    max-width: 90vw;
    height: 100vh;
    background: #ffffff;
    z-index: 999;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0;
    padding-top: 0;
    box-shadow: 4px 0 20px rgba(0,0,0,0.1);
    overflow-y: auto;
    overflow-x: hidden;
    border-right: none;
    display: flex;
    flex-direction: column;
  }

  nav.active {
    left: 0;
  }

  /* Mobile menu header - clean and minimal */
  nav::before {
    content: 'Menu';
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 20px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #1a1a1a;
    border-bottom: 1px solid #e8e8e8;
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1;
    text-align: center;
    text-transform: uppercase;
  }

  /* Mobile menu overlay */
  .mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.6);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(2px);
  }

  .mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .nav-menu {
    display: block;
    flex-direction: column;
    gap: 0;
    text-align: left;
    padding: 8px 0;
    margin: 0;
    list-style: none;
    flex: 1;
    overflow-y: auto;
  }

  .nav-menu li {
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.15s ease;
    background: #ffffff;
  }

  .nav-menu li:hover,
  .nav-menu li:active {
    background-color: #fafafa;
  }

  .nav-menu li:first-child {
    border-top: none;
  }

  .nav-menu li:last-child {
    border-bottom: none;
  }

  .nav-menu a {
    display: block;
    padding: 16px 24px;
    text-align: left;
    color: #1a1a1a;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.5;
    transition: color 0.15s ease, background-color 0.15s ease;
    text-decoration: none;
    position: relative;
    background: #ffffff;
  }

  .nav-menu a:hover,
  .nav-menu a:active {
    color: #1a1a1a;
    background-color: #fafafa;
  }

  /* Remove the left indicator bar */
  .nav-menu a::before {
    display: none;
  }

  /* Dropdown in mobile menu - always expanded */
  .nav-menu .dropdown {
    position: relative !important;
    background: #ffffff;
  }

  .nav-menu .dropdown > a {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    cursor: default !important;
    pointer-events: none !important;
    font-weight: 500;
    color: #1a1a1a;
  }
  
  /* Hide chevron icon on mobile */
  .nav-menu .dropdown > a i {
    display: none !important;
  }

  /* Dropdown menu always visible on mobile */
  .nav-menu .dropdown-menu {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    background: #fafafa !important;
    padding: 4px 0 !important;
    max-height: none !important;
    overflow: visible !important;
    display: block !important;
    list-style: none !important;
    margin: 0 !important;
  }

  .nav-menu .dropdown-menu li {
    border-bottom: 1px solid #f0f0f0;
    background: #fafafa;
  }

  .nav-menu .dropdown-menu li:last-child {
    border-bottom: none;
  }

  .nav-menu .dropdown-menu a {
    padding: 12px 24px 12px 40px;
    font-size: 14px;
    text-align: left !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    line-height: 1.5 !important;
    display: block !important;
    color: #666;
    font-weight: 400;
    transition: color 0.15s ease, background-color 0.15s ease;
  }

  .nav-menu .dropdown-menu a:hover,
  .nav-menu .dropdown-menu a:active {
    color: #1a1a1a;
    background-color: #f5f5f5;
  }
  
  /* Fix text wrapping for all elements in mobile nav */
  .nav-menu a,
  .nav-menu li,
  .nav-menu h1,
  .nav-menu h2,
  .nav-menu h3,
  .nav-menu h4,
  .nav-menu h5,
  .nav-menu h6 {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
    max-width: 100% !important;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .hero-text h2 {
    font-size: clamp(14px, 10cqi, 20px);
    margin-bottom: 10px;
    letter-spacing: -0.2px;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
    white-space: normal !important;
  }
  
  .hero-text h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .search-form {
    flex-direction: column;
    align-items: center;
  }

  .search-input,
  .search-select {
    width: 100%;
    max-width: 300px;
  }

  .info-block {
    flex-direction: column;
    text-align: center;
  }

  .hero-nav {
    display: none;
  }

  .hero-text {
    left: 5%;
    width: 90%;
    max-width: 450px;
    padding: 12px;
    container-type: inline-size;
  }

  .hero-text h2 {
    font-size: clamp(14px, 10cqi, 22px);
    margin-bottom: 10px;
    letter-spacing: -0.2px;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
    white-space: normal !important;
  }
  
  .hero-text h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .hero-text p {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .hero-text .cta-button {
    font-size: 13px;
    padding: 8px 16px;
  }

  .hero-nav {
    width: 40px;
    height: 40px;
    font-size: 20px;
    padding: 15px 10px;
  }

  .hero-prev {
    left: 15px;
  }

  .hero-next {
    right: 15px;
  }

  .filter-form {
    flex-direction: column;
  }

  .filter-form input,
  .filter-form select,
  .filter-form button {
    width: 100%;
  }

  .info-row {
    flex-direction: column;
    flex-wrap: nowrap;
    font-family: Arial, Helvetica, sans-serif;
    min-height: auto;
  }

  .info-col {
    width: 100% !important;
    padding: 20px !important;
    min-height: auto;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  /* On mobile, ensure photo always comes before text */
  /* Simple rule: image columns (dark/grey) = order 1, text columns (white) = order 2 */
  /* Based on HTML structure: dark and grey columns contain images, white columns contain text */
  .info-row .info-col.dark,
  .info-row .info-col.grey {
    order: 1 !important;
    background-color: white;
  }

  .info-row .info-col.white {
    order: 2 !important;
  }

  /* Ensure images don't overflow */
  .info-col img.hero-site-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    display: block;
  }

  .info-text {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 5% !important;
    padding-right: 5% !important;
    padding-top: 30px !important;
    padding-bottom: 30px !important;
    box-sizing: border-box !important;
    min-width: 0 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }

  .info-text h3 {
    font-size: clamp(22px, 3.5vw, 28px) !important;
    letter-spacing: -0.4px !important;
    line-height: 1.25 !important;
    margin-bottom: 15px !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
    hyphens: none !important;
    word-wrap: break-word !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    width: 100% !important;
  }

  .info-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .hero-site-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    display: block;
  }

  /* Mobile Layout for Search Results */
  .main-container {
    flex-direction: column;
    padding: 10px;
    min-height: auto;
  }

  .filters-sidebar {
    flex: none;
    width: 100%;
    position: static;
  }

  /* Mobile collapsible filter sidebar */
  .filters-sidebar .advanced-filters-heading {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    cursor: pointer !important;
    padding: 15px !important;
    background: #f8f8f8 !important;
    border-radius: 8px !important;
    margin-bottom: 0px !important;
  }

  .filters-sidebar .advanced-filters-heading h2 {
    margin: 0 !important;
    font-size: 18px !important;
    flex: 1 !important;
  }

  .mobile-filter-toggle {
    display: inline-block !important;
    font-size: 28px !important;
    font-weight: bold !important;
    color: #000000 !important;
    user-select: none !important;
    line-height: 1 !important;
    cursor: pointer !important;
    padding: 0 5px !important;
  }

  /* Arrow states managed by JavaScript - no rotation needed */

  .filters-sidebar form > div:not(.advanced-filters-heading) {
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.3s ease !important;
  }

  .filters-sidebar.expanded form > div:not(.advanced-filters-heading) {
    max-height: 3000px !important;
    overflow: visible !important;
  }

  .filters-sidebar .apply-filters-btn,
  .filters-sidebar .clear-filters {
    display: none !important;
  }

  .filters-sidebar.expanded .apply-filters-btn,
  .filters-sidebar.expanded .clear-filters {
    display: block !important;
  }

  .content-area {
    min-height: 400px;
  }

  /* Mobile bottom container */
  .bottom-container {
    flex-direction: column;
    gap: 15px;
    padding-top: 15px;
  }

  .proceed-button-container {
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }

  .pagination button,
  .pagination span {
    padding: 6px 8px;
    font-size: 12px;
    margin: 0 1px;
  }

  .pagination .page-info {
    font-size: 11px;
    margin: 5px 0;
  }
  
  /* Mobile font size adjustments - using clamp for smooth scaling */
  h1, .h1 {
    font-size: clamp(28px, 6vw, 40px) !important;
    letter-spacing: -0.8px !important;
    line-height: 1.15 !important;
    margin-bottom: 0.5em !important;
  }
  
  h2, .h2 {
    font-size: clamp(24px, 5vw, 32px) !important;
    letter-spacing: -0.6px !important;
    line-height: 1.2 !important;
    margin-bottom: 0.5em !important;
  }
  
  h3, .h3 {
    font-size: clamp(20px, 4vw, 28px) !important;
    letter-spacing: -0.4px !important;
    line-height: 1.25 !important;
    margin-bottom: 0.5em !important;
  }

  h4, .h4 {
    font-size: clamp(18px, 3.5vw, 22px) !important;
    letter-spacing: -0.3px !important;
    line-height: 1.3 !important;
  }

  h5, .h5 {
    font-size: clamp(16px, 3vw, 18px) !important;
    letter-spacing: -0.2px !important;
    line-height: 1.35 !important;
  }

  h6, .h6 {
    font-size: clamp(14px, 2.5vw, 16px) !important;
    letter-spacing: -0.1px !important;
    line-height: 1.4 !important;
  }
  
  .search-title {
    font-size: 32px !important;
    margin-bottom: 12px !important;
  }
  
  .search-subtitle {
    font-size: 20px !important;
    margin-bottom: 25px !important;
  }
  
  .info-text h3 {
    font-size: clamp(24px, 4vw, 32px) !important;
    letter-spacing: -0.4px !important;
    line-height: 1.25 !important;
    margin-bottom: 15px !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
    word-wrap: normal !important;
  }
  
  .info-text p {
    font-size: 14px !important;
    margin-bottom: 12px !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .search-section {
    padding: 20px 0 !important;
  }

  .search-form {
    margin-bottom: 0 !important;
  }
}

/* Tablet Layout */
@media (max-width: 1024px) and (min-width: 769px) {
  .main-container {
    padding: 15px;
  }

  .filters-sidebar {
    flex: 0 0 250px;
  }

  .content-area .results-grid {
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  }

  .more-info-image {
    width: auto !important;
  }

  /* Tablet adjustments for info rows */
  .info-row {
    min-height: 250px;
  }

  .info-col {
    padding: 30px 20px;
  }

  .info-text {
    padding-left: 8%;
    padding-right: 8%;
    width: auto !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    min-width: 0 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }

  .info-text h3 {
    font-size: clamp(22px, 3.5vw, 3.5vh) !important;
    letter-spacing: -0.4px !important;
    line-height: 1.25 !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
    hyphens: none !important;
    word-wrap: break-word !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    width: 100% !important;
  }

  .hero-site-image {
    max-height: 350px;
  }
}

/* Breadcrumb Navigation Styles */
.search-breadcrumb {
  margin-bottom: 20px;
  padding: 0 15px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.search-breadcrumb .breadcrumb {
  display: flex;
  align-items: center;
  padding: 8px 0;
  margin: 0;
  list-style: none;
  background: none;
  border: none;
  font-size: 14px;
}

.search-breadcrumb .breadcrumb-item {
  display: flex;
  align-items: center;
}

.search-breadcrumb .breadcrumb-item:not(:last-child)::after {
  content: ">";
  margin: 0 8px;
  color: #6c757d;
  font-weight: normal;
}

.search-breadcrumb .breadcrumb-item a {
  color: #434648;
  text-decoration: none;
  transition: color 0.2s ease;
}

.search-breadcrumb .breadcrumb-item a:hover {
  color: #0056b3;
  text-decoration: underline;
}

.search-breadcrumb .breadcrumb-item.active {
  color: #6c757d;
  font-weight: 500;
  text-decoration: underline;
}


.footer-right-column {
  display: flex;
  flex-direction: column;
}

.footer-right-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  height: 100%;
}

.footer-subscription {
  width: 110%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.footer-subscription h4 {
  font-size: 15px;
  line-height: 1.3;
  margin-bottom: 8px;
  color: #fff;
}

.subscription-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.email-input {
  padding: 12px 16px;
  border: 1px solid #444;
  border-radius: 4px;
  background: #fff;
  color: #333;
  font-size: 11px;
  width: 100%;
  box-sizing: border-box;
}

.email-input::placeholder {
  color: #999;
}

.subscribe-btn {
  padding: 12px 20px;
  background: #666;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.subscribe-btn:hover {
  background: #777;
}

.footer-payment {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.payment-methods a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 27px;
  background: transparent;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.payment-methods a:hover {
  transform: translateY(-2px);
}

.payment-methods i {
  font-size: 18px;
  color: #333;
}

.hero-div {
  padding: 10px;
}

/* Progress Bar Styles */
.progress-bar-container {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  max-width: 1360px;
  margin: 0 auto;
  padding: 24px 20px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.progress-label {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin-right: 32px;
  min-width: 90px;
}

.progress-steps {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 0;
}

.progress-step {
  display: flex;
  align-items: center;
  position: relative;
  flex: 1;
}

.progress-step:last-child {
  flex: 0;
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e5e7eb;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  margin-right: 12px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  z-index: 2;
  position: relative;
}

.progress-step.completed .step-number {
  background: #10b981;
  color: white;
}

.step-content {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 12px;
  position: relative;
  z-index: 2;
}

.step-title {
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.progress-step.completed .step-title {
  color: #10b981;
  font-weight: 600;
}

.step-check {
  width: 18px;
  height: 18px;
  color: #10b981;
  display: none;
}

.progress-step.completed .step-check {
  display: block;
  animation: checkmark 0.3s ease-in-out;
}

@keyframes checkmark {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.step-line {
  flex: 1;
  height: 2px;
  background: #e5e7eb;
  position: relative;
  margin: 0 12px;
  transition: background 0.3s ease;
}

.progress-step.completed .step-line {
  background: #10b981;
}

.progress-step:last-child .step-line {
  display: none;
}

/* Responsive Design */
@media (max-width: 992px) {
  .progress-bar-container {
    padding: 20px 20px;
  }
  
  .progress-label {
    font-size: 16px;
    margin-right: 24px;
    min-width: 80px;
  }
  
  .step-title {
    font-size: 13px;
  }
  
  .step-number {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .progress-bar-container {
    flex-direction: row;
    align-items: flex-start;
    padding: 16px 20px;
  }

  .info-col grey{
    background-color: white !important;
  }
  
  .progress-label {
    margin-right: 16px;
    margin-bottom: 0;
    font-size: 15px;
    min-width: 70px;
    flex-shrink: 0;
  }
  
  .progress-steps {
    flex: 1;
    flex-direction: column;
    gap: 12px;
  }
  
  .progress-step {
    flex-direction: row;
    width: 100%;
    flex: none;
  }
  
  .progress-step:last-child {
    flex: none;
  }
  
  .step-title {
    font-size: 12px;
    white-space: normal;
  }
  
  .step-number {
    width: 28px;
    height: 28px;
    font-size: 12px;
    margin-right: 8px;
    flex-shrink: 0;
  }
  
  .step-content {
    margin-right: 0;
    flex: 1;
  }
  
  .step-line {
    display: none;
  }
}

@media (max-width: 576px) {
  .progress-bar-container {
    padding: 12px 15px;
  }
  .info-col grey{
    background-color: white !important;
  }
  .progress-label {
    font-size: 13px;
    margin-right: 12px;
    min-width: 60px;
  }
  
  .progress-steps {
    gap: 10px;
  }
  
  .step-title {
    font-size: 11px;
  }
  
  .step-number {
    width: 24px;
    height: 24px;
    font-size: 11px;
    margin-right: 6px;
  }
  
  .step-check {
    width: 14px;
    height: 14px;
  }
  
  .step-content {
    gap: 6px;
  }
}
