:root {
    --color-black: #1A1A1A;
    --color-darkGrey: #313131;
    --color-grey: #555555;
    --color-lightGrey: #CCCCCC;
    --color-blue: #1574CF;
    --color-red: #E74C3C;
    --color-orange: #FF9C00;
    --color-yellow: #FBE34F;
    --color-white: #ffffff;

    --border-main: 6px;
    --shadow-light: 2px 2px 18px rgba(0, 0, 0, 0.06);
}

*,
*:before,
*:after {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    ;
    font-size: 16px;
}

h1,
h2,
h3,
h4,
h5 {
    margin: 0;
}

h1 {
    font-size: 72px;
    font-weight: bold;
    line-height: 100%;
}

h2 {
    font-size: 48px;
    font-weight: bold;
    line-height: 100%;
}

.thm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 48px;
    color: var(--color-white);
    padding: 0 24px;
    text-decoration: none;
    position: relative;
    outline: none;
    border: none;
}

.hero .thm-btn {
    width: auto;
}

.my-cart .thm-btn {
    width: auto;
}

.thm-btn.thm-btn-small {
    height: 36px;
    padding: 0 18px;
}

/* .thm-btn.cart {
    height: 36px;
    padding: 0 16px;
}

.thm-btn.cart::after {
    border-radius: 4px;
} */

.thm-btn span {
    position: relative;
    z-index: 1;
}

.thm-btn::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: var(--color-blue);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    transition: all 200ms ease;
}

.thm-btn:hover::after {
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    left: -4px;
    top: -4px;
    background-color: var(--color-blue);
}

.thm-btn.thm-btn-small:hover::after {
    width: calc(100% + 6px);
    height: calc(100% + 6px);
    left: -3px;
    top: -3px;
    background-color: var(--color-blue);
}

.thm-btn.gray::after {
    background-color: var(--color-darkGrey);
}

.thm-btn.gray:hover::after {
    background-color: var(--color-darkGrey);
}

.thm-btn.red::after {
    background-color: var(--color-red);
}

.thm-btn.red:hover::after {
    background-color: var(--color-red);
}

.thm-link {
    text-decoration: none;
}

.thm-link.red {
    color: var(--color-red);
}

.thm-link.blue {
    color: var(--color-blue);
}

.thm-link.grey {
    color: var(--color-grey);
}

.border-red {
    border: 1px solid var(--color-red);
}

.close {
    width: 36px;
    height: 36px;
    position: absolute;
    top: 6px;
    right: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.close::before,
.close::after {
    content: '';
    position: absolute;
    width: 70%;
    height: 2px;
    background-color: var(--color-white);
}

.close::before {
    transform: rotate(45deg);
}

.close::after {
    transform: rotate(-45deg);
}

.sec-head {
    display: block;
    margin-bottom: 36px;
}

.sec-head h2 {
    font-size: 36px;
    margin-top: 16px;
}

.sec-head a {
    font-size: 16px;
    text-decoration: none;
    color: var(--color-blue);
    display: inline-flex;
    align-items: center;
}

.sec-head h2 span {
    display: block;
    font-size: 16px;
    font-weight: bold;
}

.quick-links i {
    font-size: 10px;
    position: relative;
    top: -1px;
}

.quick-links,
.quick-links a {
    font-size: 14px;
}

.tc-blue {
    color: var(--color-blue);
}

.tc-grey {
    color: var(--color-darkGrey);
}

.tc-lgrey {
    color: var(--color-grey);
}

.tc-red {
    color: var(--color-red);
}

.bg-white {
    background-color: var(--color-white);
}

.bg-blue {
    background-color: var(--color-blue);
}

.bg-yellow {
    background-color: var(--color-yellow);
}

.fs-7 {
    font-size: 12px;
}

.nav-item {
    transition: all 0.2s linear;
}

.nav-item:focus,
.nav-item:hover {
    background-color: var(--color-grey);
}

/* Header */
header {
    width: 100%;
    height: 120px;
    background-color: var(--color-white);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    transition: margin-top 200ms ease;
}

.navbar-brand {
    margin-right: 24px;
    font-size: 20px;
    font-weight: bolder;
    text-transform: uppercase;
    color: var(--color-blue);
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
}

.navbar-brand img {
    height: 64px;
}

.top-bar {
    background-color: var(--color-white);
    height: 96px;
}

nav {
    background-color: var(--color-darkGrey);
}

.navbar-nav .nav-item:first-child {
    border-left: 1px solid var(--color-grey);
}

.navbar-nav .nav-item {
    border-right: 1px solid var(--color-grey);
}

.navbar-nav .nav-link {
    color: var(--color-white);
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
    display: flex;
    align-items: center;
}

.navbar-nav,
.navbar-nav .nav-item,
.navbar-nav .nav-link {
    height: 100%;
}

.navbar,
.navbar-collapse {
    padding: 0 !important;
    height: 56px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: var(--color-blue);
}

.nav-item {
    padding: 0.5rem 0xp;
}

.navbar-nav .dropdown-menu {
    left: 0;
    border-radius: 0;
    border: none;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.06);
}

