@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100;200;300;400;500;600;700;800;900&display=swap');

a {
    font-size: 14px !important;
    text-decoration: none;
}

ul {
    padding: 0;
    margin: 0
}

ul li {
    list-style-type: none;
}

body, a, button {
  font-family: 'Lexend', sans-serif;
}

.menu_sol ul li a {
    font-weight: 300;
    color: #43484d;
    font-size: 14px;
}

      /* Mega Menu Styles */
.softio-mega-menu {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        background: white;
        border-top: 1px solid #dee2e6;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 1030;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        padding: 2rem 0;
        height: auto;
        overflow: hidden;
        width: 1200px;
        max-width: 90vw;
      }

      .nav-item.position-static:hover .softio-mega-menu {
        opacity: 1;
        visibility: visible;
      }

      /* Bootstrap Dropdown Override */
      .dropdown-menu {
        border: 1px solid #dee2e6;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        border-radius: 0.375rem;
        padding: 0;
        display: none;
      }

      .dropdown-menu.show {
        display: block !important;
      }

      .dropdown-item {
        padding: 0.5rem 1rem;
        color: #6c757d;
        transition: all 0.2s ease;
      }

      .dropdown-item:hover {
        background-color: #f8f9fa;
        color: #292B2E;
      }

      /* Mega Menu Section Styles */
      .softio-mega-menu-section h6 {
        color: #292B2E;
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
      }

      .softio-mega-menu-section ul li {
        margin-bottom: 0.5rem;
      }

      .softio-mega-menu-section ul li a {
        font-size: 0.85rem;
        color: #6c757d !important;
        transition: color 0.2s ease;
      }

      .softio-mega-menu-section ul li a:hover {
        color: #292B2E !important;
      }
      
      /* Remove spacing from mega menu lists */
      .softio-mega-menu-section ul {
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
      }
      
      .softio-mega-menu-section ul li {
        margin: 0 !important;
        padding: 0 !important;
        line-height: 1.2 !important;
      }
      
	.softio-mega-menu-section ul li a {
		padding: 0.1rem 0 !important;
		display: block !important;
		margin: 0 !important;
		font-size: 14px !important;
		font-weight: 300;
		line-height: 1.2 !important;
		color: #43484C !important;
	}

      /* Ensure the navbar has relative positioning for mega menu */
      .navbar {
        position: relative;
      }

      /* Make sure the mega menu container spans full width */
      .nav-item.position-static {
        position: static;
      }
      
      /* Prevent horizontal scroll */
      body {
        overflow-x: hidden;
      }

/* Yatak Odası Mega Menu Styles */
.softio-yatak-mega-menu {
    display: none;
    position: absolute; /* Changed from fixed to absolute */
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    max-width: 90vw;
    z-index: 1020;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 0;
}

.softio-yatak-mega-menu.show {
    display: block !important;
}

/* Dinamik Kategoriler için Mega Menu - Sadece position-relative olanlar */
.nav-item.position-relative .softio-yatak-mega-menu {
    display: none;
    position: absolute; /* Changed from fixed to absolute */
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    max-width: 90vw;
    z-index: 1020;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 0;
}

.nav-item.position-relative .softio-yatak-mega-menu.show {
    display: block !important;
}

/* Yatak Mega Menu Overlay */
.softio-yatak-mega-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1010;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

/* Header z-index */
header {
    position: relative;
    z-index: 1040 !important;
}

.softio-yatak-mega-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

/* Interactive Hotspots */

.hotspot-area {
	height: 550px; 
	object-fit: cover;
}


.softio-hotspot-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.softio-hotspot {
    position: absolute;
    transform: translate(-50%, -50%);
    pointer-events: auto;
    z-index: 10;
}

