/* =========================================================
   PADMA IMPORTS
   CLEAN NEW THEME
========================================================= */

:root {

    --navy: #173b63;
    --navy-dark: #102d4d;

    --gold: #d59a2a;

    --text: #222222;
    --muted: #777777;

    --border: #e6e6e6;

    --light: #f7f8fa;

    --container: 1400px;
}


/* =========================================================
   RESET
========================================================= */

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: var(--text);

    background: #ffffff;

    font-size: 15px;

    line-height: 1.6;
}

a {
    color: inherit;

    text-decoration: none;
}

img {
    max-width: 100%;
}

button,
input {
    font-family: inherit;
}


/* =========================================================
   CONTAINER
========================================================= */

.padma-container {

    width: calc(100% - 40px);

    max-width: var(--container);

    margin-left: auto;

    margin-right: auto;
}


/* =========================================================
   TOP BAR
========================================================= */

.padma-topbar {

    background: var(--navy);

    color: #ffffff;
}

.padma-topbar-inner {

    min-height: 40px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}

.padma-top-left {

    display: flex;

    align-items: center;

    gap: 12px;

    font-size: 13px;
}

.padma-divider {

    opacity: .4;
}

.padma-top-right {

    display: flex;

    align-items: center;

    gap: 20px;

    font-size: 13px;
}

.padma-top-right a {

    color: #ffffff;

    font-weight: 700;
}

.padma-top-right a:hover {

    color: var(--gold);
}


/* =========================================================
   MAIN HEADER
========================================================= */

.padma-main-header {

    background: #ffffff;

    border-bottom: 1px solid var(--border);
}

.padma-main-inner {

    min-height: 108px;

    display: grid;

    grid-template-columns:
        190px
        minmax(300px, 1fr)
        auto;

    align-items: center;

    gap: 35px;
}


/* =========================================================
   LOGO
========================================================= */

.padma-logo {

    display: flex;

    align-items: center;

    justify-content: flex-start;
}

.padma-logo img {

    display: block;

    width: auto;

    max-width: 180px;

    max-height: 82px;
}


/* =========================================================
   SEARCH
========================================================= */

.padma-search {

    width: 100%;
}

.padma-search form {

    position: relative;

    width: 100%;

    margin: 0;
}

.padma-search input {

    width: 100%;

    height: 52px;

    padding:
        0 60px 0 22px;

    border:
        1px solid #d9dde2;

    border-radius: 30px;

    background: #fafafa;

    outline: none;

    font-size: 15px;
}

.padma-search input:focus {

    background: #ffffff;

    border-color: var(--navy);
}

.padma-search button {

    position: absolute;

    top: 6px;

    right: 6px;

    width: 40px;

    height: 40px;

    border: 0;

    border-radius: 50%;

    background: var(--navy);

    color: #ffffff;

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: center;
}

.padma-search button:hover {

    background: var(--gold);
}


/* =========================================================
   ACTIONS
========================================================= */

.padma-actions {

    display: flex;

    align-items: center;

    gap: 25px;
}

.padma-action {

    display: flex;

    align-items: center;

    gap: 9px;

    white-space: nowrap;
}

.padma-action-icon {

    width: 43px;

    height: 43px;

    border-radius: 50%;

    background: var(--light);

    color: var(--navy);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 18px;
}

.padma-action-content {

    display: flex;

    flex-direction: column;
}

.padma-action-content small {

    color: var(--muted);

    font-size: 10px;
}

.padma-action-content strong {

    color: var(--text);

    font-size: 13px;
}


/* =========================================================
   NAVIGATION
========================================================= */

.padma-navigation {

    background: #ffffff;

    border-bottom:
        1px solid var(--border);

    box-shadow:
        0 3px 12px rgba(0,0,0,.04);
}

.padma-menu {

    margin: 0;

    padding: 0;

    min-height: 62px;

    display: flex;

    align-items: center;

    list-style: none;
}

.padma-menu li {

    margin: 0;

    padding: 0;
}

.padma-menu li a {

    min-height: 62px;

    padding:
        0 23px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #292929;

    font-size: 15px;

    font-weight: 700;

    text-transform: capitalize;

    white-space: nowrap;
}

.padma-menu li a:hover {

    color: var(--navy);

    background: var(--light);
}

.padma-menu li.active a {

    color: var(--navy);
}


/* TRADE CTA */

.padma-trade-menu {

    margin-left: auto !important;
}

.padma-trade-menu a {

    min-height: auto !important;

    margin: 8px 0;

    padding:
        10px 18px !important;

    border-radius: 25px;

    background: var(--navy);

    color: #ffffff !important;
}

.padma-trade-menu a:hover {

    background: var(--gold) !important;

    color: #ffffff !important;
}


/* =========================================================
   MOBILE BUTTON
========================================================= */

.padma-mobile-button {

    display: none;

    border: 0;

    background: transparent;

    color: var(--navy);

    font-size: 16px;

    font-weight: 700;

    padding: 15px 0;

    cursor: pointer;
}


/* =========================================================
   TEST HOMEPAGE
========================================================= */

.padma-test-section {

    min-height: 500px;

    display: flex;

    align-items: center;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            #f7f8fa,
            #ffffff
        );
}

.padma-test-section .padma-container {

    width: 100%;
}

.padma-test-section h1 {

    margin: 0 0 10px;

    color: var(--navy);

    font-size: 42px;
}

.padma-test-section p {

    margin: 0 0 25px;

    color: var(--muted);

    font-size: 18px;
}

.padma-btn {

    display: inline-block;

    padding:
        12px 25px;

    border-radius: 25px;

    background: var(--navy);

    color: #ffffff;

    font-weight: 700;
}

.padma-btn:hover {

    background: var(--gold);

    color: #ffffff;
}


/* =========================================================
   FOOTER
========================================================= */

.padma-footer {

    color: #ffffff;

    background: var(--navy);
}

.padma-footer-main {

    padding:
        55px 0;
}

.padma-footer-grid {

    display: grid;

    grid-template-columns:
        1.4fr
        1fr
        1fr
        1.3fr;

    gap: 40px;
}

.padma-footer-column h3 {

    margin:
        0 0 18px;

    color: #ffffff;

    font-size: 17px;
}

.padma-footer-column p {

    margin:
        0 0 10px;

    color: rgba(255,255,255,.75);

    font-size: 13px;
}

.padma-footer-column a {

    display: block;

    margin-bottom: 8px;

    color: rgba(255,255,255,.75);

    font-size: 13px;
}

.padma-footer-column a:hover {

    color: var(--gold);
}

.padma-footer-bottom {

    padding:
        18px 0;

    border-top:
        1px solid rgba(255,255,255,.12);

    text-align: center;
}

.padma-footer-bottom p {

    margin: 0;

    color: rgba(255,255,255,.65);

    font-size: 12px;
}

