/* Tour Details Card */
.toursce-tour-card {
   background: #ffffff;
   border-radius: 12px;
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
   height: 100%;
}

.toursce-tour-header {
   background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
   padding: 20px 25px;
   border-radius: 12px 12px 0 0;
}

.toursce-tour-header h2 {
   margin: 0;
   font-family: var(--font-primary);
   font-size: var(--font-size-3xl);
   font-weight: var(--font-weight-bold);
   text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
   color: #fff;
}

.toursce-tour-header p {color:#fff;line-height:1em;margin-top:8px}

.toursce-tour-body {
   padding: 30px;
}

@media (max-width: 768px) {
.toursce-tour-body {
   padding: 5px;
}
}

/* Tour Description */
.toursce-tour-description {
   margin-bottom: 40px;
}

.toursce-tour-description h3 {
   font-family: var(--font-primary);
   font-size: var(--font-size-xl);
   font-weight: var(--font-weight-semibold);
   color: #1f2937;
   margin-bottom: 20px;
   padding-bottom: 12px;
   border-bottom: 2px solid #e5e7eb;
   position: relative;
}

.toursce-tour-description h3:after {
   content: '';
   position: absolute;
   bottom: -2px;
   left: 0;
   width: 60px;
   height: 2px;
   background: #1a73e8;
}

.toursce-tour-description {
   font-family: var(--font-primary);
   font-size: var(--font-size-base);
   line-height: var(--line-height-relaxed);
   color: #4b5563;
}

.toursce-tour-description p {
   margin-bottom: 15px;
}

.toursce-tour-description ul {
   list-style: none;
   padding-left: 0;
   margin: 20px 0;
}

.toursce-tour-description ul li {
   position: relative;
   padding-left: 35px;
   margin-bottom: 15px;
   font-size: var(--font-size-base);
   line-height: var(--line-height-normal);
   color: #374151;
}

.toursce-tour-description ul li:before {
   content: "\f054";
   font-family: "Font Awesome 5 Free";
   font-weight: 900;
   position: absolute;
   left: 0;
   top: 3px;
   color: #1a73e8;
   font-size: 14px;
   background: #e0e7ff;
   width: 24px;
   height: 24px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
}

/* Itinerary Section */
.toursce-itinerary-section {
   margin-bottom: 50px;
}

.toursce-section-title {
   font-family: var(--font-primary);
   font-size: var(--font-size-2xl);
   font-weight: var(--font-weight-semibold);
   color: #1f2937;
   margin-bottom: 30px;
   display: flex;
   align-items: center;
   gap: 15px;
}

.toursce-section-title i {
   color: #1a73e8;
   font-size: 28px;
}

/* Day Tour Style - No Timeline */
.toursce-day-tour-content {
   background: #f8fafc;
   border: 2px solid #e0e7ff;
   border-radius: 12px;
   padding: 30px;
}

.toursce-day-tour-content ul {
   list-style: none;
   padding-left: 0;
   margin: 0;
}

.toursce-day-tour-content ul li {
   position: relative;
   padding-left: 35px;
   margin-bottom: 18px;
   font-size: var(--font-size-base);
   line-height: var(--line-height-relaxed);
   color: #374151;
}

.toursce-day-tour-content ul li:before {
   content: "\f005";
   font-family: "Font Awesome 5 Free";
   font-weight: 900;
   position: absolute;
   left: 0;
   top: 3px;
   color: #1a73e8;
   font-size: 16px;
}

/* Package Tour Days - With Timeline */
.toursce-tour-days {
   position: relative;
}

/* Timeline only on desktop */
@media (min-width: 992px) {
   .toursce-tour-days:before {
       content: '';
       position: absolute;
       left: 35px;
       top: 0;
       bottom: 40px;
       width: 2px;
       background: #e5e7eb;
   }
   .card-body {padding:8px}
}

.toursce-tour-day {
   position: relative;
   margin-bottom: 35px;
}

@media (min-width: 992px) {
   .toursce-tour-day {
       padding-left: 80px;
   }
}

.toursce-tour-day:last-child {
   margin-bottom: 40px;
}

/* Day Marker - Desktop */
@media (min-width: 992px) {
   .toursce-day-marker {
       position: absolute;
       left: 20px;
       top: 8px;
       width: 30px;
       height: 30px;
       background: #1a73e8;
       color: #ffffff;
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
       font-family: var(--font-primary);
       font-size: var(--font-size-sm);
       font-weight: var(--font-weight-bold);
       box-shadow: 0 0 0 4px #e0e7ff;
       z-index: 1;
   }
}

/* Day Marker - Mobile/Tablet */
@media (max-width: 991px) {
   .toursce-day-marker {
       display: none;
   }
}

.toursce-day-content {
   background: #ffffff;
   border: 2px solid #e0e7ff;
   border-radius: 12px;
   padding: 25px;
   transition: all 0.3s ease;
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.toursce-day-content:hover {
   box-shadow: 0 5px 20px rgba(26, 115, 232, 0.15);
   border-color: #1a73e8;
}

/* Enhanced Day Title */
.toursce-day-title {
   font-family: var(--font-primary);
   font-size: var(--font-size-xl);
   font-weight: var(--font-weight-semibold);
   color: #ffffff;
   background: linear-gradient(135deg, #1a73e8 0%, #1557b0 100%);
   margin: -25px -25px 20px -25px;
   padding: 15px 25px;
   border-radius: 10px 10px 0 0;
   display: flex;
   align-items: center;
   gap: 12px;
}

/* Mobile Day Number */
@media (max-width: 991px) {
   .toursce-day-title:before {
       content: attr(data-day);
       background: #ffffff;
       color: #1a73e8;
       width: 32px;
       height: 32px;
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
       font-weight: var(--font-weight-bold);
       font-size: var(--font-size-base);
       flex-shrink: 0;
   }
}

.toursce-day-title i {
   color: #ffffff;
   font-size: 20px;
}

/* Day Description Enhanced */
.toursce-day-description {
   font-family: var(--font-primary);
   font-size: var(--font-size-base);
   line-height: var(--line-height-relaxed);
}

.toursce-day-description p {
   margin-bottom: 15px;
}

.toursce-day-description p:last-child {
   margin-bottom: 0;
}

/* Lists inside day description */
.toursce-day-description ul {
   list-style: none;
   padding-left: 0;
   margin: 20px 0;
}

.toursce-day-description ul li {
   position: relative;
   padding-left: 32px;
   margin-bottom: 12px;
   padding-bottom: 12px;
   border-bottom: 1px solid #f3f4f6;
}

.toursce-day-description ul li:last-child {
   border-bottom: none;
   margin-bottom: 0;
   padding-bottom: 0;
}

.toursce-day-description ul li:before {
   content: "\f005";
   font-family: "Font Awesome 5 Free";
   font-weight: 900;
   position: absolute;
   left: 0;
   top: 2px;
   color: #1a73e8;
   font-size: 14px;
}

/* Tour Ends Marker */
.toursce-tour-ends {
   display: none;
}

@media (min-width: 992px) {
   .toursce-tour-ends {
       display: flex;
       align-items: center;
       justify-content: center;
       position: relative;
       margin-top: -20px;
       padding: 20px;
   }
   
   .toursce-tour-ends-marker {
       background: #10b981;
       color: #ffffff;
       padding: 10px 25px;
       border-radius: 25px;
       font-family: var(--font-primary);
       font-size: var(--font-size-sm);
       font-weight: var(--font-weight-semibold);
       letter-spacing: var(--letter-spacing-wide);
       box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
       position: relative;
       z-index: 1;
   }
   
   .toursce-tour-ends-marker i {
       margin-right: 8px;
   }
}

/* Updated Inclusions & Exclusions Styles */
.toursce-inclusions-box,
.toursce-exclusions-box {
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .toursce-inclusions-box {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
  }

  .toursce-exclusions-box {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
  }
}


.toursce-inc-exc-wrapper {
   background: #ffffff;
   border-radius: 12px;
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
   overflow: hidden;
   margin-top: 40px;
}

.toursce-inc-exc-header  {
   background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
   padding: 20px 25px;
   text-align: left;
}

.toursce-hotel-header-title {
   background: linear-gradient(135deg, #fb923c 0%, #ea580c 100%);
   padding: 20px 25px;
   text-align: left;
}

.toursce-inc-exc-header h3 {
   margin: 0;
   font-family: var(--font-primary);
   font-size: var(--font-size-2xl);
   font-weight: var(--font-weight-semibold);
   display: flex;
   align-items: center;
   gap: 12px;
}

.toursce-inc-exc-header h3:before {
   content: "\f00c";
   font-family: "Font Awesome 5 Free";
   font-weight: 900;
   font-size: 24px;
}

/* Remove subtitle styles since we don't need it */
.toursce-inc-exc-subtitle {
   display: none;
}

.toursce-inc-exc-content {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 0;
   background: #f8fafc;
}

/* Updated Inclusions Box */
.toursce-inclusions-box {
   background: #ffffff;
   padding: 30px;
   position: relative;
   border-right: 1px solid #e5e7eb;
}

.toursce-inclusions-box:before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 4px;
   background: #10b981;
}

/* Updated Exclusions Box */
.toursce-exclusions-box {
   background: #ffffff;
   padding: 30px;
   position: relative;
}

.toursce-exclusions-box:before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 4px;
   background: #ef4444;
}

/* Header Icons - Adjusted */
.toursce-inc-box-header {
   display: flex;
   align-items: center;
   gap: 15px;
   margin-bottom: 20px;
   padding-bottom: 15px;
   border-bottom: 2px solid #f3f4f6;
}

.toursce-inc-box-icon {
   width: 45px;
   height: 45px;
   background: #ecfdf5;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
}

.toursce-inc-box-icon i {
   font-size: 20px;
   color: #10b981;
}

.toursce-exc-box-icon {
   width: 45px;
   height: 45px;
   background: #fef2f2;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
}

.toursce-exc-box-icon i {
   font-size: 20px;
   color: #ef4444;
}

.toursce-inc-box-title {
   font-family: var(--font-primary);
   font-size: var(--font-size-xl);
   font-weight: var(--font-weight-semibold);
   color: #047857;
   margin: 0;
}

.toursce-exc-box-title {
   font-family: var(--font-primary);
   font-size: var(--font-size-xl);
   font-weight: var(--font-weight-semibold);
   color: #dc2626;
   margin: 0;
}

/* List Items - Keep existing styles */
.toursce-inc-items,
.toursce-exc-items {
   list-style: none;
   padding: 0;
   margin: 0;
}

.toursce-inc-items li,
.toursce-exc-items li {
   padding: 12px 0;
   border-bottom: 1px solid #f3f4f6;
   display: flex;
   align-items: flex-start;
   gap: 12px;
   font-family: var(--font-primary);
   font-size: var(--font-size-base);
   color: #374151;
   transition: all 0.3s ease;
}

.toursce-inc-items li:last-child,
.toursce-exc-items li:last-child {
   border-bottom: none;
}

.toursce-inc-items li:hover {
   padding-left: 8px;
   background: #f0fdf4;
}

.toursce-exc-items li:hover {
   padding-left: 8px;
   background: #fef2f2;
}

.toursce-inc-items li i {
   color: #10b981;
   font-size: 14px;
   margin-top: 3px;
   flex-shrink: 0;
}

.toursce-exc-items li i {
   color: #ef4444;
   font-size: 14px;
   margin-top: 3px;
   flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
   .toursce-inc-exc-header {
       padding: 18px 20px;
   }
   
   .toursce-inc-exc-header h3 {
       font-size: var(--font-size-xl);
       gap: 10px;
   }
   
   .toursce-inc-exc-header h3:before {
       font-size: 20px;
   }
   
   .toursce-inc-exc-content {
       grid-template-columns: 1fr;
   }
   
   .toursce-inclusions-box {
       border-right: none;
       border-bottom: 1px solid #e5e7eb;
   }
   
   .toursce-inclusions-box,
   .toursce-exclusions-box {
       padding: 25px 20px;
   }
}

/* Mevcut media query'yi değiştir - sadece bu kısımları güncelle */
@media (max-width: 991px) {
   .toursce-day-content {
       padding: 20px;
       border: 2px solid #e0e7ff;
       box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
       background: #ffffff;
   }
   
   .toursce-day-title {
       margin: -20px -20px 20px -20px;
       padding: 12px 20px;
       font-size: var(--font-size-lg);
       border-radius: 10px 10px 0 0;
   }
   .toursce-inc-exc-wrapper {padding:0px;background:#fff}
}

/* Day Tour için yeni stiller ekle */
.toursce-day-tour-wrapper {
   background: #ffffff;
   border: 2px solid #e0e7ff;
   border-radius: 12px;
   overflow: hidden;
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
   transition: all 0.3s ease;
}

.toursce-day-tour-wrapper:hover {
   box-shadow: 0 5px 20px rgba(26, 115, 232, 0.15);
   border-color: #1a73e8;
}

.toursce-day-tour-header {
   background: linear-gradient(135deg, #1a73e8 0%, #1557b0 100%);
   padding: 15px 25px;
   display: flex;
   align-items: center;
   gap: 12px;
}

.toursce-day-tour-header i {
   font-size: 20px;
   color: #ffffff;
}

.toursce-day-tour-header h3 {
   margin: 0;
   font-family: var(--font-primary);
   font-size: var(--font-size-xl);
   font-weight: var(--font-weight-semibold);
   color: #ffffff;
}

/* toursce-day-tour-content stilini güncelle */
.toursce-day-tour-content {
   padding: 25px;
   background: #ffffff;
   font-family: var(--font-primary);
   font-size: var(--font-size-base);
   line-height: var(--line-height-relaxed);
}

.toursce-day-tour-content p {
   margin-bottom: 15px;
}

.toursce-day-tour-content p:last-child {
   margin-bottom: 0;
}

/* Day tour içindeki listeler için */
.toursce-day-tour-content ul {
   list-style: none;
   padding-left: 0;
   margin: 20px 0;
}

.toursce-day-tour-content ul li {
   position: relative;
   padding-left: 10px;
   margin-bottom: 12px;
   padding-bottom: 12px;
   border-bottom: 1px solid #f3f4f6;
   margin-left: 20px;
}

.toursce-day-tour-content ul li:last-child {
   border-bottom: none;
   margin-bottom: 0;
   padding-bottom: 0;
}

.toursce-day-tour-content ul li:before {
   content: "\f005";
   font-family: "Font Awesome 5 Free";
   font-weight: 900;
   position: absolute;
   left: 0;
   top: 2px;
   color: #1a73e8;
   font-size: 14px;
}

@media (max-width: 767px) {
   .toursce-inc-exc-content {
       grid-template-columns: 1fr;
       gap: 20px;
   }
}
.toursce-day-description i, .toursce-day-tour-content i {color:#1a73e8;margin-right:5px}
.toursce-day-description li:before, .toursce-day-tour-content li:before {
    font-family: 'Font Awesome\ 5 Free';
    content: "\f005";
    margin: 0;
    color: #fbbf24;
    font-weight: 900;
}

.toursce-day-description ol, .toursce-day-description ul,
.toursce-day-tour-content ol, .toursce-day-tour-content ul {list-style:none}

@media (max-width: 768px) {
.toursce-day-description ol, .toursce-day-description ul,
.toursce-day-tour-content ol, .toursce-day-tour-content ul {padding-left:2px}
.toursce-day-description li:before, .toursce-day-tour-content li:before {padding-right:3px} 
}

/* ========================================
   TOURSCE PREMIUM HOTEL SECTION STYLES
   ======================================== */

/* Hotel Section Container */
.hotel-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.hotel-section-header h2 {
    font-family: var(--font-primary);
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    color: #051036;
    margin-bottom: 15px;
}

.hotel-section-header p {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
    color: #697488;
    max-width: 800px;
    margin: 0 auto;
}

.hotel-section-header strong {
    color: #051036;
    font-weight: var(--font-weight-semibold);
}

/* Hotels Container */
.hotels-container {
    position: relative;
    min-height: 300px;
}

/* Modern Loading State */
.hotels-skeleton-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.hotels-skeleton-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.4) 20%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0.4) 80%,
        transparent 100%
    );
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(25deg); }
    100% { transform: translateX(100%) rotate(25deg); }
}

