:root {
    --kt-yellow: #FCC201;
    --kt-yellow-soft: #fff3bd;
    --kt-black: #111111;
    --kt-ink: #181818;
    --kt-muted: #676767;
    --kt-line: rgba(17, 17, 17, .1);
    --kt-panel: #ffffff;
    --kt-cream: #fffaf0;
    --kt-shadow: 0 18px 48px rgba(0, 0, 0, .12);
    --kt-shadow-soft: 0 12px 30px rgba(0, 0, 0, .08);
}

html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(circle at top left, rgba(252, 194, 1, .16), transparent 30rem),
        linear-gradient(180deg, #fffdf7 0%, #fffaf0 100%);
    color: var(--kt-ink);
    font-family: "Poppins", "Open Sans", Arial, sans-serif;
}

a,
button,
input,
select,
textarea {
    transition: color .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease, opacity .2s ease;
}

img {
    max-width: 100%;
}

body > nav {
    background: rgba(252, 194, 1, .94) !important;
    backdrop-filter: blur(14px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .12) !important;
    z-index: 11000 !important;
}

body > nav .navbar {
    max-width: 1320px !important;
    padding: 0 32px !important;
}

body > nav .navbar .links {
    gap: 4px;
    margin-bottom: 0;
}

body > nav .navbar .links li {
    border-radius: 999px;
    padding: 0 12px !important;
}

body > nav .navbar .links li a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: #161616 !important;
    font-weight: 700 !important;
    letter-spacing: .01em;
}

body > nav .navbar .links li > a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 17px;
    height: 2px;
    border-radius: 2px;
    background: var(--kt-black);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .2s ease;
}

body > nav .navbar .links li:hover > a::after,
body > nav .navbar .links li.is-active > a::after {
    transform: scaleX(1);
}

body > nav .navbar .links li .sub-menu {
    min-width: 240px;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 8px !important;
    padding: 8px;
    box-shadow: var(--kt-shadow);
}

body > nav .navbar .links li .sub-menu li {
    border-radius: 7px;
    padding: 0 12px !important;
}

body > nav .navbar .links li .sub-menu li:hover {
    background: var(--kt-yellow-soft);
}

.site-search input {
    border: 1px solid rgba(17, 17, 17, .18) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .75);
}

.cart-link,
.site-search button {
    box-shadow: 0 8px 20px rgba(0, 0, 0, .18);
}

.kt-container {
    width: min(100% - 32px, 1220px);
    margin-inline: auto;
}

.kt-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: #765b00;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.kt-eyebrow::before {
    content: "";
    width: 34px;
    height: 2px;
    border-radius: 2px;
    background: var(--kt-black);
}

.kt-display {
    color: var(--kt-black);
    font-weight: 900;
    letter-spacing: 0;
    line-height: .98;
}

.kt-lead {
    color: #2b2b2b;
    font-size: clamp(16px, 2vw, 19px);
    line-height: 1.75;
}

.kt-hero-premium {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    background:
        linear-gradient(135deg, rgba(252, 194, 1, .95), rgba(255, 231, 142, .92)),
        linear-gradient(45deg, #f9c701, #fff2bd);
}

.kt-hero-premium::after {
    content: "";
    position: absolute;
    inset: auto -8% -28% 40%;
    height: 62%;
    background: rgba(17, 17, 17, .08);
    transform: rotate(-8deg);
    border-radius: 80px;
}

.kt-hero-copy {
    position: relative;
    z-index: 1;
    padding: 80px 0;
}

.kt-hero-media {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: end;
    min-height: 520px;
}

.kt-hero-media img {
    max-height: 620px;
    object-fit: contain;
    filter: drop-shadow(0 24px 38px rgba(0, 0, 0, .26));
    animation: ktFloat 6s ease-in-out infinite;
}

@keyframes ktFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.kt-cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.kt-btn,
.btn-get-started,
.cart-btn,
.btn-form,
.inquirebtn {
    border: 0 !important;
    border-radius: 999px !important;
    background: var(--kt-black) !important;
    color: var(--kt-yellow) !important;
    box-shadow: 0 12px 26px rgba(0, 0, 0, .16);
    font-weight: 800 !important;
    letter-spacing: .01em;
    text-decoration: none !important;
}

.kt-btn:hover,
.btn-get-started:hover,
.cart-btn:hover,
.btn-form:hover,
.inquirebtn:hover {
    background: var(--kt-yellow) !important;
    color: var(--kt-black) !important;
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, .2);
}

.kt-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid rgba(17, 17, 17, .22);
    border-radius: 999px;
    color: var(--kt-black);
    padding: 12px 20px;
    font-weight: 800;
    text-decoration: none;
    background: rgba(255, 255, 255, .36);
}

.kt-btn-outline:hover {
    background: #fff;
    color: var(--kt-black);
    transform: translateY(-2px);
}

.kt-section {
    padding: clamp(56px, 8vw, 96px) 0;
}

