html {
    scroll-behavior: smooth;
}

body {
    padding-top: 70px;
      background: url(/assets/img/pink_bg2.png);
    background-size: cover;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    /* bold for logo */
    font-size: 28px;
    color: #e83e8c;
    /* your pink brand color */
}

.btn-outline-pink {
    color: #e83e8c;
    /* pink text */
    border-color: #e83e8c;
    /* pink border */
}

.btn-outline-pink:hover {
    color: #fff;
    /* white text on hover */
    background-color: #e83e8c;
    /* pink background */
    border-color: #e83e8c;
}

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

.btn-pink {
    background: linear-gradient(135deg, #e83e8c, #d63384);
    border: none;
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
    text-shadow: none;
    box-shadow: 0 2px 8px rgba(232,62,140,.2);
    transition: all .25s ease;
}

.btn-pink:hover,
.btn-pink:focus,
.btn-pink:active {
    color: #fff;
    background: linear-gradient(135deg, #d63384, #c22876);
    box-shadow: 0 4px 14px rgba(232,62,140,.35);
    transform: translateY(-1px);
}

.bg-pink {
    background: linear-gradient(135deg, #e83e8c, #d63384) !important;
    color: #fff !important;
}

/* ===== PREMIUM PAGINATION ===== */
.pageNavigation { display:flex; justify-content:center; margin:28px 0 30px; }
.pagination {
    gap: 6px;
    flex-wrap: wrap;
}

.pagination .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    color: #e83e8c;
    border: 1.5px solid #f0e0ea;
    border-radius: 10px !important;
    font-weight: 600;
    font-size: 14px;
    background: #fff;
    transition: all .2s ease;
    text-decoration: none;
}

.pagination .page-link:hover {
    background: #fdf2f8;
    border-color: #f5c6d8;
    color: #e83e8c !important;
    box-shadow: 0 2px 8px rgba(232,62,140,.12);
    transform: translateY(-1px);
}

.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #e83e8c, #d63384) !important;
    border-color: #e83e8c !important;
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(232,62,140,.35);
}

.pagination .page-item.disabled .page-link {
    background: #fafafa;
    border-color: #f0f0f0;
    color: #cbd5e1;
    box-shadow: none;
    transform: none;
    cursor: default;
}

/* Previous / Next: slightly wider */
.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
    padding: 0 18px;
    font-weight: 700;
}

/* Pagination: arrows hidden on desktop, text hidden on mobile */
.pagination .page-arrow {
    display: none;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}
@media (max-width: 575.98px) {
    .pagination { gap: 4px; }
    .pagination .page-link {
        min-width: 36px;
        height: 36px;
        padding: 0 10px;
        font-size: 13px;
    }
    .pagination .page-item:first-child .page-link,
    .pagination .page-item:last-child .page-link { padding: 0 12px; }
    .pagination .page-text { display: none; }
    .pagination .page-arrow { display: inline; }
    /* Hide pages beyond current±2 on mobile */
    .pagination .page-item[data-hide-mobile] { display: none; }
}

.form-control:focus {
    border-color: #ffa6cf;
    box-shadow: 0 0 0 .25rem rgb(244 237 240);
}

.card {
    border: 1px solid #f0e0ea;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(232,62,140,.06);
}


.bg-light {
    --bs-bg-opacity: 1;
    background-color: #fffdfd !important;
}

.sidebar-icons {
    margin-right: 10px;
}



#leftNav {
    /* width: 260px; */
    padding: 0;
}

.product-thumb {
    cursor: pointer;
}

.category-thumb {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 50% !important;
   /*  border: 2px solid pink; */
   box-shadow: 0px 0px 5px 2px #ccc;
}

/* responsive tweaks */
#sidebarToggle {
    display: none;
}

.navbar-brand {
    margin-left: 15px;
    color: #e83e8c;
    font-family: sans-serif;
    font-size: 24px;
    /* padding: 0; */
    /* margin-top: 15px;*/
}

.swiper-container {
    position: relative;
    overflow: hidden;
}