.navbar-nav .dropdown-menu a::before {
    font-family: 'bootstrap-icons';
    content: "\F234";
    font-size: 12px;
    vertical-align: middle;
    display: inline-block;
    padding-right: 6px;
    transition: all 0.1s linear;
}

.navbar-nav .dropdown-menu a:hover::before {
    padding-right: 12px;
}

.dropdown-hover.user .dropdown-menu {
    left: auto;
    /* width: 196px; */
    padding: 0;
}

.dropdown-hover.user .dropdown-menu a {
    padding: 8px 12px;
}

.dropdown-toggle::after {
    display: none;
}

.list-group-item-action:focus,
.list-group-item-action:hover {
    background-color: var(--color-blue);
    color: var(--color-white);
}

.flex-wrap {
    width: 100%;
    height: auto;
}

.search-bar {
    flex: 1;
    min-width: 0;
    height: 48px;
}

.search-bar .input-group {
    width: 100%;
    height: 100%;
}

.search-bar input {
    padding: 0 16px !important;
    border-radius: 0px;
}

.search-bar button {
    border-radius: 0px;
}

.contact-no,
.btn-cart {
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 24px;
}


.contact-no {
    border: 2px solid var(--color-blue);
    color: var(--color-blue);
}

.btn-cart {
    border: 2px solid var(--color-red);
    color: var(--color-red);
    text-decoration: none;
}

.btn-cart:hover {
    background-color: var(--color-red);
    color: var(--color-white);
}

.btn-cart-sm {
    border: none;
    height: 100%;
    font-weight: normal;
}

/* Mobile header icon buttons (search + cart) — unified style */
.header-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    min-width: 42px;
    padding: 0 12px;
    background: #fff;
    border: 2px solid var(--color-darkGrey);
    color: var(--color-darkGrey);
    border-radius: 4px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}
.header-icon-btn:hover,
.header-icon-btn:focus {
    background: var(--color-darkGrey);
    color: #fff;
    text-decoration: none;
}
.header-icon-btn span {
    font-size: 14px;
}