.hotels-loading-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    margin: 0 auto 24px;
    border: 4px solid #e5e7eb;
    border-top-color: #3554d1;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.loading-text {
    font-family: var(--font-primary);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    color: #051036;
    margin-bottom: 8px;
}

.loading-subtext {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    color: #697488;
}

/* Premium Hotels Wrapper */
.toursce-hotels-premium {
    animation: fadeIn 0.5s ease-out;
}

/* Category Selector */
.toursce-category-selector {
    margin-bottom: 50px;
    background: linear-gradient(135deg, #1a73e8 0%, #1557b0 100%);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(53, 84, 209, 0.2);
}



.toursce-selector-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.toursce-selector-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-primary);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-medium);
    color: #ffffff;
    white-space: nowrap;
}

.toursce-selector-label i {
    font-size: 24px;
    opacity: 0.9;
}

.toursce-custom-select {
    position: relative;
    flex: 1;
}

@media (max-width: 768px) {
.toursce-custom-select .toursce-category-select {
   padding: 2px;
   }
.toursce-custom-select .toursce-select-arrow {
   right: 5px!important;
   }
}

.toursce-category-select {
    width: 100%;
    padding: 16px 50px 16px 24px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid transparent;
    border-radius: 14px;
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    color: #051036;
    cursor: pointer;
    appearance: none;
    transition: all 0.3s ease;
}

.toursce-category-select:hover {
    background: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.toursce-category-select:focus {
    outline: none;
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.toursce-select-arrow {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: #3554d1;
    pointer-events: none;
    transition: transform 0.3s ease;
    font-size: 14px;
}

.toursce-category-select:focus + .toursce-select-arrow {
    transform: translateY(-50%) rotate(180deg);
}

/* Hotels Container */
.toursce-hotels-container {
    position: relative;
}

.toursce-category-hotels {
    display: none;
}

.toursce-category-hotels.active {
    display: block;
    animation: fadeIn 0.4s ease-out;
}

/* Location Group */
.toursce-location-group {
    margin-bottom: 60px;
}

.toursce-location-header {
    margin-bottom: 30px;
}

.toursce-location-title {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 3px solid #e8ecf5;
}

.toursce-location-title i {
    font-size: 28px;
    color: #3554d1;
}

.toursce-location-title h3 {
    font-family: var(--font-primary);
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: #051036;
    margin: 0;
    flex: 1;
}

.toursce-location-count {
    background: #f3f4f6;
    color: #697488;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
}

/* Hotels Grid */
.toursce-hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}

/* Hotel Card */
.toursce-hotel-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.toursce-hotel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Hotel Image */
.toursce-hotel-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.toursce-hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.toursce-hotel-card:hover .toursce-hotel-image img {
    transform: scale(1.1);
}

/* Image Overlay */
.toursce-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0) 0%, 
        rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toursce-hotel-card:hover .toursce-image-overlay {
    opacity: 1;
}

.toursce-view-gallery {
    background: rgba(255, 255, 255, 0.95);
    color: #051036;
    border: none;
    padding: 14px 28px;
    border-radius: 30px;
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.toursce-hotel-card:hover .toursce-view-gallery {
    transform: translateY(0);
}

.toursce-view-gallery:hover {
    background: #ffffff;
    transform: scale(1.05);
}

/* Badges */
.toursce-photo-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: var(--font-size-sm);
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(10px);
}

.toursce-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.toursce-category-badge.standard {
    background: rgba(236, 72, 153, 0.9);
    color: #ffffff;
}

.toursce-category-badge.middle {
    background: rgba(168, 85, 247, 0.9);
    color: #ffffff;
}

.toursce-category-badge.high {
    background: rgba(251, 191, 36, 0.9);
    color: #051036;
}

/* Hotel Content */
.toursce-hotel-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.toursce-hotel-header {
    margin-bottom: 15px;
}

.toursce-hotel-name {
    font-family: var(--font-primary);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: #051036;
    margin: 0 0 10px 0;
    line-height: var(--line-height-tight);
}

.toursce-rating-display {
    display: flex;
    align-items: center;
    gap: 10px;
}

.toursce-stars {
    display: flex;
    gap: 3px;
}

.toursce-stars i {
    color: #fbbf24;
    font-size: 16px;
}

.toursce-stars i.far {
    color: #e5e7eb;
}

.toursce-rating-text {
    font-family: var(--font-primary);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: #051036;
}

.toursce-hotel-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #697488;
    font-size: var(--font-size-sm);
    margin-bottom: 12px;
}

.toursce-hotel-location i {
    color: #3554d1;
    font-size: 14px;
}

.toursce-hotel-description {
    font-family: var(--font-primary);
    font-size: var(--font-size-sm);
    line-height: var(--line-height-relaxed);
    color: #697488;
    margin-bottom: 20px;
    flex: 1;
}