.carousel-indicators [data-bs-target] {
    background-color: white;
    height: 13px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 15px;
    color: white;
    font-weight: 700;
}

.swiper-button-next,
.swiper-button-prev {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e83e8c, #d63384);
    top: 87% !important;
    box-shadow: 0 3px 10px rgba(232,62,140,.25);
    transition: all .25s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    box-shadow: 0 5px 16px rgba(232,62,140,.35);
    transform: scale(1.08);
}

.dashedBorder {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, #f0e0ea, #e83e8c, #f0e0ea, transparent);
    opacity: .5;
}


.carousel-item {
    /* max-height: 300px; */
}

.product-title-thumb {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* show only 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
    /* adjust as needed */
    line-height: 1.4em;
    max-height: 2.8em;
    /* 2 lines * line-height */
    margin-bottom: 5px;
    text-shadow: 1px 1px 1px white;
    font-weight: bold;
}

.rating-stars {
    margin-bottom: 5px;
}

.pinkText {
    color: #e83e8c !important;
    text-shadow: 1px 1px 1px white;
}

.discount-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #ff5722;
    /* Amazon-like orange */
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 3px 6px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index:1;
}

/* Sidebar overall */
#leftNav {
    background: #ffffff;
    font-family: 'Segoe UI', sans-serif;
    font-size: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,.08);
    border-radius: 14px;
    margin-top: 4px;
}

/* Sidebar heading */
#leftNav h6 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Accordion buttons (main categories) */
#leftNav .accordion-button {
    background: #fff;
    color: #333;
    font-weight: 600;
    padding: 10px 12px;
    font-size: 14px;
    border: none;
    box-shadow: none;
    border-radius: 8px !important;
    transition: all 0.2s ease;
}

#leftNav .accordion-button:not(.collapsed) {
    background: #fdf2f8;
    color: #e83e8c;
}

#leftNav .accordion-button:hover {
    background: #fdf2f8;
}

/* Subcategories */
.list-group-item {
    border: none;
    border-radius: 0;
    padding: 8px 18px;
    font-size: 14px;
    color: #555;
    transition: all 0.2s ease;
}

.list-group-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.list-group-item:hover {
    background: #fdf2f8;
    color: #e83e8c;
}

.list-group-item.active,
.list-group-item.active a {
    background: #e83e8c;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
}

/* Offcanvas (mobile sidebar) */
#mobileSidebar .accordion-button {
    background: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px !important;
    border: none;
    box-shadow: none;
    transition: all 0.2s ease;
}
#mobileSidebar .accordion-button:not(.collapsed) {
    background: #fdf2f8;
    color: #e83e8c;
}
#mobileSidebar .accordion-button:hover {
    background: #fdf2f8;
}
#mobileSidebar .accordion-button i {
    color: #e83e8c;
}

#mobileSidebar .list-group-item {
    padding: 8px 16px;
    font-size: 14px;
    border: none;
    transition: all 0.2s ease;
}
#mobileSidebar #categoryAccordion .list-group-item {
    padding-left: 36px;
    font-size: 13px;
}
#mobileSidebar .list-group-item:hover {
    background: #fdf2f8;
    color: #e83e8c;
}
#mobileSidebar .list-group-item.active,
#mobileSidebar .list-group-item.active a {
    background: #e83e8c;
    color: #fff;
    border-radius: 6px;
}

#leftNav .accordion-button i {
    font-size: 16px;
    color: #e83e8c;
}

#leftNav .accordion-button:not(.collapsed) i {
    color: #c2185b;
}

#leftNav .list-group-item i {
    font-size: 18px;
    vertical-align: middle;
}

#leftNav .list-group-item a {
    display: flex;
    align-items: center;
}

.hover-shadow {
  border: 1px solid #f0e0ea;
  border-radius: 12px;
  transition: all 0.25s ease;
}
.hover-shadow:hover {
  box-shadow: 0 8px 24px rgba(232,62,140,.15);
  border-color: #f5c6d8;
  transform: translateY(-3px);
  background: #fdf2f8;
}

