﻿

/* Header Container */
.header-container {
    background-color: #ffffff;
    border-bottom: 1px solid #f0e6ec;
    box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}

/* Main Row Layout */
.header-main-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

/* Logo Section */
.logo-section {
    flex-shrink: 0;
}

.logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

/* Search Section */
.search-section {
    flex: 1;
    max-width: 35%;
    min-width: 280px;
}

/* Right Side Section */
.right-side-section {
    flex-shrink: 0;
}

/* Top Row - Contact & Auth */
.top-action-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

/* Individual Action Items */
.action-item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .action-item:hover {
        opacity: 0.8;
    }

.action-icon-header {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .action-icon-header svg {
        width: 18px;
        height: 18px;
    }

.action-text {
    font-size: 12px;
    font-weight: 500;
    color: #2d2a32;
}

.action-text-small {
    font-size: 11px;
    font-weight: 400;
    color: #6c757d;
}

.action-link {
    text-decoration: none;
    color: #2d2a32;
}

    .action-link:hover {
        color: #982464;
    }

/* Separator */
.separator {
    width: 1px;
    height: 20px;
    background-color: #e9e2ed;
}

/* Bottom Row - Services & Actions */
.bottom-action-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}

/* Each bottom item with right border */
.bottom-item {
    display: flex;
    align-items: center;
    padding: 0 16px;
    border-right: 1px solid #e9e2ed;
    transition: all 0.2s ease;
}

    .bottom-item:first-child {
        padding-left: 0;
    }

    .bottom-item:last-child {
        border-right: none;
        padding-right: 0;
    }

/* Pincode Trigger Button */
.pincode-trigger-btn {
    background-color: transparent !important;
    border: none !important;
    padding: 0 !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .pincode-trigger-btn:hover {
        opacity: 0.8;
    }

.text-pink {
    color: #982464 !important;
}

.bg-web {
    background-color: #982464 !important;
}

.text-web2 {
    color: #b35784;
}

.font-12 {
    font-size: 12px;
}

.small {
    font-size: 11px;
    line-height: 1.3;
}

.fw-bold {
    font-weight: 600;
}

.fw-semibold {
    font-weight: 500;
}

/* Premium Search Styles */
.premium-search-wrapper {
    width: 100%;
}

.premium-search-input-group {
    position: relative;
    width: 100%;
}

.premium-search-input {
    width: 100%;
    padding: 14px 48px 14px 20px;
    font-size: 14px;
    border: none;
    border-radius: 50px;
    background: #ffffff;
    transition: all 0.3s ease;
    outline: none;
    font-family: inherit;
}

.floating-label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #9ca3af;
    pointer-events: none;
    transition: all 0.2s ease;
    background: white;
    padding: 0 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(100% - 80px);
}

.premium-search-input:focus ~ .floating-label,
.premium-search-input:not(:placeholder-shown) ~ .floating-label {
    top: 0;
    font-size: 11px;
    color: #982464;
    background: white;
}

.highlight {
    color: #982424;
    font-weight: 500;
}

.clear-btn {
    position: absolute;
    right: 52px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 20px;
    color: #9ca3af;
    cursor: pointer;
    display: none;
    padding: 0;
    line-height: 1;
}

.search-submit-btn:hover {
    background: #7a1d4f;
}