/* Hotel Footer */
.toursce-hotel-footer {
    display: flex;
    gap: 12px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #f3f4f6;
}

.toursce-gallery-btn,
.toursce-tripadvisor-link {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 12px;
    font-family: var(--font-primary);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid #e8ecf5;
    background: #ffffff;
    color: #697488;
    cursor: pointer;
}

.toursce-gallery-btn:hover {
    background: #3554d1;
    color: #ffffff;
    border-color: #3554d1;
    transform: translateY(-2px);
}

.toursce-tripadvisor-link:hover {
    background: #00af87;
    color: #ffffff;
    border-color: #00af87;
    transform: translateY(-2px);
    text-decoration: none;
}

.toursce-gallery-btn i,
.toursce-tripadvisor-link i {
    font-size: 16px;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .toursce-hotels-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .toursce-category-selector {
        padding: 20px;
    }
    
    .toursce-selector-wrapper {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .toursce-selector-label {
        justify-content: center;
    }
    
    .toursce-custom-select {
        width: 100%;
    }
    
    .toursce-hotels-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .toursce-location-title {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .toursce-location-title h3 {
        font-size: var(--font-size-xl);
    }
    
    .toursce-hotel-content {
        padding: 20px;
    }
    
    .toursce-hotel-name {
        font-size: var(--font-size-lg);
    }
}

@media (max-width: 480px) {
    .hotel-section-header h2 {
        font-size: var(--font-size-2xl);
    }
    
    .toursce-hotel-footer {
        flex-direction: column;
        gap: 10px;
    }
    
    .toursce-gallery-btn,
    .toursce-tripadvisor-link {
        width: 100%;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Error State */
.toursce-error-message {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-radius: 20px;
    color: #991b1b;
}

.toursce-error-message i {
    font-size: 60px;
    margin-bottom: 24px;
    display: block;
    opacity: 0.7;
}

.toursce-error-message p {
    font-size: 18px;
    margin-bottom: 24px;
    font-weight: var(--font-weight-medium);
}

.toursce-retry-btn {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    font-weight: var(--font-weight-semibold);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.toursce-retry-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
}

.toursce-retry-btn i {
    font-size: 16px;
}
.gslide-title {display:none}

/* Hotel Section Header Styles */
.toursce-hotel-section-wrapper {
   margin: 50px 0;
}

.toursce-hotel-header-card {
   background: #ffffff;
   border-radius: 12px;
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
   overflow: hidden;
   margin-bottom: 30px;
}

.toursce-hotel-header-title h3 {
    font-family: var(--font-primary);
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	margin:0!important;
    color: #fef9c3;
}

.toursce-inc-exc-header h3 {
    font-family: var(--font-primary);
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	margin:0!important;
    color: #fff;
}

.toursce-hotel-header-title h3:before {
   content: "\f236";
   font-family: "Font Awesome 5 Free";
   font-weight: 900;
   font-size: 24px;
   margin-right:10px;
}

.toursce-hotel-header-content, .toursce-hotels-premium, .hotels-skeleton-modern {
   padding: 25px;
   background: #fff;
   border-left: 4px solid #fb923c;
}

@media (max-width: 768px) {
.toursce-hotel-header-content, .toursce-hotels-premium, .hotels-skeleton-modern {
   padding: 3px;
   }
}

.toursce-inc-exc-content {
   padding: 25px;
   background: #fff;
   border-left: 4px solid #374151;
}

.toursce-hotel-header-content p {
   margin: 0;
   font-family: var(--font-primary);
   font-size: var(--font-size-base);
   line-height: var(--line-height-relaxed);
   color: #4b5563;
}

.toursce-hotel-header-content strong {
   color: #FF5722;
   font-weight: var(--font-weight-semibold);
}

.toursce-hotel-header-content br {
   content: "";
   display: block;
   margin: 10px 0;
}

/* Hotels Container - Mevcut yapıyı bozmamak için */
#hotels-section {
   position: relative;
   min-height:850px;
}

/* Modern Loading State */
.hotels-skeleton-modern {
   background: #ffffff;
   padding: 60px 40px;
   text-align: center;
}

.hotels-loading-content {
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 15px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
   .toursce-hotel-header-title {
       padding: 18px 20px;
   }
   
   .toursce-hotel-header-title h3 {
       font-size: var(--font-size-xl);
       gap: 10px;
   }
   
   .toursce-hotel-header-title h3:before {
       font-size: 20px;
   }
   
   .toursce-hotel-header-content {
       padding: 20px;
   }
   
   .toursce-hotel-header-content p {
       font-size: var(--font-size-sm);
   }
   
   .hotels-skeleton-modern {
       padding: 40px 20px;
   }
}
/* Remarks Section Styles */
.toursce-remarks-section-wrapper {
    margin: 50px 0;
}

.toursce-remarks-header-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.toursce-remarks-header-title {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #ffffff;
    padding: 20px 25px;
    margin: 0;
}

.toursce-remarks-header-title h3 {
    font-family: var(--font-primary);
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 0 !important;
}

.toursce-remarks-header-title h3:before {
    content: "\f0a1"; /* Exclamation triangle icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 24px;
    margin-right: 10px;
}

.toursce-remarks-header-content {
    padding: 25px;
    background: #fff;
    border-left: 4px solid #ef4444;
}

.toursce-remarks-header-content p {
    margin: 0 0 20px 0;
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
    color: #4b5563;
}

.toursce-remarks-header-content strong {
    color: #dc2626;
    font-weight: var(--font-weight-semibold);
}

.toursce-remarks-header-content br {
    content: "";
    display: block;
    margin: 10px 0;
}

/* Remarks List */
.toursce-remarks-list {
    background: #fef2f2;
    border-radius: 8px;
    padding: 20px;
}

.toursce-remarks-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toursce-remark-item {
    position: relative;
    padding: 12px 20px 12px 40px;
    margin-bottom: 12px;
    background: #ffffff;
    border-radius: 6px;
    border-left: 3px solid #fca5a5;
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
    color: #374151;
    transition: all 0.3s ease;
}

.toursce-remark-item:last-child {
    margin-bottom: 0;
}

/* Star icon for all items */
.toursce-remark-item:before {
    content: "\f005"; /* Star icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #ef4444;
}

/* Hover effect */
.toursce-remark-item:hover {
    border-left-color: #dc2626;
    box-shadow: 0 2px 6px rgba(239, 68, 68, 0.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .toursce-remarks-header-title {
        padding: 18px 20px;
    }
    
    .toursce-remarks-header-title h3 {
        font-size: var(--font-size-xl);
    }
    
    .toursce-remarks-header-title h3:before {
        font-size: 20px;
    }
    
    .toursce-remarks-header-content {
        padding: 20px;
    }
    
    .toursce-remarks-header-content p {
        font-size: var(--font-size-sm);
        margin-bottom: 15px;
    }
    
    .toursce-remarks-list {
        padding: 15px;
    }
    
    .toursce-remark-item {
        padding: 10px 15px 10px 35px;
        font-size: var(--font-size-sm);
        margin-bottom: 10px;
    }
    
    .toursce-remark-item:before {
        left: 10px;
        font-size: 12px;
    }
}
/* More Details Accordion Styles */
.toursce-details-accordion-wrapper {
    margin: 50px 0;
}

.toursce-details-accordion {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Accordion Header */
.toursce-details-accordion-header {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    user-select: none;
}

.toursce-details-accordion-header:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.toursce-details-accordion-header h3, .toursce-remarks-header-title h3 {
    font-family: var(--font-primary);
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color:#ffffff;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.toursce-details-accordion-header h3 i {
    font-size: 24px;
}

/* Accordion Arrow */
.toursce-accordion-arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.toursce-details-accordion.active .toursce-accordion-arrow {
    transform: rotate(180deg);
}

/* Accordion Content */
.toursce-details-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.toursce-details-accordion.active .toursce-details-accordion-content {
    max-height: 2000px; /* Adjust based on your content */
}

.toursce-details-inner {
    padding: 25px;
    border-left: 4px solid #3b82f6;
    background: #fff;
}

/* FAQ Link Section */
.toursce-faq-link-wrapper {
    margin-bottom: 25px;
    text-align: center;
}

.toursce-faq-link {
    text-decoration: none;
    display: inline-block;
}

.toursce-faq-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #ffffff;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    letter-spacing: var(--letter-spacing-wide);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
    transition: all 0.3s ease;
}

.toursce-faq-btn:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
    color: #ffffff;
}

.toursce-faq-btn i {
    font-size: 18px;
}

/* Details Content */
.toursce-details-content {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
    color: #374151;
}

.toursce-details-content p {
    margin-bottom: 15px;
}

.toursce-details-content p:last-child {
    margin-bottom: 0;
}

.toursce-details-content ul,
.toursce-details-content ol {
    margin: 15px 0;
    padding-left: 25px;
}

.toursce-details-content li {
    margin-bottom: 8px;
}

/* Smooth animation for content */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.toursce-details-accordion.active .toursce-details-inner {
    animation: fadeIn 0.4s ease;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .toursce-details-accordion-header {
        padding: 18px 20px;
    }
    
    .toursce-details-accordion-header h3 {
        font-size: var(--font-size-xl);
        gap: 10px;
    }
    
    .toursce-details-accordion-header h3 i {
        font-size: 20px;
    }
    
    .toursce-accordion-arrow {
        font-size: 18px;
    }
    
    .toursce-details-inner {
        padding: 20px;
    }
    
    .toursce-faq-btn {
        padding: 12px 24px;
        font-size: var(--font-size-sm);
    }
    
    .toursce-faq-btn i {
        font-size: 16px;
    }
    
    .toursce-details-content {
        font-size: var(--font-size-sm);
    }
}
.toursce-special-offer {
   background: linear-gradient(135deg, #f59e0b 0%, #dc2626 100%);
   color: #ffffff;
   padding: 15px 20px;
   text-align: center;
   font-family: var(--font-primary);
   font-size: var(--font-size-base);
   font-weight: var(--font-weight-semibold);
   letter-spacing: var(--letter-spacing-normal);
   position: relative;
   overflow: hidden;
   margin-bottom: -1px;
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 10px;
}

/* Animated background effect */
.toursce-special-offer:before {
   content: '';
   position: absolute;
   top: 0;
   left: -100%;
   width: 100%;
   height: 100%;
   background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
   animation: toursce-shine 3s infinite;
}

@keyframes toursce-shine {
   0% { left: -100%; }
   100% { left: 100%; }
}

/* Fire icon animation */
.toursce-special-offer i {
   font-size: 18px;
   animation: toursce-flicker 1.5s ease-in-out infinite alternate;
}

@keyframes toursce-flicker {
   0% { 
       opacity: 1;
       transform: scale(1) rotate(-5deg);
   }
   50% {
       opacity: 0.8;
       transform: scale(1.1) rotate(0deg);
   }
   100% { 
       opacity: 1;
       transform: scale(1) rotate(5deg);
   }
}

/* Text shadow for better readability */
.toursce-special-offer {
   text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Pulse effect on hover */
.toursce-special-offer:hover {
   animation: toursce-pulse 0.5s ease-in-out;
}

@keyframes toursce-pulse {
   0% { transform: scale(1); }
   50% { transform: scale(1.02); }
   100% { transform: scale(1); }
}

/* Mobile responsive */
@media (max-width: 768px) {
   .toursce-special-offer {
       padding: 12px 15px;
       font-size: var(--font-size-sm);
   }
   
   .toursce-special-offer i {
       font-size: 16px;
   }
}

/* OR Divider Styles */
.toursce-or-divider {
   position: relative;
   margin: 24px 0;
   text-align: center;
   display: flex;
   align-items: center;
   justify-content: center;
}

/* Line style */
.toursce-or-divider::before,
.toursce-or-divider::after {
   content: '';
   flex: 1;
   height: 1px;
   background: linear-gradient(90deg, 
       transparent 0%, 
       rgba(0, 0, 0, 0.12) 20%, 
       rgba(0, 0, 0, 0.12) 80%, 
       transparent 100%
   );
}

/* OR text container */
.toursce-or-text {
   margin: 0 16px;
   padding: 8px 16px;
   background: #ffffff;
   border-radius: 24px;
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
   font-size: var(--font-size-sm);
   font-weight: var(--font-weight-medium);
   letter-spacing: var(--letter-spacing-wider);
   text-transform: uppercase;
   color: #6b7280;
   position: relative;
   z-index: 1;
}

/* Similar Tours Section - Modern Grid Design */
.similar-tours-section {
    background: #f8f9fa;
    position: relative;
}

.similar-tours-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.similar-tours-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.similar-tours-title {
    font-size: 48px;
    font-weight: 800;
    color: #1a202c;
    margin: 0 0 20px 0;
    letter-spacing: -1px;
}

.similar-tours-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #64748b;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Grid Layout - 5 columns on desktop */
.similar-tours-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

/* Tour Card Design */
.similar-tour-card {
    text-decoration: none;
    display: block;
    opacity: 0;
    animation: fadeInScale 0.6s ease forwards;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.tour-card-wrapper {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.similar-tour-card:hover .tour-card-wrapper {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Fixed Height Image Container */
.tour-image-container {
    position: relative;
    height: 160px;
    overflow: hidden;
    background: #e2e8f0;
}

.tour-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.similar-tour-card:hover .tour-image {
    transform: scale(1.15);
}

/* Featured Badge */
.tour-badge-featured {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

/* Card Body - Flexible Height */
.tour-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tour-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 16px 0;
    line-height: 1.4;
    min-height: 50px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tour-card-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.tour-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #64748b;
}

.tour-meta-item i {
    color: #3b82f6;
    width: 16px;
    text-align: center;
}

.tour-rating {
    margin-top: auto;
    padding-top: 16px;
}

.tour-stars {
    display: flex;
    gap: 4px;
}

.tour-stars i {
    color: #fbbf24;
    font-size: 16px;
}

/* Card Footer - Fixed at Bottom */
.tour-card-footer {
    padding: 20px 24px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}
.tour-price .price {color:#2563eb!important}
.tour-price {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-label {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tour-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #3b82f6;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.similar-tour-card:hover .tour-cta {
    gap: 10px;
    color: #2563eb;
}

/* Load More Button */
.load-more-wrapper {
    text-align: center;
    margin-top: 80px;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 50px;
    background: #1a202c;
    color: #ffffff;
    border: none;
    border-radius: 60px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.load-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.load-more-btn:hover::before {
    left: 100%;
}

.load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(26, 32, 44, 0.3);
}

.load-more-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.load-more-btn .spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* Responsive Design */
@media (max-width: 1400px) {
    .similar-tours-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .similar-tours-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .similar-tours-section {
        padding: 60px 0;
    }
    
    .similar-tours-title {
        font-size: 32px;
    }
    
    .similar-tours-subtitle {
        font-size: 16px;
    }
    
    .similar-tours-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .tour-image-container {
        height: 160px;
    }
    
    .tour-card-body {
        padding: 16px;
    }
    
    .tour-card-footer {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .similar-tours-grid {
        grid-template-columns: 1fr;
    }
}
/* Container Styles - Applied to all person-count-containers */
.person-count-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    padding: 10px 15px;
    margin-bottom: 10px;
    border: 1px solid #e9ecef;
    transition: all 0.2s ease;
}

.person-count-container:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-color: #dee2e6;
}

/* Label Styles */
.person-label,
.person-count-container > label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-size: 14px;
}

.label-main,
.extra-option-name {
    font-weight: 600;
    color: #212529;
    font-size: 17px;
}

.person-label small {
    font-size: 12px;
    color: #6c757d;
    font-weight: 400;
}

/* Extra Options Specific Styles */
.extra-option,
.extra-hotel-option {
    position: relative;
}

.extra-option .extra-option-name,
.extra-hotel-option .extra-option-name {
    flex: 1;
    min-width: 120px;
}

/* Price display in extra options */
.extra-option .woocommerce-Price-amount {
    margin-right: 15px;
    color: #007bff;
    font-weight: 600 !important;
}

/* Quantity Wrapper */
.quantity-wrapper,
.quantity {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    border-radius: 6px;
    padding: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Handle plus-wrapper in hotel options */
.quantity .plus-wrapper {
    display: contents;
}

/* Quantity Buttons */
.qty-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: #e9ecef;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 18px;
    font-weight: 600;
    color: #495057;
    user-select: none;
}

.qty-btn:hover {
    background: #007bff;
    color: white;
    transform: scale(1.05);
}

.qty-btn:active {
    transform: scale(0.95);
}

.qty-btn.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

/* Input Styles */
.wc-booking-persons,
.extra-option-qty,
.hotel-option-qty {
    width: 40px !important;
    text-align: center;
    border: none !important;
    font-size: 16px;
    font-weight: 600;
    color: #212529;
    background: transparent !important;
    -moz-appearance: textfield;
    padding: 0 !important;
    margin: 0 !important;
    outline: none !important;
}

.wc-booking-persons::-webkit-outer-spin-button,
.wc-booking-persons::-webkit-inner-spin-button,
.extra-option-qty::-webkit-outer-spin-button,
.extra-option-qty::-webkit-inner-spin-button,
.hotel-option-qty::-webkit-outer-spin-button,
.hotel-option-qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Warning Styles */
.uyari {
    display: none;
    margin: -5px 0 15px 0;
    padding: 10px 15px;
    background: #fff3cd;
    border-radius: 6px;
    animation: slideDown 0.3s ease;
}

.uyari.show {
    display: block;
}

.uyari hr {
    display: none;
}

.text-warning-custom {
    color: #856404;
    font-size: 12px;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 6px;
}

.text-warning-custom::before {
    content: "ℹ️";
    font-size: 14px;
}

/* Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Removed different colors for person types - all use same style */

/* Extra options container styling */
.extra-options-content {
    margin-top: 20px;
}

.extra-options-content > strong {
    display: inline-block;
    margin-bottom: 10px;
}

.extra-options-content hr {
    margin: 10px 0 15px 0;
    border-top: 1px solid #dee2e6;
}

/* Room types container */
#room_types_container {
    margin-top: 15px;
}

/* Hotel options specific */
.extra-hotel-option {
    background: #f0f8ff;
    border-color: #b8daff;
}

.extra-hotel-option:hover {
    background: #e7f3ff;
    border-color: #9ec5fe;
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .person-count-container {
        padding: 8px 12px;
        gap: 10px;
    }
    
    .person-label,
    .person-count-container > label {
        font-size: 13px;
        width: 100%;
    }
    
    .person-label small {
        font-size: 11px;
    }
    
    .quantity-wrapper,
    .quantity {
        margin-left: auto;
    }
    
    /* Extra options mobile */
    .extra-option {
        gap: 8px;
    }
    
    .extra-option .woocommerce-Price-amount {
        margin-right: 0;
        margin-bottom: 5px;
    }
    
    .extra-option .quantity,
    .extra-hotel-option .quantity {
        width: 100%;
        justify-content: center;
    }
    
    .qty-btn {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
    
    .wc-booking-persons,
    .extra-option-qty,
    .hotel-option-qty {
        width: 36px !important;
        font-size: 15px;
    }
    
    .text-warning-custom {
        font-size: 11px;
    }
}

/* Fix for extra padding in col-lg-4 */
.col-lg-4 .person-count-container:first-child {
    margin-top: 0;
}

.col-lg-4 .person-count-container:last-child {
    margin-bottom: 0;
}

/* Fix spacing for quantity buttons */
.qty-btn.minus::after {
    content: "−";
}

.qty-btn.plus::after {
    content: "+";
}
/* Custom Booking Cost Output Styles */


/* Hotel Options Section - Elegant Professional Design */

/* Main container */
.hotel-options-section {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 10px;
    margin: 24px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Subtle gradient overlay */
.hotel-options-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(180deg, rgba(0, 123, 255, 0.02) 0%, transparent 100%);
    pointer-events: none;
}

.hotel-options-section:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

/* Section title - More prominent */
.hotel-options-section > strong.text-18 {
    display: flex;
    align-items: center;
    font-size: 24px;
    color: #0056b3;
    margin: 16px 6px 20px 6px;
    font-weight: 700;
    letter-spacing: -0.02em;
    position: relative;
    padding: 16px 20px;
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f1ff 100%);
    border-radius: 12px;
    border-left: 4px solid #007bff;
}


/* HR separator - minimal design */
.hotel-options-section hr {
    margin: 16px 0 20px 0;
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 123, 255, 0.1) 20%, 
        rgba(0, 123, 255, 0.1) 80%, 
        transparent 100%
    );
}

/* Checkbox containers - Card style - Clickable entire area */
.hotel-options-section .d-flex.items-center {
    padding: 16px 20px;
    background: #f8fafb;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    margin-bottom: 12px;
}

.hotel-options-section .d-flex.items-center::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(0, 123, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hotel-options-section .d-flex.items-center:hover {
    border-color: rgba(0, 123, 255, 0.3);
    background: #ffffff;
    transform: translateX(4px);
}

.hotel-options-section .d-flex.items-center:hover::before {
    opacity: 1;
}

/* Beautiful Custom Checkbox */
.form-checkbox {
    position: relative;
    display: inline-block;
}

.form-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 24px;
    height: 24px;
    z-index: 2;
    margin: 0;
}

.form-checkbox__mark {
    width: 24px;
    height: 24px;
    background: #ffffff;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    pointer-events: none;
}

/* Hover effect */
.form-checkbox:hover .form-checkbox__mark {
    border-color: #007bff;
    background: #f0f7ff;
}

/* Checked state */
.form-checkbox input:checked ~ .form-checkbox__mark {
    background: #007bff;
    border-color: #007bff;
    animation: checkboxBounce 0.4s ease;
}

@keyframes checkboxBounce {
    0% { transform: scale(1); }
    30% { transform: scale(0.9); }
    60% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Checkmark animation */
.form-checkbox__icon {
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-checkbox input:checked ~ .form-checkbox__mark .form-checkbox__icon {
    opacity: 1;
    transform: scale(1);
}

.form-checkbox__icon svg {
    width: 14px;
    height: 14px;
}

.form-checkbox__icon svg path {
    fill: white;
}

/* Ripple effect on click */
.form-checkbox__mark::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: rgba(0, 123, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
}

.form-checkbox input:checked ~ .form-checkbox__mark::after {
    animation: ripple 0.6s ease-out;
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* Checkbox labels - with proper spacing */
.hotel-options-section label[for^="hotel_booking"] {
    font-size: 16px;
    color: #374151;
    font-weight: 500;
    margin: 0 0 0 12px;
    cursor: pointer;
    user-select: none;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
    flex: 1;
}

.hotel-options-section .d-flex.items-center:hover label {
    color: #1a1a1a;
}

/* Selected checkbox container */
.hotel-options-section .d-flex.items-center:has(input:checked) {
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f1ff 100%);
    border-color: #007bff;
}

/* Suggestion messages - Hidden by default */
#hotel_own_booking_suggestion,
#hotel_suggestion_message {
    margin: -8px 20px 16px 20px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    border-radius: 10px;
    color: #0056b3;
    font-size: 13px;
    line-height: 1.5;
    border-left: 3px solid #007bff;
    position: relative;
    overflow: hidden;
    display: none;
    animation: slideDown 0.3s ease;
}

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

#hotel_own_booking_suggestion:not(:empty),
#hotel_suggestion_message:not(:empty) {
    display: block;
}

#hotel_own_booking_suggestion::before,
#hotel_suggestion_message::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.03) 0%, transparent 70%);
}

/* Category container */
#hotel_category_container {
    background: linear-gradient(135deg, #f8fafb 0%, #ffffff 100%);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    margin: 0 10px;
}

/* Modern select dropdown */
.wc-booking-hotel-category {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 500;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    background: #ffffff;
    color: #374151;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath fill='%236b7280' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 48px;
    letter-spacing: -0.01em;
}

.wc-booking-hotel-category:hover {
    border-color: #007bff;
    background-color: #f9fafb;
}

.wc-booking-hotel-category:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1);
    background-color: #ffffff;
}

/* Category link button */
.hotel-category-action {
    margin-top: 20px;
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.view-hotels-link {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white !important;
    border-radius: 10px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.01em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.25);
}

.view-hotels-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    transition: left 0.6s ease;
}

.view-hotels-link:hover::before {
    left: 100%;
}

.view-hotels-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.35);
}

.view-hotels-link strong {
    font-weight: 700;
    margin: 0 5px;
}

.view-hotels-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.view-hotels-link:hover i {
    transform: translateX(4px);
}

/* Room types container */
#room_types_container {
    display: grid;
    gap: 16px;
}

