/* frontend Theme Stylesheet */

/* Extracted from cart.tpl */
.hover-scale {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hover-scale:hover {
    transform: scale(1.02);
}

.cart-item-card {
    transition: all 0.2s ease;
}

.cart-item-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06) !important;
}

/* Extracted from footer.tpl */
#back-to-top {
    display: flex !important;
}

#back-to-top.show {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Extracted from header.tpl */
header.header-with-hero-bg {
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1030;
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

header.header-with-hero-bg nav.navbar {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

header.header-with-hero-bg nav.navbar .nav-link,
header.header-with-hero-bg nav.navbar .navbar-brand,
header.header-with-hero-bg nav.navbar .navbar-brand span,
header.header-with-hero-bg nav.navbar .navbar-toggler,
header.header-with-hero-bg nav.navbar #cart-toggle-btn,
header.header-with-hero-bg nav.navbar #cart-toggle-btn span {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

header.header-with-hero-bg nav.navbar #cart-toggle-btn {
    background-color: rgba(255, 255, 255, 0.1) !important;
    background: rgba(255, 255, 255, 0.1) !important;
}

header.header-with-hero-bg nav.navbar .navbar-toggler-icon {
    filter: invert(1) grayscale(100%) brightness(200%);
}

/* Dropdown menu styling for readability */
header.header-with-hero-bg nav.navbar .dropdown-menu {
    background-color: rgba(33, 37, 41, 0.95) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

header.header-with-hero-bg nav.navbar .dropdown-item {
    color: rgba(255, 255, 255, 0.85) !important;
}

header.header-with-hero-bg nav.navbar .dropdown-item:hover {
    color: #ffffff !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
}

/* Extracted from products_categories.tpl */
.add-to-cart-btn {
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.add-to-cart-btn:hover {
    transform: scale(1.1) !important;
}

.category-section {
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: scale(1);
    transform-origin: top center;
}

.category-section.fade-out-active {
    opacity: 0 !important;
    transform: scale(0.95) !important;
}

.hover-bg-light {
    transition: background-color 0.15s ease;
}

.hover-bg-light:hover {
    background-color: #f8fafc !important;
}

/* Extracted from index.tpl */
.cust-modal .modal-dialog {
    top: 50%;
    left: 50%;
    height: auto !important;
    margin: 0;
    transform: translate(-50%, -50%) !important;
    position: absolute;
    max-width: calc(100% - 20px);
}

.cust-modal.Default-pop .modal-dialog {
    width: 500px;
}

.cust-modal .modal-header {
    border: 0;
    padding: 0;
}

.cust-modal .modal-header h3 {
    display: none;
}

.cust-modal .modal-footer {
    display: none;
}

.modal-header .close,
.cust-modal .modal-header .close:hover,
.cust-modal .modal-header .close:focus {
    position: absolute;
    z-index: 1000;
    background: url(/media/images/spoke/closebox.png) no-repeat center;
    opacity: 1;
    padding: 0;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    line-height: 34px;
    right: -15px;
    top: -15px;
    border: 0;
    box-shadow: none;
    text-shadow: none;
    margin: 0;
}

.cust-modal .modal-header .close span {
    display: none;
}

.modal-body {
    padding: 10px;
    max-height: 90vh;
    overflow: auto;
}

.modal-content {
    padding: 0;
    border: none;
    border-radius: 3px;
}

.modal-backdrop.show {
    opacity: .7;
    background: #000;
}

.Left-pop .modal-body,
.Right-pop .modal-body {
    padding: 20px 30px;
}

.Left-pop .modal-content,
.Right-pop .modal-content {
    padding: 0;
    border: none;
    border-radius: 3px;
}

/* Left Popup */
.Left-pop .modal-header .close span,
.Right-pop .modal-header .close span,
.Default-pop .modal-header .close span {
    position: relative;
    bottom: 2px;
}

.Left-pop {
    left: -40% !important;
    right: auto !important;
    width: 40% !important;
    margin: 0;
    padding: 0 !important;
    top: 0 !important;
    height: 100vh !important;
    transition: 0.5s all;
    position: fixed;
    display: block !important;
    opacity: 0;
    border-radius: 0;
}

.Left-pop.show {
    left: 0% !important;
    opacity: 1;
    transition: 0.5s all;
    overflow: visible;
}

.Left-pop .close {
    right: -18px !important;
    top: -2px !important;
    left: auto !important;
}

.Left-pop .modal-dialog {
    max-width: 100%;
    left: 0;
    transform: none !important;
    top: 0;
    height: 100% !important;
    transform: none !important;
    background: #fff;
    margin: 0;
    width: 100%;
}

.Left-pop .modal-dialog::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
}

.Left-pop .modal-dialog::-webkit-scrollbar {
    width: 4px;
    background-color: #F5F5F5;
}

.Left-pop .modal-dialog::-webkit-scrollbar-thumb {
    background-color: #ccc;
}

/* Right Popup */
.Right-pop {
    left: auto !important;
    right: -40% !important;
    width: 40% !important;
    margin: 0;
    padding: 0 !important;
    top: 0 !important;
    height: 100vh !important;
    transition: 0.5s all;
    position: fixed;
    display: block !important;
    opacity: 0;
    border-radius: 0;
}

.Right-pop.show {
    right: 0 !important;
    opacity: 1;
    transition: 0.5s all;
    overflow: visible;
}

.Right-pop .close {
    left: -18px !important;
    right: auto !important;
    top: -2px !important;
}

.Right-pop .modal-dialog {
    max-width: 100%;
    left: 0;
    transform: none !important;
    top: 0;
    height: 100% !important;
    transform: none !important;
    background: #fff;
    margin: 0;
    width: 100%;
}

.Right-pop .modal-dialog::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
}

.Right-pop .modal-dialog::-webkit-scrollbar {
    width: 4px;
    background-color: #F5F5F5;
}

.Right-pop .modal-dialog::-webkit-scrollbar-thumb {
    background-color: #ccc;
}

iframe.image_iframe {
    height: auto !important;
    aspect-ratio: 1/0.57;
}

@media (max-width: 1150px) {

    .Left-pop,
    .Right-pop {
        width: 60% !important;
    }

    .Left-pop {
        left: -60% !important;
    }

    .Right-pop {
        right: -60% !important;
    }
}

@media (max-width: 979px) {

    .modal-header .close,
    .cust-modal .modal-header .close:hover,
    .cust-modal .modal-header .close:focus {
        right: -10px;
        top: -10px;
    }

    .cust-modal .modal-dialog {
        transform: translate(-50%, 0%) !important;
        margin: 30px 0;
        top: 0;
    }

    .Left-pop .modal-dialog,
    .Right-pop .modal-dialog {
        transform: none !important;
        margin: 0px;
    }
}

@media (max-width: 767px) {

    .Left-pop,
    .Right-pop {
        width: 75% !important;
    }

    .Left-pop .modal-body,
    .Right-pop .modal-body {
        padding: 20px 25px;
    }

    .Left-pop {
        left: -75% !important;
    }

    .Right-pop {
        right: -75% !important;
    }
}

@media (max-width: 479px) {

    .Left-pop,
    .Right-pop {
        width: 94% !important;
    }

    .Left-pop .modal-body,
    .Right-pop .modal-body {
        padding: 15px;
    }

    .Left-pop {
        left: -94% !important;
    }

    .Right-pop {
        right: -94% !important;
    }
}

/* Extracted from index.tpl */
#EBSpokeDiagrams-413 .wheelspoke-main .center-box {
    background: #125a82;
}