/* Account dropdown menu (mobile + tablet) */
.account-menu {
    position: absolute;
    right: 0;
    top: 50px;
    min-width: 240px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    z-index: 1050;
    animation: accountMenuFade 0.15s ease-out;
}
@keyframes accountMenuFade {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}
.account-menu-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: linear-gradient(135deg, #f8f9fb 0%, #eef1f5 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.account-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}
.account-info {
    flex: 1;
    min-width: 0;
}
.account-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-darkGrey);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.account-business {
    font-size: 12px;
    color: var(--color-grey);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.account-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 16px;
    font-size: 14px;
    color: var(--color-darkGrey);
    text-decoration: none;
    transition: background 0.1s, color 0.1s;
}
.account-menu-item i {
    font-size: 16px;
    width: 20px;
    text-align: center;
    color: var(--color-grey);
    transition: color 0.1s;
}
.account-menu-item:hover {
    background: #f5f7fa;
    color: var(--color-blue);
    text-decoration: none;
}
.account-menu-item:hover i {
    color: var(--color-blue);
}
.account-menu-item.logout {
    color: var(--color-red);
}
.account-menu-item.logout i {
    color: var(--color-red);
}
.account-menu-item.logout:hover {
    background: #fef2f2;
    color: var(--color-red);
}
.account-menu-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.06);
    margin: 4px 0;
}

/* Header Closed ------------------------------------------ */

.subPage {
    width: 100%;
    padding-top: 196px;
    padding-bottom: 96px;
}