/* Hotel room selection cards */
.extra-hotel-option {
    background: #ffffff !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.extra-hotel-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 123, 255, 0.05) 50%, transparent 100%);
    transition: left 0.8s ease;
}

.extra-hotel-option:hover::before {
    left: 100%;
}

.extra-hotel-option:hover {
    border-color: #007bff !important;
    background: #f9fafb !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Room type name */
.extra-option-name {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 16px;
    letter-spacing: -0.01em;
    position: relative;
    padding-left: 24px;
}

/* Elegant room type indicators */
.extra-option-name::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: #007bff;
    border-radius: 2px;
}

/* Different colors for room types */
.extra-hotel-option:has([id*="single"]) .extra-option-name::before {
    background: #10b981;
}

.extra-hotel-option:has([id*="double"]) .extra-option-name::before {
    background: #007bff;
}

.extra-hotel-option:has([id*="triple"]) .extra-option-name::before {
    background: #8b5cf6;
}

.extra-hotel-option:has([id*="family"]) .extra-option-name::before {
    background: #f59e0b;
}

/* Quantity controls */
.extra-hotel-option .quantity {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f3f4f6;
    border-radius: 10px;
    padding: 6px;
}

.extra-hotel-option .qty-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 20px;
    font-weight: 500;
    color: #6b7280;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.extra-hotel-option .qty-btn:hover {
    background: #007bff;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
}