#EBSpokeDiagrams-413 .wheelspoke-main .wheelspoke-wrap {
    border: 8px solid #125a82;
}

#EBSpokeDiagrams-413.style_1 .wheelspoke-main .around-boxes .box:nth-child(1) {
    transform: rotate(calc(45deg * 0)) translate(-50%, -50%);
}

#EBSpokeDiagrams-413.style_1 .wheelspoke-main .around-boxes .box:nth-child(2) {
    transform: rotate(calc(45deg * 1)) translate(-50%, -50%);
}

#EBSpokeDiagrams-413.style_1 .wheelspoke-main .around-boxes .box:nth-child(3) {
    transform: rotate(calc(45deg * 2)) translate(-50%, -50%);
}

#EBSpokeDiagrams-413.style_1 .wheelspoke-main .around-boxes .box:nth-child(4) {
    transform: rotate(calc(45deg * 3)) translate(-50%, -50%);
}

#EBSpokeDiagrams-413.style_1 .wheelspoke-main .around-boxes .box:nth-child(5) {
    transform: rotate(calc(45deg * 4)) translate(-50%, -50%);
}

#EBSpokeDiagrams-413.style_1 .wheelspoke-main .around-boxes .box:nth-child(6) {
    transform: rotate(calc(45deg * 5)) translate(-50%, -50%);
}

#EBSpokeDiagrams-413.style_1 .wheelspoke-main .around-boxes .box:nth-child(7) {
    transform: rotate(calc(45deg * 6)) translate(-50%, -50%);
}

#EBSpokeDiagrams-413.style_1 .wheelspoke-main .around-boxes .box:nth-child(8) {
    transform: rotate(calc(45deg * 7)) translate(-50%, -50%);
}

#EBSpokeDiagrams-413.style_1 .wheelspoke-main .around-boxes .box:nth-child(1) .content-one {
    transform: rotate(calc(-45deg * 0));
}

#EBSpokeDiagrams-413.style_1 .wheelspoke-main .around-boxes .box:nth-child(2) .content-one {
    transform: rotate(calc(-45deg * 1));
}

#EBSpokeDiagrams-413.style_1 .wheelspoke-main .around-boxes .box:nth-child(3) .content-one {
    transform: rotate(calc(-45deg * 2));
}

#EBSpokeDiagrams-413.style_1 .wheelspoke-main .around-boxes .box:nth-child(4) .content-one {
    transform: rotate(calc(-45deg * 3));
}

#EBSpokeDiagrams-413.style_1 .wheelspoke-main .around-boxes .box:nth-child(5) .content-one {
    transform: rotate(calc(-45deg * 4));
}

#EBSpokeDiagrams-413.style_1 .wheelspoke-main .around-boxes .box:nth-child(6) .content-one {
    transform: rotate(calc(-45deg * 5));
}

#EBSpokeDiagrams-413.style_1 .wheelspoke-main .around-boxes .box:nth-child(7) .content-one {
    transform: rotate(calc(-45deg * 6));
}

#EBSpokeDiagrams-413.style_1 .wheelspoke-main .around-boxes .box:nth-child(8) .content-one {
    transform: rotate(calc(-45deg * 7));
}

/* Effect css */
#EBSpokeDiagrams-413.style_1 .wheelspoke-main .around-boxes .box:nth-child(1):hover {
    transform: rotate(calc(45deg * 0)) translate(-50%, -50%) scale(1.02);
}

#EBSpokeDiagrams-413.style_1 .wheelspoke-main .around-boxes .box:nth-child(2):hover {
    transform: rotate(calc(45deg * 1)) translate(-50%, -50%) scale(1.02);
}

#EBSpokeDiagrams-413.style_1 .wheelspoke-main .around-boxes .box:nth-child(3):hover {
    transform: rotate(calc(45deg * 2)) translate(-50%, -50%) scale(1.02);
}

#EBSpokeDiagrams-413.style_1 .wheelspoke-main .around-boxes .box:nth-child(4):hover {
    transform: rotate(calc(45deg * 3)) translate(-50%, -50%) scale(1.02);
}

#EBSpokeDiagrams-413.style_1 .wheelspoke-main .around-boxes .box:nth-child(5):hover {
    transform: rotate(calc(45deg * 4)) translate(-50%, -50%) scale(1.02);
}

#EBSpokeDiagrams-413.style_1 .wheelspoke-main .around-boxes .box:nth-child(6):hover {
    transform: rotate(calc(45deg * 5)) translate(-50%, -50%) scale(1.02);
}