/* Hero */
.hero {
    width: 100%;
    height: 616px;
    padding-top: 152px;
    background:
        radial-gradient(circle at 85% 25%, rgba(11, 144, 212, 0.35), transparent 55%),
        radial-gradient(circle at 15% 85%, rgba(197, 18, 49, 0.18), transparent 55%),
        linear-gradient(135deg, #053a64 0%, #0b79cb 100%);
    display: flex;
    align-items: center;
}

.hero h1 {
    color: var(--color-white);
}

.hero h1 span {
    display: block;
    color: #4dabf7;
}

.hero p {
    font-size: 22px;
    line-height: 150%;
    color: rgba(255, 255, 255, 0.85);
}

.hero .hero-head a.thm-btn {
    display: inline-flex;
}

/* Hero Closed ------------------------------------------ */

/* Services */
.services {
    padding: 96px 0;
}

.shop {
    padding: 196px 0;
}

.services.sub {
    padding: 0 0 96px 0;
}

.services .sec-head {
    margin-bottom: 36px;
}

.services .box {
    border-radius: 6px;
    box-shadow: var(--shadow-light);
    background-color: #ededed;
    position: relative;
    height: auto;
}

.services .box .img-holder {
    width: 100%;
    aspect-ratio: 1 / 1;
}

.services .box .img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.services .box .info {
    width: 100%;
    height: 64px;
    color: var(--color-darkGrey);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 0 12px;
    background-color: var(--color-white);
}

.services .box .info h3 {
    font-size: 16px;
    font-weight: bold;
}

.services .box .info h3 span {
    font-size: 12px;
    font-weight: normal;
    display: block;
}

/* Services Closed ------------------------------------------ */

/* Custom Design */

.custom-design {
    height: 640px;
    background-color: var(--color-lightGrey);
    background-image: url(../img/custom-design-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.custom-design .box {
    height: auto;
    background-color: var(--color-white);
    border-radius: var(--border-main);
    padding: 48px calc((100% / 8) * 1);
}

.custom-design .steps {
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
}

.custom-design .steps .step {
    flex-shrink: 0;
    width: calc((100% / 6) * 2);
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
}

.custom-design .box a {
    display: inline-flex;
}

.custom-design .box h3 {
    font-size: 36px;
    font-weight: bold;
}

.custom-design .box h3 span {
    font-size: 24px;
    font-weight: normal;
    display: block;
    text-align: center;
}

.custom-design .box h1 {
    color: var(--color-grey);
}

.custom-design .box h4 {
    font-size: 16px;
    font-weight: bold;
}

/* Custom Design Closed ------------------------------------------ */

/* Checkout */
.checkout {
    width: 100%;
    height: 616px;
    padding-top: 128px;
    background-color: #ebebeb;
    display: flex;
    align-items: center;
}

/* Checkout Closed ------------------------------------------ */

/* Footer */

footer {
    background-color: var(--color-black);
    color: var(--color-white);
}

.footer-top {
    background-color: var(--color-darkGrey);
    height: 96px;
    display: flex;
    align-items: center;
    color: var(--color-lightGrey);
}

.footer-top i {
    font-size: 48px;
}

.footer-top h3 {
    font-size: 24px;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-top h3 span {
    font-size: 16px;
    font-weight: 400;
    display: block;
    text-transform: none;
    margin: 0;
    padding: 0;
}

.footer {
    padding: 64px 0;
    color: var(--color-lightGrey);
}

.footer h3 {
    color: var(--color-blue);
    margin-bottom: 16px;
}

.footer ul,
.footer ul li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer ul li {
    margin: 12px 0;
}

.footer ul li a {
    color: var(--color-lightGrey);
    text-decoration: none;
}

.footer .newsletter .form-holder {
    margin: 0;
}

.footer .newsletter input {
    background-color: transparent;
    border: 1px solid var(--color-darkGrey);
    border-right: 0;
    border-radius: 4px 0 0 4px;
    color: var(--color-white);
    padding: 0 12px;
    height: 40px;
    flex: 1;
    min-width: 0;
    outline: none;
}

.footer .newsletter input::placeholder {
    color: var(--color-lightGrey);
    opacity: 0.6;
}

.footer .newsletter input:focus {
    border-color: var(--color-white);
}

.footer .newsletter button {
    width: 106px;
    height: 40px;
    padding: 0;
    border-radius: 0 4px 4px 0;
    flex-shrink: 0;
}

/* Footer Closed ------------------------------------------ */

.order-page {
    width: 100%;
    padding: calc(124px + 64px) 0 24px;
    background-color: #f5f5f5;
}

.order-form-wrap {
    background-color: var(--color-white);
    padding: 24px;
}

.order-form-wrap label {
    font-weight: bold;
}

.price-wrap {
    background-color: #f5f5f5;
    padding: 2px 16px;
    margin-bottom: 24px;
}

.sec-disc {
    font-size: 14px;
}

#final_price {
    border: 1px solid #ebebeb;
    padding: .375rem 1rem;
    font-size: 20px;
    font-weight: bold;
}

.product-details {
    padding: 64px 0 96px;
}

.no-product {
    padding: 196px 0 96px;
}

.call-action {
    border: 1px solid #ebebeb;
    background-color: #f5f5f5;
    padding: 24px;
}

.call-action p {
    padding: 0;
    margin: 0;
}

.call-action p:first-child {
    margin-bottom: 16px;
}

.call-action p:last-child {
    margin-top: 16px;
}


.my-cart,
.get-quote {
    width: 100%;
    padding: calc(124px + 64px) 0 24px;
    background-color: #f5f5f5;
}

.item-wrap {
    background-color: var(--color-white);
    border-radius: 8px;
    font-size: 14px;
    color: var(--color-darkGrey);
}

.cart-table thead th {
    height: 48px;
    vertical-align: middle;
    padding: 0 12px;
}

#cart_container td {
    padding: 12px;
}

.cart-item {
    list-style: none;
    margin: 0 0 8px;
    padding: 0;
    width: 100%;
    display: table;
    table-layout: fixed;
}

.cart-item li {
    display: table-cell;
    vertical-align: middle;
    height: 96px;
}

.cart-item.head li {
    height: 64px;
    font-weight: bold;
}

.errorBox {
    font-size: 14px;
    color: var(--color-red);
}

/* Masonry container */
.mega-masonry {
    column-count: 4;
    /* max 4 columns */
    column-gap: 1.25rem;
}

/* UL box */
.list-box {
    break-inside: avoid;
    padding: 0.5rem;
    margin-bottom: 1rem;
}

/* Links */
.list-box .dropdown-item {
    white-space: normal;
    padding: .25rem 0;
}

@media (max-width: 992px) {
    .mega-masonry {
        column-count: 3;
    }
}

@media (max-width: 768px) {
    .mega-masonry {
        column-count: 2;
    }
}

@media (max-width: 576px) {
    .mega-masonry {
        column-count: 1;
    }
}

/* ============================================================
   MOBILE / TABLET RESPONSIVE
============================================================ */

/* Tablet and below */
@media (max-width: 991.98px) {
    /* Header — top bar wraps; navbar collapses */
    header {
        height: auto;
        position: relative;
    }
    .top-bar {
        height: auto;
        padding: 12px 0;
    }
    .navbar-brand img {
        height: 48px;
    }
    .contact-no {
        height: 36px;
        padding: 0 12px;
        font-size: 14px;
    }
    .search-bar {
        height: 40px;
    }
    /* Body padding adjustment when header is no longer fixed-height */
    body {
        padding-top: 0;
    }
    /* Nav links stack vertically when collapsed */
    .navbar, .navbar-collapse {
        height: auto !important;
    }
    .navbar-collapse {
        background: var(--color-darkGrey);
        padding: 0 !important;
        width: 100%;
    }
    .navbar-nav {
        width: 100%;
    }
    .navbar-nav .nav-item {
        border: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
        height: auto !important;
        width: 100%;
    }
    .navbar-nav .nav-link {
        padding: 14px 16px !important;
        height: auto !important;
        color: var(--color-white) !important;
    }
    .navbar-nav .dropdown-menu {
        position: static !important;
        background: rgba(0, 0, 0, 0.2);
        padding: 8px 0;
        margin: 0;
        border: none;
        box-shadow: none;
        border-radius: 0;
        width: 100%;
        max-height: 60vh;
        overflow-y: auto;
    }
    .navbar-nav .dropdown-menu .dropdown-item {
        color: var(--color-white) !important;
        padding: 10px 24px !important;
    }
    .navbar-nav .dropdown-menu .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.05);
    }
    /* Mega-menu on mobile: single column */
    .mega-masonry {
        column-count: 1 !important;
        margin: 0 !important;
    }
    .mega-masonry .list-box {
        margin-bottom: 12px;
    }
    .mega-masonry .list-box .fw-bold {
        color: rgba(255, 255, 255, 0.6);
        padding: 0 24px;
    }
    /* Toggler button styling */
    .navbar-toggler {
        color: var(--color-white);
        font-size: 18px;
        padding: 12px 16px;
        border: none;
        background: transparent;
        font-weight: 600;
        display: flex;
        align-items: center;
    }
    .navbar-toggler:focus {
        box-shadow: none;
    }
}