.extra-hotel-option .qty-btn:active {
    transform: scale(0.95);
}

.extra-hotel-option .qty-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: #f3f4f6;
    box-shadow: none;
}

/* Hotel quantity input */
.hotel-option-qty {
    width: 48px !important;
    text-align: center;
    border: none !important;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    background: transparent !important;
    padding: 0 !important;
}

/* Fix for quantity button content */
.qty-btn.minus::after {
    content: "−";
}

.qty-btn.plus::after {
    content: "+";
}

/* Plus wrapper fix */
.extra-hotel-option .plus-wrapper {
    display: contents;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .hotel-options-section {
        padding: 10px 8px;
    }
    
    .hotel-options-section > strong.text-18 {
        font-size: 20px;
        padding: 12px 16px;
    }
    
    .extra-hotel-option {
        gap: 16px;
        padding: 16px;
    }
    
    .extra-hotel-option .quantity {
        width: 100%;
        justify-content: center;
    }
    
    .view-hotels-link {
        width: 100%;
        justify-content: center;
    }
    
    .form-checkbox__mark {
        width: 20px;
        height: 20px;
    }
    
    .wc-booking-hotel-category {
        font-size: 15px;
        padding: 14px 16px;
    }
}

/* Animation for room types appearing */
.extra-hotel-option {
    animation: slideInFade 0.4s ease forwards;
    opacity: 0;
}

.extra-hotel-option:nth-child(1) { animation-delay: 0.1s; }
.extra-hotel-option:nth-child(2) { animation-delay: 0.15s; }
.extra-hotel-option:nth-child(3) { animation-delay: 0.2s; }
.extra-hotel-option:nth-child(4) { animation-delay: 0.25s; }

@keyframes slideInFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading overlay */
#room_types_container.loading {
    position: relative;
    min-height: 100px;
}

#room_types_container.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid #f3f4f6;
    border-top: 3px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* Deposit Option Styles */

/* Deposit option label */
.deposit-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
    border: 2px solid #22c55e;
    border-radius: 12px;
    padding: 18px 24px;
    margin: 20px 0 12px 0;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    font-size: 16px;
    font-weight: 600;
    color: #14532d;
    letter-spacing: -0.01em;
}

/* Hover state */
.deposit-option:hover {
    background: linear-gradient(135deg, #dcfce7 0%, #f0fdf4 100%);
    border-color: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.15);
}

/* Active/Selected state */
.deposit-option.selected,
.deposit-option:active {
    background: linear-gradient(135deg, #dcfce7 0%, #d1fae5 100%);
    border-color: #16a34a;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1);
}


/* Credit card icon - Font Awesome */
.deposit-option::after {
    content: '\f09d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #22c55e;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.deposit-option:hover::after {
    opacity: 0.5;
    transform: translateY(-50%) scale(1.1);
}

/* Deposit amount styling */
#deposit-amount {
    font-size: 20px;
    font-weight: 700;
    color: #22c55e;
    margin-left: auto;
    margin-right: 60px;
    display: flex;
    align-items: baseline;
}

#deposit-amount .woocommerce-Price-amount {
    color: #16a34a;
    position: relative;
}

/* Currency symbol */
#deposit-amount .woocommerce-Price-currencySymbol {
    font-size: 16px;
    font-weight: 600;
    margin-left: 4px;
    opacity: 0.9;
}

/* Deposit suffix */
#deposit-suffix {
    font-size: 14px;
    font-weight: 500;
    color: #15803d;
    margin-left: 8px;
    opacity: 0.8;
}

/* Deposit message - Soft elegant design */
.deposit-message {
    display: block;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 14px 18px;
    margin: 0 0 20px 0;
    color: #6b7280;
    font-size: 13px;
    line-height: 1.5;
    position: relative;
    transition: all 0.3s ease;
    font-weight: 400;
}

/* Soft gradient on hover */
.deposit-message:hover {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    border-color: #d1d5db;
    color: #4b5563;
}

/* Subtle left accent */
.deposit-message.wc-deposits-notice {
    border-left: 3px solid #d1d5db;
    padding-left: 18px;
}

/* Remove icon styling */
.deposit-message::before {
    display: none;
}

/* Animation for message appearance - more subtle */
.deposit-message {
    animation: softFadeIn 0.4s ease forwards;
}

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

/* Container for deposit section */
.wc-deposits-wrapper,
.wc-deposits-options-form {
    background: #fafbfc;
    border-radius: 14px;
    padding: 20px;
    margin: 20px 0;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

/* Radio button styling if inside deposit option */
.deposit-option input[type="radio"] {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    cursor: pointer;
    opacity: 0;
    z-index: 2;
}

.deposit-option input[type="radio"] + label {
    padding-left: 36px;
}

/* Custom radio button visual */
.deposit-option input[type="radio"]::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid #22c55e;
    border-radius: 50%;
    background: white;
    transition: all 0.3s ease;
    opacity: 1;
}

.deposit-option input[type="radio"]:checked::before {
    background: #22c55e;
    box-shadow: inset 0 0 0 4px white;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .deposit-option {
        padding: 16px 20px;
        font-size: 15px;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    #deposit-amount {
        font-size: 18px;
        margin-right: 40px;
    }
    
    .deposit-option::after {
        font-size: 18px;
        right: 16px;
    }
    
    .deposit-message {
        font-size: 12px;
        padding: 12px 16px;
    }
    
    .deposit-message.wc-deposits-notice {
        padding-left: 16px;
    }
}