#EBSpokeDiagrams-413.style_1 .wheelspoke-main .around-boxes .box:nth-child(7):hover {
    transform: rotate(calc(45deg * 6)) translate(-50%, -50%) scale(1.02);
}

#EBSpokeDiagrams-413.style_1 .wheelspoke-main .around-boxes .box:nth-child(8):hover {
    transform: rotate(calc(45deg * 7)) translate(-50%, -50%) scale(1.02);
}

#EBSpokeDiagrams-413 .wheelspoke-main .around-boxes .item-0 {
    background: #125a82;
    box-shadow: 0 0 10px 0 #125a82;
}

#EBSpokeDiagrams-413 .wheelspoke-main .around-boxes .item-0::after {
    background: #125a82;
}

#EBSpokeDiagrams-413 .wheelspoke-main .around-boxes .item-1 {
    background: #d63147;
    box-shadow: 0 0 10px 0 #d63147;
}

#EBSpokeDiagrams-413 .wheelspoke-main .around-boxes .item-1::after {
    background: #d63147;
}

#EBSpokeDiagrams-413 .wheelspoke-main .around-boxes .item-2 {
    background: #125a82;
    box-shadow: 0 0 10px 0 #125a82;
}

#EBSpokeDiagrams-413 .wheelspoke-main .around-boxes .item-2::after {
    background: #125a82;
}

#EBSpokeDiagrams-413 .wheelspoke-main .around-boxes .item-3 {
    background: #d63147;
    box-shadow: 0 0 10px 0 #d63147;
}

#EBSpokeDiagrams-413 .wheelspoke-main .around-boxes .item-3::after {
    background: #d63147;
}

#EBSpokeDiagrams-413 .wheelspoke-main .around-boxes .item-4 {
    background: #125a82;
    box-shadow: 0 0 10px 0 #125a82;
}

#EBSpokeDiagrams-413 .wheelspoke-main .around-boxes .item-4::after {
    background: #125a82;
}

#EBSpokeDiagrams-413 .wheelspoke-main .around-boxes .item-5 {
    background: #d63147;
    box-shadow: 0 0 10px 0 #d63147;
}

#EBSpokeDiagrams-413 .wheelspoke-main .around-boxes .item-5::after {
    background: #d63147;
}

#EBSpokeDiagrams-413 .wheelspoke-main .around-boxes .item-6 {
    background: #125a82;
    box-shadow: 0 0 10px 0 #125a82;
}

#EBSpokeDiagrams-413 .wheelspoke-main .around-boxes .item-6::after {
    background: #125a82;
}

#EBSpokeDiagrams-413 .wheelspoke-main .around-boxes .item-7 {
    background: #d63147;
    box-shadow: 0 0 10px 0 #d63147;
}

#EBSpokeDiagrams-413 .wheelspoke-main .around-boxes .item-7::after {
    background: #d63147;
}

/* Extracted from index.tpl */
#EBSpokeDiagrams-414 .wheelspoke-main .center-box {
    background: #cbc246;
}

#EBSpokeDiagrams-414.style_2 .wheelspoke-main .around-boxes .box:nth-child(1) {
    transform: rotate(calc(45deg * 0)) translate(-50%, -50%);
}

#EBSpokeDiagrams-414.style_2 .wheelspoke-main .around-boxes .box:nth-child(2) {
    transform: rotate(calc(45deg * 1)) translate(-50%, -50%);
}

#EBSpokeDiagrams-414.style_2 .wheelspoke-main .around-boxes .box:nth-child(3) {
    transform: rotate(calc(45deg * 2)) translate(-50%, -50%);
}

#EBSpokeDiagrams-414.style_2 .wheelspoke-main .around-boxes .box:nth-child(4) {
    transform: rotate(calc(45deg * 3)) translate(-50%, -50%);
}

#EBSpokeDiagrams-414.style_2 .wheelspoke-main .around-boxes .box:nth-child(5) {
    transform: rotate(calc(45deg * 4)) translate(-50%, -50%);
}

#EBSpokeDiagrams-414.style_2 .wheelspoke-main .around-boxes .box:nth-child(6) {
    transform: rotate(calc(45deg * 5)) translate(-50%, -50%);
}

#EBSpokeDiagrams-414.style_2 .wheelspoke-main .around-boxes .box:nth-child(7) {
    transform: rotate(calc(45deg * 6)) translate(-50%, -50%);
}

#EBSpokeDiagrams-414.style_2 .wheelspoke-main .around-boxes .box:nth-child(8) {
    transform: rotate(calc(45deg * 7)) translate(-50%, -50%);
}

#EBSpokeDiagrams-414.style_2 .wheelspoke-main .around-boxes .box:nth-child(1) .content-one .icon {
    transform: rotate(calc(-45deg * 0))
}

#EBSpokeDiagrams-414.style_2 .wheelspoke-main .around-boxes .box:nth-child(2) .content-one .icon {
    transform: rotate(calc(-45deg * 1))
}

#EBSpokeDiagrams-414.style_2 .wheelspoke-main .around-boxes .box:nth-child(3) .content-one .icon {
    transform: rotate(calc(-45deg * 2))
}

#EBSpokeDiagrams-414.style_2 .wheelspoke-main .around-boxes .box:nth-child(4) .content-one .icon {
    transform: rotate(calc(-45deg * 3))
}

#EBSpokeDiagrams-414.style_2 .wheelspoke-main .around-boxes .box:nth-child(5) .content-one .icon {
    transform: rotate(calc(-45deg * 4))
}

#EBSpokeDiagrams-414.style_2 .wheelspoke-main .around-boxes .box:nth-child(6) .content-one .icon {
    transform: rotate(calc(-45deg * 5))
}

#EBSpokeDiagrams-414.style_2 .wheelspoke-main .around-boxes .box:nth-child(7) .content-one .icon {
    transform: rotate(calc(-45deg * 6))
}

#EBSpokeDiagrams-414.style_2 .wheelspoke-main .around-boxes .box:nth-child(8) .content-one .icon {
    transform: rotate(calc(-45deg * 7))
}