/* Pincode Dropdown */
.pincode-dropdown {
    width: 420px;
    border: 1px solid #f0e6ec;
    border-radius: 1rem;
    background: white;
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.dash_input {
    border: 1px solid #e2d6e8;
    border-radius: 40px;
    padding: 0.75rem 1rem;
    font-size: 14px;
}

    .dash_input:focus {
        outline: none;
        border-color: #982464;
        box-shadow: 0 0 0 3px rgba(152,36,100,0.1);
    }

.btn.rounded-pill {
    border-radius: 40px !important;
}

/* Profile Dropdown */
.dropdown-menu-custom {
    min-width: max-content;
    border-radius: 12px;
    background: white;
    border: 1px solid #eee;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
}

    .dropdown-menu-custom li {
        padding: 8px 20px;
        cursor: pointer;
        font-size: 14px;
        color: #2d2a32;
        transition: all 0.2s;
    }

        .dropdown-menu-custom li:hover {
            background-color: #fdf4ff;
            color: #982464;
        }

/* Badge Styles */
.badge-hidden {
    display: none !important;
}

.badge.bg-danger {
    background-color: #dc3545 !important;
    font-size: 0.65rem;
    min-width: fit-content;
    height: 18px;
    padding: 0.25rem 0.45rem !important;
    line-height: 1;
    border-radius: 50%;
}

/* Icon Buttons */
.icon-btn-custom {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
}

/* Mobile Responsive */
@media (max-width: 1200px) {
    .search-section {
        max-width: 30%;
    }

    .bottom-item {
        padding: 0 12px;
    }
}

@media (max-width: 992px) {
    .header-main-row {
        flex-direction: column;
        align-items: stretch;
    }

    .search-section {
        max-width: 100%;
    }

    .right-side-section {
        width: 100%;
    }

    .pincode-dropdown {
        width: 320px;
        left: 0;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .top-action-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .bottom-action-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .bottom-item {
        border-right: none;
        padding: 8px 12px;
    }
}

.text-decoration-none {
    text-decoration: none;
}

.cursor-pointer {
    cursor: pointer;
}

body {
    padding-top: 135px;
}

header .logo {
    max-width: 180px !important;
}


/* ===== ORIGINAL STYLES (unchanged) ===== */
/* Header Container */
.header-container {
    background-color: #ffffff;
    border-bottom: 1px solid #f0e6ec;
    box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}

/* Main Row Layout */
.header-main-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

/* Logo Section */
.logo-section {
    flex-shrink: 0;
}

.logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

/* Search Section */
.search-section {
    flex: 1;
    max-width: 35%;
    min-width: 280px;
}

/* Right Side Section */
.right-side-section {
    flex-shrink: 0;
}

/* Top Row - Contact & Auth */
.top-action-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

/* Individual Action Items */
.action-item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .action-item:hover {
        opacity: 0.8;
    }

.action-icon-header {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .action-icon-header svg {
        width: 18px;
        height: 18px;
    }

.action-text {
    font-size: 12px;
    font-weight: 500;
    color: #2d2a32;
}

.action-text-small {
    font-size: 11px;
    font-weight: 400;
    color: #6c757d;
}

.action-link {
    text-decoration: none;
    color: #2d2a32;
}

    .action-link:hover {
        color: #982464;
    }

/* Separator */
.separator {
    width: 1px;
    height: 20px;
    background-color: #e9e2ed;
}

/* Bottom Row - Services & Actions */
.bottom-action-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}

/* Each bottom item with right border */
.bottom-item {
    display: flex;
    align-items: center;
    padding: 0 16px;
    border-right: 1px solid #e9e2ed;
    transition: all 0.2s ease;
}

    .bottom-item:first-child {
        padding-left: 0;
    }

    .bottom-item:last-child {
        border-right: none;
        padding-right: 0;
    }

/* Pincode Trigger Button */
.pincode-trigger-btn {
    background-color: transparent !important;
    border: none !important;
    padding: 0 !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .pincode-trigger-btn:hover {
        opacity: 0.8;
    }

.text-pink {
    color: #982464 !important;
}

.bg-web {
    background-color: black !important;
}



.text-web2 {
    color: #b35784;
}

.font-12 {
    font-size: 12px;
}

.small {
    font-size: 11px;
    line-height: 1.3;
}

.fw-bold {
    font-weight: 600;
}

.fw-semibold {
    font-weight: 500;
}

/* Premium Search Styles */
.premium-search-wrapper {
    width: 100%;
}

.premium-search-input-group {
    position: relative;
    width: 100%;
}

.premium-search-input {
    width: 100%;
    padding: 14px 48px 14px 20px;
    font-size: 14px;
    border: none;
    border-radius: 50px;
    background: #ffffff;
    transition: all 0.3s ease;
    outline: none;
    font-family: inherit;
}

.floating-label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #9ca3af;
    pointer-events: none;
    transition: all 0.2s ease;
    background: white;
    padding: 0 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(100% - 80px);
}

.premium-search-input:focus ~ .floating-label,
.premium-search-input:not(:placeholder-shown) ~ .floating-label {
    top: 0;
    font-size: 11px;
    color: #982464;
    background: white;
}

.clear-btn {
    position: absolute;
    right: 52px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 20px;
    color: #9ca3af;
    cursor: pointer;
    display: none;
    padding: 0;
    line-height: 1;
}

.search-submit-btn:hover {
    background: #7a1d4f;
}

/* Pincode Dropdown */
.pincode-dropdown {
    width: 420px;
    border: 1px solid #f0e6ec;
    border-radius: 1rem;
    background: white;
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.dash_input {
    border: 1px solid #e2d6e8;
    border-radius: 40px;
    padding: 0.75rem 1rem;
    font-size: 14px;
}

    .dash_input:focus {
        outline: none;
        border-color: #982464;
        box-shadow: 0 0 0 3px rgba(152,36,100,0.1);
    }

.btn.rounded-pill {
    border-radius: 40px !important;
}

/* Profile Dropdown */
.dropdown-menu-custom {
    min-width: max-content;
    border-radius: 12px;
    background: white;
    border: 1px solid #eee;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
}

    .dropdown-menu-custom li {
        padding: 8px 20px;
        cursor: pointer;
        font-size: 14px;
        color: #2d2a32;
        transition: all 0.2s;
    }

        .dropdown-menu-custom li:hover {
            background-color: #fdf4ff;
            color: #982464;
        }

/* Badge Styles */
.badge-hidden {
    display: none !important;
}

.badge.bg-danger {
    background-color: #dc3545 !important;
    font-size: 0.65rem;
    min-width: fit-content;
    height: 18px;
    padding: 0.25rem 0.45rem !important;
    line-height: 1;
    border-radius: 50%;
}


/* Icon Buttons */
.icon-btn-custom {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
}

/* Mobile Responsive */
@media (max-width: 1200px) {
    .search-section {
        max-width: 30%;
    }

    .bottom-item {
        padding: 0 12px;
    }
}

@media (max-width: 992px) {
    .header-main-row {
        flex-direction: column;
        align-items: stretch;
    }

    .search-section {
        max-width: 100%;
    }

    .right-side-section {
        width: 100%;
    }

    .pincode-dropdown {
        width: 320px;
        left: 0;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .top-action-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .bottom-action-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .bottom-item {
        border-right: none;
        padding: 8px 12px;
    }
}

.text-decoration-none {
    text-decoration: none;
}

.cursor-pointer {
    cursor: pointer;
}

body {
    padding-top: 110px;
    margin: 0;
    font-family: var(--theme-font-primary);
}

header .logo {
    max-width: 180px !important;
}


@media (max-width: 991px) {
    body {
        padding-top: 1rem;
    }
}

@media (max-width: 491px) {
    body {
        padding-top: 43px;
    }
}
/* Additional helper for new row layout */
.header-two-rows {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #f0e6ec;
    box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}

.row-top {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 8px 0px 0px 0px;
    background-color: #ffffff;
    /*            border-bottom: 1px solid #f8f0f5;*/
}

.row-bottom {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    background-color: #ffffff;
    justify-content: space-around;
}

.logo-area {
    flex-shrink: 0;
}

.search-area {
    flex: 1;
    min-width: 280px;
    max-width: 650px;
}

.right-actions-area {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
    /* preserve original bottom-item styles for second row elements */
    .right-actions-area .bottom-item {
        display: flex;
        align-items: center;
        padding: 0 12px;
        border-right: 1px solid #e9e2ed;
    }

        .right-actions-area .bottom-item:last-child {
            border-right: none;
            padding-right: 0;
        }

        .right-actions-area .bottom-item:first-child {
            padding-left: 0;
        }
/* wishlist and cart special buttons (no border extra) */
.wishlist-cart-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
    margin-left: 4px;
}
/* ensure all original interactive styles remain */
.pincode-trigger-btn, .bottom-item a, .bottom-item button {
    transition: all 0.2s ease;
}

    .bottom-item button:focus, .pincode-trigger-btn:focus {
        outline: none;
    }


/* Updated styles for better alignment */
.header-two-rows {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #f0e6ec;
    box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}

.row-top {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background-color: #ffffff;
}

.row-bottom {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    background-color: #ffffff;
    justify-content: space-around;
}

.logo-area {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.logo img {
    height: auto;
    width: auto;
    object-fit: contain;
    display: block;
}

.search-area {
    flex: 1;
    min-width: 280px;
    max-width: 650px;
    margin: 0 20px;
}

/* Search bar height consistency */
.premium-search-wrapper {
    width: 100%;
    height: 100%;
}

.premium-search-input-group {
    position: relative;
    width: 100%;
    height: 100%;
}

.premium-search-input {
    width: 100%;
    padding: 14px 48px 14px 20px;
    font-size: 14px;
    box-shadow: none;
    background: #ffffff;
    transition: all 0.3s ease;
    outline: none;
    font-family: inherit;
    height: 40px;
}



.clear-btn {
    position: absolute;
    right: 52px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 20px;
    color: #9ca3af;
    cursor: pointer;
    display: none;
    padding: 0;
    line-height: 1;
}

.right-actions-area {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    height: 52px;
}

    /* Each bottom item with consistent height */
    .right-actions-area .bottom-item {
        display: flex;
        align-items: center;
        padding: 0 16px;
        border-right: 1px solid #e9e2ed;
        height: 40px;
        transition: all 0.2s ease;
    }

        .right-actions-area .bottom-item:first-child {
            padding-left: 0;
        }

        .right-actions-area .bottom-item:last-child {
            border-right: none;
            padding-right: 0;
        }

/* Pincode trigger button styling */
.pincode-trigger-btn {
    background-color: transparent !important;
    border: none !important;
    padding: 0 !important;
    display: flex;
    align-items: center;
    gap: 8px;
    height: 100%;
}

    .pincode-trigger-btn svg {
        flex-shrink: 0;
    }

    .pincode-trigger-btn .text-start {
        line-height: 1.3;
    }

/* Store and Scheme links */
.right-actions-area .bottom-item a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    height: 100%;
}

    .right-actions-area .bottom-item a svg,
    .right-actions-area .bottom-item a i {
        flex-shrink: 0;
    }

/* Wishlist and Cart wrapper */
.wishlist-cart-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 8px;
    height: 52px;
}

    .wishlist-cart-wrapper .position-relative {
        display: flex;
        align-items: center;
    }

    .wishlist-cart-wrapper a,
    .wishlist-cart-wrapper button {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        min-width: 32px;
    }



/* Responsive adjustments */
@media (max-width: 1400px) {
    .right-actions-area .bottom-item {
        padding: 0 12px;
    }

    .wishlist-cart-wrapper {
        gap: 15px;
    }
}

@media (max-width: 1200px) {
    .row-bottom {
        gap: 15px;
        /*padding: 12px 20px;*/
    }

    .search-area {
        min-width: 250px;
        margin: 0 15px;
    }

    .right-actions-area .bottom-item {
        padding: 0 10px;
    }

    .wishlist-cart-wrapper {
        gap: 12px;
    }
}

@media (max-width: 992px) {
    .row-bottom {
        flex-wrap: wrap;
        gap: 15px;
        /*padding: 12px 20px;*/
    }

    .logo-area {
        order: 1;
    }

    .search-area {
        order: 3;
        max-width: 100%;
        width: 100%;
        margin: 0;
    }

    .right-actions-area {
        order: 2;
        flex: 1;
        justify-content: flex-end;
        height: auto;
    }

        .right-actions-area .bottom-item {
            height: auto;
            padding: 8px 12px;
        }

    .wishlist-cart-wrapper {
        height: auto;
    }
}

@media (max-width: 768px) {
    .row-top {
        padding: 6px 16px;
        min-height: 42px;
    }
    /*.row-bottom {
                padding: 10px 16px;
            }*/

    .right-actions-area {
        gap: 5px;
    }

        .right-actions-area .bottom-item {
            padding: 6px 10px;
        }

    .wishlist-cart-wrapper {
        gap: 12px;
    }

    .premium-search-input {
        height: 40px;
        padding: 12px 45px 12px 16px;
    }

    .search-submit-btn {
        width: 34px;
        height: 34px;
    }

    .clear-btn {
        right: 48px;
    }
}

/* Ensure consistent vertical alignment */
.bottom-item .text-start {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.2;
}

.bottom-item .small {
    font-size: 10px;
    margin-bottom: 2px;
}

.bottom-item .text-pink {
    font-size: 11px;
}

/* Fix for icons alignment */
.bottom-item svg,
.bottom-item i {
    vertical-align: middle;
}

/* Ensure the pincode dropdown doesn't affect layout */
.header-pincode-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
}

/* Add this to ensure the search bar matches the height of right actions */
@media (min-width: 993px) {
    .search-area {
        display: flex;
        align-items: center;
    }

    .premium-search-wrapper {
        width: 100%;
    }

    .premium-search-input-group {
        display: flex;
        align-items: center;
    }

    .premium-search-input {
        height: 40px;
    }
}

.badge.bg-danger {
    background-color: #dc3545 !important;
    font-size: 0.65rem;
    min-width: fit-content;
    height: 18px;
    padding: 0.25rem 0.45rem !important;
    line-height: 1;
    border-radius: 50%;
}

.wishlist-cart-wrapper .position-relative .badge {
    transform: translate(25%, -25%);
}


/* ----- EXTRA STYLES FOR NEW DESIGN (no existing IDs changed) ----- */
.bg-soilred {
    background-color: Black !important; /* soil red / earthy red */
}

.bg-beige {
    background-color: White !important; /* classic beige */
}

.text-soilred {
    color: Black !important;
}
/* first row custom text & link styling */
.top-action-row .action-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 0.7rem;
    transition: opacity 0.2s;
}

    .top-action-row .action-item:hover {
        opacity: 0.85;
        color: white;
    }

.top-action-row .separator {
    width: 1px;
    height: 20px;
    background-color: rgba(255,255,255,0.3);
    margin: 0 6px;
}

/* second row layout fix */
.desktop-second-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
    /*            padding: 12px 0;*/
}