.kt-section-muted {
    background: rgba(255, 255, 255, .62);
}

.kt-section-head {
    max-width: 760px;
    margin: 0 auto 36px;
    text-align: center;
}

.kt-section-head h2 {
    color: var(--kt-black);
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 900;
    line-height: 1.08;
}

.kt-section-head p {
    color: var(--kt-muted);
    font-size: 16px;
    line-height: 1.7;
}

.kt-card,
.single-product-item,
.post-item-cover,
.card {
    border: 1px solid var(--kt-line) !important;
    border-radius: 8px !important;
    background: var(--kt-panel) !important;
    box-shadow: var(--kt-shadow-soft) !important;
}

.kt-card-hover,
.kt-product-card,
.single-product-item,
.post-item-cover {
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.kt-card-hover:hover,
.kt-product-card:hover,
.single-product-item:hover,
.post-item-cover:hover {
    transform: translateY(-6px);
    box-shadow: var(--kt-shadow) !important;
    border-color: rgba(252, 194, 1, .44) !important;
}

.kt-product-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
}

.kt-product-media {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff, #f6f6f6);
}

.kt-product-media img,
.kt-product-card img,
.product-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform .35s ease;
}

.kt-product-card:hover img,
.single-product-item:hover img {
    transform: scale(1.045);
}

.kt-product-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 18px;
    text-align: center;
}

.kt-product-body h3 {
    min-height: 48px;
    color: var(--kt-black);
    font-size: 17px;
    font-weight: 800;
    line-height: 1.35;
}

.kt-chip {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    border-radius: 999px;
    background: var(--kt-yellow-soft);
    color: #6d5200;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 800;
}

.kt-breadcrumb-band {
    padding: 48px 0;
    background: linear-gradient(135deg, var(--kt-yellow), #ffe58e);
}

.kt-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 14px;
    font-weight: 700;
}

.kt-breadcrumb a {
    color: var(--kt-black);
    text-decoration: none;
}

.kt-breadcrumb span {
    color: rgba(17, 17, 17, .58);
}

.kt-sidebar {
    position: sticky;
    top: 94px;
    padding: 18px;
}

.kt-sidebar-title {
    margin-bottom: 14px;
    color: var(--kt-black);
    font-size: 16px;
    font-weight: 900;
}

.kt-category-list,
.kt-category-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.kt-category-list > li {
    border-bottom: 1px solid var(--kt-line);
    padding: 12px 0;
}

.kt-category-list a {
    display: flex;
    justify-content: space-between;
    color: var(--kt-ink);
    font-weight: 700;
    text-decoration: none;
}

.kt-category-list a:hover,
.kt-category-list a.is-active {
    color: #9f7800;
}

.kt-subcategory-links {
    display: grid;
    gap: 8px;
    margin-top: 10px !important;
    padding-left: 12px !important;
}

.kt-subcategory-links a {
    color: var(--kt-muted);
    font-size: 14px;
    font-weight: 600;
}

.kt-sidebar-kicker {
    color: #8b6900;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.kt-search-results-section {
    padding-top: 48px;
}

.kt-results-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    border: 1px solid var(--kt-line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .78);
    padding: 12px 16px;
    color: var(--kt-muted);
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .05);
}

.kt-pagination-wrap {
    clear: both;
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 34px;
    position: relative;
    z-index: 1;
}

.kt-pagination-wrap nav {
    position: static !important;
    inset: auto !important;
    display: block !important;
    width: auto !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
}

.kt-pagination-wrap .pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.kt-pagination-wrap .page-item {
    list-style: none;
}

.kt-pagination-wrap .page-link {
    min-width: 42px;
    border: 1px solid var(--kt-line);
    border-radius: 8px;
    color: var(--kt-black);
    padding: 10px 14px;
    text-align: center;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .06);
}

.kt-pagination-wrap .page-link:hover {
    border-color: var(--kt-yellow);
    background: var(--kt-yellow-soft);
    color: var(--kt-black);
    transform: translateY(-2px);
}

.kt-pagination-wrap .page-item.active .page-link {
    border-color: var(--kt-black);
    background: var(--kt-black);
    color: var(--kt-yellow);
}

.kt-pagination-wrap .page-item.disabled .page-link {
    background: #f7f7f7;
    color: #a0a0a0;
    box-shadow: none;
}

.kt-form-control,
.form-control,
.inp-form {
    border: 1px solid rgba(17, 17, 17, .14) !important;
    border-radius: 8px !important;
    min-height: 48px;
}

.kt-form-control:focus,
.form-control:focus,
.inp-form:focus {
    border-color: var(--kt-yellow) !important;
    box-shadow: 0 0 0 4px rgba(252, 194, 1, .2) !important;
}

.alert {
    border: 0;
    border-radius: 8px;
    box-shadow: var(--kt-shadow-soft);
}

.kt-empty-state {
    max-width: 680px;
    margin: 0 auto;
    padding: 56px 24px;
    text-align: center;
}