.padma-footer-bottom span {

    margin-left: 15px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .padma-main-inner {

        grid-template-columns:
            160px
            minmax(200px,1fr)
            auto;

        gap: 20px;
    }

    .padma-logo img {

        max-width: 150px;
    }

    .padma-action-content {

        display: none;
    }

    .padma-actions {

        gap: 12px;
    }

    .padma-menu li a {

        padding:
            0 14px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .padma-container {

        width:
            calc(100% - 28px);
    }

    .padma-topbar {

        display: none;
    }

    .padma-main-inner {

        display: flex;

        flex-direction: column;

        gap: 16px;

        padding:
            18px 0;
    }

    .padma-logo {

        justify-content: center;
    }

    .padma-logo img {

        max-width: 170px;
    }

    .padma-search {

        width: 100%;
    }

    .padma-actions {

        width: 100%;

        justify-content: center;
    }

    .padma-navigation {

        position: relative;
    }

    .padma-mobile-button {

        display: block;
    }

    .padma-menu {

        display: none;

        flex-direction: column;

        align-items: stretch;

        min-height: auto;

        width: 100%;
    }

    .padma-menu li {

        width: 100%;
    }

    .padma-menu li a {

        width: 100%;

        min-height: 48px;

        justify-content: flex-start;

        padding:
            0 10px;
    }

    .padma-trade-menu {

        margin-left: 0 !important;
    }

    .padma-trade-menu a {

        margin:
            5px 0;
    }

    body.padma-menu-open .padma-menu {

        display: flex;
    }

    .padma-footer-grid {

        grid-template-columns:
            1fr 1fr;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 500px) {

    .padma-actions {

        gap: 20px;
    }

    .padma-action-content {

        display: none;
    }

    .padma-footer-grid {

        grid-template-columns: 1fr;
    }

    .padma-footer-bottom span {

        display: block;

        margin:
            5px 0 0;
    }

}

/* =========================================================
   HOMEPAGE HERO
========================================================= */

.padma-hero {
    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            110deg,
            #f5f1e9 0%,
            #faf8f4 55%,
            #eef2f3 100%
        );
}

.padma-hero-content {

    min-height: 560px;

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    align-items: center;

    gap: 50px;
}

.padma-hero-text {

    max-width: 620px;

    padding:
        60px 0;
}

.padma-hero-label {

    display: inline-block;

    margin-bottom: 18px;

    color: var(--gold);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.padma-hero h1 {

    margin: 0 0 22px;

    color: var(--navy);

    font-size: clamp(38px, 4vw, 62px);

    font-weight: 800;

    line-height: 1.08;

    letter-spacing: -1.5px;
}

.padma-hero h1 span {

    display: block;

    color: var(--gold);
}

.padma-hero p {

    max-width: 550px;

    margin: 0 0 30px;

    color: #606060;

    font-size: 17px;

    line-height: 1.8;
}

.padma-hero-buttons {

    display: flex;

    align-items: center;

    gap: 14px;

    flex-wrap: wrap;
}


/* BUTTONS */

.padma-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 48px;

    padding:
        0 24px;

    border-radius: 5px;

    font-size: 13px;

    font-weight: 700;

    transition:
        all .2s ease;
}

.padma-btn-primary {

    background: var(--navy);

    color: #ffffff;
}

.padma-btn-primary:hover {

    background: var(--gold);

    color: #ffffff;

    transform: translateY(-2px);
}

.padma-btn-outline {

    border:
        1px solid var(--navy);

    color: var(--navy);

    background: transparent;
}

.padma-btn-outline:hover {

    background: var(--navy);

    color: #ffffff;
}


/* HERO IMAGE */

.padma-hero-image {

    position: relative;

    height: 100%;

    min-height: 560px;

    display: flex;

    align-items: center;

    justify-content: center;
}

.padma-hero-image-bg {

    position: absolute;

    width: 440px;

    height: 440px;

    border-radius: 50%;

    background:
        rgba(213,154,42,.14);
}

.padma-hero-image img {

    position: relative;

    z-index: 2;

    display: block;

    width: 100%;

    max-width: 560px;

    height: 480px;

    object-fit: cover;

    border-radius: 8px;

    box-shadow:
        0 25px 60px rgba(0,0,0,.14);
}


/* =========================================================
   CATEGORY SECTION
========================================================= */

.padma-categories {

    padding:
        80px 0;
}

.padma-section-heading {

    max-width: 650px;

    margin:
        0 auto 45px;

    text-align: center;
}

.padma-section-heading > span {

    color: var(--gold);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.padma-section-heading h2 {

    margin:
        8px 0 10px;

    color: var(--navy);

    font-size: 36px;

    line-height: 1.2;
}

.padma-section-heading p {

    margin: 0;

    color: var(--muted);

    font-size: 15px;
}

.padma-category-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 22px;
}

.padma-category-card {

    overflow: hidden;

    background: #ffffff;

    border:
        1px solid var(--border);

    border-radius: 7px;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.padma-category-card:hover {

    transform:
        translateY(-5px);

    box-shadow:
        0 15px 35px rgba(0,0,0,.10);
}


.padma-category-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform .4s ease;
}

.padma-category-card:hover
.padma-category-image img {

    transform:
        scale(1.05);
}


.padma-category-content h3 {

    margin: 0 0 5px;

    color: var(--navy);

    font-size: 17px;
}

.padma-category-content span {

    color: var(--gold);

    font-size: 12px;

    font-weight: 700;
}


/* =========================================================
   HERO + CATEGORY RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .padma-hero-content {

        grid-template-columns: 1fr;

        min-height: auto;

        gap: 20px;
    }

    .padma-hero-text {

        padding:
            60px 0 20px;

        text-align: center;

        margin: 0 auto;
    }

    .padma-hero p {

        margin-left: auto;

        margin-right: auto;
    }

    .padma-hero-buttons {

        justify-content: center;
    }

    .padma-hero-image {

        min-height: 420px;

        padding-bottom: 50px;
    }

    .padma-hero-image img {

        height: 380px;
    }

    .padma-category-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }
}


@media (max-width: 600px) {

    .padma-hero h1 {

        font-size: 38px;
    }

    .padma-hero p {

        font-size: 15px;
    }

    .padma-hero-buttons {

        flex-direction: column;

        width: 100%;
    }

    .padma-btn {

        width: 100%;
    }

    .padma-hero-image {

        min-height: 330px;
    }

    .padma-hero-image img {

        height: 300px;
    }

    .padma-category-grid {

        grid-template-columns: 1fr;
    }

    .padma-category-image {

        height: 260px;
    }

    .padma-categories {

        padding:
            55px 0;
    }

    .padma-section-heading h2 {

        font-size: 30px;
    }
}

/* =========================================================
   STEP 2A - HERO ONLY
========================================================= */

.padma-hero-simple {
    width: 100%;
    overflow: hidden;
    background: #f6f1e8;
}

.padma-hero-simple-inner {
    min-height: 520px;

    display: grid;

    grid-template-columns:
        1.05fr
        .95fr;

    align-items: center;

    gap: 50px;
}

.padma-hero-simple-content {
    padding: 60px 0;
}

.padma-hero-kicker {
    display: inline-block;

    margin-bottom: 16px;

    color: #d59a2a;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.padma-hero-simple h1 {
    max-width: 650px;

    margin: 0 0 20px;

    color: #173b63;

    font-size: 52px;

    line-height: 1.08;

    font-weight: 800;

    letter-spacing: -1px;
}

.padma-hero-simple p {
    max-width: 570px;

    margin: 0 0 28px;

    color: #5f5f5f;

    font-size: 16px;

    line-height: 1.8;
}

.padma-hero-simple-buttons {
    display: flex;

    align-items: center;

    gap: 12px;

    flex-wrap: wrap;
}


/* HERO VISUAL */

.padma-hero-simple-visual {
    position: relative;

    min-height: 480px;

    display: flex;

    align-items: center;

    justify-content: center;
}

.padma-hero-circle {
    position: absolute;

    width: 430px;

    height: 430px;

    border-radius: 50%;

    background: rgba(213, 154, 42, .16);
}

.padma-hero-placeholder {
    position: relative;

    z-index: 2;

    width: 390px;

    height: 390px;

    border-radius: 12px;

    background: #173b63;

    color: #ffffff;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    box-shadow:
        0 25px 60px rgba(0,0,0,.15);
}

.padma-hero-placeholder span {
    font-size: 18px;

    letter-spacing: 5px;

    color: #d9d9d9;
}

.padma-hero-placeholder strong {
    margin-top: 5px;

    font-size: 42px;

    letter-spacing: 2px;

    color: #ffffff;
}


/* MOBILE */

@media (max-width: 991px) {

    .padma-hero-simple-inner {
        grid-template-columns: 1fr;

        min-height: auto;

        gap: 10px;
    }

    .padma-hero-simple-content {
        padding:
            55px 0 20px;

        text-align: center;
    }

    .padma-hero-simple h1 {
        font-size: 42px;

        margin-left: auto;
        margin-right: auto;
    }

    .padma-hero-simple p {
        margin-left: auto;
        margin-right: auto;
    }

    .padma-hero-simple-buttons {
        justify-content: center;
    }

    .padma-hero-simple-visual {
        min-height: 380px;

        padding-bottom: 45px;
    }

    .padma-hero-circle {
        width: 320px;
        height: 320px;
    }

    .padma-hero-placeholder {
        width: 290px;
        height: 290px;
    }

    .padma-hero-placeholder strong {
        font-size: 32px;
    }
}


@media (max-width: 600px) {

    .padma-hero-simple h1 {
        font-size: 34px;
    }

    .padma-hero-simple p {
        font-size: 14px;
    }

    .padma-hero-simple-buttons {
        flex-direction: column;
    }

    .padma-hero-simple-buttons .padma-btn {
        width: 100%;
    }
}

.padma-hero-image {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 560px;
}

.padma-hero-image img {
    display: block;
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .15);
}

@media (max-width: 991px) {

    .padma-hero-image {
        max-width: 520px;
        margin: 0 auto;
    }

    .padma-hero-image img {
        height: 380px;
    }

}

/* =========================================================
   SHOP BY CATEGORY
========================================================= */

.padma-categories {
    padding: 85px 0;
    background: #ffffff;
}

.padma-section-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 45px;
}

.padma-section-kicker {
    display: block;

    margin-bottom: 10px;

    color: #d59a2a;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.8px;
}

.padma-section-heading h2 {
    margin: 0 0 12px;

    color: #173b63;

    font-size: 38px;
    line-height: 1.2;
    font-weight: 800;
}

.padma-section-heading p {
    margin: 0;

    color: #777;

    font-size: 15px;
    line-height: 1.7;
}


/* GRID */

.padma-category-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}


/* CARD */

.padma-category-card {
    position: relative;

    display: flex;

    align-items: center;

    gap: 18px;

    min-height: 145px;

    padding: 25px;

    border: 1px solid #eeeeee;

    border-radius: 12px;

    background: #ffffff;

    text-decoration: none;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, .05);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.padma-category-card:hover {
    transform: translateY(-5px);

    border-color: #d59a2a;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, .10);
}


/* ICON */

/* =========================================================
   CATEGORY IMAGE CARDS
========================================================= */

.padma-category-card {
    overflow: hidden;

    display: block;

    padding: 0;

    background: #ffffff;

    border: 1px solid #eeeeee;

    border-radius: 12px;

    text-decoration: none;

    box-shadow: 0 8px 25px rgba(0,0,0,.05);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.padma-category-card:hover {
    transform: translateY(-6px);

    border-color: #d59a2a;

    box-shadow:
        0 18px 40px rgba(0,0,0,.12);
}


/* IMAGE */

.padma-category-image {
    position: relative;

    width: 100%;

    height: 190px;

    overflow: hidden;

    background: #f5f1e9;
}

.padma-category-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .45s ease;
}

.padma-category-card:hover
.padma-category-image img {
    transform: scale(1.06);
}


/* FALLBACK */

.padma-category-image-placeholder {
    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #173b63;

    font-size: 35px;

    background: #f6f1e8;
}


/* CONTENT */

.padma-category-content {
    padding: 20px 22px 22px;
}

.padma-category-content h3 {
    margin: 0 0 8px;

    color: #173b63;

    font-size: 17px;

    line-height: 1.35;

    font-weight: 700;
}

.padma-category-content span {
    color: #999999;

    font-size: 12px;

    font-weight: 600;
}

.padma-category-content span i {
    margin-left: 5px;

    color: #d59a2a;
}


/* MOBILE */

@media (max-width: 767px) {

    .padma-category-image {
        height: 180px;
    }

}

@media (max-width: 480px) {

    .padma-category-image {
        height: 210px;
    }

}


/* CONTENT */

.padma-category-content {
    min-width: 0;
}

.padma-category-content h3 {
    margin: 0 0 8px;

    color: #173b63;

    font-size: 17px;

    line-height: 1.3;

    font-weight: 700;
}

.padma-category-content span {
    color: #999;

    font-size: 12px;

    font-weight: 600;
}

.padma-category-content span i {
    margin-left: 5px;

    color: #d59a2a;
}


/* TABLET */

@media (max-width: 1100px) {

    .padma-category-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

}


/* MOBILE */

@media (max-width: 767px) {

    .padma-categories {
        padding: 60px 0;
    }

    .padma-section-heading h2 {
        font-size: 32px;
    }

    .padma-category-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 14px;
    }


}


/* SMALL MOBILE */

@media (max-width: 480px) {

    .padma-category-grid {
        grid-template-columns: 1fr;
    }

    .padma-category-card {
        flex-direction: row;

        text-align: left;
    }

}

/* =========================================================
   PREMIUM CATEGORY SECTION
========================================================= */

.padma-categories {
    padding: 95px 0 100px;
    background: #ffffff;
}

.padma-categories .padma-container {
    width: min(1400px, calc(100% - 80px));
    margin: 0 auto;
}


/* ---------------------------------------------------------
   HEADING
--------------------------------------------------------- */