.logo-area-modern {
    flex-shrink: 0;
}

.categories-wrapper-modern {
    flex: 1;
    margin: 0 20px;
}
    /* categories menu horizontal styling */
    .categories-wrapper-modern .categories-container {
        background: transparent !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .categories-wrapper-modern .category-list,
    .categories-wrapper-modern ul.category-menu {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        list-style: none;
        margin: 0;
        padding: 0;
        align-items: center;
    }

        .categories-wrapper-modern .category-list li,
        .categories-wrapper-modern ul.category-menu li {
            position: relative;
        }

            .categories-wrapper-modern .category-list li a,
            .categories-wrapper-modern ul.category-menu li a {
                text-decoration: none;
                color: #3b2a1f;
                font-weight: 600;
                font-size: 0.9rem;
                white-space: nowrap;
                padding: 6px 0;
                display: inline-block;
                transition: color 0.2s;
            }

                .categories-wrapper-modern .category-list li a:hover,
                .categories-wrapper-modern ul.category-menu li a:hover {
                    color: black;
                }
/* right actions group (search + icons) */
.right-actions-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
/* premium search bar (repositioned) */
.premium-search-wrapper {
    min-width: 240px;
}

.premium-search-input-group {
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 0px;
    border-bottom: 1px solid black;
    transition: all 0.2s;
}

    .premium-search-input-group:focus-within {
        border-color: black;
        box-shadow: 0 0 0 2px rgba(139,58,58,0.2);
    }

.floating-label {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.85rem;
    color: #8a8a8a;
    pointer-events: none;
    transition: 0.15s linear;
    white-space: nowrap;
    background: transparent;
}

.premium-search-input {
    width: 100%;
    padding: 12px 45px 12px 18px;
    border: none;
    border-radius: 48px;
    outline: none;
    font-size: 0.9rem;
    background: white;
}

    .premium-search-input:focus + .floating-label,
    .premium-search-input:not(:placeholder-shown) + .floating-label {
        opacity: 0;
        visibility: hidden;
    }

.clear-btn {
    position: absolute;
    right: 50px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #aaa;
    display: none;
    line-height: 1;
    top: 50%;
    transform: translateY(-50%);
}

/* wishlist / cart / profile icons */
.icon-action-btn {
    position: relative;
    display: flex;
    align-items: center;
    background: none;
    border: none;
    color: #3b2a1f;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.2s;
    text-decoration: none;
}

    .icon-action-btn:hover {
        color: black;
    }

.badge-count {
    position: absolute;
    top: -8px;
    right: -12px;
    background-color: #dc3545;
    color: white;
    font-size: 0.65rem;
    font-weight: 600;
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

.profile-btn {
    font-size: 24px;
    background: none;
    border: none;
}
/* hide old pincode dropdown from desktop to avoid conflicts but keep DOM clean */
.header-pincode-wrapper.desktop-pincode-removed {
    display: none !important;
}
/* make categories container inside second row responsive */
@media (max-width: 1199px) {
    .categories-wrapper-modern {
        margin: 0 12px;
    }

    .right-actions-group {
        gap: 12px;
    }

    .premium-search-wrapper {
        min-width: 200px;
    }
}

@media (max-width: 992px) {
    .desktop-second-row {
        flex-wrap: wrap;
    }

    .categories-wrapper-modern {
        order: 2;
        width: 100%;
        margin: 10px 0 0;
    }

    .right-actions-group {
        order: 1;
    }

    .mobile-hero-area {
        margin-top: 3% !important;
    }
}


.desktop-second-row {
    display: flex;
    align-items: center;
    width: 100%;
}

/* LEFT: logo */
.logo-area-modern {
    flex: 0 0 auto;
}

/* CENTER: categories */
.categories-wrapper-modern {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* RIGHT: search + icons */
.right-actions-group {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
}

@media (max-width:1375px) {
    .categories-wrapper-modern {
        margin: 0;
    }

    .desktop-second-row {
        padding: 0px;
    }
}

.navbar-nav .nav-item .nav-link {
    font-size: 15px;
}

@media (max-width:1180px) and (min-width:990px) {
    .col-md-8 {
        flex: 0 0 auto;
        width: 56.666667%;
    }
}


/* ------------------------------
            GLOBAL BLACK & WHITE THEME
            NO BORDER-RADIUS ANYWHERE
        -------------------------------- */
*,
*::before,
*::after {
    border-radius: 0px !important;
}

body {
    background: white;
    color: #000000;
}

/* Override header background classes to enforce black/white */
.bg-soilred {
    background-color: #000000 !important;
    color: #ffffff !important;
}

.bg-beige {
    background-color: #ffffff !important;
    color: #000000 !important;
    border-bottom: 1px solid #e5e5e5;
}

/* All icon buttons, action items, and interactive elements – strict radius 0 */
.icon-action-btn,
.header-action-btn,
.action-item,
.btn,
button,
.btn:focus,
button:focus,
.icon-action-btn:focus,
.header-action-btn:focus,
.action-item:focus,
.mobile-header button,
.offcanvas button,
.offcanvas .btn-close,
.clear-btn,
.premium-search-input,
.premium-search-input-group,
.badge-count,
.header-badge,
.navbar-toggler,
.navbar-toggler-icon,
.bx,
svg,
.logo-img,
img,
input,
.premium-search-wrapper,
.categories-container a,
.categories-container button,
.dropdown-menu,
.dropdown-item,
.separator {
    border-radius: 0px !important;
}

    /* Remove box shadows and outlines that might create rounding illusion */
    .icon-action-btn:focus,
    .header-action-btn:focus,
    .btn:focus,
    button:focus {
        outline: none;
        box-shadow: none;
    }

/* Top black row (store locator, gold rate, scheme) */
.row-top {
    background: #000000;
    padding: 8px 20px;
}

.action-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ffffff !important;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: opacity 0.2s;
    background: transparent;
    border: none;
    padding: 4px 6px;
}

    .action-item svg,
    .action-item i {
        stroke: white;
        color: white;
        fill: none;
    }

    .action-item:hover {
        opacity: 0.8;
        color: #dddddd;
    }

.separator {
    width: 1px;
    height: 18px;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 0 4px;
}

/* Desktop second row (white background, black text) */
.desktop-second-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: nowrap;
    width: 100%;
}

.logo-area-modern {
    flex-shrink: 0;
}

    .logo-area-modern .logo img {
        max-height: 55px;
        width: auto;
        display: block;
        margin-top: 0.4rem;
    }

/* categories wrapper modern (large screen only) */
.categories-wrapper-modern {
    flex: 1;
    min-width: 0;
}

.categories-container {
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

    /* override categories links style to match black/white */
    .categories-container .cat-link,
    .categories-container a {
        color: #000000;
        font-weight: 500;
        text-decoration: none;
        /*                padding: 8px 14px;*/
        font-size: 13px;
        transition: background 0.2s;
        background: transparent;
        white-space: nowrap;
    }

        .categories-container .cat-link:hover,
        .categories-container a:hover {
            color: #000000;
        }

/* Right actions group */
.right-actions-group {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    flex-shrink: 0;
}

.icon-action-btn {
    background: transparent;
    border: none;
    font-size: 24px;
    padding: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #000000;
    transition: background 0.2s;
    position: relative;
}

    .icon-action-btn i,
    .icon-action-btn svg {
        font-size: 24px;
        stroke: currentColor;
        fill: none;
    }

/*            .icon-action-btn:hover {
                background-color: #f2f2f2;
            }*/

.badge-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #000000;
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    min-width: 18px;
    text-align: center;
    line-height: 1.2;
    border-radius: 0px !important;
    border: none;
}

/* Premium Search (Desktop toggled) */
.premium-search-wrapper {
    width: 0;
    opacity: 0;
    overflow: hidden;
    transition: width 0.25s ease, opacity 0.2s ease;
    background: white;
    border-bottom: 1px solid #cccccc;
}

    .premium-search-wrapper.active {
        width: 260px;
        opacity: 1;
    }

.premium-search-input-group {
    display: flex;
    align-items: center;
    background: white;
    padding: 5px 42px;
}

.premium-search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    padding: 6px 4px;
    color: black;
}

    .premium-search-input::placeholder {
        color: #888888;
    }