/* ========== Shared Card Styles ========== */
.card-img-top {
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.card-img-top:hover {
    transform: scale(1.05);
}

.card-img-top.loaded {
    display: block;
    opacity: 1;
}

.loaded {
    display: block !important;
    opacity: 1;
}

.card-img-wrapper {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
    position: relative;
}
.card-img-wrapper::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,.35) 100%);
    pointer-events: none;
    z-index: 3;
    border-radius: 10px;
}

.category-img-wrapper {
    overflow: hidden;
    box-shadow: 0px 0px 5px 2px #ccc;
    border-radius: 50%;
}

/* ========== Brand Card Styles ========== */
.brand-card {
    border: 1px solid #f0e0ea;
    border-radius: 12px;
    transition: all 0.25s ease;
    background: #fff;
}
.brand-card:hover {
    box-shadow: 0 8px 24px rgba(232,62,140,.15);
    border-color: #f5c6d8;
    transform: translateY(-3px);
    background: #fdf2f8;
}
.brand-card .card-img-wrapper {
    background: #fafafa;
    border-radius: 10px;
    padding: 8px;
}
.brand-card .card-img-top {
    height: 120px;
    object-fit: contain;
}
.brand-card h6 {
    font-weight: 600;
    margin-bottom: 4px;
}
.brand-city {
    font-size: 12px;
    color: #888;
    margin-bottom: 4px;
}
.brand-rating {
    margin-top: 2px;
}

/* ========== Shared Product Info ========== */
.price-label {
    color: #ef2883;
    font-weight: bold;
    font-size: 19px;
    text-shadow: 1px 1px 1px #ffffff;
}

.brand-name {
    font-size: 12px;
    color: #777 !important;
    text-transform: capitalize;
    font-style: italic;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    max-width: 100%;
}

/* ========== Skeleton Loaders ========== */
.image-skeleton {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(90deg, #ffd6e0 25%, #ffe6ee 50%, #ffd6e0 75%);
    background-size: 200% 100%;
    animation: shimmerPink 1.5s infinite;
    box-shadow: 0 0 5px 3px #fcd0df;
    position: absolute;
    top: 0;
    left: 0;
}

.category-image-skeleton {
    width: 110px;
    height: 110px;
    border-radius: 50% !important;
    background: linear-gradient(90deg, #ffd6e0 25%, #ffe6ee 50%, #ffd6e0 75%);
    background-size: 200% 100%;
    animation: shimmerPink 1.5s infinite;
    box-shadow: 0 0 5px 3px #fcd0df;
    position: absolute;
}

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

.pink-border{
    border: 1px solid pink !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.country-flag-emoji {
 position: absolute;
    top: 6px;
    left: 6px;
    font-size: 16px;
    line-height: 1;
    z-index: 2;
    background: white;
    /* padding: 0px 2px; */
    border-radius: 2px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .3);
}




/* ========== Floating Action Buttons ========== */
.floating-share {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background-color: #ff4081;
    color: #fff;
    font-size: 30px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    transition: all 0.3s ease;
}

.floating-share:hover {
    transform: scale(1.1);
}

.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    font-size: 30px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    transition: all 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background-color: #20b558;
}

/* ========== Breadcrumb (stores/events/services) ========== */
.pb-breadcrumb {
    background: #fdf2f8;
    border-radius: 8px;
    padding: 10px 16px;
}
.pb-breadcrumb .breadcrumb {
    margin-bottom: 0;
    font-size: 13px;
}
.pb-breadcrumb .breadcrumb-item a {
    color: #e83e8c;
    text-decoration: none;
    font-weight: 500;
    transition: color .2s;
}
.pb-breadcrumb .breadcrumb-item a:hover {
    color: #c2185b;
    text-decoration: underline;
}
.pb-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "\203A";
    color: #ccc;
    font-weight: 600;
    font-size: 15px;
}
.pb-breadcrumb .breadcrumb-item.active {
    color: #333;
    font-weight: 600;
}

/* ========== Distance Badge (stores/events/services) ========== */
.distance-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin: 0 auto 6px;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 12px;
    background: #fdf2f8;
    color: #e83e8c;
    border: 1px solid #f0e0ea;
    border-radius: 20px;
}
.distance-badge i {
    font-size: 12px;
    color: #d63384;
}