.padma-section-heading {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.padma-section-kicker {
    display: inline-block;

    margin-bottom: 12px;

    color: #d59a2a;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.padma-section-heading h2 {
    margin: 0 0 14px;

    color: #193f68;

    font-size: 42px;
    line-height: 1.15;

    font-weight: 800;
    letter-spacing: -0.5px;
}

.padma-section-heading p {
    margin: 0;

    color: #777;

    font-size: 16px;
    line-height: 1.7;
}


/* ---------------------------------------------------------
   GRID
--------------------------------------------------------- */

.padma-category-grid {
    display: grid !important;

    grid-template-columns:
        repeat(4, minmax(0, 1fr)) !important;

    gap: 24px !important;
}


/* ---------------------------------------------------------
   CARD
--------------------------------------------------------- */

.padma-category-card {
    position: relative;

    display: block !important;

    width: 100%;
    height: 330px;

    overflow: hidden;

    border-radius: 18px;

    background: #f4f0e8;

    text-decoration: none !important;

    box-shadow:
        0 10px 35px rgba(20, 40, 60, 0.07);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.padma-category-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 22px 50px rgba(20, 40, 60, 0.16);
}


/* ---------------------------------------------------------
   IMAGE
--------------------------------------------------------- */

.padma-category-image {
    position: relative;

    width: 100%;
    height: 100%;

    overflow: hidden;

    background: #f4f0e8;
}

.padma-category-image img {
    display: block !important;

    width: 100% !important;
    height: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: cover;

    transition:
        transform .7s cubic-bezier(.2,.7,.2,1);
}

.padma-category-card:hover
.padma-category-image img {
    transform: scale(1.08);
}


/* ---------------------------------------------------------
   PREMIUM OVERLAY
--------------------------------------------------------- */

.padma-category-overlay {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 55%;

    display: flex;

    align-items: flex-end;

    padding: 28px;

    background:
        linear-gradient(
            to top,
            rgba(10, 28, 48, .88) 0%,
            rgba(10, 28, 48, .48) 45%,
            rgba(10, 28, 48, 0) 100%
        );
}


/* ---------------------------------------------------------
   TEXT
--------------------------------------------------------- */

.padma-category-text {
    width: 100%;
}

.padma-category-text h3 {
    margin: 0 0 8px !important;
    padding: 0 !important;

    color: #ffffff !important;

    font-size: 21px !important;
    line-height: 1.25 !important;

    font-weight: 700 !important;
}

.padma-category-text span {
    display: inline-flex;

    align-items: center;

    color: rgba(255,255,255,.82) !important;

    font-size: 12px !important;
    font-weight: 600 !important;

    letter-spacing: .3px;
}

.padma-category-text span i {
    margin-left: 8px;

    color: #e0a52f;

    transition:
        transform .25s ease;
}

.padma-category-card:hover
.padma-category-text span i {
    transform: translateX(5px);
}


/* ---------------------------------------------------------
   FALLBACK
--------------------------------------------------------- */

.padma-category-fallback {
    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #193f68;

    font-size: 42px;
}


/* ---------------------------------------------------------
   TABLET
--------------------------------------------------------- */

@media (max-width: 1100px) {

    .padma-categories .padma-container {
        width: calc(100% - 50px);
    }

    .padma-category-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr)) !important;
    }

}


/* ---------------------------------------------------------
   MOBILE
--------------------------------------------------------- */

@media (max-width: 767px) {

    .padma-categories {
        padding: 65px 0 70px;
    }

    .padma-categories .padma-container {
        width: calc(100% - 32px);
    }

    .padma-section-heading {
        margin-bottom: 32px;
    }

    .padma-section-heading h2 {
        font-size: 32px;
    }

    .padma-section-heading p {
        font-size: 14px;
    }

    .padma-category-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr)) !important;

        gap: 15px !important;
    }

    .padma-category-card {
        height: 260px;
    }

    .padma-category-overlay {
        padding: 20px;
    }

    .padma-category-text h3 {
        font-size: 17px !important;
    }

}


/* ---------------------------------------------------------
   SMALL MOBILE
--------------------------------------------------------- */

@media (max-width: 480px) {

    .padma-category-grid {
        grid-template-columns: 1fr !important;
    }

    .padma-category-card {
        height: 300px;
    }

}

/* =========================================================
   TOP SELLING PRODUCTS
========================================================= */

.top-selling-section {
    padding: 100px 5%;
    background: #ffffff;
}

.top-selling-header {
    max-width: 850px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-eyebrow {
    margin-bottom: 12px;
    color: #d79a1b;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.top-selling-header h2 {
    margin: 0 0 15px;
    color: #183f69;
    font-size: 48px;
    line-height: 1.1;
    font-weight: 800;
}

.top-selling-header p {
    margin: 0 auto;
    max-width: 700px;
    color: #6b6f73;
    font-size: 17px;
    line-height: 1.7;
}


/* PRODUCT GRID */

.top-selling-grid {
    max-width: 1400px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}


/* PRODUCT CARD */

.top-product-card {
    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e9e9e9;
    border-radius: 18px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.top-product-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 18px 45px rgba(24, 63, 105, 0.12);
}


/* IMAGE */

.top-product-image {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    height: 310px;
    padding: 25px;

    background: #f7f3eb;

    overflow: hidden;
}

.top-product-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    mix-blend-mode: multiply;

    transition:
        transform 0.45s ease,
        filter 0.45s ease;
}

.top-product-card:hover .top-product-image img {
    transform: scale(1.06);
}

.top-product-card:hover .top-product-image img {
    transform: scale(1.06);
}


/* CONTENT */

.top-product-content {
    padding: 23px 24px 25px;
}

.top-product-category {
    margin-bottom: 8px;

    color: #c68c17;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.top-product-content h3 {
    min-height: 52px;

    margin: 0 0 20px;

    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
}

.top-product-content h3 a {
    color: #173f68;
    text-decoration: none;
}

.top-product-content h3 a:hover {
    color: #c68c17;
}


/* BOTTOM */

.top-product-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding-top: 17px;

    border-top: 1px solid #eeeeee;
}

.top-product-price {
    color: #183f69;

    font-size: 20px;
    font-weight: 800;
}

.top-product-view {
    color: #183f69;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    transition: color 0.2s ease;
}

.top-product-view span {
    margin-left: 5px;

    font-size: 17px;

    transition: margin 0.2s ease;
}

.top-product-view:hover {
    color: #d79a1b;
}

.top-product-view:hover span {
    margin-left: 9px;
}


/* VIEW ALL */

.top-selling-action {
    margin-top: 50px;

    text-align: center;
}

.top-selling-button {
    display: inline-flex;

    align-items: center;
    gap: 10px;

    padding: 15px 28px;

    background: #183f69;

    border-radius: 6px;

    color: #ffffff;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition: all 0.3s ease;
}

.top-selling-button:hover {
    background: #d79a1b;
    color: #ffffff;
}


/* EMPTY */

.top-products-empty {
    grid-column: 1 / -1;

    padding: 50px;

    text-align: center;

    color: #777;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .top-selling-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}


@media (max-width: 768px) {

    .top-selling-section {
        padding: 70px 20px;
    }

    .top-selling-header h2 {
        font-size: 36px;
    }

    .top-selling-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .top-product-image {
        height: 250px;
    }

}


@media (max-width: 520px) {

    .top-selling-header h2 {
        font-size: 30px;
    }

    .top-selling-header p {
        font-size: 15px;
    }

    .top-selling-grid {
        grid-template-columns: 1fr;
    }

    .top-product-image {
        height: 300px;
    }

}

/* =========================================================
   PRODUCTS PAGE - PREMIUM THEME
========================================================= */

.products-page {
    background: #f8f7f3;
    color: #183f69;
}


/* CONTAINER */

.products-container {
    width: min(1400px, calc(100% - 50px));
    margin: 0 auto;
}


/* =========================================================
   HERO
========================================================= */

.products-hero {
    background: #183f69;
    padding: 25px 0 35px;
}

.products-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 25px;

    color: rgba(255,255,255,.65);

    font-size: 13px;
}

.products-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
}

.products-breadcrumb span {
    opacity: .5;
}

.products-breadcrumb strong {
    color: #d8a33a;
    font-weight: 600;
}

.products-hero-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.products-eyebrow {
    display: block;

    margin-bottom: 12px;

    color: #d8a33a;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 3px;
}

.products-hero h1 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1;
    font-weight: 800;
}

.products-hero p {
    max-width: 650px;

    margin: 0;

    color: rgba(255,255,255,.72);

    font-size: 17px;
    line-height: 1.7;
}


/* =========================================================
   MAIN
========================================================= */

.products-main {
    padding: 55px 0 100px;
}

.products-layout {
    display: grid;

    grid-template-columns: 250px minmax(0, 1fr);

    gap: 45px;

    align-items: start;
}


/* =========================================================
   SIDEBAR
========================================================= */

.products-sidebar {
    position: sticky;
    top: 20px;
}

.products-sidebar-box {
    background: #ffffff;

    border: 1px solid #e7e4dd;

    border-radius: 14px;

    padding: 25px;

    box-shadow: 0 8px 30px rgba(24,63,105,.04);
}

.sidebar-title {
    margin-bottom: 20px;

    font-size: 18px;
    font-weight: 800;

    color: #183f69;
}

.sidebar-title-line {
    display: block;

    width: 35px;
    height: 3px;

    margin-top: 10px;

    background: #d8a33a;

    border-radius: 10px;
}

.sidebar-link,
.sidebar-category-title {
    display: block;

    padding: 11px 0;

    color: #5f6871;

    font-size: 14px;

    text-decoration: none;

    transition: .2s ease;
}

.sidebar-link:hover,
.sidebar-category-title:hover {
    color: #d09320;
}

.sidebar-link.active {
    color: #183f69;

    font-weight: 800;
}

.sidebar-category-group {
    border-top: 1px solid #eeeeee;
}


/* TRADE BOX */

.products-trade-box {
    margin-top: 20px;

    padding: 25px;

    background: #183f69;

    border-radius: 14px;
}

.products-trade-box span {
    color: #d8a33a;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;
}

.products-trade-box h3 {
    margin: 10px 0 20px;

    color: #ffffff;

    font-size: 18px;
    line-height: 1.4;
}

.products-trade-box a {
    display: inline-flex;

    align-items: center;
    gap: 8px;

    color: #ffffff;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;
}

.products-trade-box a b {
    color: #d8a33a;

    font-size: 18px;
}


/* =========================================================
   TOOLBAR
========================================================= */

.products-toolbar {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 25px;

    padding-bottom: 18px;

    border-bottom: 1px solid #e4e1d9;
}

.products-count {
    display: flex;

    align-items: center;
    gap: 12px;
}

.products-count strong {
    color: #183f69;

    font-size: 20px;
}

.products-count span {
    color: #8a8e92;

    font-size: 13px;
}

.products-sort {
    display: flex;

    align-items: center;
    gap: 12px;
}

.products-sort label {
    color: #747a80;

    font-size: 12px;
}

.products-sort select {
    min-width: 160px;

    padding: 10px 35px 10px 13px;

    background: #ffffff;

    border: 1px solid #ddd9d0;
    border-radius: 7px;

    color: #183f69;

    font-size: 13px;

    outline: none;
}


/* =========================================================
   PRODUCT GRID
========================================================= */

.new-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.new-product-card {
    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e8e5de;

    border-radius: 16px;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.new-product-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 18px 45px rgba(24,63,105,.11);
}


/* PRODUCT IMAGE */

.new-product-image {
    display: flex;

    align-items: center;
    justify-content: center;

    height: 285px;

    padding: 25px;

    background: #fff;

    overflow: hidden;
}

.new-product-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    mix-blend-mode: multiply;

    transition: transform .45s ease;
}

.new-product-card:hover .new-product-image img {
    transform: scale(1.06);
}


/* PRODUCT INFO */

.new-product-info {
    padding: 20px 20px 18px;
}

.new-product-label {
    margin-bottom: 7px;

    color: #c58d1b;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.new-product-info h2 {
    min-height: 50px;

    margin: 0 0 18px;

    font-size: 16px;
    line-height: 1.45;
}

.new-product-info h2 a {
    color: #183f69;

    text-decoration: none;
}

.new-product-info h2 a:hover {
    color: #c58d1b;
}


/* PRODUCT FOOTER */