.clear-btn {
    background: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #555;
    padding: 0 4px;
    line-height: 1;
}

    .clear-btn:hover {
        color: black;
    }

/* ----- MOBILE / TABLET HEADER (existing structure, enhanced black/white) ----- */
.mobile-header {
    background: #ffffff;
    padding: 0.8rem 0;
/*    border-bottom: 1px solid #eaeaea;*/
}

    .mobile-header .header-logo img {
        max-height: 38px;
        width: auto;
    }

    .mobile-header .header-action-btn {
        background: transparent;
        border: none;
        font-size: 24px;
        color: #000000;
        position: relative;
        padding: 4px;
        transition: background 0.2s;
        display: inline-flex;
    }

        .mobile-header .header-action-btn:hover {
            background: #f0f0f0;
        }

    .mobile-header .header-badge {
        position: absolute;
        top: -6px;
        right: -8px;
        background: #000000;
        color: white;
        font-size: 10px;
        padding: 2px 6px;
        border-radius: 0px !important;
        line-height: 1;
    }

    .mobile-header button.btn {
        background: transparent;
        border: none;
        color: black;
    }

    .mobile-header i.bx {
        font-size: 24px;
    }

/* Offcanvas (menu) black/white styling */
.offcanvas {
    background: #ffffff;
    color: #000000;
    border-right: 1px solid #e0e0e0;
}

    .offcanvas .offcanvas-header,
    .offcanvas .offcanvas-body {
        border-radius: 0px;
    }

    .offcanvas .btn-close {
        /*                background: transparent;*/
        filter: none;
        opacity: 0.7;
        font-size: 1rem;
    }