/* Effect */
#EBSpokeDiagrams-414.style_2 .wheelspoke-main .around-boxes .box:nth-child(1):hover {
    transform: rotate(calc(45deg * 0)) translate(-52.5%, -52%) scale(1.05);
}

#EBSpokeDiagrams-414.style_2 .wheelspoke-main .around-boxes .box:nth-child(2):hover {
    transform: rotate(calc(45deg * 1)) translate(-52.5%, -52%) scale(1.05);
}

#EBSpokeDiagrams-414.style_2 .wheelspoke-main .around-boxes .box:nth-child(3):hover {
    transform: rotate(calc(45deg * 2)) translate(-52.5%, -52%) scale(1.05);
}

#EBSpokeDiagrams-414.style_2 .wheelspoke-main .around-boxes .box:nth-child(4):hover {
    transform: rotate(calc(45deg * 3)) translate(-52.5%, -52%) scale(1.05);
}

#EBSpokeDiagrams-414.style_2 .wheelspoke-main .around-boxes .box:nth-child(5):hover {
    transform: rotate(calc(45deg * 4)) translate(-52.5%, -52%) scale(1.05);
}

#EBSpokeDiagrams-414.style_2 .wheelspoke-main .around-boxes .box:nth-child(6):hover {
    transform: rotate(calc(45deg * 5)) translate(-52.5%, -52%) scale(1.05);
}

#EBSpokeDiagrams-414.style_2 .wheelspoke-main .around-boxes .box:nth-child(7):hover {
    transform: rotate(calc(45deg * 6)) translate(-52.5%, -52%) scale(1.05);
}

#EBSpokeDiagrams-414.style_2 .wheelspoke-main .around-boxes .box:nth-child(8):hover {
    transform: rotate(calc(45deg * 7)) translate(-52.5%, -52%) scale(1.05);
}


#EBSpokeDiagrams-414 .wheelspoke-main .around-boxes .item-0 {
    background-color: #3f51b5;
}

#EBSpokeDiagrams-414 .wheelspoke-main .around-boxes .item-1 {
    background-color: #795548;
}

#EBSpokeDiagrams-414 .wheelspoke-main .around-boxes .item-2 {
    background-color: #ff9800;
}

#EBSpokeDiagrams-414 .wheelspoke-main .around-boxes .item-3 {
    background-color: #e91e63;
}

#EBSpokeDiagrams-414 .wheelspoke-main .around-boxes .item-4 {
    background-color: #4caf50;
}

#EBSpokeDiagrams-414 .wheelspoke-main .around-boxes .item-5 {
    background-color: #9c27b0;
}

#EBSpokeDiagrams-414 .wheelspoke-main .around-boxes .item-6 {
    background-color: #f44336;
}

#EBSpokeDiagrams-414 .wheelspoke-main .around-boxes .item-7 {
    background-color: #9c27b0;
}

/* Extracted from index.tpl */
#EBSpokeDiagrams-417.style_5 .wheelspoke-main .around-boxes .box:nth-child(1) {
    transform: rotate(calc(90deg * 0)) translate(-50%, -50%);
    background: #65acae;
}

#EBSpokeDiagrams-417.style_5 .wheelspoke-main .around-boxes .box:nth-child(2) {
    transform: rotate(calc(90deg * 1)) translate(-50%, -50%);
    background: #8ab55c;
}

#EBSpokeDiagrams-417.style_5 .wheelspoke-main .around-boxes .box:nth-child(3) {
    transform: rotate(calc(90deg * 2)) translate(-50%, -50%);
    background: #c4d352;
}

#EBSpokeDiagrams-417.style_5 .wheelspoke-main .around-boxes .box:nth-child(4) {
    transform: rotate(calc(90deg * 3)) translate(-50%, -50%);
    background: #5baece;
}

#EBSpokeDiagrams-417.style_5 .wheelspoke-main .around-boxes .box:nth-child(5) {
    transform: rotate(calc(90deg * 4)) translate(-50%, -50%);
    background: #729355;
}

#EBSpokeDiagrams-417 .wheelspoke-main .around-boxes .item-0 {
    background-color: #65acae;
}

#EBSpokeDiagrams-417 .wheelspoke-main .around-boxes .item-1 {
    background-color: #8ab55c;
}

#EBSpokeDiagrams-417 .wheelspoke-main .around-boxes .item-2 {
    background-color: #4caf50;
}

#EBSpokeDiagrams-417 .wheelspoke-main .around-boxes .item-3 {
    background-color: #d98100;
}

/* Extracted from index.tpl */
#EBSpokeDiagrams-416 .wheelspoke-main .center-box {
    background: #6ab59e;
    outline: 5px solid #6ab59e;
}

#EBSpokeDiagrams-416.style_4 .wheelspoke-main .around-boxes .box:nth-child(1) {
    transform: rotate(calc(90deg * 0)) translate(-50%, -50%);
}

#EBSpokeDiagrams-416.style_4 .wheelspoke-main .around-boxes .box:nth-child(2) {
    transform: rotate(calc(90deg * 1)) translate(-50%, -50%);
}

#EBSpokeDiagrams-416.style_4 .wheelspoke-main .around-boxes .box:nth-child(3) {
    transform: rotate(calc(90deg * 2)) translate(-50%, -50%);
}

#EBSpokeDiagrams-416.style_4 .wheelspoke-main .around-boxes .box:nth-child(4) {
    transform: rotate(calc(90deg * 3)) translate(-50%, -50%);
}

#EBSpokeDiagrams-416.style_4 .wheelspoke-main .around-boxes .box:nth-child(5) {
    transform: rotate(calc(90deg * 4)) translate(-50%, -50%);
}

#EBSpokeDiagrams-416.style_4 .wheelspoke-main .around-boxes .box:nth-child(6) {
    transform: rotate(calc(90deg * 5)) translate(-50%, -50%);
}

#EBSpokeDiagrams-416.style_4 .wheelspoke-main .around-boxes .box:nth-child(7) {
    transform: rotate(calc(90deg * 6)) translate(-50%, -50%);
}

