/* Store page css */
.store-banner-img img {
    width: 100%;
}

.store-tabs .nav-tabs {
    border-bottom: 0px;
}

.store-tabs .nav-tabs .nav-link {
    position: relative;
    color: #222;
    border: 0px;
}

.store-tabs .nav-tabs .nav-link.active::before {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0px;
    width: 100%;
    height: 2px;
    background-color: rgb(229, 7, 168);
}

.store-name a {
    color: #222;
    text-decoration: underline;
}

.home-img img {
    width: 100%;
}

.store-tabs .tab-content {
    margin-top: 20px;
    margin-bottom: 50px;
}

.shop_dtl_wrp {
    border: 1px solid rgba(128, 128, 128, .16);
    padding: 20px;
}

.shop_dtl_inr {
    display: flex;
    gap: 10px;
    padding: 8px 0px;
}

.store_data h5 {
    font-size: 18px;
}

.store_data {
    width: 170px;
    min-width: 170px;
    padding-right: 20px;
    position: relative;
}

.store_data::before {
    position: absolute;
    content: ":";
    right: 8px;
    font-size: 18px;
    color: #222;
    font-weight: 600;
}

/* Vendor Detail Redesign Styles */
.custom-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
}

.vendor-header-area {
    background: linear-gradient(rgba(1, 1, 136, 0.9), rgba(1, 1, 136, 0.9));
    padding: 60px 0;
    color: #fff;
}

.vendor-header-area .profile-img {
    width: 300px;
    height: 280px;
    border-radius: 0px;
    border: 4px solid #fff;
    object-fit: cover;
}

.vendor-gallery-slider {
    width: 250px;
    height: 250px;
    overflow: hidden;
    flex-shrink: 0;
}

.vendor-gallery-slider .swiper-slide {
    width: 250px !important;
    height: 250px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vendor-gallery-slider .swiper-slide img,
.vendor-gallery-slider .profile-img {
    display: block;
    flex-shrink: 0;
}

.badge-rating {
    background: #28a745;
    padding: 5px 12px;
    border-radius: 5px;
    font-weight: 600;
    color: #fff;
}

.day-slot .badge-light-primary {
    background: #fff;
    color: #010188;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.sticky-sidebar {
    position: sticky;
    top: 100px;
}

.contact-icon {
    width: 50px;
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e0e0ff;
    color: #010188;
    font-size: 1.3rem;
}

.price-tag {
    color: #010188;
    font-weight: 700;
    font-size: 1.1rem;
}

.salon-gallery-area {
    margin-bottom: 2rem;
}

.gallery-item {
    border-radius: 0px;
    overflow: hidden;
    height: 350px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-list-item {
    border-bottom: 1px dashed #ddd;
    padding: 15px 0;
}

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

/* Photo Gallery Section Styling */
.gallery-grid-section {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.gallery-grid-item {
    border-radius: 8px;
    overflow: hidden;
    height: 150px;
    position: relative;
    cursor: pointer;
}

.gallery-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.gallery-grid-item:hover img {
    transform: scale(1.05);
}

.more-photos-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 80, 0.7);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: bold;
}