/* extra ensure all dropdowns / any dynamic content stays sharp */
.dropdown-menu,
.dropdown-item {
    border-radius: 0px !important;
}

/* responsive spacing adjustments */
@media (max-width: 1199px) {
    .desktop-second-row {
        gap: 12px;
    }

    .categories-wrapper-modern .categories-container a {
        padding: 6px 10px;
        font-size: 13px;
    }
}



.mobile-header .gap-3 {
    gap: 0.9rem !important;
}

/* fix any box icons alignment */
.bx {
    vertical-align: middle;
}

/* Mobile Styling */
@media (max-width: 768px) {

    .mobile-collection-heading {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        margin: 8px 0 18px;
        padding: 0 16px;
        font-size: 13px !important;
        font-weight: 600;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: #111;
        position: relative;
    }
        /* Left line */
        .mobile-collection-heading::before,
        .mobile-collection-heading::after {
            content: "";
            flex: 1;
            height: 1px;
            background: linear-gradient( to right, transparent, #000, transparent );
            opacity: 0.5;
        }
}


.mobile-top-bar {
    background: black;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    padding: 4px 0;
}

/* The scrollable container – takes width from its content */
.scrolling-content {
    /*            display: inline-block;
            white-space: nowrap;
            will-change: transform;*/
    display: flex;
    white-space: nowrap;
    will-change: transform;
    justify-content: space-between;
}

/* All child elements stay inline */
.gold-rate-wrapper,
.mobile-actions {
    display: inline-block;
    white-space: nowrap;
}

.gold-rate-title {
    margin-right: 6px;
    margin-left: 0.5rem;
}

.gold-rate-item {
    margin: 0 4px;
}



.section-separator {
    color: #ffd700;
    margin: 0 6px;
}

.action-sep {
    color: #ffd700;
    margin: 0 4px;
}

@media (min-width:590px) {
    .section-separator {
        color: transparent;
    }
}

.mobile-actions a {
    color: #fff;
    text-decoration: none;
}

/* Mar‑like animation (only applied when needed) */
.scrolling-content.scroll {
    animation: scrollText 15s linear infinite;
}

@keyframes scrollText {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }
}
/* Pause the animation when hovering over the top bar */
#topBarWrapper:hover .scrolling-content.scroll {
    animation-play-state: paused;
}