#EBSpokeDiagrams-416.style_4 .wheelspoke-main .around-boxes .box:nth-child(8) {
    transform: rotate(calc(90deg * 7)) translate(-50%, -50%);
}

#EBSpokeDiagrams-416.style_4 .wheelspoke-main .around-boxes .box:nth-child(1) .content-one {
    transform: rotate(calc(-90deg * 0));
}

#EBSpokeDiagrams-416.style_4 .wheelspoke-main .around-boxes .box:nth-child(2) .content-one {
    transform: rotate(calc(-90deg * 1));
}

#EBSpokeDiagrams-416.style_4 .wheelspoke-main .around-boxes .box:nth-child(3) .content-one {
    transform: rotate(calc(-90deg * 2));
}

#EBSpokeDiagrams-416.style_4 .wheelspoke-main .around-boxes .box:nth-child(4) .content-one {
    transform: rotate(calc(-90deg * 3));
}

#EBSpokeDiagrams-416.style_4 .wheelspoke-main .around-boxes .box:nth-child(5) .content-one {
    transform: rotate(calc(-90deg * 4));
}

#EBSpokeDiagrams-416.style_4 .wheelspoke-main .around-boxes .box:nth-child(6) .content-one {
    transform: rotate(calc(-90deg * 5));
}

#EBSpokeDiagrams-416.style_4 .wheelspoke-main .around-boxes .box:nth-child(7) .content-one {
    transform: rotate(calc(-90deg * 6));
}

#EBSpokeDiagrams-416.style_4 .wheelspoke-main .around-boxes .box:nth-child(8) .content-one {
    transform: rotate(calc(-90deg * 7));
}

#EBSpokeDiagrams-416.style_4 .wheelspoke-main .around-boxes .box:nth-child(1) .title {
    transform: rotate(calc(-90deg * 0));
}

#EBSpokeDiagrams-416.style_4 .wheelspoke-main .around-boxes .box:nth-child(2) .title {
    transform: rotate(calc(-90deg * 1));
}

#EBSpokeDiagrams-416.style_4 .wheelspoke-main .around-boxes .box:nth-child(3) .title {
    transform: rotate(calc(-90deg * 2));
}

#EBSpokeDiagrams-416.style_4 .wheelspoke-main .around-boxes .box:nth-child(4) .title {
    transform: rotate(calc(-90deg * 3));
}

#EBSpokeDiagrams-416.style_4 .wheelspoke-main .around-boxes .box:nth-child(5) .title {
    transform: rotate(calc(-90deg * 4));
}

#EBSpokeDiagrams-416.style_4 .wheelspoke-main .around-boxes .box:nth-child(6) .title {
    transform: rotate(calc(-90deg * 5));
}

#EBSpokeDiagrams-416.style_4 .wheelspoke-main .around-boxes .box:nth-child(7) .title {
    transform: rotate(calc(-90deg * 6));
}

#EBSpokeDiagrams-416.style_4 .wheelspoke-main .around-boxes .box:nth-child(8) .title {
    transform: rotate(calc(-90deg * 7));
}


#EBSpokeDiagrams-416 .wheelspoke-main .around-boxes .item-0 {
    background-color: #e9b346;
    box-shadow: 0 0 0px -5px #e9b346;
}

#EBSpokeDiagrams-416 .wheelspoke-main .around-boxes .item-0:hover {
    box-shadow: 0 0 0px 5px #e9b346;
}

#EBSpokeDiagrams-416 .wheelspoke-main .around-boxes .item-0::after {
    background: #e9b346;
}

#EBSpokeDiagrams-416 .wheelspoke-main .around-boxes .item-1 {
    background-color: #337ca5;
    box-shadow: 0 0 0px -5px #337ca5;
}

#EBSpokeDiagrams-416 .wheelspoke-main .around-boxes .item-1:hover {
    box-shadow: 0 0 0px 5px #337ca5;
}

#EBSpokeDiagrams-416 .wheelspoke-main .around-boxes .item-1::after {
    background: #337ca5;
}

#EBSpokeDiagrams-416 .wheelspoke-main .around-boxes .item-2 {
    background-color: #e9b346;
    box-shadow: 0 0 0px -5px #e9b346;
}

#EBSpokeDiagrams-416 .wheelspoke-main .around-boxes .item-2:hover {
    box-shadow: 0 0 0px 5px #e9b346;
}

#EBSpokeDiagrams-416 .wheelspoke-main .around-boxes .item-2::after {
    background: #e9b346;
}

#EBSpokeDiagrams-416 .wheelspoke-main .around-boxes .item-3 {
    background-color: #337ca5;
    box-shadow: 0 0 0px -5px #337ca5;
}

#EBSpokeDiagrams-416 .wheelspoke-main .around-boxes .item-3:hover {
    box-shadow: 0 0 0px 5px #337ca5;
}

#EBSpokeDiagrams-416 .wheelspoke-main .around-boxes .item-3::after {
    background: #337ca5;
}

/* Extracted from index.tpl */
#EBSpokeDiagrams-415 .wheelspoke-main .center-box {
    background: #285e83;
}

#EBSpokeDiagrams-415 .wheelspoke-main .around-boxes .box::after {
    background: #285e83;
}

#EBSpokeDiagrams-415.style_3 .wheelspoke-main .around-boxes .box:nth-child(1) {
    transform: rotate(calc(51.428571428571deg * 0.5)) translate(-50%, -50%);
}

#EBSpokeDiagrams-415.style_3 .wheelspoke-main .around-boxes .box:nth-child(2) {
    transform: rotate(calc(51.428571428571deg * 1.5)) translate(-50%, -50%);
}

#EBSpokeDiagrams-415.style_3 .wheelspoke-main .around-boxes .box:nth-child(3) {
    transform: rotate(calc(51.428571428571deg * 2.5)) translate(-50%, -50%);
}

#EBSpokeDiagrams-415.style_3 .wheelspoke-main .around-boxes .box:nth-child(4) {
    transform: rotate(calc(51.428571428571deg * 3.5)) translate(-50%, -50%);
}