/* ========== Google Places Autocomplete ========== */
.pac-container {
    z-index: 2000 !important;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    margin-top: 5px;
}
.pac-item {
    padding: 8px 12px;
    cursor: pointer;
}
.pac-item:hover {
    background-color: #f8f9fa;
}

@media (max-width:768px) {
    #leftNav {
        display: none;
    }

    main {
        margin-left: 0;
    }

    .navbar-brand {
        margin-left: 55px;
    }

    #sidebarToggle {
        display: inline-block;
        position: fixed;
        top: 10px;
    }

    #searchForm {
        width: 100% !important;
       /* margin-top: 10px; */
    }

    body {
        padding-top: 160px;
    }
}

/* ========== Layout spacing — balanced margins ========== */
@media (min-width: 769px) {
    main.col-lg-10 {
        padding-left: 0.75rem !important;
        padding-right: 0 !important;
    }
    .container-fluid > .row {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}

/* ========== Listing Page Wrapper (stores/events/services) ========== */
.listing-wrapper {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,.08);
    padding: 25px;
    margin-top: 4px;
    margin-bottom: 20px;
}
@media (max-width: 575.98px) {
    .listing-wrapper {
        padding: 12px;
        border-radius: 10px;
        margin-top: 0;
    }
}

/* ========== noUiSlider Premium ========== */
.noUi-horizontal {
    height: 9px !important;
}
.noUi-horizontal .noUi-handle {
    top: -6px !important;
}
.noUi-target {
    background: #f0e0ea !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 6px !important;
}
.noUi-connect {
    background: linear-gradient(135deg, #e83e8c, #d63384);
    border-radius: 6px;
}
.noUi-handle {
    width: 20px !important;
    height: 20px !important;
    border-radius: 50% !important;
    border: 3px solid #e83e8c !important;
    background: #fff !important;
    box-shadow: 0 2px 8px rgba(232,62,140,.3) !important;
    cursor: pointer;
    right: -10px !important;
}
.noUi-handle::before,
.noUi-handle::after {
    display: none !important;
}
.noUi-handle:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(232,62,140,.15) !important;
}
/* Slider price labels */
#priceSlider {
    margin-top: 14px;
}
#priceSlider + .d-flex {
    margin-top: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #666;
}

/* ========== Filter Modal Premium ========== */
.modal-content {
    border: none;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,.15);
    overflow: hidden;
}
.modal-header {
    background: linear-gradient(135deg, #e83e8c, #d63384);
    color: #fff;
    border-bottom: none;
    padding: 18px 24px;
}
.modal-header .modal-title {
    font-weight: 700;
    font-size: 17px;
}
.modal-header .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}
.modal-header .btn-close:hover {
    opacity: 1;
}
.modal-body {
    padding: 24px;
}
.modal-body .form-label {
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #666;
    margin-bottom: 6px;
}
.modal-body .form-select,
.modal-body .form-control {
    border-radius: 10px;
    border: 1.5px solid #e0e0e0;
    padding: 10px 14px;
    font-size: 14px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.modal-body .form-select:focus,
.modal-body .form-control:focus {
    border-color: #e83e8c;
    box-shadow: 0 0 0 3px rgba(232,62,140,.12);
}
.modal-footer {
    border-top: 1px solid #f0f0f0;
    padding: 16px 24px;
    gap: 10px;
}
.modal-footer .btn-outline-secondary {
    border-radius: 10px;
    font-size: 14px;
    padding: 8px 20px;
}
.modal-footer .btn-pink {
    border-radius: 10px;
    font-size: 14px;
    padding: 8px 20px;
}

/* ========== Success Modal ========== */
.success-modal .modal-content {
    text-align: center;
    padding: 40px 30px;
    border-radius: 20px;
}
.success-modal .success-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #e83e8c, #d63384);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    box-shadow: 0 8px 25px rgba(232,62,140,.3);
}
.success-modal h5 {
    font-weight: 700;
    font-size: 20px;
    color: #333;
    margin-bottom: 8px;
}
.success-modal p {
    color: #777;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}
.success-modal .btn-pink {
    border-radius: 25px;
    padding: 10px 40px;
    font-weight: 600;
    font-size: 15px;
}

/* ========== Listing Page Header ========== */
.listing-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}
.listing-header .listing-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}
.listing-header .btn {
    white-space: nowrap;
    font-size: 14px;
}
@media (max-width: 575.98px) {
    .listing-header {
        gap: 8px;
    }
    .listing-header .listing-title {
        font-size: 22px;
    }
    .listing-header .btn {
        display: none;
    }
}
.listing-cta-bottom {
    display: none;
}
@media (max-width: 575.98px) {
    .listing-cta-bottom {
        display: block;
        text-align: center;
        margin: 20px 0 10px;
    }
}