.gold-rate-marquee {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: visible;
}

.gold-rate-title {
    color: #fff;
}

.gold-rate-item {
    margin: 0 10px;
}

.gold-rate-separator {
    width: 1px;
    height: 20px;
    margin: 0 6px;
    color: rgba(255, 255, 255, 0.3);
}


/* force absolute no radius for interactive svg containers */
.icon-action-btn svg,
.header-action-btn svg,
.action-item svg,
.icon-action-btn i,
.header-action-btn i,
.bx,
.premium-search-wrapper,
.premium-search-input,
.premium-search-input-group input,
.clear-btn,
.badge-count,
.header-badge,
.offcanvas *,
.categories-container a,
button,
.btn,
a,
img {
    border-radius: 0px !important;
}

/* badge background fix (black & white) */
.badge-count, .header-badge {
    background-color: #000000 !important;
    color: #ffffff !important;
}
/* if any bg-danger remains, override */
.bg-danger, .badge.bg-danger {
    background-color: #000000 !important;
}

/* Top row link hover consistency */
.action-item:hover span, .action-item:hover svg {
    color: #dddddd;
    stroke: #dddddd;
}

/* Ensure no rounding on offcanvas menu button */
[data-bs-toggle="offcanvas"] {
    border-radius: 0 !important;
}

.modal-search-input {
    flex: 1;
    height: 40px;
    border: 1px solid black;
    border-radius: 8px;
    padding: 0 35px 0 15px;
    font-size: 16px;
    outline: none;
    background: white;
    color: black;
}