#EBSpokeDiagrams-415.style_3 .wheelspoke-main .around-boxes .box:nth-child(5) {
    transform: rotate(calc(51.428571428571deg * 4.5)) translate(-50%, -50%);
}

#EBSpokeDiagrams-415.style_3 .wheelspoke-main .around-boxes .box:nth-child(6) {
    transform: rotate(calc(51.428571428571deg * 5.5)) translate(-50%, -50%);
}

#EBSpokeDiagrams-415.style_3 .wheelspoke-main .around-boxes .box:nth-child(7) {
    transform: rotate(calc(51.428571428571deg * 6.5)) translate(-50%, -50%);
}

#EBSpokeDiagrams-415.style_3 .wheelspoke-main .around-boxes .box:nth-child(1) .content-one,
.style_3 .wheelspoke-main .around-boxes .box:nth-child(1) .number {
    transform: rotate(calc(-51.428571428571deg * 0.5));
}

#EBSpokeDiagrams-415.style_3 .wheelspoke-main .around-boxes .box:nth-child(2) .content-one,
.style_3 .wheelspoke-main .around-boxes .box:nth-child(2) .number {
    transform: rotate(calc(-51.428571428571deg * 1.5));
}

#EBSpokeDiagrams-415.style_3 .wheelspoke-main .around-boxes .box:nth-child(3) .content-one,
.style_3 .wheelspoke-main .around-boxes .box:nth-child(3) .number {
    transform: rotate(calc(-51.428571428571deg * 2.5));
}

#EBSpokeDiagrams-415.style_3 .wheelspoke-main .around-boxes .box:nth-child(4) .content-one,
.style_3 .wheelspoke-main .around-boxes .box:nth-child(4) .number {
    transform: rotate(calc(-51.428571428571deg * 3.5));
}

#EBSpokeDiagrams-415.style_3 .wheelspoke-main .around-boxes .box:nth-child(5) .content-one,
.style_3 .wheelspoke-main .around-boxes .box:nth-child(5) .number {
    transform: rotate(calc(-51.428571428571deg * 4.5));
}

#EBSpokeDiagrams-415.style_3 .wheelspoke-main .around-boxes .box:nth-child(6) .content-one,
.style_3 .wheelspoke-main .around-boxes .box:nth-child(6) .number {
    transform: rotate(calc(-51.428571428571deg * 5.5));
}

#EBSpokeDiagrams-415.style_3 .wheelspoke-main .around-boxes .box:nth-child(7) .content-one,
.style_3 .wheelspoke-main .around-boxes .box:nth-child(7) .number {
    transform: rotate(calc(-51.428571428571deg * 6.5));
}

#EBSpokeDiagrams-415 .wheelspoke-main .around-boxes .item-0 .content-one {
    background-color: #8cb74c;
}

#EBSpokeDiagrams-415 .wheelspoke-main .around-boxes .item-0::before {
    background: #5db7a1;
}

#EBSpokeDiagrams-415 .wheelspoke-main .around-boxes .item-1 .content-one {
    background-color: #8cb74c;
}

#EBSpokeDiagrams-415 .wheelspoke-main .around-boxes .item-1::before {
    background: #5db7a1;
}

#EBSpokeDiagrams-415 .wheelspoke-main .around-boxes .item-2 .content-one {
    background-color: #8cb74c;
}

#EBSpokeDiagrams-415 .wheelspoke-main .around-boxes .item-2::before {
    background: #5db7a1;
}

#EBSpokeDiagrams-415 .wheelspoke-main .around-boxes .item-3 .content-one {
    background-color: #8cb74c;
}

#EBSpokeDiagrams-415 .wheelspoke-main .around-boxes .item-3::before {
    background: #5db7a1;
}

#EBSpokeDiagrams-415 .wheelspoke-main .around-boxes .item-4 .content-one {
    background-color: #8cb74c;
}

#EBSpokeDiagrams-415 .wheelspoke-main .around-boxes .item-4::before {
    background: #5db7a1;
}

#EBSpokeDiagrams-415 .wheelspoke-main .around-boxes .item-5 .content-one {
    background-color: #8cb74c;
}

#EBSpokeDiagrams-415 .wheelspoke-main .around-boxes .item-5::before {
    background: #5db7a1;
}

#EBSpokeDiagrams-415 .wheelspoke-main .around-boxes .item-6 .content-one {
    background-color: #8cb74c;
}

#EBSpokeDiagrams-415 .wheelspoke-main .around-boxes .item-6::before {
    background: #5db7a1;
}

/* Extracted from default.tpl */
:root {
    --primary-color: #b89765;
    --primary-hover: #a38354;
    --bg-light: #181818;
    --text-dark: #f8fafc;
    --text-muted: #a3a3a3;
    --font-family: 'Inter', sans-serif;
    --heading-font: 'Playfair Display', serif;
}

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    background-color: #121212;
    scroll-behavior: smooth;
}

.navbar-brand img {
    max-height: 50px;
}

/*
.section-padding {
    padding: 80px 0;
}
*/
.bg-light-section {
    background-color: var(--bg-light) !important;
}

.hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: #white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.badge-category {
    background-color: rgba(184, 151, 101, 0.1) !important;
    color: var(--primary-color) !important;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

/* Google Map responsive wrapper */
.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Custom premium inputs */
.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 0.25rem rgba(184, 151, 101, 0.15) !important;
}

/* Social icons footer link styling */
.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(184, 151, 101, 0.08) !important;
    color: var(--primary-color) !important;
    transition: all 0.3s ease;
    border: 1px solid rgba(184, 151, 101, 0.15) !important;
}

.social-link:hover {
    background-color: var(--primary-color) !important;
    color: #121212 !important;
    transform: translateY(-3px);
}

/* Shopping Cart Preview Popover */
#cart-preview-popover {
    top: 100%;
    opacity: 0;
    transform: translateY(10px) scale(0.95);
    transition: opacity 0.18s ease, transform 0.18s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.18s;
    visibility: hidden;
    pointer-events: none;
}

#cart-preview-popover.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
    pointer-events: auto;
}

@media (max-width: 576px) {
    #cart-preview-popover {
        width: 290px !important;
        right: -10px !important;
    }
}