/* Tablet portrait and below */
@media (max-width: 768px) {
    /* Typography scales down */
    h1 { font-size: 40px; }
    h2 { font-size: 28px; }
    .sec-head h2 { font-size: 24px; }
    .sec-head { margin-bottom: 24px; }

    /* Hero */
    .hero { padding: 36px 0 !important; min-height: auto !important; }
    .hero h1 { font-size: 36px !important; }
    .hero p { font-size: 16px; }
    .hero .thm-btn { margin-bottom: 8px; }

    /* Custom design section */
    .custom-design { padding: 36px 0 !important; }
    .custom-design .box { padding: 24px 16px !important; }
    .custom-design .steps {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .custom-design .steps .step {
        padding: 0 !important;
        text-align: center;
        width: 100%;
    }
    .custom-design .box h1 { font-size: 36px !important; }

    /* Footer */
    .footer-top, .footer {
        height: auto !important;
        padding: 24px 0;
    }
    .footer-top h3, .footer h3 { font-size: 16px; }
    .footer-top i { font-size: 28px !important; }
    /* Center contents on mobile */
    .footer-top .row > div,
    .footer .row > div {
        text-align: center;
        justify-content: center;
    }
    .footer-top .row > div {
        flex-direction: column;
    }
    .footer-top i {
        margin: 0 0 8px 0 !important;
    }
    .footer .newsletter .form-holder {
        justify-content: center;
    }
    .footer ul {
        padding-left: 0;
        list-style: none;
    }

    /* Buttons large enough to tap */
    .thm-btn {
        min-height: 44px;
    }
}

/* Order/shop page top padding — header is no longer fixed tall */
@media (max-width: 991.98px) {
    .order-page {
        padding-top: 24px !important;
    }
    .client-register {
        padding-top: 24px !important;
    }
    .my-cart,
    .get-quote {
        padding-top: 24px !important;
    }
    /* Filter buttons wrap nicely */
    .order-page .sec-head .d-flex {
        flex-wrap: wrap;
    }
    /* Card images smaller on phone */
    .order-page .card img {
        max-height: 100px !important;
    }
    .order-page .card h6 {
        font-size: 13px;
    }
    .order-page .card {
        padding: 12px !important;
    }
}

/* Phones */
@media (max-width: 576px) {
    .container, .container-fluid {
        padding-left: 12px;
        padding-right: 12px;
    }
    h1 { font-size: 32px; }
    h2 { font-size: 24px; }
    .hero h1 { font-size: 28px !important; }
    .hero p { font-size: 14px; }

    .navbar-brand img {
        height: 40px;
    }
    .contact-no {
        display: none !important;
    }

    /* Stack hero buttons full-width */
    .hero .thm-btn {
        display: flex;
        width: 100%;
        margin-right: 0;
        margin-bottom: 8px;
    }

    /* Service cards take full width */
    .services .box .info h3 { font-size: 16px; }
}

/* Cart Page */
.cart-page {
    width: 100%;
    height: 296px;
    padding-bottom: 36px;
    background-color: #ebebeb;
    display: flex;
    align-items: end;
}

button#add_to_cart[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

.orientation-picker {
    display: flex;
    gap: 20px;
}

.orientation-option {
    cursor: pointer;
    text-align: center;
    user-select: none;
    display: flex;
    align-items: center;
}

.orientation-option input {
    display: none;
}

/* Visual box */
.orientation-box {
    display: block;
    border: 2px solid #ccc;
    border-radius: 0;
    background: #f8f9fa;
    transition: all 0.2s ease;
    margin-bottom: 6px;
}

/* Shapes */
.orientation-box.landscape {
    width: 60px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
}

.orientation-box.portrait {
    width: 40px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
    writing-mode: vertical-lr;
}

/* Selected state */
.orientation-option input:checked+.orientation-box {
    border-color: #dc3545;
    /* bootstrap danger red */
    background: rgba(220, 53, 69, 0.1);
}

/* Login Page */

.login-page {
    width: 100%;
    height: 100%;
    background-color: var(--color-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-box {
    background-color: var(--color-white);
    padding: 24px;
    border-radius: 16px;
}

.login-box .thm-btn.gray::after {
    border-radius: 12px;
}

.login-box label {
    font-size: 14px;
}

.card.shadow-sm.sticky-top {
    z-index: inherit;
}

.client-register {
    width: 100%;
    padding: calc(124px + 64px) 0 96px;
    background-color: #f5f5f5;
}

/* Search Bar */
.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    max-height: 400px;
    overflow-y: auto;
    display: none;
    z-index: 9999;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

.search-result-item {
    display: block;
    padding: 10px 14px;
    color: var(--color-darkGrey);
    text-decoration: none;
    border-bottom: 1px solid #f1f1f1;
    font-size: 14px;
    transition: background 0.1s, color 0.1s;
}
.search-result-item:last-child {
    border-bottom: none;
}
.search-result-item:hover,
.search-result-item:focus {
    background: var(--color-blue);
    color: #fff;
    text-decoration: none;
}

.search-item {
    display: flex;
    align-items: center;
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #f1f1f1;
}

.search-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 10px;
}

.search-item:hover {
    background: #f8f9fa;
}

.info-box span {
    font-size: 13px;
    color: var(--color-grey);
}