.clear-mobile-search {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 22px;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: none;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

    .clear-mobile-search.active {
        display: flex;
    }

.faq-accordion summary {
    color: black !important;
}

.newsletter-form .input-group {
    max-width: 435px;
}

.web-footer {
    background: black !important;
    position: relative;
    z-index: 1;
}

.footer-main {
    background-color: black;
}
/* The SVG container: ensures the wave acts as a curved top border.
            No changes to columns, footer-main, or any grid structure. */
.web-footer > div:first-child svg {
    display: block;
    width: 100%;
    height: 200px;
    /* the wave line will be visible thanks to the stroke & fill combination:
                fill matches footer background, stroke creates the graceful curved border */
    fill: #b6b6b629; /* blends perfectly with footer ivory bg */
    /*stroke: #e0cdb0;*/ /* soft natural beige/gold line — acts as a refined curved border */
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.02)); /* delicate definition */
}

/* Keep all original text styles, spacing, and alignment intact */
.footer-title {
    font-weight: 600;
    font-size: 0.7rem;
    margin-bottom: 1rem;
    color: white;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

    .footer-links li {
        margin-bottom: 0.6rem;
    }

    .footer-links a, .contact-info a {
        text-decoration: none;
        color: white !important;
        transition: color 0.2s;
        font-size: 0.6rem;
        text-transform: uppercase;
    }

        .footer-links a:hover, .contact-info a:hover {
            color: #b8860b;
        }

.social-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #e9e6db;
    border-radius: 50%;
    transition: 0.2s;
    color: #4a3e2c;
}

    .social-circle i {
        font-size: 1.2rem;
        color: #2c2b28;
    }

    .social-circle:hover {
        background-color: #d4c8b2;
        transform: translateY(-2px);
    }

.btn-black {
    background-color: #2c2b28;
    color: white !important;
    border-radius: 0px;
    padding: 8px 24px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: 0.2s;
    border: none !important;
}

    .btn-black:hover {
        background-color: #1f1e1b;
        color: #fff;
    }

.newsletter-section {
    border-top: 1px solid rgb(255 242 242);
    margin-top: 1rem;
    border-bottom: 1px solid rgb(255 242 242);
    background: black;
}

.newsletter-input {
    border-radius: 40px 0 0 40px;
    border: 1px solid #e2dbc9;
    background: white;
    padding: 0.7rem 1.2rem;
}

.newsletter-btn {
    background-color: black;
    border-radius: 0 40px 40px 0;
    color: white;
    padding: 0 1.8rem;
    font-weight: 500;
    border: 0.07rem solid white !important;
}

    .newsletter-btn:hover {
        background-color: var(--web-primary);
    }

.footer-watermark {
    text-align: center;
    /*                opacity: 0.2;*/
    margin: 20px 0 10px;
}

.footer-bottom {
    border-top: 1px solid #eae5d7;
    padding: 1rem 0;
    margin-top: 0.5rem;
    background: transparent;
}


.footer-child-link {
    color: white;
}

    .footer-child-link:hover {
        color: black;
    }

@media(min-width:1800px) {
    .sephani-wrapper {
        max-width: 1800px;
        margin: 0 auto;
    }
}


product-image-wrapper {
    border: 0.09890rem solid #e5e2e2 !important;
}

.mobile-categories-section {
    display: flex;
    height: 100vh;
    flex-direction: column;
    justify-content: space-around;
}
/* ===== MOBILE FILTERS - BLACK & WHITE THEME ===== */
.mobile-filter-group {
    margin-bottom: 24px;
    border-bottom: none;
}

.mobile-filter-title {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    padding-bottom: 6px;
    color: #ffffff;
    border-bottom: 1px solid #2a2a2a;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .mobile-filter-title i {
        font-size: 1rem;
        color: #ffffff;
    }

.mobile-filter-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-filter-option {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #cccccc;
    text-decoration: none;
    padding: 6px 0;
    transition: color 0.2s, padding-left 0.2s;
    background: transparent !important;
    border: none !important;
}

    .mobile-filter-option:hover {
        color: #ffffff;
        padding-left: 4px;
    }

    .mobile-filter-option i {
        font-size: 1rem;
        width: 20px;
        color: #ffffff;
    }

.color-option .color-circle {
    width: 18px;
    height: 18px;
    border-radius: 0 !important;
    margin-right: 6px;
}

.mobile-view-all-btn {
    display: block;
    text-align: center;
    background: #ffffff !important;
    color: #000000 !important;
    border: 1px solid #ffffff;
    padding: 10px 16px;
    margin-top: 24px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.2s;
}

    .mobile-view-all-btn:hover {
        background: #000000 !important;
        color: #ffffff !important;
        border-color: #ffffff;
    }

/* No border radius on any filter element */
.mobile-filter-group,
.mobile-filter-title,
.mobile-filter-options,
.mobile-filter-option,
.color-circle,
.mobile-view-all-btn {
    border-radius: 0 !important;
}
/* ----- BLACK & WHITE THEME – NO BORDER RADIUS, MINIMAL ----- */
.mobile-nav-wrapper.offcanvas {
    background: white !important;
    border-right: none;
}

/* Override Bootstrap offcanvas defaults */
.offcanvas,
.offcanvas-header,
.offcanvas-body,
.mobile-nav,
.nav-item,
.dropdown-list,
.dropdown-menu-custom,
.service-card,
.btn,
.badge,
.custom-close,
.mobile-category-item,
.mobile-category-img,
.mobile-category-fallback {
    border-radius: 0 !important;
}