.softio-hotspot-dot {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.softio-hotspot-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 13px;
    height: 13px;
    background: white;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.softio-hotspot:hover .softio-hotspot-dot {
    transform: scale(1.2);
    box-shadow: 0 4px 16px rgba(0, 123, 255, 0.5);
}

.softio-hotspot-tooltip {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    min-width: 280px;
    z-index: 1000;
}

/* Tooltip directions based on hotspot position */
.softio-hotspot-tooltip.tooltip-left {
    bottom: 50%;
    left: auto;
    right: 30px;
    transform: translateY(50%);
}

.softio-hotspot-tooltip.tooltip-right {
    bottom: 50%;
    left: 30px;
    transform: translateY(50%);
}

.softio-hotspot-tooltip.tooltip-top {
    bottom: auto;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.softio-hotspot-tooltip.tooltip-bottom {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.softio-hotspot:hover .softio-hotspot-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-10px);
}

.softio-hotspot:hover .softio-hotspot-tooltip.tooltip-left {
    transform: translateY(50%) translateX(-10px);
}

.softio-hotspot:hover .softio-hotspot-tooltip.tooltip-right {
    transform: translateY(50%) translateX(10px);
}

.softio-hotspot:hover .softio-hotspot-tooltip.tooltip-top {
    transform: translateX(-50%) translateY(10px);
}

.softio-hotspot:hover .softio-hotspot-tooltip.tooltip-bottom {
    transform: translateX(-50%) translateY(-10px);
}

.softio-hotspot-tooltip::after {
    content: '';
    position: absolute;
    border: 8px solid transparent;
}

/* Arrow for bottom tooltip (default) */
.softio-hotspot-tooltip::after {
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-top-color: white;
}

/* Arrow for left tooltip */
.softio-hotspot-tooltip.tooltip-left::after {
    top: 50%;
    left: auto;
    right: -16px;
    transform: translateY(-50%);
    border-left-color: white;
    border-top-color: transparent;
}

/* Arrow for right tooltip */
.softio-hotspot-tooltip.tooltip-right::after {
    top: 50%;
    left: -16px;
    transform: translateY(-50%);
    border-right-color: white;
    border-top-color: transparent;
}

/* Arrow for top tooltip */
.softio-hotspot-tooltip.tooltip-top::after {
    top: auto;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-bottom-color: white;
    border-top-color: transparent;
}

.softio-hotspot-content {
    display: flex;
    align-items: center;
    padding: 16px;
    gap: 12px;
}

.softio-hotspot-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.softio-hotspot-info {
    flex: 1;
    min-width: 0;
}

.softio-hotspot-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.softio-hotspot-description {
    font-size: 12px;
    color: #666;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.softio-hotspot-price {
    font-size: 16px;
    font-weight: 700;
    color: #007bff;
    display: block;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.7;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

/* Responsive adjustments for hotspots */
@media (max-width: 768px) {
    .softio-hotspot-tooltip {
        min-width: 240px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .softio-hotspot-content {
        padding: 12px;
        gap: 8px;
    }
    
    .softio-hotspot-image {
        width: 50px;
        height: 50px;
    }
    
    .softio-hotspot-title {
        font-size: 13px;
    }
    
    .softio-hotspot-description {
        font-size: 11px;
    }
    
    .softio-hotspot-price {
        font-size: 14px;
    }
}

/* Featured card styles */
.softio-featured-card {
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    transition: transform 0.2s ease;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
}

.softio-featured-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.softio-featured-image {
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 10px;
}

.featured-image img {
    transition: transform 0.3s ease;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.softio-featured-card:hover .softio-featured-image img {
    transform: scale(1.05);
}

.softio-featured-card .btn {
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 6px;
}

.softio-featured-card h6 {
    font-size: 16px;
    margin-top: 10px;
}

/* Sidebar Menu Styles */
.softio-offcanvas-start {
    width: 300px;
    z-index: 1050 !important;
}

.softio-sidebar-nav ul li {
    margin-bottom: 8px;
}

.softio-sidebar-nav ul li a {
    padding: 8px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: block;
}

.softio-sidebar-nav ul li a:hover {
    background-color: #f8f9fa;
    padding-left: 20px;
}

.softio-contact-info p {
    font-size: 14px;
    color: #6c757d;
}

.offcanvas-header {
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 15px;
}

.offcanvas-body {
    padding: 20px;
}

/* Search Results Mega Menu Styles */
.softio-search-mega-menu {
    display: none;
    position: absolute;
    top: 61px!important;
    z-index: 999999!important;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 0;
}

.softio-search-mega-menu.show {
    display: block !important;
}

/* Search Results Overlay */
.softio-search-mega-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.softio-search-mega-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.softio-search-results:last-child {
    border-bottom: none;
}

/* Product Cards */
.softio-product-card {
    text-align: center;
    padding: 15px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.softio-price-info {
    margin-top: 10px;
}

.softio-current-price {
    color: #dc3545 !important;
    font-size: 18px;
}

.softio-old-price {
    font-size: 14px;
}

/* Special Offers */
.softio-special-offer {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.softio-special-offer h6 {
    color: #dc3545;
    margin-bottom: 10px;
}

.softio-special-offer p {
    margin-bottom: 15px;
}

/* Navigation Arrows */
.softio-search-nav-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    pointer-events: none;
}

.softio-nav-arrow {
    position: absolute;
    width: 40px;
    height: 40px;
    pointer-events: auto;
}

.softio-nav-prev {
    left: 20px;
}

.softio-nav-next {
    right: 20px;
}

.softio-icon-box {
	padding: 30px 27px 30px 6px !important;
}


.softio-ikon-3 {
    position: absolute;
    top: 30px;
    right: 46px;
}

/* Pagination */
.softio-search-pagination {
    text-align: center;
    margin-top: 20px;
    padding-bottom: 20px;
}

.softio-search-bg {
	background-color: #f5f7fa !important;
}

.softio-pagination-text {
    font-weight: bold;
    margin-right: 15px;
}

.softio-pagination-dots {
    display: inline-flex;
    gap: 8px;
}

.softio-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #dee2e6;
    cursor: pointer;
    transition: background 0.3s ease;
}

.softio-dot.active {
    background: #007bff;
}

/* Category Tab Styles */
.softio-category-tab {
    transition: all 0.3s ease;
    display: block;
	color: #58585a !important
}

.softio-category-tab:hover {
    background-color: #fff;
    color: #58585a !important
}

.softio-category-tab.active {
    background-color: #fff;
    color: #58585a !important
}

/* UL aralarındaki aralıkları kaldır */
.softio-search-mega-menu ul li {
    margin-bottom: 0 !important;
}

.softio-search-mega-menu ul li:last-child {
    margin-bottom: 0 !important;
}

/* Category Content Styles */
.softio-category-content {
    display: none;
}

.softio-category-content.active {
    display: block;
}

/* Custom Slider Pagination Styles */
.softio-custom-pagination {
  font-size: 14px;
  left: 7% !important;
}

.softio-pagination-bullet {
  width: 30px;
  height: 3px;
  background-color: rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.softio-pagination-bullet.active {
  background-color: rgba(0, 0, 0, 0.8);
  transform: scaleX(1.2);
}

.softio-pagination-bullet:hover {
  background-color: rgba(0, 0, 0, 0.6);
}

/* Slide counter text */
#softio-slideCounter {
  font-size: 13px;
  opacity: 0.8;
  color: #000 !important;
  text-shadow: none;
}

/* Interactive Pagination Dots for Private Collection */
.softio-pagination-dot {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.softio-pagination-dot.active,
.softio-pagination-dot:hover {
  background-color: rgba(255, 255, 255, 1);
  transform: scale(1.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Product Card Animation */
.softio-product-card {
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

.softio-ikon {
    width: 100px;
    height: 100px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    margin-left: 175px;
    transition: transform 0.6s ease-in-out;
}

.softio-ikon-2 {
    width: 60px;
    height: 60px;
    overflow: hidden;
    transition-duration: 0.8s;
    transition-property: transform;
    margin-top: 15px;
    margin-left: 173px;
	transition: transform 0.6s ease-in-out;
}

.softio-ikon:hover {
    transform: rotate(360deg);
}

.softio-ikon-2:hover {
    transform: rotate(360deg);
}

.softio-ikon svg {
    display: block;
    margin: 0 auto;
}

.softio-ikon-2 svg {
    display: block;
    margin: 0 auto;
}


/* Tercih Cards Styles */
.softio-tercih-card {
    height: 430px; /* sabit yükseklik */
    position: relative;
    overflow: hidden;
}

.softio-tercih-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;      /* resmi kutuya yay */
    background-position: center; /* ortala */
    background-repeat: no-repeat;
    z-index: 1; /* altta kalsın */
    transition: transform 0.2s ease-in-out; /* yavaş ve smooth scale */
}

.softio-tercih-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 30%; /* karartma yüksekliği */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.63), transparent);
    pointer-events: none; /* tıklamaya engel olmasın */
    z-index: 1;
}

.softio-tercih-card:hover .softio-tercih-bg {
    transform: scale(1.2);
}



/* Tanıtım Cards Styles */
.softio-tanitim-card {
    height: 600px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.softio-tanitim-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    transition: transform 0.2s ease;
    z-index: 1;
}

.softio-tanitim-card:hover .softio-tanitim-bg {
    transform: scale(1.1);
}


/* Tanıtım Cards Styles */
.softio-tanitim-2-card {
    height: 290px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.softio-tanitim-2-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    transition: transform 0.2s ease;
    z-index: 1;
}

.softio-tanitim-2-card:hover .softio-tanitim-2-bg {
    transform: scale(1.1);
}


/* Tanıtım Cards Styles */
.softio-tanitim-3-card {
    height: 290px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tanitim-3-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    transition: transform 0.2s ease;
    z-index: 1;
}

.softio-tanitim-3-card:hover .softio-tanitim-3-bg {
    transform: scale(1.1);
}

/* Star Cards Styles */
.softio-star-card {
    height: 530px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.softio-star-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    transition: transform 0.2s ease;
    z-index: 1;
}

.softio-star-card:hover .softio-star-bg {
    transform: scale(1.2);
}

.star-avatar img {
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.1s ease;
}

.softio-star-card .btn {
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.875rem;
}

.softio-star-card:hover .btn {
    background-color: #fff;
    color: #000;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments for star cards */
@media (max-width: 768px) {
    .softio-star-card {
        height: 450px;
        margin-bottom: 15px;
    }
    
    .softio-star-content h5 {
        font-size: 1rem;
    }
    
    .softio-star-avatar img {
        width: 35px !important;
        height: 35px !important;
    }
	
	.softio-tanitim-card {
		height: 100% !important;
	}
	
	.softio-tanitim-2-card {
		height: 100% !important;
	}
	
	.softio-tanitim-3-card {
		height: 100% !important;
	}
	
	.softio-selection-card {
		height: 60px !important;
	}
	
	.softio-selection-text {
		font-size: 14px !important;
	}
}

[data-bg-image] {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.footer-icerik ul li a {
    font-weight: 300;
    font-size: 16px;
    color: #848a92;
    line-height: 38px;
}

.footer-icerik .f-row .foot-y li {
	margin-bottom: 14px;
}

.footer-icerik-1 {
    border-top: 1px solid #ebeef5;
}

img.footer-card-img {
	height: 28px;
}

.footer-card-title {
	font-size: 18px;
	font-weight: 400;
}

.footer-card-text {
	font-size: 16px;
	font-weight: 300;
}

/* Private Services Section Styles */
.softio-private-services-swiper {
    padding-bottom: 40px;
    margin: 0 -150px;
    position: relative;
}

.softio-private-services-swiper .swiper-wrapper {
    padding: 0 50px;
}

.softio-private-services-swiper::before,
.softio-private-services-swiper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 40px;
    width: 400px;
    z-index: 10;
    pointer-events: none;
}

.softio-private-services-swiper::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
}

.softio-private-services-swiper::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
}

.softio-private-services-swiper .swiper-slide {
    height: auto;
    width: calc(33.333% - 20px);
    max-width: 600px;
}

.softio-private-services-swiper .card {
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #e9ecef;
}

.softio-private-services-swiper .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.softio-private-services-swiper .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.softio-private-services-swiper .card-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.softio-private-services-swiper .btn {
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.softio-private-services-swiper .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

/* Private Services Pagination */
.softio-private-services-swiper .swiper-pagination {
    bottom: 0;
    position: absolute;
    text-align: center;
    width: 100%;
}

.softio-private-services-swiper .swiper-pagination-bullet {
    width: 30px;
    height: 3px;
    background-color: #ccc;
    opacity: 1;
    transition: all 0.3s ease;
    margin: 0 4px;
    border-radius: 2px;
    display: inline-block;
}

.softio-private-services-swiper .swiper-pagination-bullet-active {
    background-color: #333;
    transform: scaleX(1.2);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Section Title Styles */
.softio-private-services-section h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 1rem;
}

.softio-private-services-section p {
    font-size: 1.25rem;
    font-weight: 300;
    color: #6c757d;
    margin-bottom: 3rem;
}

/* Custom Blog Card Background */
.softio-custom-blog-card2 {
    background-image: url('../img/home/custom-blog-card2.png');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    position: relative;
}

/* Custom Blog Card Background */
.softio-custom-blog-card5 {
    background-image: url('../img/mrc/icon-1.png');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    position: relative;
}

/* Right Image Style */
.softio-right-image-style {
    height: 500px;
    object-fit: cover;
}

/* Blog Cards Styles */
.softio-blog-card {
    height: 300px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.softio-blog-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.softio-blog-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
}

.softio-blog-card:hover .softio-blog-card-bg {
    transform: scale(1.1);
}

.softio-blog-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.849);
    border: 2px solid #ffffff;
    padding: 1.5rem;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.softio-blog-card-content {
    text-align: left;
}

.softio-blog-tag {
    font-size: 12px !important;
}

.softio-blog-title {
	font-weight: 400 !important;
	font-size: 14px !important;
	line-height: 20px !important;
}

/* Tag Colors */
.softio-bg-teal {
    background-color: #20c997 !important;
}

.softio-bg-orange {
    background-color: #fd7e14 !important;
}

.softio-bg-blue {
    background-color: #0d6efd !important;
}

/* Product Selection Cards */
.softio-selection-card {
    border: 1px solid #dee2e6;
    background: white;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 120px;
    display: flex;
    align-items: center;
}

.softio-selection-card:hover {
    border-color: #dee2e6;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    background-color: #eeeeee;
}

.softio-selection-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 1.5rem;
}

.softio-selection-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
}

.softio-selection-arrow {
    color: #6c757d;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.softio-selection-card:hover .softio-selection-arrow {
    transform: translateX(5px);
    color: #333;
}


.softio-about-text-collapsed p,
.softio-about-text-expanded p {
    font-size: 1rem;
    line-height: 1.7;
    color: #6c757d;
    text-align: left;
}

.softio-about-text-expanded {
    animation: fadeIn 0.5s ease-in-out;
}

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

#softio-readMoreBtn {
    transition: all 0.3s ease;
    border-radius: 6px;
    font-weight: 500;
}