/* Loading state */
.deposit-option.loading {
    opacity: 0.6;
    pointer-events: none;
}

.deposit-option.loading::after {
    content: '';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid #22c55e;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: translateY(-50%) rotate(360deg); }
}

/* Success state */
.deposit-option.success {
    background: linear-gradient(135deg, #d1fae5 0%, #bbf7d0 100%);
    border-color: #16a34a;
}

.deposit-option.success::after {
    content: '✓';
    font-size: 20px;
    color: #16a34a;
    opacity: 1;
}

/* Error state */
.deposit-option.error {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border-color: #dc2626;
    color: #7f1d1d;
}

.deposit-option.error #deposit-amount {
    color: #dc2626;
}

/* Tooltip for deposit information */
.deposit-option[data-tooltip]::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #1f2937;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 400;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    margin-bottom: 8px;
}

.deposit-option[data-tooltip]:hover::before {
    opacity: 1;
}


.extra-options-content .extra-option .woocommerce-Price-amount {display:grid}
.extra-options-content .extra-option del .woocommerce-Price-amount {color:#5c5c5c}

/* Extra Options (Add-ons) Section - Simplified to avoid conflicts */

/* Main container */
.extra-options-section {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 10px;
    margin: 24px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Subtle gradient overlay */
.extra-options-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(180deg, rgba(244, 63, 94, 0.02) 0%, transparent 100%);
    pointer-events: none;
}

/* Section title - Like Hotel Selection but red */
.extra-options-section strong.text-18,
.extra-options-skeleton strong.text-18,
.extra-options-content strong.text-18 {
    display: inline-flex;
    align-items: center;
    font-size: 24px;
    color: #dc2626;
    margin: 16px 6px 20px 6px;
    font-weight: 700;
    letter-spacing: -0.02em;
    position: relative;
    padding: 16px 20px;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-radius: 12px;
    border-left: 4px solid #dc2626;
}

/* Per person text - next to title */
.extra-options-section span.text-14:first-of-type,
.extra-options-skeleton span.text-14:first-of-type,
.extra-options-content span.text-14:first-of-type {
    color: #991b1b;
    font-size: 14px;
    font-weight: 400;
    font-style: italic;
    margin-left: 8px;
    opacity: 0.8;
}

/* HR separator */
.extra-options-section hr {
    margin: 16px 0 20px 0;
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(244, 63, 94, 0.1) 20%, 
        rgba(244, 63, 94, 0.1) 80%, 
        transparent 100%
    );
}

/* Skeleton loader animations */
.extra-options-skeleton .person-count-container {
    animation: skeletonPulse 1.5s ease-in-out infinite;
}

@keyframes skeletonPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.6; }
}

.extra-options-skeleton .extra-option-name {
    background: linear-gradient(90deg, #f3f4f6 0%, #e5e7eb 50%, #f3f4f6 100%);
    background-size: 200% 100%;
    animation: skeletonShimmer 1.5s ease-in-out infinite;
    height: 20px;
    border-radius: 6px;
}

@keyframes skeletonShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Extra option specific styles - only what's different */
.extra-option {
    background: #fff5f5 !important;
    border-color: #fee2e2 !important;
}

.extra-option:hover {
    border-color: #fca5a5 !important;
    background: #fef2f2 !important;
}

/* Option name with red theme */
.extra-option .extra-option-name {
    color: #991b1b !important;
    position: relative;
    padding-left: 16px;
}

/* Small red dot indicator */
.extra-option .extra-option-name::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #f43f5e;
    border-radius: 50%;
    opacity: 0.7;
}

/* Price styling for extra options */
.extra-option > span.woocommerce-Price-amount {
    color: #dc2626 !important;
    font-weight: 600 !important;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Discount styling */
.extra-option del .woocommerce-Price-amount {
    color: #9ca3af !important;
    font-weight: 400 !important;
    font-size: 14px !important;
}

/* Quantity buttons red theme */
.extra-option .qty-btn {
    background: #fee2e2 !important;
    color: #dc2626 !important;
}

.extra-option .qty-btn:hover:not(.disabled) {
    background: #f43f5e !important;
    color: white !important;
}

/* Quantity input red theme */
.extra-option .extra-option-qty {
    color: #991b1b !important;
}

/* Selected state */
.extra-option:has(.extra-option-qty:not([value="0"])) {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%) !important;
    border-color: #f87171 !important;
}

/* Animation for content appearing */
.extra-options-content {
    animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Individual extra option animation */
.extra-options-content .extra-option {
    opacity: 0;
    animation: slideInFade 0.4s ease forwards;
}

.extra-options-content .extra-option:nth-child(2) { animation-delay: 0.1s; }
.extra-options-content .extra-option:nth-child(3) { animation-delay: 0.15s; }
.extra-options-content .extra-option:nth-child(4) { animation-delay: 0.2s; }
.extra-options-content .extra-option:nth-child(5) { animation-delay: 0.25s; }

@keyframes slideInFade {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Discount badge */
.extra-option:has(del)::after {
    content: "SALE";
    position: absolute;
    top: -2px;
    right: -2px;
    background: #dc2626;
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 0 10px 0 10px;
    letter-spacing: 0.5px;
}

/* Error state */
.extra-options-section.error {
    background: #fef2f2;
    border-color: #fca5a5;
}

/* Loading spinner */
.extra-options-section.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid #fee2e2;
    border-top: 3px solid #f43f5e;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Main button styling */
.wc-bookings-booking-form-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white !important;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.01em;
    border: none;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    text-decoration: none !important;
}

/* Shine effect overlay */
.wc-bookings-booking-form-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.2) 50%, 
        transparent 100%
    );
    transition: left 0.6s ease;
}

/* Hover state */
.wc-bookings-booking-form-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
    background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
}

.wc-bookings-booking-form-button:hover:not(:disabled)::before {
    left: 100%;
}

/* Active/Click state */
.wc-bookings-booking-form-button:active:not(:disabled) {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 123, 255, 0.3);
}

/* Icon styling */
.wc-bookings-booking-form-button i {
    transition: all 0.3s ease;
}

/* Shopping cart icon */
.wc-bookings-booking-form-button .fa-shopping-cart {
    font-size: 16px;
    margin-right: 8px;
}

/* Arrow icon */
.wc-bookings-booking-form-button .icon-arrow-top-right {
    font-size: 14px;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

/* Hover animation for arrow */
.wc-bookings-booking-form-button:hover:not(:disabled) .icon-arrow-top-right {
    transform: translate(3px, -3px);
}

/* Disabled state */
.wc-bookings-booking-form-button:disabled,
.wc-bookings-booking-form-button.disabled {
    background: #e5e7eb !important;
    color: #9ca3af !important;
    cursor: not-allowed;
    box-shadow: none;
    opacity: 0.7;
}

.wc-bookings-booking-form-button:disabled i,
.wc-bookings-booking-form-button.disabled i {
    color: #9ca3af !important;
}

/* Loading state */
.wc-bookings-booking-form-button.loading {
    color: transparent !important;
    pointer-events: none;
}

.wc-bookings-booking-form-button.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid white;
    border-radius: 50%;
    border-top-color: transparent;
    animation: buttonSpin 0.8s linear infinite;
}

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

/* Success state animation */
.wc-bookings-booking-form-button.success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.wc-bookings-booking-form-button.success .fa-shopping-cart {
    animation: cartBounce 0.5s ease;
}

@keyframes cartBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Pulse animation when enabled */
@keyframes buttonPulse {
    0% {
        box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(0, 123, 255, 0.5);
    }
    100% {
        box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    }
}

.wc-bookings-booking-form-button:not(:disabled):not(.loading) {
    animation: buttonPulse 2s ease-in-out infinite;
}

/* Alternative style - Gradient border */
.wc-bookings-booking-form-button.outline {
    background: white;
    color: #007bff !important;
    position: relative;
    z-index: 1;
}

.wc-bookings-booking-form-button.outline::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border-radius: 12px;
    z-index: -1;
}

.wc-bookings-booking-form-button.outline::after {
    content: '';
    position: absolute;
    inset: 0;
    background: white;
    border-radius: 10px;
    z-index: -1;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .wc-bookings-booking-form-button {
        padding: 16px 24px;
        font-size: 16px;
        border-radius: 10px;
    }
    
    .wc-bookings-booking-form-button .fa-shopping-cart {
        font-size: 15px;
    }
    
    .wc-bookings-booking-form-button .icon-arrow-top-right {
        font-size: 13px;
    }
}

/* Remove default button styles */
.wc-bookings-booking-form-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    border: none;
}

.wc-bookings-booking-form-button:focus:not(:disabled) {
    outline: none;
    box-shadow: 
        0 4px 15px rgba(0, 123, 255, 0.3),
        0 0 0 4px rgba(0, 123, 255, 0.1);
}

/* Container for proper spacing */
.wc-bookings-booking-form-button-wrapper {
    margin-top: 24px;
    margin-bottom: 20px;
}

/* Sticky button option */
.wc-bookings-booking-form-button.sticky {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 500px;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1), 0 4px 15px rgba(0, 123, 255, 0.3);
}

/* Add to cart animation */
.wc-bookings-booking-form-button.adding {
    animation: addToCart 0.6s ease;
}

@keyframes addToCart {
    0% { transform: scale(1); }
    30% { transform: scale(0.95); }
    60% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Text glow on hover */
.wc-bookings-booking-form-button:hover:not(:disabled) {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Ripple effect on click */
.wc-bookings-booking-form-button {
    position: relative;
    overflow: hidden;
}

.wc-bookings-booking-form-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.wc-bookings-booking-form-button:active::after {
    width: 300px;
    height: 300px;
}

/* Reviews Container */
.reviews-container {
    margin: 50px auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
.reviews-container {
   padding: 0;
   }
}

.load-more-container {
    text-align: center;
}

/* Reviews List */
.reviews-list {
    margin-bottom: 30px;
}

.no-reviews {
    text-align: center;
    color: var(--color-text-secondary, #6B7280);
    font-size: var(--font-size-lg, 1.125rem);
    padding: 40px 0;
}

/* Review Item */
.review-item {
    background: white;
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.review-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: #DBEAFE;
}

/* Review Header */
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, #3B82F6, #60A5FA);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-weight: 600;
    font-size: 1.125rem;
    color: #1F2937;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.875rem;
    color: #10B981;
    font-weight: 500;
}

.review-rating {
    display: flex;
    gap: 4px;
}

.review-rating .fa-star {
    color: #FFC107;
    font-size: 18px;
}

/* Review Content */
.review-content {
    color: #6B7280;
    line-height: 1.625;
}

.review-content p {
    margin: 0;
}



/* Review Form */
.review-form-container {
    background: white;
    border: 2px solid #DBEAFE;
    border-radius: 16px;
    padding: 32px;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.08);
}

.review-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3B82F6, #60A5FA);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 24px;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #F9FAFB;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3B82F6;
    background: white;
}