/* Navigation list */
.mobile-nav {
    background: white;
    margin: 0;
    padding: 0;
}

/* Top bar (logo + icons) */
.dropdown-list {
    background: #000000 !important;
    padding: 12px 16px !important;
    border-bottom: 1px solid #2a2a2a;
}

/* Icons – white */
.flaticon-user:before,
.flaticon-heart:before,
.flaticon-shopping-bag:before {
    color: black;
}

/* Custom close button (X) */
.custom-close {
    width: 40px;
    height: 40px;
    position: relative;
    background: transparent;
    border: none;
    top: 0px;
}

.animationLine {
    display: block;
    /*        width: 24px;
                height: 2px;*/
    background: #ffffff;
    margin: 5px 0;
    transition: 0.2s;
}

.span1 {
    transform: rotate(45deg) translate(5px, 5px);
}

.span2 {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-category-filters {
    background: black !important;
    border: none !important;
    border-radius: 0px !important;
}
/* Category grid */
/* .mobile-categories-grid {
                        display: flex;
                        flex-wrap: wrap;
                        margin: 16px 0;
                    }*/

.autowidth {
    flex: 0 0 auto;
    width: calc(25% - 12px);
    min-width: 70px;
}

.mobile-category-item {
    border: none;
    transition: transform 0.2s;
}

    .mobile-category-item:hover {
        transform: translateY(-2px);
    }

.mobile-category-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    /*        background: #1a1a1a;*/
    /*        padding: 8px;*/
    margin-bottom: 8px;
}

.mobile-category-fallback {
    width: 60px;
    height: 60px;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    font-size: 0.7rem;
    color: #ccc;
    text-align: center;
    word-break: break-word;
    padding: 4px;
}

/* .mobile-category-name {
                font-size: 0.7rem;
                font-weight: 500;
                color: #ffffff;
                text-decoration: none;
            }*/

/* Service grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 16px 0;
}

.service-card {
    padding: 16px 8px;
}

    .service-card:hover {
        transform: translateY(-2px);
        background: #2c2c2c;
    }

    .service-card img {
        width: 50px;
        height: 50px;
        object-fit: contain;
        margin-bottom: 8px;
        filter: brightness(0) invert(1);
    }

    .service-card h3 {
        font-size: 0.8rem;
        font-weight: 600;
        margin: 8px 0 4px;
    }

    .service-card p {
        font-size: 0.65rem;
        margin: 0;
        line-height: 1.3;
    }

/* Badge (cart/wishlist count) */
.badge.bg-danger {
    background-color: #dc3545 !important;
    border-radius: 0;
    font-weight: 500;
}

/* Loading spinner */
.category-loading-spinner {
    width: 40px;
    height: 40px;
    border: 2px solid #2a2a2a;
    border-top-color: #ffffff;
    animation: spin 0.8s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Back button */
.back-to-categories {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
}

    .back-to-categories i {
        font-size: 1.2rem;
        vertical-align: middle;
    }

/* Scrollbar (optional) */
.offcanvas-body::-webkit-scrollbar {
    width: 3px;
}

.offcanvas-body::-webkit-scrollbar-track {
    background: #1a1a1a;
}

.offcanvas-body::-webkit-scrollbar-thumb {
    background: #555;
}

/* Responsive adjustments */
@media (max-width: 576px) {

    .autowidth {
        width: calc(33.33% - 12px) !important;
    }
}



/* Remove all border-radius from modal and its children */
#commonLoginModal .modal-content,
#commonLoginModal .modal-body,
#commonLoginModal .btn,
#commonLoginModal input,
#commonLoginModal .otp-input,
#commonLoginModal .web-checkbox span,
#commonLoginModal .mx-auto {
    border-radius: 0 !important;
}

/* Ensure checkbox styling matches black/white */
.web-checkbox .web-check {
    border-radius: 0 !important;
    border: 1px solid #CCCCCC;
}

.web-checkbox input:checked + .web-check {
    background-color: #000000;
    border-color: #000000;
}

/* Remove box-shadow from all interactive elements */
#commonLoginModal input:focus,
#commonLoginModal .btn:focus {
    box-shadow: none !important;
    outline: 1px solid #AAAAAA;
}

/* Button hover effect stays minimal */
.btn:hover {
    opacity: 0.9;
}

/* Static image column – ensure full height */
.modal-body > div:first-child img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}


#commonSignupModal .modal-content,
#commonSignupModal .modal-body,
#commonSignupModal .btn,
#commonSignupModal input,
#commonSignupModal .signup-otp-input,
#commonSignupModal .web-checkbox span,
#commonSignupModal .mx-auto {
    border-radius: 0 !important;
}

/* Checkbox styling – black & white */
.web-checkbox .aspirisignup-check {
    border-radius: 0 !important;
    border: 1px solid #CCCCCC;
}

.web-checkbox input:checked + .aspirisignup-check {
    background-color: #000000;
    border-color: #000000;
}

/* Remove focus box-shadow */
#commonSignupModal input:focus,
#commonSignupModal .btn:focus {
    box-shadow: none !important;
    outline: 1px solid #AAAAAA;
}

/* Hover effect for buttons */
.btn:hover {
    opacity: 0.9;
}

.priceflex {
    display: flex;
    flex-direction: column;
    align-items: baseline;
}