#softio-readMoreBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Mobile Menu Styles */
.offcanvas {
    max-width: 400px;
	width: 400px !important;
    z-index: 1050;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
	.offcanvas {
		max-width: 325px;
		z-index: 1050;
		height: 100vh;
		width: 325px !important;
		display: flex;
		flex-direction: column;
	}
}

.offcanvas-body {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0 !important;
}

.offcanvas-header {
    flex-shrink: 0;
    border-bottom: 1px solid #e9ecef;
    padding: 1rem 1.5rem;
}

/* Fix Bootstrap offcanvas padding-right issue */
body.offcanvas-open {
    padding-right: 0 !important;
    overflow: hidden !important;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* Override Bootstrap's automatic padding-right */
body {
    padding-right: 0 !important;
}

/* Prevent body scroll when offcanvas is open */
.offcanvas-backdrop {
    z-index: 1049;
}

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

.offcanvas-title {
    font-weight: 600;
    color: #292B2E;
    margin: 0;
}

.offcanvas-body {
    padding: 0 !important;
}

.offcanvas-body ul li a {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.offcanvas-body ul li a:hover {
    background-color: #f8f9fa;
    transform: translateX(5px);
}

.offcanvas-body ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}

.offcanvas-body ul li a:hover::before {
    left: 100%;
}

.offcanvas-body ul li a span {
    font-weight: 500;
    color: #292B2E;
}

.offcanvas-body ul li a i {
    font-size: 0.875rem;
}

/* Submenu Styles */
.softio-submenu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 1051;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
}