.form-group label {
    position: absolute;
    left: 16px;
    top: 14px;
    font-size: 1rem;
    color: #9CA3AF;
    pointer-events: none;
    transition: all 0.3s ease;
    background: #F9FAFB;
    padding: 0 4px;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -8px;
    font-size: 0.75rem;
    color: #3B82F6;
    background: white;
}

.submit-btn {
    margin-top:15px;
    width: 100%;
    background: linear-gradient(135deg, #3B82F6, #60A5FA);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Success/Error Messages */
.review-message {
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    animation: slideDown 0.3s ease;
}

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

.review-message.success {
    background: #D1FAE5;
    color: #065F46;
    border: 1px solid #A7F3D0;
}

.review-message.error {
    background: #FEE2E2;
    color: #991B1B;
    border: 1px solid #FECACA;
}

/* Responsive */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .review-form-container {
        padding: 24px 20px;
    }
}

/* Rating Section */
.rating-section {
    text-align: center;
    margin-bottom: 30px;
}

.rating-label {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 12px;
}

.rating-group {
    display: inline-flex;
    gap: 8px;
    padding: 12px 20px;
    background: white;
    border-radius: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.rating-group .fa-star {
    font-size: 28px;
    color: #E5E7EB;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rating-group .fa-star:hover {
    color: #60A5FA;
    transform: scale(1.2);
}

.rating-group .fa-star.active {
    color: #3B82F6;
}

/* --- 1. Ana Kapsayıcı --- */
.post-navigation {
    font-family: var(--font-primary);
    border-top: 1px solid #dee2e6; /* Kenarlık Rengi */
    position: relative;
}


/* --- 2. Ekran Okuyucu Metni --- */
/* Bu metin sadece erişilebilirlik için vardır, görsel olarak gizlenir. */
.post-navigation .screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}


/* --- 3. Bağlantıların Düzeni (Flexbox) --- */
.nav-links {
    display: flex;
    justify-content: space-between; /* Öğeleri iki uca yaslar */
}


/* --- 4. Önceki ve Sonraki Bağlantı Blokları --- */
.nav-previous,
.nav-next {
    flex: 1 1 0; /* Esnek bir şekilde büyüyüp küçülmelerini sağlar */
    display: flex; /* İçindeki 'a' etiketinin tam genişlemesi için */
}

/* Sonraki bağlantısının içeriğini sağa yaslar */
.nav-next {
   justify-content: flex-end;
   text-align: right;
}

/* --- 5. Bağlantıların Stil Tanımları (<a>) --- */
.nav-links a {
    display: block;
    width: 100%;
    padding: 1.25rem 1.5rem;
    border-radius: 8px; /* Yumuşak köşeler */
    text-decoration: none;
    transition: all 0.25s ease-in-out;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

/* --- 6. Etkileşim (Hover & Focus) --- */
.nav-links a:hover,
.nav-links a:focus {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-color: #007bff; /* Vurgu Rengi */
    background-color: #ffffff; /* Hover Arka Plan Rengi */
    outline: none;
}


/* --- 7. Metin Stilleri (Tipografi Değişkenlerinizle) --- */
.nav-subtitle {
    display: block;
    font-size: var(--font-size-xs); /* 12px */
    font-weight: var(--font-weight-semibold);
    color: #6c757d; /* Alt Başlık Rengi */
    letter-spacing: var(--letter-spacing-wider);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.nav-title {
    display: block;
    font-size: var(--font-size-lg); /* 18px */
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-snug);
    color: #212529; /* Ana Başlık Rengi */
    transition: color 0.2s ease;
}

/* Hover durumunda başlık rengini değiştir */
.nav-links a:hover .nav-title,
.nav-links a:focus .nav-title {
    color: #007bff; /* Vurgu Rengi */
}


/* ==========================================================================
   MOBİL UYUMLULUK (RESPONSIVE)
   ========================================================================== */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column; /* Bağlantıları alt alta dizer */
        gap: 1rem; /* Aradaki boşluğu azaltır */
    }

    /* Mobil görünümde sağa hizalamayı sıfırlar */
    .nav-next {
       justify-content: flex-start;
       text-align: left;
    }
}