.kt-empty-state i {
    display: inline-flex;
    width: 68px;
    height: 68px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 50%;
    background: var(--kt-yellow-soft);
    color: var(--kt-black);
    font-size: 34px;
}

.kt-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.kt-feature {
    padding: 24px;
    text-align: center;
}

.kt-feature i {
    display: inline-flex;
    width: 56px;
    height: 56px;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: 50%;
    background: var(--kt-black);
    color: var(--kt-yellow);
    font-size: 28px;
}

.kt-feature h3 {
    color: var(--kt-black);
    font-size: 18px;
    font-weight: 900;
}

.kt-split-panel {
    overflow: hidden;
    border-radius: 8px;
    background: var(--kt-black);
    color: #fff;
    box-shadow: var(--kt-shadow);
}

.kt-split-panel img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}

.kt-split-content {
    padding: clamp(28px, 5vw, 56px);
}

.kt-split-content p {
    color: rgba(255, 255, 255, .78);
    line-height: 1.75;
}

.product-gallery-main {
    overflow: hidden;
    border-radius: 8px;
    background: linear-gradient(180deg, #fff, #f2f2f2);
}

.product-gallery-main img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.product-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.product-thumb {
    overflow: hidden;
    border: 2px solid transparent;
    border-radius: 8px;
    background: #fff;
    padding: 0;
    cursor: pointer;
}

.product-thumb.is-active,
.product-thumb:hover {
    border-color: var(--kt-yellow);
    transform: translateY(-2px);
}

.product-thumb img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.product-detail-panel {
    position: sticky;
    top: 96px;
}

.product-meta-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.product-meta-grid strong,
.product-meta-grid span {
    display: block;
}

.product-meta-grid strong {
    color: var(--kt-black);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.product-meta-grid span {
    color: var(--kt-muted);
    margin-top: 4px;
    font-size: 14px;
}

.product-rich-text {
    color: var(--kt-muted);
    line-height: 1.8;
}

.share-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, .66);
    backdrop-filter: blur(10px);
}

.share-modal.is-open {
    display: flex;
}

.share-modal__dialog {
    position: relative;
    width: min(100%, 560px);
    padding: 28px;
}

.share-modal__close {
    position: absolute;
    top: 12px;
    right: 14px;
    border: 0;
    background: transparent;
    color: var(--kt-black);
    font-size: 30px;
    line-height: 1;
}

footer {
    background:
        linear-gradient(135deg, #050505 0%, #161616 65%, #2d2508 100%) !important;
}

footer h5 {
    color: var(--kt-yellow);
    font-weight: 900;
    letter-spacing: .08em;
}

footer a,
footer p {
    color: rgba(255, 255, 255, .78) !important;
}

footer a:hover {
    color: var(--kt-yellow) !important;
}

.social-icons a {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 50%;
}

.animate-in {
    animation: ktFadeUp .55s ease both;
}

@keyframes ktFadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    body > nav .navbar {
        padding: 0 18px !important;
    }

    body > nav .navbar .links li > a::after {
        bottom: 6px;
    }

    .kt-hero-premium {
        min-height: auto;
    }

    .kt-hero-copy {
        padding: 68px 0 24px;
        text-align: center;
    }

    .kt-hero-media {
        min-height: 340px;
    }

    .kt-cta-row {
        justify-content: center;
    }

    .kt-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .kt-sidebar {
        position: static;
        margin-bottom: 24px;
    }
}

@media (max-width: 800px) {
    body > nav {
        overflow: visible !important;
    }

    body > nav .navbar {
        position: relative;
        z-index: 11001;
    }

    body > nav .navbar .bx-menu {
        position: relative;
        z-index: 11003;
    }

    body > nav .navbar .nav-links {
        background: #111 !important;
        bottom: 0;
        height: 100vh !important;
        max-height: 100vh;
        max-width: min(86vw, 330px) !important;
        overflow-y: auto;
        overscroll-behavior: contain;
        z-index: 11002 !important;
    }

    body > nav .navbar .links li a,
    body > nav .navbar .links li .arrow,
    .sidebar-logo .logo-name,
    .sidebar-logo i,
    .navbar .bx-menu {
        color: #fff !important;
    }

    body > nav .navbar .links li .sub-menu {
        background: rgba(255, 255, 255, .08);
        border-color: rgba(255, 255, 255, .12);
    }

    body > nav .navbar .links li .sub-menu.is-open {
        display: block !important;
    }

    body > nav .navbar .links li .arrow.is-open {
        transform: rotate(180deg);
    }

    body > nav .navbar .links li .sub-menu a {
        color: #fff !important;
    }
}

@media (max-width: 575px) {
    body {
        padding-top: 132px;
    }

    .kt-feature-grid {
        grid-template-columns: 1fr;
    }

    .kt-display {
        font-size: 42px;
    }

    .kt-section {
        padding: 48px 0;
    }

    .kt-product-body h3 {
        min-height: auto;
    }
}