.softio-submenu-content {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
}

.softio-submenu.show {
    transform: translateX(0);
}

.offcanvas-body ul {
    transition: transform 0.3s ease-in-out;
}

.offcanvas-body ul.slide-out {
    transform: translateX(-100%);
}

.softio-submenu-header {
    background-color: #f8f9fa !important;
}

.softio-submenu-header a {
    font-weight: 500;
    color: #292B2E !important;
    transition: all 0.3s ease;
    position: relative;
}

.softio-submenu-header a:hover {
    transform: translateX(-5px);
    color: #007bff !important;
}

.softio-submenu-header a i {
    transition: transform 0.3s ease;
}

.softio-submenu-header a:hover i {
    transform: translateX(-3px);
}

.softio-submenu-title h6 {
    color: #292B2E;
    font-weight: 600;
}

.softio-submenu-title a {
    font-size: 0.875rem;
    color: #292B2E !important;
    transition: all 0.3s ease;
    position: relative;
}

.softio-submenu-title a:hover {
    color: #007bff !important;
    transform: scale(1.05);
}

.softio-submenu-title a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #007bff;
    transition: width 0.3s ease;
}

.softio-submenu-title a:hover::after {
    width: 100%;
}

.softio-submenu ul li a {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.softio-submenu ul li a:hover {
    background-color: #f8f9fa;
    transform: translateX(5px);
}

.softio-submenu ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}

