:root {
  --primary-color: #00315e;
  --secondary-color: #45a1e0;
  --accent-color: #73ccf4;
  --danger-color: #ef4444;
  --warning-color: #f59e0b;
  --success-color: #10b981;
  --info-color: #3b82f6;

  --text-primary: #1f2937;
  --text-secondary: #6b7280;
  --text-muted: #9ca3af;

  --bg-primary: #ffffff;
  --bg-secondary: #f9fafb;
  --bg-tertiary: #f3f4f6;

  --border-color: #e5e7eb;
  --border-light: #f3f4f6;

  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(77 18 18 / 77%), 0 2px 4px -2px rgb(75 109 239 / 34%);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
}

 
    

.btn-primary {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-lg);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  width: 100%;
}

.btn-primary:hover {
  background: var(--secondary-color);
  transform: translateY(-1px);
}

/* Hero Section */
.hero {
  padding: 4rem 0;
  position: relative;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  opacity: 0.1;
}

.hero-pattern {
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 25% 25%, white 2px, transparent 2px),
    radial-gradient(circle at 75% 75%, white 2px, transparent 2px);
  background-size: 50px 50px;
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge-icon {
  font-size: 1.25rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: linear-gradient(45deg, var(--accent-color), #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  line-height: 1.6;
}

/* Search Container */
.search-container {  
      margin-bottom: 2rem;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 0px 2rem;
}

.search-form {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-xl);
  display: grid;
  grid-template-columns: 1fr auto 1fr 1fr auto;
  gap: 2rem;
  align-items: end;
}

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

.field-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.field-wrapper {
  position: relative;
}

.field-icon {
  position: absolute;
  left: 0.1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  z-index: 1;
}
.select2-container--default .select2-selection--single .select2-selection__rendered 
 { 
    line-height: 70px !important; 
    padding: 0px 14px !important;    
    font-size: 14px;
}
.select2-results__option { 
    font-size: 13px;
}
.field-input, .select2-container--default .select2-selection--single {
  width: 100%;
  padding: 1.25rem 1.25rem 1.25rem 3.5rem;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  font-size: 1.1rem;
  background: var(--bg-primary);
  transition: all 0.2s;
  min-height: 72px;
}

.field-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 49, 94, 0.1);
}

.search-arrow {
  font-size: 1.5rem;
  color: var(--text-muted);
  align-self: center;
}

.search-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 1.25rem 2.5rem;
  border-radius: var(--radius-lg);
  font-weight: 600;
  cursor: pointer; 
  align-items: center; 
  transition: all 0.2s;
  white-space: nowrap;
  font-size: 1.1rem;
  min-height: 56px;
}

.search-btn:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
 

.content-layout {
  display: grid;
    grid-template-columns: 320px 1fr;
    gap: 3rem;
}

/* Filters Panel */
.filters-panel {
  background: var(--bg-primary);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  height: fit-content;
  position: sticky;
  margin-top: 2rem;
}

.panel-header {
  margin-bottom: 2rem;
}

.panel-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.title-icon {
  font-size: 1.5rem;
}

.panel-subtitle {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

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

.filter-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.option-card {
  display: block;
  cursor: pointer;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1rem;
  transition: all 0.2s;
  background: var(--bg-primary);
}

.option-card:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-sm);
}

.option-card input[type="radio"] {
  display: none;
}

.option-card input[type="radio"]:checked + .option-content {
  color: var(--primary-color);
}

.option-card input[type="radio"]:checked + .option-content .option-icon {
  transform: scale(1.1);
}

.option-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.option-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: transform 0.2s;
}

