/* Sub-items (always visible inside column) */
.bb-mega-menu {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.bg-success {
    --bs-bg-opacity: 1;
    background-color: #40a897 !important;
}

.selectable-card,
.selectable-size-card,
.selectable-delivery-card,
.selectable-quality-card,
.selectable-qty-card,
.selectable-colour-card,
.selectable-attachment-card,
.selectable-package-card,
.selectable-backing-card {
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.selectable-card.selected,
.selectable-size-card.selected,
.selectable-delivery-card.selected,
.selectable-quality-card.selected,
.selectable-qty-card.selected,
.selectable-colour-card.selected,
.selectable-attachment-card.selected,
.selectable-package-card.selected,
.selectable-backing-card.selected {
    border-color: #005745;
    /* green border */
    box-shadow: 0 0 8px #005745;
}

.check-icon {
    display: none;
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 1;
}

.selectable-card.selected .check-icon,
.selectable-size-card.selected .check-icon,
.selectable-delivery-card.selected .check-icon,
.selectable-quality-card.selected .check-icon,
.selectable-qty-card.selected .check-icon,
.selectable-colour-card.selected .check-icon,
.selectable-attachment-card.selected .check-icon,
.selectable-package-card.selected .check-icon,
.selectable-backing-card.selected .check-icon {
    display: block;
}


.modalImage {
    width: auto !important;
    height: auto !important;
    object-fit: cover;
}
.disabled-div {
    pointer-events: none;
    opacity: 0.5;
    user-select: none;
}
.text-red {
    color: red;
}

/* All inputs */
input::placeholder {
    color: #ccccccde; /* light grey */
    opacity: 1; /* ensure full visibility in some browsers */
}

/* If you only want to target your qty inputs */
.parent-card input::placeholder {
    color: #ccccccde;
}

.card-title {
    font-size: 24px !important;
    font-weight: 500 !important;
    margin-top: 0.2rem !important;
    margin-bottom: 0.2rem !important;
}

.fs-16 {
    font-size: 16px !important;
    font-weight: 500 !important;
}

/* Card hover zoom and shadow */
.shadow-sm {
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.shadow-sm:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.shadow-sm:hover .product-img {
    transform: scale(1.1);
}

/* Container centering */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

/* Basic spacing for page links */
.pagination .page-item {
    margin: 0 6px;
}

/* Page link base */
.pagination .page-link {
    border-radius: 6px;
    padding: 0.45rem 0.7rem;
    min-width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #374151; /* neutral text for normal pages */
    background: #fff;
    border: 1px solid #e5e7eb; /* light border */
    transition: all 160ms ease;
    box-shadow: none;
}

/* Hover state */
.pagination .page-link:hover {
    background: #f8fafc;
    color: #40a897;
    text-decoration: none;
}

/* Active page styling */
.pagination .page-item.active .page-link,
.pagination .page-link.active {
    background-color: #40a897; /* primary blue */
    color: #ffffff !important; /* white number */
    border-color: #40a897;
    box-shadow: none;
    transform: translateY(-2px); /* tiny lift like your screenshot */
}

/* Previous / Next smaller icons consistency */
.pagination .page-item.disabled .page-link {
    color: #9ca3af;
    background: #fff;
}

/* Remove default focus outline (optional) */
.pagination .page-link:focus {
    box-shadow: none;
    outline: none;
}

.hero {
    background-image: url("../img/category/lapel/banner.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 550px;
    display: flex;
    align-items: center;
    position: relative;
    padding: 4rem 0;
}

/* optional dark overlay for contrast (tune opacity) */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.12);
    pointer-events: none;
}

/* The white info card */
.hero-card {
    max-width: 660px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(18, 38, 63, 0.12);
    padding: 2.25rem;
    position: relative; /* above overlay */
    z-index: 2;
}

.hero h1 {
    font-weight: 700;
    font-size: clamp(1.6rem, 3.6vw, 3rem);
    margin-bottom: 0.6rem;
}

.hero p.lead {
    color: #495057;
    line-height: 1.55;
    margin-bottom: 1rem;
    text-align: justify;
    font-size: 16px !important;
}

.price-note {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 1.35rem;
}

.custom-pins-image,
.custom-pins-image img {
    padding: 0px !important;
    border-top-left-radius: 0px !important;
    border-top-right-radius: 22px !important;
    border-bottom-right-radius: 22px !important;
}

.product-type ul {
    list-style-type: disclosure-closed;
}

.how-section {
    padding: 4.5rem 1rem;
}
.how-title {
    font-weight: 700;
    font-size: clamp(1.6rem, 3.6vw, 2.4rem);
    text-align: center;
    margin-bottom: 2.5rem;
}
.step {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 1.5rem;
    align-items: center;
    padding: 1rem 0;
    margin: 0 100px;
}

/* image container */
.step-img {
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
    display: block;
}
.step-img img {
    width: 65%;
    height: auto;
    border-radius: 6px;
    display: block;
    object-fit: cover;
    box-shadow: 0 10px 24px rgba(15, 34, 54, 0.06);
}

/* step text */
.how-step-number {
    color: #12a453; /* green */
    font-weight: 700;
    margin-right: 6px;
    font-size: 22px;
}
.step-heading {
    font-weight: 700;
    margin-bottom: 0.35rem;
    font-size: 1.05rem;
    font-size: 22px;
}
.step-desc {
    color: #546074;
    line-height: 1.6;
    font-size: 16px;
}

/* arrow between steps (centered under image) */
.arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0.6rem 0;
}

/* vertical spacing between entries */
.step + .arrow {
    margin-top: -0.25rem;
}

/* Reverse layout for alternating look on wider screens */
.step.reverse {
    grid-template-columns: 260px 1fr;
    text-align: left;
}

.options-section {
    padding: 4rem 1rem;
    text-align: center;
}

.options-title {
    font-weight: 700;
    font-size: clamp(1.5rem, 2.5vw, 2.25rem);
    margin-bottom: 1rem;
}

.btn-tabs .btn {
    border-radius: 999px;
    padding: 0.55rem 1.05rem;
    border: 1px solid #e6e6e6;
    margin: 0 0.35rem;
}

.btn-tabs .btn.active {
    background: #e8fbef;
    color: #0f8f50;
    border-color: rgba(15, 143, 80, 0.18);
    box-shadow: 0 6px 18px rgba(15, 143, 80, 0.06);
}

/* cards grid */
.finish-grid {
    margin-top: 2.25rem;
}

.finish-card {
    background: #fff;
    border-radius: 14px;
    padding: 15px;
    text-align: center;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.finish-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(18, 38, 63, 0.08);
}

.finish-card.selected {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 22px 40px rgba(18, 38, 63, 0.12);
    border-color: rgba(15, 143, 80, 0.06);
}

.finish-img {
    height: 170px;
    display: block;
    margin: 0 auto 0.9rem;
    object-fit: contain;
    max-width: 180px;
}

.finish-label {
    font-weight: 600;
    font-size: 0.95rem;
    color: #222;
}

/* highlight the "featured" card in larger size (like your screenshot) */
.finish-card.featured {
    padding: 1.6rem;
    border-radius: 18px;
}

.section-cart b, strong {
    font-weight: 700;
    color: #000;
}

.pro-details p{
    /* font-size: 18px; */
    line-height: 28px;
    margin-bottom: 4px;
    color: #868686;
    font-weight: 400;
}

.process-card {
    background: #fff; /* Use your card background color */
    border-radius: 0.6rem;
    padding: 26px;
    box-shadow: 0 6px 20px rgba(18, 38, 63, 0.08); /* Match shadow style */
    border: 1px solid #e5e7eb; /* Use your light border */
}

.step-badge {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.6), transparent 20%),
                linear-gradient(180deg, #e8fbef, #40a897); /* Use accent colors from project */
    box-shadow: 0 6px 16px rgba(18, 38, 63, 0.08), inset 0 4px 8px rgba(255,255,255,0.18);
    margin: 0 auto 12px;
    position: relative;
    border: 4px solid rgba(255,255,255,0.55);
}