.softio-submenu ul li a:hover::before {
    left: 100%;
}

.softio-submenu ul li a span {
    font-weight: 500;
    color: #292B2E;
}

/* Scrolling Categories */
.softio-scrolling-row {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    height: 60px;
    display: flex;
    align-items: center;
}

.softio-scrolling-content {
    display: inline-flex;
    gap: 20px;
    animation: scroll-right 15s linear infinite;
}

.scrolling-left .softio-scrolling-content {
    animation: scroll-left 15s linear infinite;
}

@keyframes scroll-right {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-12.5%);
    }
}

@keyframes scroll-left {
    0% {
        transform: translateX(-12.5%);
    }
    100% {
        transform: translateX(0);
    }
}

.softio-category-tag {
    display: inline-block;
    padding: 12px 24px;
    color: #60666d;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    border: 1px solid #ececec;
    transition: all 0.3s ease;
    cursor: pointer;
}

.softio-category-tag:hover {
    background: #F5F7FA;
    color: #60666d;
}


.sidebar-gap {
	list-style: none;
    padding-left: 0;
	gap : 28px;
}


/* Pause animation on hover */
.softio-scrolling-row:hover .softio-scrolling-content {
    animation-play-state: paused;
}

/* Responsive adjustments for Private Services */
@media (max-width: 768px) {
    .softio-private-services-section h2 {
        font-size: 2rem;
    }
    
    .softio-private-services-section p {
        font-size: 1.1rem;
    }
    
    .softio-private-services-swiper .card-title {
        font-size: 1.1rem;
    }
    
    .softio-private-services-swiper .card-text {
        font-size: 0.85rem;
    }
    
    /* Mobilde swiper ayarları */
    .softio-private-services-swiper {
        margin: 0 -15px;
        padding-bottom: 30px;
    }
    
    /* Mobilde before/after efektlerini kaldır */
    .softio-private-services-swiper::before,
    .softio-private-services-swiper::after {
        display: none;
    }
    
    .softio-private-services-swiper .swiper-wrapper {
        padding: 0 15px;
    }
    
    .softio-private-services-swiper .card {
        margin: 0 5px;
    }
    
    .softio-private-services-swiper .card-body {
        padding: 1.5rem !important;
    }
    
    /* Mobilde pagination ayarları */
    .softio-private-services-swiper .swiper-pagination {
        bottom: 0;
    }
    
    .softio-private-services-swiper .swiper-pagination-bullet {
        width: 25px;
        height: 3px;
        margin: 0 3px;
    }
	.hotspot-area {
		height: 100%; 
		object-fit: cover;
	}
	
	
}