/* Fly-to-cart bounce animation */
@keyframes cart-bounce {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.25);
    }

    100% {
        transform: scale(1);
    }
}

.cart-bounce-active {
    animation: cart-bounce 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* --- Orion Theme Core Overrides --- */
h1,
h2,
h3,
h4,
h5,
h6,
.display-5,
.navbar-brand {
    font-family: var(--heading-font);
    letter-spacing: 0.5px;
    color: #ffffff !important;
}

.card {
    background-color: #1c1c1c !important;
    border: 1px solid rgba(184, 151, 101, 0.15) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
}

.card-header {
    background-color: #161616 !important;
    border-bottom: 1px solid rgba(184, 151, 101, 0.15) !important;
    color: #ffffff !important;
}

.card-body {
    background-color: #1c1c1c !important;
    color: #e5e5e5 !important;
}

.card-footer {
    background-color: #161616 !important;
    border-top: 1px solid rgba(184, 151, 101, 0.15) !important;
}

.text-dark {
    color: #ffffff !important;
}

.text-muted {
    color: #a3a3a3 !important;
}

.btn-primary {
    background-color: #b89765 !important;
    border-color: #b89765 !important;
    color: #121212 !important;
    font-weight: 600 !important;
}

.btn-primary:hover {
    background-color: #a38354 !important;
    border-color: #a38354 !important;
    color: #121212 !important;
}

.btn-outline-secondary {
    color: #b89765 !important;
    border-color: rgba(184, 151, 101, 0.4) !important;
    background-color: transparent !important;
}

.btn-outline-secondary:hover {
    color: #121212 !important;
    background-color: #b89765 !important;
    border-color: #b89765 !important;
}

.btn-success {
    background-color: #b89765 !important;
    border-color: #b89765 !important;
    color: #121212 !important;
}

.btn-success:hover {
    background-color: #a38354 !important;
    border-color: #a38354 !important;
    color: #121212 !important;
}

.navbar {
    background-color: #121212 !important;
    border-bottom: 1px solid rgba(184, 151, 101, 0.15) !important;
}

.navbar .nav-link {
    color: rgba(255, 255, 255, 0.7) !important;
    font-family: var(--heading-font);
    font-weight: 500;
    letter-spacing: 1px;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #b89765 !important;
}

.list-group-item {
    background-color: transparent !important;
    color: #e5e5e5 !important;
    border-color: rgba(184, 151, 101, 0.1) !important;
}

.form-control,
.form-select {
    background-color: #181818 !important;
    border: 1px solid rgba(184, 151, 101, 0.25) !important;
    color: #ffffff !important;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
    opacity: 1 !important;
}

.form-control:focus,
.form-select:focus {
    border-color: #b89765 !important;
    box-shadow: 0 0 0 0.25rem rgba(184, 151, 101, 0.2) !important;
    background-color: #1c1c1c !important;
    color: #ffffff !important;
}

.dropdown-menu {
    background-color: #181818 !important;
    border: 1px solid rgba(184, 151, 101, 0.15) !important;
}

.dropdown-item {
    color: rgba(255, 255, 255, 0.8) !important;
}

.dropdown-item:hover {
    background-color: #242424 !important;
    color: #b89765 !important;
}

footer.bg-dark {
    background-color: #0c0c0c !important;
    border-top: 1px solid rgba(184, 151, 101, 0.15) !important;
}

.modal-content {
    background-color: #1c1c1c !important;
    border: 1px solid rgba(184, 151, 101, 0.2) !important;
    color: #ffffff !important;
}

.hover-bg-light:hover {
    background-color: #222222 !important;
}

.bg-light {
    background-color: #181818 !important;
}

.text-primary {
    color: #b89765 !important;
}

.text-success {
    color: #b89765 !important;
}

.border-bottom {
    border-bottom: 1px solid rgba(184, 151, 101, 0.15) !important;
}

.bg-white {
    background-color: #1c1c1c !important;
}

.border-2 {
    border-color: rgba(184, 151, 101, 0.15) !important;
}

.text-secondary {
    color: #b89765 !important;
}

.form-label,
.form-check-label {
    color: #e5e5e5 !important;
}

/* Custom premium table styling */
.table {
    --bs-table-bg: transparent !important;
    --bs-table-hover-bg: rgba(184, 151, 101, 0.05) !important;
    color: #e5e5e5 !important;
    border-color: rgba(184, 151, 101, 0.15) !important;
}

.table thead th {
    background-color: #161616 !important;
    color: #b89765 !important;
    border-bottom: 2px solid rgba(184, 151, 101, 0.25) !important;
    font-family: var(--heading-font);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.table tbody td {
    background-color: transparent !important;
    color: #e5e5e5 !important;
    border-bottom: 1px solid rgba(184, 151, 101, 0.1) !important;
}

.table-hover tbody tr:hover td {
    background-color: rgba(184, 151, 101, 0.05) !important;
    color: #ffffff !important;
}

.table tr {
    background-color: transparent !important;
}

.table-responsive {
    border: 1px solid rgba(184, 151, 101, 0.15) !important;
}

/* --- Orion Centered & Framed Desktop Menu Styles --- */
@media (min-width: 992px) {
    .orion-menu-container {
        width: 96%;
        max-width: 1400px;
        margin: 25px auto;
        border: 1px solid #b89765;
        background-color: rgba(12, 12, 12, 0.95);
        padding: 12px 35px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
    }

    /* Corner Ornaments */
    .corner-ornament {
        position: absolute;
        width: 16px;
        height: 16px;
        z-index: 10;
        pointer-events: none;
    }

    .corner-ornament::before,
    .corner-ornament::after {
        content: '';
        position: absolute;
        background: #b89765;
    }

    /* Top Left Corner */
    .corner-ornament.top-left {
        top: -3px;
        left: -3px;
    }

    .corner-ornament.top-left::before {
        top: 0;
        left: 0;
        width: 16px;
        height: 1px;
    }

    .corner-ornament.top-left::after {
        top: 0;
        left: 0;
        width: 1px;
        height: 16px;
    }

    /* Top Right Corner */
    .corner-ornament.top-right {
        top: -3px;
        right: -3px;
    }

    .corner-ornament.top-right::before {
        top: 0;
        right: 0;
        width: 16px;
        height: 1px;
    }

    .corner-ornament.top-right::after {
        top: 0;
        right: 0;
        width: 1px;
        height: 16px;
    }

    /* Bottom Left Corner */
    .corner-ornament.bottom-left {
        bottom: -3px;
        left: -3px;
    }

    .corner-ornament.bottom-left::before {
        bottom: 0;
        left: 0;
        width: 16px;
        height: 1px;
    }

    .corner-ornament.bottom-left::after {
        bottom: 0;
        left: 0;
        width: 1px;
        height: 16px;
    }

    /* Bottom Right Corner */
    .corner-ornament.bottom-right {
        bottom: -3px;
        right: -3px;
    }

    .corner-ornament.bottom-right::before {
        bottom: 0;
        right: 0;
        width: 16px;
        height: 1px;
    }

    .corner-ornament.bottom-right::after {
        bottom: 0;
        right: 0;
        width: 1px;
        height: 16px;
    }

    /* Double border effect line */
    .orion-menu-container::after {
        content: '';
        position: absolute;
        top: 3px;
        bottom: 3px;
        left: 3px;
        right: 3px;
        border: 1px solid rgba(184, 151, 101, 0.45);
        pointer-events: none;
    }

    /* Align menu elements */
    .orion-menu-side {
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        flex-wrap: wrap;
        gap: 8px;
        list-style: none;
        margin: 0;
        padding: 0;
        width: 42%;
    }

    .orion-menu-side.left {}

    .orion-menu-side.right {}

    .orion-menu-side .nav-link {
        color: rgba(255, 255, 255, 0.8) !important;
        font-family: var(--heading-font);
        font-weight: 500;
        text-transform: uppercase;
        font-size: 0.95rem;
        letter-spacing: 1.5px;
        transition: color 0.25s ease;
        padding: 5px 10px;
    }

    .orion-menu-side .nav-link:hover {
        color: #b89765 !important;
    }

    .orion-logo-wrapper {
        width: 16%;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 10;
    }

    .orion-logo-wrapper img {
        max-height: 48px;
        object-fit: contain;
    }

    /* Home & Cart absolute styling */
    .orion-nav-icon {
        color: #b89765 !important;
        font-size: 1.25rem;
        transition: transform 0.2s ease, color 0.2s ease;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
        text-decoration: none;
    }

    .orion-nav-icon:hover {
        transform: scale(1.15);
        color: #ffffff !important;
    }

    .orion-cart-btn-wrapper {
        position: relative;
        z-index: 10;
    }
}

/* Mobile responsive navigation details */
@media (max-width: 991px) {
    .orion-desktop-only {
        display: none !important;
    }
}

@media (min-width: 992px) {
    .orion-mobile-only {
        display: none !important;
    }
}

/* Avoid harsh white/light backgrounds on all page modules in the Orion theme */
.module-style-wrapper {
    background-color: transparent !important;
}

/* Orion Category Filters Premium Styling */
#category-filters-container {
    background-color: #1c1c1c !important;
    border: 1px solid rgba(184, 151, 101, 0.25) !important;
    padding: 12px !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4) !important;
}