.new-product-footer {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding-top: 14px;

    border-top: 1px solid #eeeeeb;
}

.new-product-price {
    color: #183f69;

    font-size: 19px;
    font-weight: 800;
}

.new-product-view {
    color: #183f69;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;
}

.new-product-view span {
    margin-left: 4px;

    font-size: 16px;
}

.new-product-view:hover {
    color: #c58d1b;
}


/* ACTIONS */

.new-product-actions {
    display: flex;

    gap: 8px;

    margin-top: 15px;
}

.new-add-cart {
    flex: 1;

    padding: 11px;

    background: #183f69;

    border: 0;
    border-radius: 6px;

    color: #ffffff;

    font-size: 12px;
    font-weight: 700;

    cursor: pointer;

    transition: .25s ease;
}

.new-add-cart:hover {
    background: #c58d1b;
}

.new-wishlist {
    width: 42px;

    background: #f5f3ef;

    border: 1px solid #e2ded5;

    border-radius: 6px;

    color: #183f69;

    font-size: 20px;

    cursor: pointer;
}


/* =========================================================
   EMPTY
========================================================= */

.products-empty {
    grid-column: 1 / -1;

    padding: 80px 20px;

    text-align: center;

    background: #ffffff;

    border: 1px solid #e8e5de;
    border-radius: 14px;

    color: #777;
}


/* =========================================================
   PAGINATION
========================================================= */

.new-pagination {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 25px;

    margin-top: 45px;
}

.new-pagination > a {
    color: #183f69;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;
}

.pagination-numbers {
    display: flex;

    gap: 7px;
}

.pagination-numbers a {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    border: 1px solid #ddd9d0;
    border-radius: 6px;

    background: #ffffff;

    color: #183f69;

    font-size: 13px;

    text-decoration: none;
}

.pagination-numbers a.active,
.pagination-numbers a:hover {
    background: #183f69;

    border-color: #183f69;

    color: #ffffff;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .new-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .products-layout {
        grid-template-columns: 210px minmax(0, 1fr);

        gap: 25px;
    }

}


@media (max-width: 768px) {

    .products-container {
        width: min(100% - 30px, 700px);
    }

    .products-hero {
    padding: 55px 0 60px;
    min-height: 0;
}

    .products-breadcrumb {
        margin-bottom: 30px;
    }

    .products-main {
        padding: 35px 0 70px;
    }

    .products-layout {
        grid-template-columns: 1fr;
    }

    .products-sidebar {
        position: static;
    }

    .products-sidebar-box {
        display: none;
    }

    .products-trade-box {
        display: none;
    }

    .new-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 15px;
    }

    .new-product-image {
        height: 230px;

        padding: 18px;
    }

}


@media (max-width: 520px) {

    .products-hero h1 {
    font-size: 64px;
    line-height: 1.05;
    margin: 20px 0 14px;
}

    .products-hero p {
        font-size: 14px;
    }

    .products-toolbar {
        align-items: flex-start;

        flex-direction: column;

        gap: 15px;
    }

    .products-sort {
        width: 100%;
    }

    .products-sort select {
        flex: 1;
    }

    .new-product-grid {
        grid-template-columns: 1fr 1fr;

        gap: 10px;
    }

    .new-product-image {
        height: 190px;

        padding: 12px;
    }

    .new-product-info {
        padding: 14px 12px;
    }

    .new-product-info h2 {
        min-height: 58px;

        font-size: 13px;
    }

    .new-product-price {
        font-size: 16px;
    }

    .new-product-view {
        font-size: 11px;
    }

    .new-product-actions {
        display: none;
    }

    .new-pagination {
        gap: 10px;
    }

}

@media (max-width: 1200px) {

    .new-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

}

@media (max-width: 900px) {

    .new-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 520px) {

    .new-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

}

.sidebar-category-title.active {
    color: #183f69;
    font-weight: 800;
    padding-left: 10px;
    border-left: 3px solid #d8a33a;
}

/* ============================================================
   PRODUCT SIDEBAR
   ============================================================ */

.sidebar-category-group {
    border-bottom: 1px solid #eeeeee;
    padding: 0;
}

.sidebar-category-title {
    display: block;
    padding: 15px 0;
    color: #243f67;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.sidebar-category-title:hover,
.sidebar-category-title.active {
    color: #c99732;
}


/* CATEGORY */

.sidebar-subcategory-group {
    padding: 0 0 8px 12px;
}

.sidebar-subcategory-title {
    display: block;
    padding: 7px 0;
    color: #4f5967;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.sidebar-subcategory-title:hover {
    color: #c99732;
}


/* SUBCATEGORY */

.sidebar-subcategory-list {
    padding-left: 12px;
    padding-bottom: 8px;
}

.sidebar-subcategory-link {
    display: block;
    padding: 5px 0;
    color: #6b7280;
    font-size: 13px;
    line-height: 1.5;
    text-decoration: none;
}

.sidebar-subcategory-link:hover {
    color: #c99732;
}

/* ==========================================================
   PADMA IMPORTS
   SEPARATE MOBILE MENU ONLY
========================================================== */

.padma-mobile-overlay,
.padma-mobile-drawer {
    display: none;
}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767px) {


    /* ------------------------------------------------------
       HIDE DESKTOP MEGA MENU ON MOBILE
    ------------------------------------------------------ */

    .padma-has-dropdown .padma-mega-menu {
        display: none !important;
    }


    /* Prevent desktop Products hover menu */
    .padma-has-dropdown:hover .padma-mega-menu {
        display: none !important;
    }


    /* ------------------------------------------------------
       BODY
    ------------------------------------------------------ */

    body.padma-mobile-menu-open {
        overflow: hidden !important;
    }


    /* ------------------------------------------------------
       MOBILE MENU BUTTON
    ------------------------------------------------------ */

    .padma-mobile-button {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        gap: 10px;

        min-height: 52px;

        padding: 0 22px;

        border: 1px solid #d9dde3;
        border-radius: 8px;

        background: #ffffff;

        color: #233f68;

        font-size: 17px;
        font-weight: 700;

        cursor: pointer;
    }


    .padma-mobile-button i {
        font-size: 21px;
    }


    /* ------------------------------------------------------
       OVERLAY
    ------------------------------------------------------ */

    .padma-mobile-overlay {
        display: block;

        position: fixed;

        top: 0;
        left: 0;

        width: 100%;
        height: 100%;

        background: rgba(15, 30, 50, 0.55);

        opacity: 0;
        visibility: hidden;

        transition:
            opacity 0.25s ease,
            visibility 0.25s ease;

        z-index: 9998;
    }


    body.padma-mobile-menu-open
    .padma-mobile-overlay {

        opacity: 1;
        visibility: visible;

    }


    /* ------------------------------------------------------
       DRAWER
    ------------------------------------------------------ */

    .padma-mobile-drawer {
        display: block;

        position: fixed;

        top: 0;
        left: 0;

        width: 100%;
        max-width: 430px;

        height: 100vh;

        background: #ffffff;

        transform: translateX(-105%);

        transition:
            transform 0.28s ease;

        z-index: 9999;

        overflow-y: auto;

        box-shadow:
            10px 0 35px
            rgba(0, 0, 0, 0.18);
    }


    body.padma-mobile-menu-open
    .padma-mobile-drawer {

        transform: translateX(0);

    }


    /* ------------------------------------------------------
       DRAWER HEADER
    ------------------------------------------------------ */

    .padma-mobile-drawer-header {
        display: flex;

        align-items: center;
        justify-content: space-between;

        min-height: 82px;

        padding: 12px 20px;

        border-bottom:
            1px solid #e5e7eb;
    }


    .padma-mobile-drawer-logo img {
        display: block;

        max-height: 58px;
        max-width: 180px;

        width: auto;
        height: auto;
    }


    .padma-mobile-close {
        width: 46px;
        height: 46px;

        border: 0;
        border-radius: 50%;

        background: #f3f5f7;

        color: #233f68;

        font-size: 22px;

        cursor: pointer;
    }


    /* ------------------------------------------------------
       MOBILE SCREENS
    ------------------------------------------------------ */

    .padma-mobile-screen {
        display: none;

        padding-bottom: 35px;
    }


    .padma-mobile-screen.active {
        display: block;
    }


    /* ------------------------------------------------------
       MAIN MENU LINKS
    ------------------------------------------------------ */

    .padma-mobile-main-link {
        width: 100%;
        min-height: 64px;

        display: flex;
        align-items: center;
        justify-content: space-between;

        padding:
            0
            24px;

        box-sizing: border-box;

        border: 0;
        border-bottom:
            1px solid #edf0f2;

        background: #ffffff;

        color: #233f68;

        text-decoration: none;

        font-size: 18px;
        font-weight: 700;

        text-align: left;

        cursor: pointer;
    }


    .padma-mobile-main-link:hover {
        background: #f6f7f8;
    }


    .padma-mobile-main-link i {
        font-size: 21px;
    }


    /* ------------------------------------------------------
       TRADE BUTTON
    ------------------------------------------------------ */

    .padma-mobile-trade-link {
        display: flex;

        align-items: center;
        justify-content: center;

        min-height: 56px;

        margin:
            22px
            20px;

        padding:
            0
            18px;

        border-radius: 8px;

        background: #233f68;

        color: #ffffff;

        text-decoration: none;

        font-size: 16px;
        font-weight: 700;

        text-align: center;
    }


    /* ------------------------------------------------------
       ACCOUNT / CART
    ------------------------------------------------------ */

    .padma-mobile-account-box {
        margin: 25px 20px 0;

        border-top:
            1px solid #e5e7eb;
    }


    .padma-mobile-account-box a {
        display: flex;

        align-items: center;

        gap: 14px;

        min-height: 58px;

        border-bottom:
            1px solid #e5e7eb;

        color: #233f68;

        text-decoration: none;

        font-size: 16px;
        font-weight: 600;
    }


    .padma-mobile-account-box i {
        width: 22px;

        font-size: 19px;

        text-align: center;
    }


    /* ------------------------------------------------------
       PRODUCTS SCREEN
    ------------------------------------------------------ */

    .padma-mobile-back {
        display: flex;

        align-items: center;

        gap: 8px;

        width: 100%;
        min-height: 58px;

        padding:
            0
            22px;

        border: 0;
        border-bottom:
            1px solid #e5e7eb;

        background: #f7f8fa;

        color: #233f68;

        font-size: 16px;
        font-weight: 700;

        cursor: pointer;

        text-align: left;
    }


    .padma-mobile-screen-title {
        padding:
            24px
            24px
            16px;

        color: #a7791e;

        font-size: 14px;
        font-weight: 800;

        letter-spacing: 3px;

        text-transform: uppercase;
    }


    /* ------------------------------------------------------
       VIEW ALL
    ------------------------------------------------------ */

    .padma-mobile-view-all {
        display: flex;

        align-items: center;
        justify-content: space-between;

        margin:
            0
            20px
            16px;

        padding:
            16px
            18px;

        border-radius: 7px;

        background: #233f68;

        color: #ffffff;

        text-decoration: none;

        font-weight: 700;
    }


    /* ------------------------------------------------------
       CATEGORY ACCORDION
    ------------------------------------------------------ */

    .padma-mobile-category {
        border-top:
            1px solid #e8ebee;
    }


    .padma-mobile-category-toggle {
        display: flex;

        align-items: center;
        justify-content: space-between;

        width: 100%;
        min-height: 62px;

        padding:
            0
            24px;

        border: 0;

        background: #ffffff;

        color: #233f68;

        font-size: 17px;
        font-weight: 700;

        text-align: left;

        cursor: pointer;
    }


    .padma-mobile-category-toggle i {
        transition:
            transform 0.25s ease;
    }


    .padma-mobile-category.active
    .padma-mobile-category-toggle i {

        transform: rotate(180deg);

    }


    .padma-mobile-category-content {
        display: none;

        padding-bottom: 12px;

        background: #f7f8fa;
    }


    .padma-mobile-category.active
    .padma-mobile-category-content {

        display: block;

    }


    /* ------------------------------------------------------
       VIEW ALL SUPER CATEGORY
    ------------------------------------------------------ */

    .padma-mobile-all-category {
        display: flex;

        align-items: center;
        justify-content: space-between;

        padding:
            16px
            24px;

        background: #edf1f5;

        color: #a7791e;

        text-decoration: none;

        font-size: 15px;
        font-weight: 700;
    }


    /* ------------------------------------------------------
       SUB CATEGORY
    ------------------------------------------------------ */

    .padma-mobile-subcategory-link {
        display: flex;

        align-items: center;
        justify-content: space-between;

        min-height: 54px;

        padding:
            0
            28px
            0
            38px;

        border-bottom:
            1px solid #e7eaed;

        color: #3c4b5f;

        text-decoration: none;

        font-size: 16px;
        font-weight: 500;
    }


    .padma-mobile-subcategory-link i {
        color: #8b97a5;
    }


    .padma-mobile-subcategory-link:hover {
        background: #ffffff;

        color: #233f68;
    }


}