.sidebar-gap {
	gap: 28px;
}

/* Popular Swiper Pagination Styles */
.popular-swiper .swiper-pagination {
    position: relative;
    bottom: 0;
    margin-top: 20px;
}

.popular-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    opacity: 0.6;
    margin: 0 4px;
    transition: all 0.3s ease;
}

.popular-swiper .swiper-pagination-bullet-active {
    background: #6b7280;
    opacity: 1;
    transform: scale(1.2);
}

/* Hero Slider Styles */
.hero-swiper {
    touch-action: pan-y pinch-zoom;
    user-select: none;
    cursor: grab;
    height: 60vh; /* Make slider smaller - 60% of viewport height */
    max-height: 500px; /* Maximum height limit */
    min-height: 350px; /* Minimum height for mobile */
}

.hero-swiper .swiper-slide {
    touch-action: pan-y pinch-zoom;
    cursor: grab;
    height: 100%;
}

.hero-swiper .swiper-slide img {
    pointer-events: none;
    user-select: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive height adjustments */
@media (max-width: 768px) {
    .hero-swiper {
        height: 50vh; /* Even smaller on mobile */
        min-height: 280px;
        max-height: 400px;
    }
}

@media (max-width: 480px) {
    .hero-swiper {
        height: 45vh;
        min-height: 250px;
        max-height: 350px;
    }
}

/* Hero Slider Navigation Buttons */
.hero-swiper .btn-prev,
.hero-swiper .btn-next {
    z-index: 20 !important;
    position: relative;
}

/* Hero Slider Pagination Styles */
.hero-swiper .swiper-pagination {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.hero-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    opacity: 1;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.hero-swiper .swiper-pagination-bullet-active {
    background: white;
    transform: scale(1.2);
}

/* Blog Swiper Mobile Styles */
.blog-swiper {
    padding-bottom: 40px;
    position: relative;
}

.blog-swiper .swiper-slide {
    height: auto;
}

.blog-swiper .swiper-pagination {
    bottom: 0;
    position: relative;
}

.blog-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    opacity: 0.6;
    margin: 0 4px;
    transition: all 0.3s ease;
}

.blog-swiper .swiper-pagination-bullet-active {
    background: #6b7280;
    opacity: 1;
    transform: scale(1.2);
}

/* New Mobile Blog Card Styles - 1:1 with provided image */
.blog-swiper .softio-blog-card-new {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    height: 280px;
    display: flex;
    flex-direction: column;
}

.blog-swiper .softio-blog-card-image-section {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.blog-swiper .softio-blog-card-bg-new {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.blog-swiper .softio-blog-card-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.blog-swiper .softio-blog-tag-new {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.9);
    font-weight: 400;
    align-self: flex-start;
    background: rgba(255,255,255,0.2);
    padding: 4px 8px;
    border-radius: 6px;
    backdrop-filter: blur(4px);
}

.blog-swiper .softio-blog-title-new {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin: 0;
    line-height: 1.2;
}

.blog-swiper .softio-blog-card-description {
    padding: 16px;
    flex: 1;
    display: flex;
    align-items: center;
}

.blog-swiper .softio-blog-description-text {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 480px) {
    .blog-swiper .softio-blog-card-new {
        height: 240px;
    }
    
    .blog-swiper .softio-blog-card-image-section {
        height: 150px;
    }
    
    .blog-swiper .softio-blog-card-gradient-overlay {
        padding: 12px;
    }
    
    .blog-swiper .softio-blog-title-new {
        font-size: 0.875rem;
    }
    
    .blog-swiper .softio-blog-tag-new {
        font-size: 0.6875rem;
        padding: 3px 6px;
    }
    
    .blog-swiper .softio-blog-card-description {
        padding: 12px;
    }
    
    .blog-swiper .softio-blog-description-text {
        font-size: 0.8125rem;
    }
}

/* Mobile Search Overlay Styles */
.mobile-search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 9999;
    display: none;
    flex-direction: column;
}

.mobile-search-overlay.active {
    display: flex;
}

/* Prevent body scroll when overlay is active */
body.overlay-active {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

.mobile-search-container {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Search Header */
.mobile-search-header {
    display: flex;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid #e5e7eb;
    gap: 12px;
}

.mobile-search-input-container {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    background: #f9fafb;
    border-radius: 8px;
    padding: 12px 16px;
}

.mobile-search-icon {
    margin-right: 12px;
    flex-shrink: 0;
}

.mobile-search-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 16px;
    outline: none;
    color: #374151;
}

.mobile-search-input::placeholder {
    color: #9ca3af;
}

.mobile-search-clear {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    display: none;
}

.mobile-search-clear.visible {
    display: block;
}

.mobile-search-cancel {
    background: none;
    border: none;
    color: #6b7280;
    font-size: 16px;
    padding: 8px;
    cursor: pointer;
}

/* Enhanced Search Mega Menu Styles */
.softio-search-mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e5e7eb;
    border-top: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
    max-height: 500px;
    overflow-y: auto;
}

.softio-search-bg {
    background-color: #f8f9fa;
    border-right: 1px solid #e5e7eb;
}

.softio-category-tab {
    display: block;
    padding: 8px 12px;
    margin-bottom: 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
    position: relative;
}

.softio-category-tab:hover {
    background-color: #e9ecef;
    color: #0d6efd !important;
    text-decoration: none;
}

.softio-category-tab.active {
    background-color: #0d6efd;
    color: white !important;
}

.softio-category-tab.active:hover {
    background-color: #0b5ed7;
    color: white !important;
}

.softio-search-mega-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 999;
    display: none;
}