/* EKSTRA CAPPADOCIA ÜRÜNLERİ */
    
    .toursce-modern-wrapper {
        background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .toursce-modern-header {
        margin-bottom: 1.25rem;
    }
    
    .toursce-modern-badge {
        background: white;
        color: #5f27cd;
        font-size: 0.75rem;
        padding: 0.3rem 1rem;
        border-radius: 20px;
        display: inline-flex;
        align-items: center;
        gap: 0.3rem;
        margin-bottom: 0.6rem;
        font-weight: 600;
        box-shadow: 0 2px 8px rgba(95,39,205,0.2);
    }
    
    .toursce-modern-badge i {
        font-size: 0.65rem;
    }
    
    .toursce-modern-title {
        font-size: 1.6rem;
        font-weight: 800;
        color: #2c3e50;
        margin-bottom: 0.3rem;
    }
    
    .toursce-modern-subtitle {
        color: #34495e;
        font-size: 0.95rem;
        margin: 0;
    }
    
    .toursce-modern-card {
        background: white;
        border-radius: 12px;
        padding: 1.5rem;
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
        height: 100%;
    }
    
    .toursce-modern-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    }
    
    .toursce-modern-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }
    
    .toursce-modern-card.toursce-featured::before {
        background: linear-gradient(90deg, #f093fb 0%, #f5576c 100%);
    }
    
    .toursce-modern-label {
        background: #f8f9fa;
        color: #495057;
        font-size: 0.7rem;
        padding: 0.25rem 0.6rem;
        border-radius: 4px;
        display: inline-block;
        margin-bottom: 0.6rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-weight: 600;
    }
    
    .toursce-modern-card-title {
        font-size: 1.25rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.6rem;
    }
    
    .toursce-modern-card-desc {
        color: #7f8c8d;
        font-size: 0.9rem;
        line-height: 1.6;
        margin: 0;
    }
    
    .toursce-modern-card-desc a {
        color: #667eea;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    
    .toursce-modern-card-desc a:hover {
        color: #5a54d3;
        text-decoration: underline;
    }
    
    /* Mobile responsive */
    @media (max-width: 767px) {
        .toursce-modern-wrapper {
            padding: 1.25rem 1rem;
        }
        
        .toursce-modern-title {
            font-size: 1.4rem;
        }
        
        .toursce-modern-subtitle {
            font-size: 0.85rem;
        }
        
        .toursce-modern-card {
            padding: 1.25rem;
        }
        
        .toursce-modern-card-title {
            font-size: 1.1rem;
        }
        
        .toursce-modern-card-desc {
            font-size: 0.85rem;
        }
        
        .row.g-3 {
            --bs-gutter-y: 0.75rem;
        }
    }
    
    @media (max-width: 480px) {
        .toursce-modern-wrapper {
            padding: 1rem 0.75rem;
            border-radius: 12px;
        }
        
        .toursce-modern-header {
            margin-bottom: 1rem;
        }
        
        .toursce-modern-title {
            font-size: 1.25rem;
        }
        
        .toursce-modern-card {
            padding: 1rem;
            border-radius: 10px;
        }
    }



/* Share Modal Styles */
        .share-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(4px);
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .share-modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .share-modal {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.9);
            background: #fff;
            border-radius: 24px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            max-width: 560px;
            width: 90%;
            max-height: 90vh;
            overflow: hidden;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .share-modal-overlay.active .share-modal {
            transform: translate(-50%, -50%) scale(1);
            opacity: 1;
            visibility: visible;
        }

        .share-modal-header {
            padding: 2rem 2rem 1.5rem;
            text-align: center;
            border-bottom: 1px solid #f0f0f0;
        }

        .share-modal-title {
            font-size: var(--font-size-2xl);
            font-weight: var(--font-weight-bold);
            color: #2d3748;
            margin: 0 0 0.5rem;
            font-family: var(--font-primary);
        }

        .share-modal-subtitle {
            font-size: var(--font-size-base);
            color: #718096;
            margin: 0;
            font-family: var(--font-primary);
        }

        .share-modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            width: 40px;
            height: 40px;
            background: #f7fafc;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
        }

        .share-modal-close:hover {
            background: #e2e8f0;
            transform: rotate(90deg);
        }

        .share-modal-close svg {
            width: 20px;
            height: 20px;
            fill: #4a5568;
        }

        .share-modal-body {
            padding: 2rem;
            max-height: 60vh;
            overflow-y: auto;
        }

        .share-platforms {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .share-platform {
            background: #f8fafc;
            border: 2px solid transparent;
            border-radius: 16px;
            padding: 1.25rem 0.75rem;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            color: inherit;
            position: relative;
            overflow: hidden;
        }

        .share-platform::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: currentColor;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .share-platform:hover {
            transform: translateY(-4px);
            border-color: currentColor;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        }

        .share-platform:hover::before {
            opacity: 0.08;
        }

        .share-platform-icon {
            width: 48px;
            height: 48px;
            margin: 0 auto 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            background: #fff;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        }

        .share-platform-icon svg {
            width: 24px;
            height: 24px;
        }

        .share-platform-name {
            font-size: var(--font-size-sm);
            font-weight: var(--font-weight-medium);
            color: #4a5568;
            font-family: var(--font-primary);
            letter-spacing: var(--letter-spacing-wide);
        }

        /* Platform specific colors */
        .share-platform.whatsapp { color: #25D366; }
        .share-platform.messenger { color: #0084FF; }
        .share-platform.instagram { color: #E4405F; }
        .share-platform.telegram { color: #0088CC; }
        .share-platform.twitter { color: #1DA1F2; }
        .share-platform.facebook { color: #1877F2; }
        .share-platform.linkedin { color: #0A66C2; }
        .share-platform.email { color: #EA4335; }
        .share-platform.sms { color: #36C64F; }
        .share-platform.pinterest { color: #BD081C; }
        .share-platform.reddit { color: #FF4500; }
        .share-platform.copy-link { color: #718096; }

        /* Copy Link Section */
        .share-copy-section {
            background: #f8fafc;
            border-radius: 16px;
            padding: 1.5rem;
            position: relative;
        }

        .share-copy-label {
            font-size: var(--font-size-sm);
            font-weight: var(--font-weight-semibold);
            color: #4a5568;
            margin-bottom: 0.75rem;
            font-family: var(--font-primary);
        }

        .share-copy-input-group {
            display: flex;
            gap: 0.75rem;
        }

        .share-copy-input {
            flex: 1;
            padding: 0.75rem 1rem;
            background: #fff;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            font-size: var(--font-size-sm);
            color: #2d3748;
            font-family: var(--font-primary);
            transition: border-color 0.2s ease;
        }

        .share-copy-input:focus {
            outline: none;
            border-color: var(--color-toursce-primary);
        }

        .share-copy-btn {
            padding: 0.75rem 1.5rem;
            background: linear-gradient(135deg, var(--color-toursce-primary) 0%, var(--color-toursce-primary-dark) 100%);
            color: #fff;
            border: none;
            border-radius: 12px;
            font-size: var(--font-size-sm);
            font-weight: var(--font-weight-semibold);
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: var(--font-primary);
            white-space: nowrap;
            position: relative;
            overflow: hidden;
        }

        .share-copy-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
        }

        .share-copy-btn.copied {
            background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
        }

        /* Loading State */
        .share-modal-loading {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 400px;
        }

        .share-loading-spinner {
            width: 48px;
            height: 48px;
            border: 3px solid #f3f4f6;
            border-top-color: var(--color-toursce-primary);
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }

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

        /* Mobile Responsive */
        @media (max-width: 640px) {
            .share-modal {
                width: 95%;
                max-width: none;
            }

            .share-modal-header {
                padding: 1.5rem 1.5rem 1rem;
            }

            .share-modal-body {
                padding: 1.5rem;
            }

            .share-platforms {
                grid-template-columns: repeat(3, 1fr);
                gap: 0.75rem;
            }

            .share-platform {
                padding: 1rem 0.5rem;
            }

            .share-platform-icon {
                width: 40px;
                height: 40px;
            }

            .share-platform-name {
                font-size: 0.75rem;
            }

            .share-copy-input-group {
                flex-direction: column;
            }

            .share-copy-btn {
                width: 100%;
            }
        }

        /* Notification Toast */
        .share-notification {
            position: fixed;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%) translateY(100px);
            background: #2d3748;
            color: #fff;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-size: var(--font-size-sm);
            font-weight: var(--font-weight-medium);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 10000;
        }

        .share-notification.show {
            transform: translateX(-50%) translateY(0);
            opacity: 1;
            visibility: visible;
        }


/* Tour Header Styles */
.tour-header-area {
    background: linear-gradient(to bottom, #fafbfc 0%, #ffffff 100%);
    border-radius: 20px;
}

.location-badge {
    background: linear-gradient(135deg, var(--color-toursce-primary) 0%, var(--color-toursce-primary-dark) 100%);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: var(--font-size-sm);
    color: #fff;
    font-weight: var(--font-weight-medium);
    letter-spacing: var(--letter-spacing-wide);
}

.location-badge i {
    color: #fff;
    opacity: 0.9;
}

.tour-title {
    font-size: var(--text-h1-size);
    font-weight: var(--text-h1-weight);
    line-height: var(--text-h1-line-height);
    letter-spacing: var(--text-h1-letter-spacing);
    color: #2d3748;
    margin: 0;
}

/* Rating */
.star-rating {
    color: #f6ad55;
    font-size: 20px;
}

.star-rating i {
    margin-right: 3px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.rating-text {
    color: #718096;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-medium);
}

/* Action Buttons */
.tour-header-actions {
    gap: 1rem !important;
}

.btn-action {
    background: #fff;
    border: 2px solid #e2e8f0;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-medium);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    color: #4a5568;
}

.btn-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    border-color: #cbd5e0;
}

.share-tour {
    background: linear-gradient(135deg, var(--color-toursce-primary) 0%, var(--color-toursce-primary-dark) 100%);
    color: #fff;
    border: none;
}

.share-tour:hover {
    background: linear-gradient(135deg, var(--color-toursce-primary-dark) 0%, var(--color-toursce-primary) 100%);
    transform: translateY(-2px) scale(1.02);
}

.request-tour {
    background: linear-gradient(135deg, var(--color-toursce-primary) 0%, var(--color-toursce-primary-dark) 100%);
    color: #fff;
    border: none;
}

.request-tour:hover {
    background: linear-gradient(135deg, var(--color-toursce-primary-dark) 0%, var(--color-toursce-primary) 100%);
    transform: translateY(-2px) scale(1.02);
}

.btn-action i {
    font-size: 18px;
}

/* Tour Quick Info */
.tour-quick-info {
    background: transparent;
    padding: 0;
    margin-top: 2rem;
}
.info-item {
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #f7fafc;
    position: relative;
    overflow: hidden;
}
.info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--color-toursce-primary) 0%, var(--color-toursce-primary-dark) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.info-item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: translateY(-4px);
    border-color: #e2e8f0;
}
.info-item:hover::before {
    transform: scaleX(1);
}
.info-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    flex-shrink: 0;
}
.info-icon i {
    font-size: 24px;
    background: linear-gradient(135deg, var(--color-toursce-primary) 0%, var(--color-toursce-primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.info-content {
    flex: 1;
    min-width: 0;
}
.info-label {
    display: block;
    font-size: 0.875rem;
    color: #a0aec0;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.info-value {
    display: block;
    font-size: 1.125rem;
    color: #2d3748;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Tablet adjustments */
@media (max-width: 768px) {
    .info-item {
        padding: 1px;
        border-radius: 12px;
    }
    
    .info-icon {
        width: 42px;
        height: 42px;
        margin-right: 10px;
        border-radius: 10px;
    }
    
    .info-icon i {
        font-size: 18px;
    }
    
    .info-label {
        font-size: 0.7rem;
        margin-bottom: 3px;
        letter-spacing: 0.02em;
    }
    
    .info-value {
        font-size: 0.9rem;
    }
}

/* Mobile adjustments */
@media (max-width: 576px) {
    .tour-quick-info {
        margin-top: 1rem;
    }
    
    /* Reduce gap between columns */
    .tour-quick-info .row {
        --bs-gutter-x: 0.5rem;
        --bs-gutter-y: 0.5rem;
    }
    
    .info-item {
        padding: 1px;
        border-radius: 10px;
        border-width: 1px;
    }
    
    .info-icon {
        width: 36px;
        height: 36px;
        margin-right: 8px;
        border-radius: 8px;
    }
    
    .info-icon i {
        font-size: 16px;
    }
    
    .info-label {
        font-size: 0.6rem;
        margin-bottom: 2px;
        letter-spacing: 0.01em;
    }
    
    .info-value {
        font-size: 0.8rem;
        font-weight: 500;
    }
}

/* Very small screens */
@media (max-width: 400px) {
    .info-item {
        padding: 1px;
        border-radius: 8px;
    }
    
    .info-item::before {
        height: 2px;
    }
    
    .info-icon {
        width: 32px;
        height: 32px;
        margin-right: 6px;
        border-radius: 6px;
    }
    
    .info-icon i {
        font-size: 14px;
    }
    
    .info-label {
        font-size: 0.55rem;
        margin-bottom: 1px;
    }
    
    .info-value {
        font-size: 0.75rem;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .info-item {
        padding: 1px;
    }
    
    .info-icon {
        width: 28px;
        height: 28px;
        margin-right: 5px;
        border-radius: 6px;
    }
    
    .info-icon i {
        font-size: 12px;
    }
    
    .info-label {
        font-size: 0.5rem;
        margin-bottom: 0;
        line-height: 1.1;
    }
    
    .info-value {
        font-size: 0.7rem;
        line-height: 1.1;
    }
}

/* Share Modal */
.modal-content {
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.modal-header {
    border-bottom: 1px solid #f7fafc;
    padding: 1.5rem;
}

.share-buttons {
    padding: 2rem 0;
    gap: 1rem;
}

.share-btn {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.share-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.2);
    transform: scale(0);
    transition: transform 0.3s ease;
    border-radius: 50%;
}

.share-btn:hover::before {
    transform: scale(2);
}

.share-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.share-btn.facebook { background: linear-gradient(135deg, #3b5998 0%, #2d4373 100%); }
.share-btn.twitter { background: linear-gradient(135deg, #1da1f2 0%, #1a91da 100%); }
.share-btn.whatsapp { background: linear-gradient(135deg, #25d366 0%, #20b358 100%); }
.share-btn.email { background: linear-gradient(135deg, #ea4335 0%, #d33426 100%); }
.share-btn.copy-link { 
    background: linear-gradient(135deg, #718096 0%, #4a5568 100%);
    border: none;
    cursor: pointer;
}

.share-btn i {
    font-size: 24px;
    color: #fff;
    z-index: 1;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .tour-header-area {
        padding: 1.5rem 1rem 2rem !important;
    }
    
    .tour-title {
        font-size: var(--text-h2-size);
    }
    
    .tour-header-actions {
        width: 100%;
        justify-content: stretch !important;
        gap: 0.75rem !important;
    }
    
    .btn-action {
        flex: 1;
        justify-content: center;
        padding: 12px 16px;
    }
    
    .info-item {
        padding: 1px;
    }
    
    .info-icon {
        width: 48px;
        height: 48px;
    }
    
    .info-icon i {
        font-size: 20px;
    }
    
    .info-value {
        font-size: var(--font-size-base);
    }
    .mt-md-0 {margin-top:15px}
}

@media (max-width: 575px) {
    .btn-action span {
        font-size: var(--font-size-sm);
    }
    
    .location-badge {
        font-size: var(--font-size-xs);
        padding: 5px 16px;
    }
}

/* Booking Sidebar Styles */
.toursce-booking-sidebar {
   background: #ffffff;
   border-radius: 12px;
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
   overflow: hidden;
}


/* Price Section */
.toursce-price-section {
   background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
   color: #ffffff;
   padding: 25px 20px;
   text-align: center;
   position: relative;
}

.toursce-price-label {
   font-family: var(--font-primary);
   font-size: var(--font-size-sm);
   font-weight: var(--font-weight-medium);
   letter-spacing: var(--letter-spacing-wide);
   opacity: 0.9;
   margin-bottom: 8px;
   text-transform: uppercase;
}