#category-filters-container .filter-btn {
    font-family: var(--heading-font);
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
    border: 1px solid transparent !important;
}

/* Inactive filters */
#category-filters-container .filter-btn.btn-light {
    background-color: transparent !important;
    color: #e5e5e5 !important;
    border: 1px solid rgba(184, 151, 101, 0.15) !important;
}

#category-filters-container .filter-btn.btn-light:hover {
    background-color: rgba(184, 151, 101, 0.08) !important;
    color: #b89765 !important;
    border-color: #b89765 !important;
}

/* Active filters */
#category-filters-container .filter-btn.btn-primary.active {
    background-color: #b89765 !important;
    border-color: #b89765 !important;
    color: #121212 !important;
}

/* Product Card Placeholder Styling for Orion Theme */
.orion-product-img-wrapper {
    background-color: #121212 !important;
    border-bottom: 1px solid rgba(184, 151, 101, 0.15) !important;
}

.orion-placeholder-icon-wrapper {
    color: rgba(184, 151, 101, 0.35) !important;
}

/* Custom Orion Theme Checkbox/Radio Styling */
.form-check-input {
    background-color: #121212 !important;
    border-color: rgba(184, 151, 101, 0.35) !important;
}

.form-check-input:checked {
    background-color: #b89765 !important;
    border-color: #b89765 !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23121212' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e") !important;
}

.form-check-input[type=radio]:checked {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3ccircle cx='10' cy='10' r='5' fill='%23121212'/%3e%3c/svg%3e") !important;
}

.form-check-input:focus {
    border-color: #b89765 !important;
    box-shadow: 0 0 0 0.25rem rgba(184, 151, 101, 0.2) !important;
}

/* Custom Modal Options Border/Hover Styles */
#productModal .border {
    border-color: rgba(184, 151, 101, 0.2) !important;
}

#productModal .hover-bg-light:hover {
    background-color: rgba(184, 151, 101, 0.05) !important;
}

/* Premium Custom Modal Close Button */
.orion-modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 1050;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #1c1c1c !important;
    border: 1px solid rgba(184, 151, 101, 0.25) !important;
    color: #b89765 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: all 0.2s ease;
}

.orion-modal-close-btn:hover {
    background-color: #b89765 !important;
    color: #121212 !important;
    transform: scale(1.08);
}

/* Orion Footer Column Frames */
.orion-footer-column-frame {
    border: 1px solid #b89765;
    background-color: rgba(12, 12, 12, 0.95);
    padding: 25px 20px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
}

.orion-footer-column-frame::after {
    content: '';
    position: absolute;
    top: 3px;
    bottom: 3px;
    left: 3px;
    right: 3px;
    border: 1px solid rgba(184, 151, 101, 0.45);
    pointer-events: none;
}