/* ==========================================================
   DESKTOP SAFETY
   MOBILE MENU NEVER SHOWS ON DESKTOP
========================================================== */

@media (min-width: 768px) {

    .padma-mobile-overlay,
    .padma-mobile-drawer {
        display: none !important;
    }

}

/* =========================================================
   MOBILE MENU - HIDE COMPLETELY ON DESKTOP
========================================================= */

.padma-mobile-menu,
.padma-mobile-button {
    display: none !important;
}


/* =========================================================
   MOBILE ONLY
========================================================= */

@media (max-width: 768px) {

    .padma-mobile-button {
        display: inline-flex !important;
    }

    .padma-mobile-menu {
        display: none !important;
    }

    body.padma-menu-open .padma-mobile-menu {
        display: block !important;
    }

}

/* =========================================================
   IMPORTANT: DISABLE OLD DESKTOP MENU ON MOBILE
========================================================= */

@media (max-width: 768px) {

    /* Hide the OLD responsive desktop navigation */
    .padma-navigation .padma-menu {
        display: none !important;
    }

    .padma-navigation .padma-menu * {
        display: none !important;
    }

    /* Show mobile menu button */
    .padma-mobile-button {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

}

/* =========================================================
   PADMA SEPARATE MOBILE MENU
   ADD THIS AT THE VERY END OF YOUR CSS FILE
========================================================= */


/* ---------------------------------------------------------
   DESKTOP
   Do not change desktop menu
--------------------------------------------------------- */

.padma-mobile-button,
.padma-mobile-menu {
    display: none;
}


/* =========================================================
   MOBILE ONLY
========================================================= */

@media (max-width: 767px) {


    /* -----------------------------------------------------
       HIDE DESKTOP NAVIGATION MENU ON MOBILE ONLY
    ----------------------------------------------------- */

    .padma-navigation .padma-menu {
        display: none !important;
    }


    /* -----------------------------------------------------
       MOBILE NAVIGATION BAR
    ----------------------------------------------------- */

    .padma-navigation {
        width: 100%;
        position: relative;
        z-index: 1000;
    }


    .padma-navigation .padma-container {
        width: 100%;
        padding: 10px 15px;
    }


    /* -----------------------------------------------------
       MOBILE MENU BUTTON
    ----------------------------------------------------- */

    .padma-mobile-button {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        gap: 12px;

        background: #ffffff;
        color: #243d5d;

        border: 1px solid #d8dee6;
        border-radius: 10px;

        padding: 15px 22px;

        font-size: 20px;
        font-weight: 700;

        cursor: pointer;

        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }


    .padma-mobile-button i {
        font-size: 23px;
    }


    /* =====================================================
       MOBILE MENU
       Completely hidden until Menu button is clicked
    ===================================================== */

    .padma-mobile-menu {
        display: none !important;
    }


    body.padma-mobile-menu-open {
        overflow: hidden !important;
    }


    body.padma-mobile-menu-open .padma-mobile-menu {
        display: flex !important;

        position: fixed !important;

        top: 0 !important;
        left: 0 !important;

        width: 100% !important;
        height: 100vh !important;

        min-height: 100vh !important;
        max-height: 100vh !important;

        background: #ffffff !important;

        z-index: 99999 !important;

        flex-direction: column;

        overflow-y: auto !important;
        overflow-x: hidden !important;

        padding: 0 !important;
        margin: 0 !important;

        animation: padmaMobileMenuOpen 0.25s ease;
    }


    /* -----------------------------------------------------
       MENU ANIMATION
    ----------------------------------------------------- */

    @keyframes padmaMobileMenuOpen {

        from {
            opacity: 0;
            transform: translateX(-20px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }

    }


    /* =====================================================
       MOBILE MENU HEADER
    ===================================================== */

    .padma-mobile-menu-header {

        display: flex !important;
        align-items: center;
        justify-content: space-between;

        width: 100%;

        padding: 18px 20px;

        background: #ffffff;

        border-bottom: 2px solid #c59a3d;

        position: sticky;
        top: 0;

        z-index: 10;
    }


    .padma-mobile-menu-header span {

        font-size: 24px;
        font-weight: 800;

        color: #243d5d;
    }


    /* -----------------------------------------------------
       CLOSE BUTTON
    ----------------------------------------------------- */

    .padma-mobile-menu-close {

        display: flex !important;
        align-items: center;
        justify-content: center;

        width: 45px;
        height: 45px;

        background: #243d5d;

        color: #ffffff;

        border: none;
        border-radius: 8px;

        font-size: 20px;

        cursor: pointer;
    }


    /* =====================================================
       MAIN MOBILE LINKS
    ===================================================== */

    .padma-mobile-menu-links {

        width: 100%;

        display: flex;
        flex-direction: column;

        padding: 10px 0 0;
    }


    .padma-mobile-menu-links > a {

        display: flex !important;
        align-items: center;

        width: 100%;

        padding: 19px 22px;

        color: #263d59 !important;

        text-decoration: none !important;

        font-size: 19px;
        font-weight: 700;

        border-bottom: 1px solid #edf0f4;

        transition: 0.2s ease;
    }


    .padma-mobile-menu-links > a:active,
    .padma-mobile-menu-links > a:hover {

        background: #f4f6f8;

        color: #b07d20 !important;
    }


    /* =====================================================
       PRODUCTS DETAILS
    ===================================================== */

    .padma-mobile-products {

        width: 100%;

        border-bottom: 1px solid #edf0f4;
    }


    .padma-mobile-products summary {

        display: flex !important;
        align-items: center;
        justify-content: space-between;

        width: 100%;

        padding: 19px 22px;

        list-style: none;

        color: #263d59;

        font-size: 19px;
        font-weight: 800;

        cursor: pointer;

        user-select: none;
    }


    /* Remove default browser arrow */

    .padma-mobile-products summary::-webkit-details-marker {
        display: none;
    }


    .padma-mobile-products summary i {

        font-size: 14px;

        transition: transform 0.25s ease;
    }


    .padma-mobile-products[open] summary {

        background: #243d5d;

        color: #ffffff;
    }


    .padma-mobile-products[open] summary i {

        transform: rotate(180deg);
    }


    /* =====================================================
       PRODUCT CATEGORY LINKS
    ===================================================== */

    .padma-mobile-product-links {

        display: flex;
        flex-direction: column;

        width: 100%;

        background: #f7f8fa;

        padding: 5px 0 12px;
    }


    .padma-mobile-product-links a {

        display: block !important;

        width: 100%;

        padding: 15px 30px;

        color: #34495f !important;

        text-decoration: none !important;

        font-size: 17px;
        font-weight: 600;

        border-bottom: 1px solid #e7ebef;
    }


    .padma-mobile-product-links a:last-child {

        border-bottom: none;
    }


    .padma-mobile-product-links a:hover,
    .padma-mobile-product-links a:active {

        background: #ffffff;

        color: #b07d20 !important;
    }


    /* -----------------------------------------------------
       VIEW ALL PRODUCTS
    ----------------------------------------------------- */

    .padma-mobile-product-links .padma-mobile-view-all {

        background: #b07d20 !important;

        color: #ffffff !important;

        font-weight: 800;

        margin-bottom: 5px;

        padding: 17px 30px;
    }


    .padma-mobile-product-links .padma-mobile-view-all:hover {

        background: #916617 !important;

        color: #ffffff !important;
    }


    /* =====================================================
       TRADE ACCOUNT BUTTON
    ===================================================== */

    .padma-mobile-trade-link {

        display: flex !important;

        align-items: center;
        justify-content: center;

        background: #243d5d !important;

        color: #ffffff !important;

        margin: 20px;

        width: calc(100% - 40px) !important;

        padding: 18px 15px !important;

        border-radius: 8px;

        font-size: 18px !important;
        font-weight: 800 !important;

        text-align: center;

        border-bottom: none !important;
    }


    .padma-mobile-trade-link:hover {

        background: #1b304c !important;

        color: #ffffff !important;
    }


    /* =====================================================
       ACCOUNT + CART
    ===================================================== */

    .padma-mobile-menu-actions {

        display: flex !important;

        flex-direction: column;

        width: 100%;

        margin-top: auto;

        padding: 20px;

        background: #f5f7f9;

        border-top: 1px solid #e1e5ea;

        gap: 10px;
    }


    .padma-mobile-menu-actions a {

        display: flex !important;

        align-items: center;

        gap: 12px;

        padding: 16px;

        background: #ffffff;

        color: #243d5d !important;

        text-decoration: none !important;

        font-size: 17px;
        font-weight: 700;

        border: 1px solid #e0e5ea;

        border-radius: 7px;
    }


    .padma-mobile-menu-actions a i {

        font-size: 19px;

        width: 25px;

        text-align: center;
    }


    /* =====================================================
       MOBILE HEADER CLEANUP
    ===================================================== */

    .padma-mobile-menu-open .padma-mobile-menu {

        visibility: visible !important;

        opacity: 1 !important;
    }


}


/* =========================================================
   SMALL MOBILE DEVICES
========================================================= */

@media (max-width: 480px) {


    .padma-mobile-button {

        padding: 13px 18px;

        font-size: 18px;
    }


    .padma-mobile-menu-header {

        padding: 16px;
    }


    .padma-mobile-menu-links > a,
    .padma-mobile-products summary {

        padding: 17px 18px;

        font-size: 18px;
    }


    .padma-mobile-product-links a {

        padding: 14px 25px;

        font-size: 16px;
    }


}
/* LEFT CATEGORY LIST - ENABLE SCROLL */
.mega-menu-categories {
    max-height: 760px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: #aeb7c4 transparent;
}

/* Chrome, Edge and Safari scrollbar */
.mega-menu-categories::-webkit-scrollbar {
    width: 8px;
}

.mega-menu-categories::-webkit-scrollbar-track {
    background: transparent;
}

.mega-menu-categories::-webkit-scrollbar-thumb {
    background: #aeb7c4;
    border-radius: 10px;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.mega-menu-categories::-webkit-scrollbar-thumb:hover {
    background: #8f9baa;
    background-clip: padding-box;
}

/* LEFT SIDE CATEGORY MENU */
.mega-menu-left {
    height: 620px !important;
    overflow-y: scroll !important;
    overflow-x: hidden !important;

    scrollbar-width: auto;
    scrollbar-color: #aeb7c4 #f1f1f1;
}

/* Chrome / Edge / Safari */
.mega-menu-left::-webkit-scrollbar {
    width: 10px;
    display: block;
}

.mega-menu-left::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.mega-menu-left::-webkit-scrollbar-thumb {
    background: #aeb7c4;
    border-radius: 10px;
}

.mega-menu-left::-webkit-scrollbar-thumb:hover {
    background: #8793a3;
}

/* =========================================
   PADMA IMPORTS LOGO BRANDING
========================================= */
/* =========================================
   PADMA IMPORTS LOGO BRANDING
========================================= */

.padma-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}

/* Elephant logo */

.padma-logo-icon {
    width: 105px;
    height: auto;
    max-height: 85px;
    object-fit: contain;
}


/* Text */

.padma-logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
}


/* PADMA - SMALLER */

.padma-logo-padma {
    font-size: 35px;
    font-weight: 700;
    letter-spacing: -1px;
    color: #243957;
    line-height: 1;
    margin-top: 12px;
}


/* IMPORTS - SMALLER */

.padma-logo-imports {
    margin-top: 1px;
    margin-left: 0px;
    font-size: 23px;
    font-weight: 600;
    letter-spacing: 4px;
    color: #b08a42;
    line-height: 1;
}
/* =========================================================
   PADMA IMPORTS - MOBILE CATEGORY ACCORDION
   =========================================================
   Mobile menu only.
   Desktop navigation / mega menu is not changed.
   ========================================================= */

@media (max-width: 991px) {

    /* PRODUCTS WRAPPER */
    .padma-mobile-products {
        width: 100%;
        margin: 0;
        padding: 0;
        border: 0;
    }


    /* PRODUCTS HEADER */
    .padma-mobile-products-head {
        display: flex;
        align-items: stretch;
        justify-content: space-between;
        width: 100%;
        min-height: 64px;
        margin: 0;
        padding: 0;
        border-bottom: 1px solid #e5e5e5;
        background: #ffffff;
    }

    .padma-mobile-products-all {
        flex: 1 1 auto;
        display: flex !important;
        align-items: center;
        min-width: 0;
        min-height: 64px;
        margin: 0 !important;
        padding: 0 36px !important;
        color: #243f6b !important;
        background: transparent !important;
        text-decoration: none !important;
        font-size: 18px !important;
        font-weight: 700 !important;
        line-height: 1.2;
    }

    .padma-mobile-products-toggle {
        flex: 0 0 64px;
        width: 64px;
        min-width: 64px;
        height: 64px;
        margin: 0;
        padding: 0;
        border: 0;
        border-left: 1px solid #e5e5e5;
        background: transparent;
        color: #243f6b;
        font-family: inherit;
        font-size: 30px;
        font-weight: 500;
        line-height: 1;
        cursor: pointer;
    }

    .padma-mobile-products.is-open > .padma-mobile-products-head {
        background: #243f6b;
        border-bottom-color: #243f6b;
    }

    .padma-mobile-products.is-open .padma-mobile-products-all {
        color: #ffffff !important;
    }

    .padma-mobile-products.is-open .padma-mobile-products-toggle {
        color: #ffffff;
        border-left-color: rgba(255,255,255,.18);
    }


    /* PRODUCTS CHILDREN */
    .padma-mobile-category-list[hidden],
    .padma-mobile-category-children[hidden],
    .padma-mobile-subcategory-list[hidden] {
        display: none !important;
    }

    .padma-mobile-category-list {
        display: block;
        width: 100%;
        margin: 0;
        padding: 0;
        background: #ffffff;
    }


    /* VIEW ALL */
    .padma-mobile-category-list .padma-mobile-view-all {
        display: block !important;
        margin: 10px 40px !important;
        padding: 18px 20px !important;
        border-radius: 8px !important;
        background: #c9972d !important;
        color: #ffffff !important;
        text-align: center;
        text-decoration: none !important;
        font-size: 16px !important;
        font-weight: 700 !important;
        line-height: 1.2;
    }


    /* SUPER CATEGORY ROW */
    .padma-mobile-category-group {
        width: 100%;
        margin: 0;
        padding: 0;
        border-bottom: 1px solid #e5e5e5;
    }

    .padma-mobile-category-row {
        display: flex;
        align-items: stretch;
        justify-content: space-between;
        width: 100%;
        min-height: 56px;
        margin: 0;
        padding: 0;
        background: #ffffff;
    }

    .padma-mobile-category-name {
        flex: 1 1 auto;
        display: flex !important;
        align-items: center;
        min-width: 0;
        min-height: 56px;
        margin: 0 !important;
        padding: 0 36px !important;
        color: #344b67 !important;
        background: transparent !important;
        text-decoration: none !important;
        font-size: 16px !important;
        font-weight: 600 !important;
        line-height: 1.3;
    }

    .padma-mobile-category-toggle {
        flex: 0 0 58px;
        width: 58px;
        min-width: 58px;
        height: 56px;
        margin: 0;
        padding: 0;
        border: 0;
        border-left: 1px solid #e5e5e5;
        background: transparent;
        color: #243f6b;
        font-family: inherit;
        font-size: 28px;
        font-weight: 500;
        line-height: 1;
        cursor: pointer;
    }

    .padma-mobile-category-group.is-open > .padma-mobile-category-row {
        background: #fffaf0;
    }


    /* CATEGORY CHILDREN */
    .padma-mobile-category-children {
        display: block;
        width: 100%;
        margin: 0;
        padding: 0;
        background: #f8f9fa;
    }


    /* CATEGORY ROW */
    .padma-mobile-subcategory-group {
        width: 100%;
        margin: 0;
        padding: 0;
        border-bottom: 1px solid #e5e5e5;
    }

    .padma-mobile-subcategory-row {
        display: flex;
        align-items: stretch;
        justify-content: space-between;
        width: 100%;
        min-height: 50px;
        margin: 0;
        padding: 0;
        background: #f8f9fa;
    }

    .padma-mobile-subcategory-name {
        flex: 1 1 auto;
        display: flex !important;
        align-items: center;
        min-width: 0;
        min-height: 50px;
        margin: 0 !important;
        padding: 0 50px !important;
        color: #455b73 !important;
        background: transparent !important;
        text-decoration: none !important;
        font-size: 15px !important;
        font-weight: 500 !important;
        line-height: 1.3;
    }

    .padma-mobile-subcategory-toggle {
        flex: 0 0 52px;
        width: 52px;
        min-width: 52px;
        height: 50px;
        margin: 0;
        padding: 0;
        border: 0;
        border-left: 1px solid #e5e5e5;
        background: transparent;
        color: #243f6b;
        font-family: inherit;
        font-size: 25px;
        font-weight: 500;
        line-height: 1;
        cursor: pointer;
    }

    .padma-mobile-subcategory-group.is-open > .padma-mobile-subcategory-row {
        background: #fffaf0;
    }


    /* SUBCATEGORY LINKS */
    .padma-mobile-subcategory-list {
        display: block;
        width: 100%;
        margin: 0;
        padding: 0;
        background: #ffffff;
    }

    .padma-mobile-subcategory-link {
        display: block !important;
        width: 100%;
        box-sizing: border-box;
        margin: 0 !important;
        padding: 13px 50px 13px 68px !important;
        border-bottom: 1px solid #eeeeee;
        color: #59697d !important;
        background: #ffffff !important;
        text-decoration: none !important;
        font-size: 14px !important;
        font-weight: 500 !important;
        line-height: 1.3;
    }

    .padma-mobile-subcategory-link:hover,
    .padma-mobile-subcategory-link:focus {
        color: #243f6b !important;
        background: #fafafa !important;
    }

}

/* =========================================================
   PADMA IMPORTS - MOBILE CATEGORY ACCORDION
   =========================================================
   Mobile menu only.
   Desktop navigation / mega menu is not changed.
   ========================================================= */

@media (max-width: 991px) {

    /* PRODUCTS WRAPPER */
    .padma-mobile-products {
        width: 100%;
        margin: 0;
        padding: 0;
        border: 0;
    }


    /* PRODUCTS HEADER */
    .padma-mobile-products-head {
        display: flex;
        align-items: stretch;
        justify-content: space-between;
        width: 100%;
        min-height: 64px;
        margin: 0;
        padding: 0;
        border-bottom: 1px solid #e5e5e5;
        background: #ffffff;
    }

    .padma-mobile-products-all {
        flex: 1 1 auto;
        display: flex !important;
        align-items: center;
        min-width: 0;
        min-height: 64px;
        margin: 0 !important;
        padding: 0 36px !important;
        color: #243f6b !important;
        background: transparent !important;
        text-decoration: none !important;
        font-size: 18px !important;
        font-weight: 700 !important;
        line-height: 1.2;
    }

    .padma-mobile-products-toggle {
        flex: 0 0 64px;
        width: 64px;
        min-width: 64px;
        height: 64px;
        margin: 0;
        padding: 0;
        border: 0;
        border-left: 1px solid #e5e5e5;
        background: transparent;
        color: #243f6b;
        font-family: inherit;
        font-size: 30px;
        font-weight: 500;
        line-height: 1;
        cursor: pointer;
    }

    .padma-mobile-products.is-open > .padma-mobile-products-head {
        background: #243f6b;
        border-bottom-color: #243f6b;
    }

    .padma-mobile-products.is-open .padma-mobile-products-all {
        color: #ffffff !important;
    }

    .padma-mobile-products.is-open .padma-mobile-products-toggle {
        color: #ffffff;
        border-left-color: rgba(255,255,255,.18);
    }


    /* PRODUCTS CHILDREN */
    .padma-mobile-category-list[hidden],
    .padma-mobile-category-children[hidden],
    .padma-mobile-subcategory-list[hidden] {
        display: none !important;
    }

    .padma-mobile-category-list {
        display: block;
        width: 100%;
        margin: 0;
        padding: 0;
        background: #ffffff;
    }


    /* VIEW ALL */
    .padma-mobile-category-list .padma-mobile-view-all {
        display: block !important;
        margin: 10px 40px !important;
        padding: 18px 20px !important;
        border-radius: 8px !important;
        background: #c9972d !important;
        color: #ffffff !important;
        text-align: center;
        text-decoration: none !important;
        font-size: 16px !important;
        font-weight: 700 !important;
        line-height: 1.2;
    }


    /* SUPER CATEGORY ROW */
    .padma-mobile-category-group {
        width: 100%;
        margin: 0;
        padding: 0;
        border-bottom: 1px solid #e5e5e5;
    }

    .padma-mobile-category-row {
        display: flex;
        align-items: stretch;
        justify-content: space-between;
        width: 100%;
        min-height: 56px;
        margin: 0;
        padding: 0;
        background: #ffffff;
    }

    .padma-mobile-category-name {
        flex: 1 1 auto;
        display: flex !important;
        align-items: center;
        min-width: 0;
        min-height: 56px;
        margin: 0 !important;
        padding: 0 36px !important;
        color: #344b67 !important;
        background: transparent !important;
        text-decoration: none !important;
        font-size: 16px !important;
        font-weight: 600 !important;
        line-height: 1.3;
    }

    .padma-mobile-category-toggle {
        flex: 0 0 58px;
        width: 58px;
        min-width: 58px;
        height: 56px;
        margin: 0;
        padding: 0;
        border: 0;
        border-left: 1px solid #e5e5e5;
        background: transparent;
        color: #243f6b;
        font-family: inherit;
        font-size: 28px;
        font-weight: 500;
        line-height: 1;
        cursor: pointer;
    }

    .padma-mobile-category-group.is-open > .padma-mobile-category-row {
        background: #fffaf0;
    }


    /* CATEGORY CHILDREN */
    .padma-mobile-category-children {
        display: block;
        width: 100%;
        margin: 0;
        padding: 0;
        background: #f8f9fa;
    }


    /* CATEGORY ROW */
    .padma-mobile-subcategory-group {
        width: 100%;
        margin: 0;
        padding: 0;
        border-bottom: 1px solid #e5e5e5;
    }

    .padma-mobile-subcategory-row {
        display: flex;
        align-items: stretch;
        justify-content: space-between;
        width: 100%;
        min-height: 50px;
        margin: 0;
        padding: 0;
        background: #f8f9fa;
    }

    .padma-mobile-subcategory-name {
        flex: 1 1 auto;
        display: flex !important;
        align-items: center;
        min-width: 0;
        min-height: 50px;
        margin: 0 !important;
        padding: 0 50px !important;
        color: #455b73 !important;
        background: transparent !important;
        text-decoration: none !important;
        font-size: 15px !important;
        font-weight: 500 !important;
        line-height: 1.3;
    }

    .padma-mobile-subcategory-toggle {
        flex: 0 0 52px;
        width: 52px;
        min-width: 52px;
        height: 50px;
        margin: 0;
        padding: 0;
        border: 0;
        border-left: 1px solid #e5e5e5;
        background: transparent;
        color: #243f6b;
        font-family: inherit;
        font-size: 25px;
        font-weight: 500;
        line-height: 1;
        cursor: pointer;
    }

    .padma-mobile-subcategory-group.is-open > .padma-mobile-subcategory-row {
        background: #fffaf0;
    }


    /* SUBCATEGORY LINKS */
    .padma-mobile-subcategory-list {
        display: block;
        width: 100%;
        margin: 0;
        padding: 0;
        background: #ffffff;
    }

    .padma-mobile-subcategory-link {
        display: block !important;
        width: 100%;
        box-sizing: border-box;
        margin: 0 !important;
        padding: 13px 50px 13px 68px !important;
        border-bottom: 1px solid #eeeeee;
        color: #59697d !important;
        background: #ffffff !important;
        text-decoration: none !important;
        font-size: 14px !important;
        font-weight: 500 !important;
        line-height: 1.3;
    }

    .padma-mobile-subcategory-link:hover,
    .padma-mobile-subcategory-link:focus {
        color: #243f6b !important;
        background: #fafafa !important;
    }

}


/* =========================================================
   MOBILE MENU - COMPACT PREMIUM OVERRIDES
   Keeps the existing PHP/data logic unchanged.
   ========================================================= */
@media (max-width: 991px) {

    .padma-mobile-menu {
        box-sizing: border-box !important;
    }

    .padma-mobile-menu-header {
        min-height: 68px !important;
        height: 68px !important;
        padding: 0 18px !important;
        box-sizing: border-box !important;
    }

    .padma-mobile-menu-header span,
    .padma-mobile-menu-header strong {
        font-size: 24px !important;
        line-height: 1 !important;
    }

    .padma-mobile-menu-close {
        width: 48px !important;
        height: 48px !important;
        min-width: 48px !important;
        border-radius: 9px !important;
        font-size: 25px !important;
    }

    .padma-mobile-menu-links > a:not(.padma-mobile-trade-link) {
        min-height: 48px !important;
        height: 48px !important;
        padding: 0 20px !important;
        box-sizing: border-box !important;
        font-size: 17px !important;
        line-height: 1.2 !important;
    }

    .padma-mobile-products-head {
        min-height: 52px !important;
        height: 52px !important;
    }

    .padma-mobile-products-all {
        min-height: 52px !important;
        height: 52px !important;
        padding: 0 20px !important;
        font-size: 17px !important;
    }

    .padma-mobile-products-toggle {
        width: 52px !important;
        min-width: 52px !important;
        height: 52px !important;
        flex-basis: 52px !important;
        font-size: 25px !important;
    }

    .padma-mobile-category-list .padma-mobile-view-all {
        margin: 8px 16px !important;
        padding: 12px 14px !important;
        min-height: 44px !important;
        box-sizing: border-box !important;
        border-radius: 7px !important;
        font-size: 15px !important;
    }

    .padma-mobile-category-row {
        min-height: 46px !important;
        height: 46px !important;
    }

    .padma-mobile-category-name {
        min-height: 46px !important;
        height: 46px !important;
        padding: 0 20px !important;
        font-size: 15px !important;
    }

    .padma-mobile-category-toggle {
        width: 48px !important;
        min-width: 48px !important;
        height: 46px !important;
        flex-basis: 48px !important;
        font-size: 23px !important;
    }

    .padma-mobile-subcategory-row {
        min-height: 42px !important;
        height: 42px !important;
    }

    .padma-mobile-subcategory-name {
        min-height: 42px !important;
        height: 42px !important;
        padding: 0 20px 0 38px !important;
        font-size: 14px !important;
    }

    .padma-mobile-subcategory-toggle {
        width: 44px !important;
        min-width: 44px !important;
        height: 42px !important;
        flex-basis: 44px !important;
        font-size: 21px !important;
    }

    .padma-mobile-subcategory-link {
        padding: 9px 20px 9px 50px !important;
        font-size: 13px !important;
        line-height: 1.25 !important;
    }

    .padma-mobile-trade-link {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        min-height: 46px !important;
        height: 46px !important;
        margin: 10px 16px !important;
        padding: 0 14px !important;
        box-sizing: border-box !important;
        border-radius: 8px !important;
        background: #243f6b !important;
        color: #ffffff !important;
        font-size: 14px !important;
        font-weight: 700 !important;
        text-decoration: none !important;
    }

    .padma-mobile-menu-actions {
        display: grid !important;
        grid-template-columns: 1fr 1.35fr !important;
        gap: 8px !important;
        margin: 10px 16px 16px !important;
        padding: 0 !important;
        border: 0 !important;
    }

    .padma-mobile-menu-actions a {
        min-height: 44px !important;
        height: 44px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 7px !important;
        margin: 0 !important;
        padding: 0 10px !important;
        box-sizing: border-box !important;
        border-radius: 7px !important;
        font-size: 13px !important;
        font-weight: 700 !important;
        line-height: 1 !important;
        text-decoration: none !important;
    }

    .padma-mobile-account-button {
        background: #f3f5f7 !important;
        color: #243f6b !important;
        border: 1px solid #dfe4e9 !important;
    }

    .padma-mobile-cart-button {
        background: #c9972d !important;
        color: #ffffff !important;
        border: 1px solid #c9972d !important;
    }

    .padma-mobile-cart-button strong {
        font-weight: 800 !important;
    }

    .padma-mobile-menu-actions i {
        font-size: 14px !important;
    }
}
/* =========================================================
   PADMA IMPORTS - MOBILE CATEGORY ACCORDION
   =========================================================
   Mobile menu only.
   Desktop navigation / mega menu is not changed.
   ========================================================= */

@media (max-width: 991px) {

    /* PRODUCTS WRAPPER */
    .padma-mobile-products {
        width: 100%;
        margin: 0;
        padding: 0;
        border: 0;
    }


    /* PRODUCTS HEADER */
    .padma-mobile-products-head {
        display: flex;
        align-items: stretch;
        justify-content: space-between;
        width: 100%;
        min-height: 64px;
        margin: 0;
        padding: 0;
        border-bottom: 1px solid #e5e5e5;
        background: #ffffff;
    }

    .padma-mobile-products-all {
        flex: 1 1 auto;
        display: flex !important;
        align-items: center;
        min-width: 0;
        min-height: 64px;
        margin: 0 !important;
        padding: 0 36px !important;
        color: #243f6b !important;
        background: transparent !important;
        text-decoration: none !important;
        font-size: 18px !important;
        font-weight: 700 !important;
        line-height: 1.2;
    }

    .padma-mobile-products-toggle {
        flex: 0 0 64px;
        width: 64px;
        min-width: 64px;
        height: 64px;
        margin: 0;
        padding: 0;
        border: 0;
        border-left: 1px solid #e5e5e5;
        background: transparent;
        color: #243f6b;
        font-family: inherit;
        font-size: 30px;
        font-weight: 500;
        line-height: 1;
        cursor: pointer;
    }

    .padma-mobile-products.is-open > .padma-mobile-products-head {
        background: #243f6b;
        border-bottom-color: #243f6b;
    }

    .padma-mobile-products.is-open .padma-mobile-products-all {
        color: #ffffff !important;
    }

    .padma-mobile-products.is-open .padma-mobile-products-toggle {
        color: #ffffff;
        border-left-color: rgba(255,255,255,.18);
    }


    /* PRODUCTS CHILDREN */
    .padma-mobile-category-list[hidden],
    .padma-mobile-category-children[hidden],
    .padma-mobile-subcategory-list[hidden] {
        display: none !important;
    }

    .padma-mobile-category-list {
        display: block;
        width: 100%;
        margin: 0;
        padding: 0;
        background: #ffffff;
    }


    /* VIEW ALL */
    .padma-mobile-category-list .padma-mobile-view-all {
        display: block !important;
        margin: 10px 40px !important;
        padding: 18px 20px !important;
        border-radius: 8px !important;
        background: #c9972d !important;
        color: #ffffff !important;
        text-align: center;
        text-decoration: none !important;
        font-size: 16px !important;
        font-weight: 700 !important;
        line-height: 1.2;
    }


    /* SUPER CATEGORY ROW */
    .padma-mobile-category-group {
        width: 100%;
        margin: 0;
        padding: 0;
        border-bottom: 1px solid #e5e5e5;
    }

    .padma-mobile-category-row {
        display: flex;
        align-items: stretch;
        justify-content: space-between;
        width: 100%;
        min-height: 56px;
        margin: 0;
        padding: 0;
        background: #ffffff;
    }

    .padma-mobile-category-name {
        flex: 1 1 auto;
        display: flex !important;
        align-items: center;
        min-width: 0;
        min-height: 56px;
        margin: 0 !important;
        padding: 0 36px !important;
        color: #344b67 !important;
        background: transparent !important;
        text-decoration: none !important;
        font-size: 16px !important;
        font-weight: 600 !important;
        line-height: 1.3;
    }

    .padma-mobile-category-toggle {
        flex: 0 0 58px;
        width: 58px;
        min-width: 58px;
        height: 56px;
        margin: 0;
        padding: 0;
        border: 0;
        border-left: 1px solid #e5e5e5;
        background: transparent;
        color: #243f6b;
        font-family: inherit;
        font-size: 28px;
        font-weight: 500;
        line-height: 1;
        cursor: pointer;
    }

    .padma-mobile-category-group.is-open > .padma-mobile-category-row {
        background: #fffaf0;
    }


    /* CATEGORY CHILDREN */
    .padma-mobile-category-children {
        display: block;
        width: 100%;
        margin: 0;
        padding: 0;
        background: #f8f9fa;
    }


    /* CATEGORY ROW */
    .padma-mobile-subcategory-group {
        width: 100%;
        margin: 0;
        padding: 0;
        border-bottom: 1px solid #e5e5e5;
    }

    .padma-mobile-subcategory-row {
        display: flex;
        align-items: stretch;
        justify-content: space-between;
        width: 100%;
        min-height: 50px;
        margin: 0;
        padding: 0;
        background: #f8f9fa;
    }

    .padma-mobile-subcategory-name {
        flex: 1 1 auto;
        display: flex !important;
        align-items: center;
        min-width: 0;
        min-height: 50px;
        margin: 0 !important;
        padding: 0 50px !important;
        color: #455b73 !important;
        background: transparent !important;
        text-decoration: none !important;
        font-size: 15px !important;
        font-weight: 500 !important;
        line-height: 1.3;
    }

    .padma-mobile-subcategory-toggle {
        flex: 0 0 52px;
        width: 52px;
        min-width: 52px;
        height: 50px;
        margin: 0;
        padding: 0;
        border: 0;
        border-left: 1px solid #e5e5e5;
        background: transparent;
        color: #243f6b;
        font-family: inherit;
        font-size: 25px;
        font-weight: 500;
        line-height: 1;
        cursor: pointer;
    }

    .padma-mobile-subcategory-group.is-open > .padma-mobile-subcategory-row {
        background: #fffaf0;
    }


    /* SUBCATEGORY LINKS */
    .padma-mobile-subcategory-list {
        display: block;
        width: 100%;
        margin: 0;
        padding: 0;
        background: #ffffff;
    }

    .padma-mobile-subcategory-link {
        display: block !important;
        width: 100%;
        box-sizing: border-box;
        margin: 0 !important;
        padding: 13px 50px 13px 68px !important;
        border-bottom: 1px solid #eeeeee;
        color: #59697d !important;
        background: #ffffff !important;
        text-decoration: none !important;
        font-size: 14px !important;
        font-weight: 500 !important;
        line-height: 1.3;
    }

    .padma-mobile-subcategory-link:hover,
    .padma-mobile-subcategory-link:focus {
        color: #243f6b !important;
        background: #fafafa !important;
    }

}


/* =========================================================
   MOBILE MENU - COMPACT PREMIUM OVERRIDES
   Keeps the existing PHP/data logic unchanged.
   ========================================================= */
@media (max-width: 991px) {

    .padma-mobile-menu {
        box-sizing: border-box !important;
    }

    .padma-mobile-menu-header {
        min-height: 68px !important;
        height: 68px !important;
        padding: 0 18px !important;
        box-sizing: border-box !important;
    }

    .padma-mobile-menu-header span,
    .padma-mobile-menu-header strong {
        font-size: 24px !important;
        line-height: 1 !important;
    }

    .padma-mobile-menu-close {
        width: 48px !important;
        height: 48px !important;
        min-width: 48px !important;
        border-radius: 9px !important;
        font-size: 25px !important;
    }

    .padma-mobile-menu-links > a:not(.padma-mobile-trade-link) {
        min-height: 48px !important;
        height: 48px !important;
        padding: 0 20px !important;
        box-sizing: border-box !important;
        font-size: 17px !important;
        line-height: 1.2 !important;
    }

    .padma-mobile-products-head {
        min-height: 52px !important;
        height: 52px !important;
    }

    .padma-mobile-products-all {
        min-height: 52px !important;
        height: 52px !important;
        padding: 0 20px !important;
        font-size: 17px !important;
    }

    .padma-mobile-products-toggle {
        width: 52px !important;
        min-width: 52px !important;
        height: 52px !important;
        flex-basis: 52px !important;
        font-size: 25px !important;
    }

    .padma-mobile-category-list .padma-mobile-view-all {
        margin: 8px 16px !important;
        padding: 12px 14px !important;
        min-height: 44px !important;
        box-sizing: border-box !important;
        border-radius: 7px !important;
        font-size: 15px !important;
    }

    .padma-mobile-category-row {
        min-height: 46px !important;
        height: 46px !important;
    }

    .padma-mobile-category-name {
        min-height: 46px !important;
        height: 46px !important;
        padding: 0 20px !important;
        font-size: 15px !important;
    }

    .padma-mobile-category-toggle {
        width: 48px !important;
        min-width: 48px !important;
        height: 46px !important;
        flex-basis: 48px !important;
        font-size: 23px !important;
    }

    .padma-mobile-subcategory-row {
        min-height: 42px !important;
        height: 42px !important;
    }

    .padma-mobile-subcategory-name {
        min-height: 42px !important;
        height: 42px !important;
        padding: 0 20px 0 38px !important;
        font-size: 14px !important;
    }

    .padma-mobile-subcategory-toggle {
        width: 44px !important;
        min-width: 44px !important;
        height: 42px !important;
        flex-basis: 44px !important;
        font-size: 21px !important;
    }

    .padma-mobile-subcategory-link {
        padding: 9px 20px 9px 50px !important;
        font-size: 13px !important;
        line-height: 1.25 !important;
    }

    .padma-mobile-trade-link {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        min-height: 46px !important;
        height: 46px !important;
        margin: 10px 16px !important;
        padding: 0 14px !important;
        box-sizing: border-box !important;
        border-radius: 8px !important;
        background: #243f6b !important;
        color: #ffffff !important;
        font-size: 14px !important;
        font-weight: 700 !important;
        text-decoration: none !important;
    }

    .padma-mobile-menu-actions {
        display: grid !important;
        grid-template-columns: 1fr 1.35fr !important;
        gap: 8px !important;
        margin: 10px 16px 16px !important;
        padding: 0 !important;
        border: 0 !important;
    }

    .padma-mobile-menu-actions a {
        min-height: 44px !important;
        height: 44px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 7px !important;
        margin: 0 !important;
        padding: 0 10px !important;
        box-sizing: border-box !important;
        border-radius: 7px !important;
        font-size: 13px !important;
        font-weight: 700 !important;
        line-height: 1 !important;
        text-decoration: none !important;
    }

    .padma-mobile-account-button {
        background: #f3f5f7 !important;
        color: #243f6b !important;
        border: 1px solid #dfe4e9 !important;
    }

    .padma-mobile-cart-button {
        background: #c9972d !important;
        color: #ffffff !important;
        border: 1px solid #c9972d !important;
    }

    .padma-mobile-cart-button strong {
        font-weight: 800 !important;
    }

    .padma-mobile-menu-actions i {
        font-size: 14px !important;
    }
}


/* =========================================================
   MOBILE TOP CART
   Search bar + cart button on the same row.
   Mobile only. Desktop header is unchanged.
   ========================================================= */

.padma-mobile-top-cart {
    display: none;
}

@media (max-width: 991px) {

    .padma-main-inner {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
    }

    .padma-search {
        flex: 1 1 auto !important;
        min-width: 0 !important;
        width: auto !important;
        margin: 0 !important;
    }

    .padma-search form {
        width: 100% !important;
        margin: 0 !important;
    }

    .padma-mobile-top-cart {
        position: relative;
        flex: 0 0 54px;
        width: 54px;
        height: 54px;
        min-width: 54px;
        display: flex !important;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        border-radius: 12px;
        background: #243f6b;
        color: #ffffff !important;
        text-decoration: none !important;
        box-shadow: 0 2px 6px rgba(0,0,0,.08);
    }

    .padma-mobile-top-cart i {
        font-size: 22px;
        line-height: 1;
    }

    .padma-mobile-top-cart-count {
        position: absolute;
        top: -6px;
        right: -5px;
        min-width: 21px;
        height: 21px;
        padding: 0 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        border-radius: 999px;
        background: #c9972d;
        color: #ffffff;
        border: 2px solid #ffffff;
        font-size: 11px;
        font-weight: 800;
        line-height: 1;
    }

    .padma-actions {
        display: none !important;
    }

    .padma-mobile-menu-actions {
        display: block !important;
        margin: 10px 16px 16px !important;
    }

    .padma-mobile-account-button {
        width: 100% !important;
    }
}

@media (max-width: 380px) {

    .padma-main-inner {
        gap: 6px !important;
    }

    .padma-mobile-top-cart {
        flex-basis: 50px;
        width: 50px;
        min-width: 50px;
        height: 50px;
        border-radius: 10px;
    }

    .padma-mobile-top-cart i {
        font-size: 20px;
    }
}
/* =========================================================
   MOBILE CART - CENTERED & LARGER
   ========================================================= */

@media (max-width: 991px) {

    .padma-mobile-top-cart {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        width: 110px !important;
        height: 52px !important;
        min-width: 110px !important;

        margin: 12px auto 10px auto !important;
        padding: 0 !important;

        box-sizing: border-box !important;

        background: #243f6b !important;
        color: #ffffff !important;

        border-radius: 10px !important;
        text-decoration: none !important;

        gap: 10px !important;
    }

    .padma-mobile-top-cart i {
        font-size: 28px !important;
        line-height: 1 !important;
    }

    .padma-mobile-top-cart-count {
        position: static !important;

        min-width: 26px !important;
        height: 26px !important;

        padding: 0 6px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        background: #c9972d !important;
        color: #ffffff !important;

        border: 2px solid #ffffff !important;
        border-radius: 50% !important;

        font-size: 13px !important;
        font-weight: 800 !important;
        line-height: 1 !important;
    }

}
/* =========================================================
   MOBILE MENU - TRADE ACCOUNT BUTTON
   ========================================================= */