.step-badge .inner {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-weight: 800;
    box-shadow: 0 6px 14px rgba(18, 38, 63, 0.06);
}
.step-badge small {
    display: block;
    font-weight: 700;
    font-size: 11px;
    color: #6c757d; /* muted text */
    margin-top: 4px;
}

.step-title {
    font-weight: 600;
    font-size: 15px;
    margin-top: 6px;
}
.step-desc {
    color: #868686; /* muted color from .pro-details p */
    font-size: 16px;
    line-height: 1.45;
    margin-top: 6px;
    min-height: 64px;
}

.time-pill {
    display: inline-block;
    background: #e8fbef; /* pill background, use accent-2 */
    color: #0f8f50; /* pill text, use accent */
    padding: .45rem .9rem;
    border-radius: .6rem;
    font-weight: 700;
    font-size: 13px;
    margin-top: 12px;
    box-shadow: 0 6px 10px rgba(18, 38, 63, 0.12);
}

/* arrows between columns on large screens */
.arrow-svg {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
     margin-top: 20px;
}



.guarantee-card {
    max-width: 420px;
    border-radius: 14px;
    border: 1px solid #e5e7eb; /* match .process-card border */
    background: #fff; /* match card backgrounds */
    box-shadow: 0 6px 20px rgba(18, 38, 63, 0.08); /* match .process-card shadow */
    padding: 2rem;
}

.guarantee-title {
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.guarantee-title .accent {
    color: #40a897; /* use accent color */
    font-weight: 800;
}

.guarantee-item {
    display: flex;
    gap: 12px;
    padding: 1rem 0;
    align-items: flex-start;
}

.guarantee-item .icon-wrap {
    width: 34px;
    height: 34px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8fbef; /* use accent-2 background */
    color: #40a897; /* accent color */
    flex-shrink: 0;
    font-size: 1.05rem;
    box-shadow: inset 0 -1px 0 rgba(0,0,0,0.02);
}

.guarantee-item h6 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #222;
}