.all-icon {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}
.free-icon {
  background: linear-gradient(135deg, #10b981, #059669);
}
.shared-icon {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}
.any-volume {
  background: linear-gradient(135deg, #6b7280, #4b5563);
}
.small-volume {
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
}
.large-volume {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.option-info {
  flex: 1;
}

.option-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.option-desc {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.urgency-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.urgency-tag {
  cursor: pointer;
}

.urgency-tag input[type="checkbox"] {
  display: none;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  transition: all 0.2s;
  border: 2px solid transparent;
}

.tag.urgent {
  background: rgba(239, 68, 68, 0.1);
  color: var(--danger-color);
}

.tag.flexible {
  background: rgba(69, 161, 224, 0.1);
  color: var(--secondary-color);
}

.tag.featured {
  background: #e9e6ff;
  color: var(--primary-color);
}

.urgency-tag input[type="checkbox"]:checked + .tag {
  border-color: currentColor;
  transform: scale(1.05);
}
    label, legend {
    display: block;
    font-weight: 700;
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 3px;
}
.highlight {  
    background-color: #edf6ff !important;
}
.sidebar-widget {
    margin-bottom: 20px; 
}
.sidebar-widget h3 {
    font-size: 13px;
    margin-bottom: 0px;
}
/* input, input[type=text], input[type=password], input[type=email], input[type=number], textarea, select
 */
.flatpickr-input{
    height: 30px !important;
    line-height: 30px !important;
    padding: 0px 0px 0px 40px !important; 
    margin:0 0 0px !important;
}
.intro-search-field input {
    padding: 22px 23px !important;
    padding-left: 43px !important;
}

/* Offers Section */
.offers-section {
  background: var(--bg-primary);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  margin-top: 2rem;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.header-info .section-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.header-info .section-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
}

.header-actions {
  display: flex;
  gap: 1rem;
}

.action-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-lg);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.action-btn.secondary {
  background: var(--bg-tertiary);
  color: var(--text-secondary);
}

.action-btn.secondary:hover {
  background: var(--border-color);
  color: var(--text-primary);
}

.action-btn.primary {
  background: var(--primary-color);
  color: white;
}

.action-btn.primary:hover {
  background: var(--secondary-color);
  transform: translateY(-1px);
}
.highlight {
    border: 1px solid  #1c90f3 !important;
}
/* Filter Tabs */
.filter-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  background: var(--bg-tertiary);
  padding: 0.25rem;
  border-radius: var(--radius-lg);
  width: 100%;
}

.tab-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.5rem;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  font-weight: 500;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s;
  flex: 1;
  justify-content: center;
}

.tab-button.active {
  background: var(--bg-primary);
  color: var(--primary-color);
  box-shadow: var(--shadow-sm);
}

.tab-icon {
  font-size: 1.125rem;
}

/* Offers List */
.offers-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.offer-card {
  border: 2px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  transition: all 0.3s;
  background: var(--bg-primary);
}

.offer-card:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.card-header {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}

.offer-date {
  background: var(--primary-color);
  color: white;
  border-radius: var(--radius-lg);
  padding: 1rem;
  text-align: center;
  min-width: 4rem;
  flex-shrink: 0;
}

.offer-date.urgent-date {
  background: var(--danger-color);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

.date-day {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}

.date-month {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.date-year {
  font-size: 0.75rem;
  opacity: 0.8;
}

.offer-route {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.route-point {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.point-icon {
  font-size: 1.5rem;
}

.point-name {
  font-weight: 600;
  color: var(--text-primary);
}

.point-detail {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.route-arrow {
  font-size: 1.5rem;
  color: var(--text-muted);
  margin: 0 0.5rem;
}

.offer-capacity {
  text-align: right;
  flex-shrink: 0;
}

.capacity-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.capacity-status {
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
}

.capacity-status.available {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success-color);
}

.capacity-status.searching {
  background: rgba(245, 158, 11, 0.1);
  color: var(--warning-color);
}

.capacity-status.organizing {
  background: rgba(139, 69, 19, 0.1);
  color: #8b4513;
}

.card-body {
  margin-bottom: 1rem;
}

.offer-description {
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.offer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag.cost-shared {
  background: rgba(69, 161, 224, 0.1);
  color: var(--secondary-color);
}

.tag.verified {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success-color);
}

.tag.professional {
  background: rgba(0, 49, 94, 0.1);
  color: var(--primary-color);
}

.tag.propose {
  background: rgba(0, 49, 94, 0.1);
  color: var(--primary-color);
}

.tag.search {
  background: rgba(245, 158, 11, 0.1);
  color: var(--warning-color);
}

.tag.group {
  background: rgba(139, 69, 19, 0.1);
  color: #8b4513;
}




.publisher-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.publisher-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.publisher-name {
  font-weight: 600;
  color: var(--text-primary);
}

.publish-time {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.card-actions {
  display: flex;
  gap: 0.75rem;
}

.btn-contact {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-lg);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-contact:hover {
  background: var(--secondary-color);
  transform: translateY(-1px);
}
/* 
.btn-save {
  background: var(--bg-tertiary);
  border: none;
  padding: 0.75rem;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.2s;
  font-size: 1rem;
}

.btn-save:hover {
  background: var(--border-color);
  transform: scale(1.1);
}

Load More */
.load-more {
  text-align: center;
  margin-top: 2rem;
}

.load-more-btn {
  background: var(--bg-tertiary);
  color: var(--text-secondary);
  border: 2px solid var(--border-color);
  padding: 1rem 2rem;
  border-radius: var(--radius-lg);
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
}

.load-more-btn:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  transform: translateY(-1px);
}

/* How it works Section */
.how-it-works {
  margin-top: 15px;
  padding: 5rem 0;
  background: var(--bg-primary);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.step-card {
  background: var(--bg-primary);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
  position: relative;
  transition: all 0.3s;
}

.step-card:hover {
  border-color: var(--secondary-color);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.step-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.step-number {
  position: absolute;
  top: -15px;
  right: -15px;
  background: var(--primary-color);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.step-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* BoxsyMove Section */
.boxsymove-section {
  padding: 3rem 0;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.boxsymove-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.boxsymove-text .section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.3rem;
  line-height: 1.1;
}

.subsection-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.features-list {
  list-style: none;
  padding: 0;
}

.features-list li {
  font-size: 1.125rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.boxsymove-images { 
  
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
}

.boxsymove-img {
  width: 280px;
  height: 419px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s; 
}

.boxsymove-img:hover {
  transform: scale(1.02);
}

/* Benefits Section */
.benefits-section {
  padding: 5rem 0;
  background: var(--bg-primary);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.benefit-card {
  background: var(--bg-primary);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
}

.benefit-card:hover {
  border-color: var(--secondary-color);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.benefit-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.benefit-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
  background: var(--bg-secondary);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.faq-category {
  background: var(--bg-primary);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.category-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--secondary-color);
}

.faq-item {
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: all 0.2s;
}

.faq-item:hover {
  border-color: var(--secondary-color);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s;
}

.faq-question:hover {
  color: var(--primary-color);
  background: var(--bg-tertiary);
}

.faq-toggle {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--secondary-color);
  transition: transform 0.2s;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.25rem 1.25rem;
  color: var(--text-secondary);
  line-height: 1.6;
  display: none;
  background: var(--bg-secondary);
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.faq-answer li {
  margin-bottom: 0.5rem;
}
  
.badge {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .content-layout {
    display: block;
  }

  .filters-panel {
    position: static;
  }

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

  .search-arrow {
    display: none;
  }

  .hero-title {
    font-size: 2.5rem;
  }
 
  .boxsymove-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 3rem 0;
  }
.content-layout {
  display: block;
  }
  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .section-header {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }

  .header-actions {
    justify-content: stretch;
  }

  .action-btn {
    flex: 1;
    justify-content: center;
  }

  .card-header {
    flex-direction: column;
    gap: 1rem;
  }

  .offer-route {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .route-arrow {
    align-self: center;
    transform: rotate(90deg);
  }

  .offer-capacity {
    text-align: left;
  }
 

  .card-actions {
    justify-content: stretch;
  }

  .btn-contact {
    flex: 1;
  }
  

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .boxsymove-img {
    width: 100%;
    height: auto;
    max-width: 400px;
  margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
   
  .search-form,
  .filters-panel,
  .offers-section {
    padding: 1.5rem;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .boxsymove-images { 
    display: block; 
  }
.tab-button { 
    gap: 0.2rem;
    padding: 0.1rem 0.1rem; 
}
   
}