/* Product card hover effects in search */
.softio-search-results .product-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.softio-search-results .product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Search input focus styles */
.search-area input:focus {
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
    border-color: #86b7fe;
}

/* Category loading animation */
.category-loading {
    opacity: 0.6;
    position: relative;
}

.category-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 8px;
    width: 12px;
    height: 12px;
    border: 2px solid #ccc;
    border-top: 2px solid #0d6efd;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translateY(-50%);
}

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

/* Search correction alert styling */
#searchCorrection .alert {
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
}

#searchCorrection .alert a {
    font-weight: 600;
    color: #0d6efd;
}

#searchCorrection .alert a:hover {
    color: #0b5ed7;
    text-decoration: underline !important;
}

/* Popular searches styling */
#popularSearches a {
    font-size: 0.8rem;
    color: #6c757d;
}

#popularSearches a:hover {
    color: #0d6efd;
    background-color: #f8f9fa;
}

/* Responsive search mega menu */
@media (max-width: 768px) {
    .softio-search-mega-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        max-height: none;
        border: none;
        z-index: 9999;
    }
    
    .softio-search-mega-menu .col-md-2,
    .softio-search-mega-menu .col-md-10 {
        width: 100%;
        max-width: none;
        flex: none;
    }
    
    .softio-search-bg {
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
    }
}

/* Mobile Search Mega Menu */
.mobile-search-mega-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 10000;
    display: none;
    overflow-y: auto;
}

.mobile-search-mega-menu.show {
    display: block;
}

.mobile-search-header {
    background: #f8f9fa;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 10001;
}

.mobile-search-close {
    color: #6b7280;
    font-size: 1.2rem;
}

/* Search Content */
.mobile-search-content {
    flex: 1;
    overflow-y: auto;
}

.mobile-search-section {
    margin-bottom: 24px;
}

.mobile-search-section-bg {
    background-color: #f5f7fa !important;
}

.mobile-search-section-title {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 12px;
}

/* Mobile Search Categories */
.mobile-search-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mobile-search-category {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    color: #374151;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-search-category:hover {
    background: #e5e7eb;
    color: #374151;
    text-decoration: none;
}

.mobile-search-category.active {
    background: #0d6efd;
    color: white;
    border-color: #0d6efd;
}

.mobile-search-category-count {
    background: rgba(0, 0, 0, 0.1);
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 500;
}

/* Mobile Search Products */
.mobile-search-products {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-search-product {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px;
    transition: background-color 0.2s ease;
    text-decoration: none;
    color: inherit;
}

.mobile-search-product:hover {
    background: #f3f4f6;
    text-decoration: none;
    color: inherit;
}

.mobile-search-product-image {
    width: 80px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.mobile-search-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-search-product-info {
    flex: 1;
    min-width: 0;
}

.mobile-search-product-name {
    font-size: 14px;
    font-weight: 500;
    color: #111827;
    margin-bottom: 4px;
    line-height: 1.3;
}

.mobile-search-product-price {
    font-size: 14px;
    font-weight: 600;
    color: #0d6efd;
}

/* Mobile Search Correction */
#mobileSearchCorrection .alert {
    margin-bottom: 0;
    margin-top: 0;
    padding: 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
}

#mobileSearchCorrection .alert a {
    font-weight: 600;
    color: #0d6efd;
}

#mobileSearchCorrection .alert a:hover {
    color: #0b5ed7;
    text-decoration: underline !important;
}

/* Search Content */
.mobile-search-content {
    flex: 1;
    overflow-y: auto;
}

.mobile-search-section {
    margin-bottom: 24px;
}


.mobile-search-section-bg {
    background-color: #f5f7fa !important;
}

.mobile-search-section-title {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 12px;
}