.guarantee-item p {
    margin: 6px 0 0 0;
    color: #868686; /* muted text color from .pro-details p */
    font-size: 0.95rem;
    line-height: 1.45;
}

.separator {
    height: 1px;
    background: #e5e7eb; /* match card border */
    margin: 6px 0;
}

.guarantee-item i{
    font-size: 1.5rem;
}

.pro-remove a:hover .text-success{
    text-decoration: none;
    color: #fff !important;
}

.fs-17{
    font-size: 17px !important;
}
.fs-15{
    font-size: 15px !important;
}
.fs-18{
    font-size: 18px !important;
}
p{
    font-weight: 500 !important;
}

.fs-40{
    font-size: 40px !important;
}
.fs-25{
    font-size: 25px !important;
}

.product-type li{
    font-weight: 500 !important;
}
.services-contact h4{
    font-size: 22px !important;
    font-weight: 600 !important;
}

.services-contact p{
    font-size: 15px !important;
}
.accordion-button{
    font-size: 18px !important;
    font-weight: 600 !important;
}

.bb-faq-contact .accordion-body{
    font-size: 16px !important;
    font-weight: 500 !important;
}
.bb-faq-contact .accordion-item .accordion-body{
    padding: 25px 25px 0;
}

.fully-options button{
    font-weight: 600 !important;
}

.bb-blog-card .blog-contact h5 a{
    font-size: 19px !important;
    font-weight: 600 !important;
}
.bb-blog-card .blog-contact p{
    font-size: 15px !important;
    font-weight: 500 !important;
}

.blog-btn a{
    font-size: 16px !important;
    font-weight: 600 !important;
}
.font-weight-500{
    font-weight: 500 !important;
}
.font-weight-600{
    font-weight: 600 !important;
}
.font-weight-700{
    font-weight: 700 !important;
}

.bb-instagram-card img {
    height: 100px !important;
    object-fit: contain !important;
}

.p-50{
    padding-top: 50px !important;
}
.mb-50{
    margin-bottom: 50px !important;
}

.product-img-2{
    width: 150px !important;
    height: 150px !important;
    object-fit: cover;
}

.btn-warning {
    --bs-btn-color: #000;
    --bs-btn-bg: #40a897;
    --bs-btn-border-color: #40a897;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #40a897;
    --bs-btn-hover-border-color: #40a897;
    --bs-btn-focus-shadow-rgb: 217, 164, 6;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #40a897;
    --bs-btn-active-border-color: #40a897;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #000;
    --bs-btn-disabled-bg: #40a897;
    --bs-btn-disabled-border-color: #40a897;
}

.text-primary {
    --bs-text-opacity: 1;
    color: #40a897 !important;
}


.bb-header .bb-mobile-menu .bb-menu-inner .bb-menu-content ul li .menu-toggle{
    width: 20%;
}

.main-img{
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.contact .time-pill{
    bottom: 160px !important;
}

.review-img{
    width: 350px !important;
    min-height: 250px !important;
    max-height: 250px !important;
    object-fit: cover !important;
}

.review-content{
    min-height: 200px !important;
    max-height: 200px !important;
}

input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.custom-select {
    display: none !important;
}

.select2-container--default .select2-selection--single {
    width: 100% !important;
    padding: 10px !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    color: #000000 !important;
    border: 1px solid #eee !important;
    outline: 0 !important;
    border-radius: 10px !important;
    height: auto !important;
}

/* Main select box */
.select2-container--default .select2-selection--single {
    height: 42px;
    border-radius: 6px;
    border: 1px solid #d1d5db;
    padding: 6px 10px;
}

/* Text alignment */
.select2-selection__rendered {
    line-height: 28px !important;
    color: #6b7280;
}

/* Arrow */
.select2-selection__arrow {
    height: 40px !important;
}

/* Dropdown box */
.select2-dropdown {
    border-radius: 6px !important;
    border: 1px solid #d1d5db !important;
    overflow: hidden !important;
}

/* Search box */
.select2-search__field {
    border-radius: 4px !important;
    padding: 8px !important;
    border: 1px solid #e5e7eb !important;
}

/* Option item */
.select2-results__option {
    padding: 10px !important;
    font-size: 14px !important;
}

/* Hover */
.select2-results__option--highlighted {
    background-color: #40a897 !important;
    color: #fff !important;
}

/* Selected */
.select2-results__option--selected {
    background-color: #40a897 !important;
    color: #fff !important;
}

.related-product .card{
    padding: 1px !important;
    border-radius: 4px !important;
}
.related-product  .card-body {
    height: auto !important;
    min-height: auto !important;
}