/* ========== Detail Page Shared (store/event/service) ========== */
.detail-wrapper {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(232,62,140,.08);
    border: 1px solid #f0e0ea;
    padding: 25px;
    margin-top: 4px;
}
@media (max-width: 575.98px) {
    .detail-wrapper {
        padding: 10px;
        border-radius: 10px;
        margin-top: 0;
    }
}
.detail-sticky {
    position: sticky;
    top: 90px;
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    border: 1px solid #f0e0ea;
    box-shadow: 0 4px 16px rgba(232,62,140,.1);
}
@media (max-width: 575.98px) {
    .detail-sticky {
        padding: 8px 10px;
        border-radius: 10px;
        box-shadow: none;
        border: none;
        background: transparent;
    }
}
.detail-hero img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #f0e0ea;
    box-shadow: 0 4px 12px rgba(232,62,140,.1);
}

/* ========== Mobile Sticky Bar (store/event/service) ========== */
.mobile-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -4px 12px rgba(0,0,0,.15);
    display: none;
    z-index: 9999;
}
.mobile-bar a {
    flex: 1;
    padding: 14px 0;
    text-align: center;
    font-size: 20px;
    color: #fff;
}
.mobile-whatsapp { background: #25D366; }
.mobile-call { background: #198754; }
.mobile-map { background: #0d6efd; }

@media (max-width: 768px) {
    .mobile-bar { display: flex; }
    .has-mobile-bar { padding-bottom: 75px; }
}

/* ========== Action Buttons (store/event/service) ========== */
.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(232,62,140,.1);
}
.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(232,62,140,.18);
}
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #1ebe5d; color: #fff; }
.btn-call { background: linear-gradient(135deg, #198754, #20c997); color: #fff; }
.btn-call:hover { color: #fff; }
.btn-map { background: #fdf2f8; color: #e83e8c; border: 2px solid #f0e0ea; }
.btn-map:hover { background: #e83e8c; color: #fff; border-color: #e83e8c; }

/* ========== Detail Page Section Headings ========== */
.detail-wrapper h5 {
    font-weight: 700;
    color: #333;
    padding-left: 14px;
    position: relative;
}
.detail-wrapper h5::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    bottom: 2px;
    width: 4px;
    border-radius: 4px;
    background: linear-gradient(135deg, #e83e8c, #d63384);
}
.detail-wrapper hr {
    border: none !important;
    height: 1px !important;
    background: linear-gradient(90deg, transparent, #f5c6d8 30%, #f5c6d8 70%, transparent) !important;
    opacity: 1 !important;
    margin: 1.5em 0 !important;
}

/* ========== Embedded iframe (store/event detail pages) ========== */
.detail-wrapper iframe {
    display: block;
    width: 100%;
    margin: 15px auto;
    border: none;
    overflow: hidden;
    box-shadow: 0px 0px 2px 1px #ccc;
    border-radius: 10px;
    height: 559px;
}
.detail-wrapper .fb-video {
    width: 315px;
}
/* Rating link → scroll to reviews */
a.review-scroll-link:hover .fw-semibold {
    color: #e83e8c !important;
}
a.review-scroll-link:hover span[style*="376ede"] {
    color: #1a56c4 !important;
    border-bottom-color: #1a56c4 !important;
}