/* Search Tags */
.mobile-search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mobile-search-tag {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    padding: 5px 10px;
    font-size: 14px;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-search-tag:hover {
    background: #e5e7eb;
}

/* Search Products */
.mobile-search-products {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-search-product {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    border: 1px solid #e5e7eb;
    transition: background-color 0.2s ease;
}

.mobile-search-product:hover {
    background: #f3f4f6;
}

.mobile-search-product-image {
    width: 180px;
    overflow: hidden;
    flex-shrink: 0;
}

.mobile-search-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-search-product-info {
    flex: 1;
    min-width: 0;
}

.mobile-search-product-title {
    color: #000 !important;
    font-size: 12px !important;
    font-weight: 300 !important;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.mobile-search-product-price {
    font-size: 11px !important;
    font-weight: bold !important;
    color: #000000 !important;
    margin: 0;
}

/* Video Section and Info Cards Styles */
.video-section {
  position: relative;
  overflow: hidden;
}

.video-section video {
  max-height: 500px;
  object-fit: cover;
}

.info-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e9ecef;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.info-icon {
  color: #007bff;
}

.info-card h5 {
  color: #292B2E;
  font-size: 1.1rem;
}

.info-card p {
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Search Suggestions Styles */
#searchSuggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e5e7eb;
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
    display: none;
}

.search-suggestion-item {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid #f3f4f6;
    transition: background-color 0.2s ease;
    font-size: 14px;
    color: #374151;
}

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

.search-suggestion-item:hover {
    background-color: #f9fafb;
    color: #111827;
}

.search-suggestion-item:first-child {
    border-top-left-radius: 8px;
}

/* Background image data attribute handling */
[data-bg-image] {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Cart Page Styles */
.cart-items {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    flex-shrink: 0;
    margin-right: 1.5rem;
}

.cart-item-image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
}

.cart-item-content {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
}

.cart-item-variation {
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.cart-item-controls {
    display: flex;
    align-items: center;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    overflow: hidden;
}

.qty-btn {
    background: #f8f9fa;
    border: none;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.qty-btn:hover {
    background: #e9ecef;
}

.qty-display {
    padding: 0.5rem 1rem;
    min-width: 3rem;
    text-align: center;
    background: white;
    border-left: 1px solid #e9ecef;
    border-right: 1px solid #e9ecef;
}

.cart-item-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-left: 1.5rem;
}

.price-amount {
    font-size: 1.125rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.remove-btn {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    font-size: 1.25rem;
    transition: color 0.2s ease;
}

.remove-btn:hover {
    color: #bd2130;
}

/* Cart Summary Styles */
.cart-summary {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
}

.summary-title {
    font-size: 1.125rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 1rem;
}

.summary-description {
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.summary-value {
    font-weight: 500;
    color: #333;
}

.summary-divider {
    height: 1px;
    background: #e9ecef;
    margin: 1.5rem 0;
}

.coupon-discount {
    color: #28a745;
}

.discount-amount {
    font-weight: 600;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    margin: 1.5rem 0;
    padding: 1rem 0;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.total-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
}

.summary-actions {
    margin-top: 1.5rem;
}

.checkout-btn {
    margin-bottom: 1rem;
}

.summary-note {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
    text-align: center;
}

.summary-note small {
    color: #6c757d;
}

/* Coupon Section */
.coupon-section {
    margin: 1.5rem 0;
}

.coupon-input-group {
    display: flex;
    gap: 0.5rem;
}

.coupon-input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    font-size: 0.875rem;
}

.coupon-apply-btn {
    padding: 0.75rem 1rem;
    background: #333;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.875rem;
    transition: background-color 0.2s ease;
}

.coupon-apply-btn:hover {
    background: #222;
}

.applied-coupon {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 6px;
    color: #155724;
}

.remove-coupon {
    background: none;
    border: none;
    color: #155724;
    cursor: pointer;
    font-size: 1rem;
}

.coupon-message {
    margin-top: 0.5rem;
    font-size: 0.875rem;
}

.coupon-message.error {
    color: #dc3545;
}

.coupon-message.success {
    color: #28a745;
}

/* Empty Cart */
.empty-cart {
    text-align: center;
    padding: 3rem 1rem;
}

.empty-cart i {
    font-size: 3rem;
    color: #e9ecef;
    margin-bottom: 1rem;
}

.empty-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.empty-description {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cart-item-image {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .cart-item-price {
        align-items: flex-start;
        margin-left: 0;
        margin-top: 1rem;
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .cart-item {
        padding: 1rem;
    }
    
    .cart-item-image img {
        width: 60px;
        height: 60px;
    }
    
    .cart-summary {
        padding: 1rem;
    }
}

    border-top-right-radius: 8px;
}

.search-suggestion-item:last-child {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

/* Mobile search suggestions */
@media (max-width: 768px) {
    #searchSuggestions {
        border-radius: 0;
        max-height: 250px;
    }
    
    .search-suggestion-item {
        padding: 10px 12px;
        font-size: 13px;
    }
}

/* Background image data attribute handling */
[data-bg-image] {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
