:root {
    --ak-orange: #c75406;
    --ak-orange-dark: #ac4200;
    --ak-orange-soft: #f6e3d2;
    --ak-black: #111111;
    --ak-text-black: #2a2a2a;
    --ak-text-white: #fff;
    --ak-muted: #7a7a7a;
    --ak-bg: #fff;
    --ak-card: #ffffff;
    --ak-border: #ece7e1;
    --ak-success: #1f8f4e;
    --ak-header-bg-1: #000000;
    --ak-header-bg-2: #0b0b0b;
    --ak-header-bg-3: #1a0f08;
    --ak-header-accent: #ff6a00;
    --ak-header-glow-opacity: 0.14;
    --ak-header-border-opacity: 0.16;
    --ak-footer-bg: #f6f6f6;
    --ak-header-height: 90px;
}

html,
body {
    width: 100%;
    max-width: 100%;
}

body.modal-open #headerCartButton {
    display: none !important;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--ak-bg);
    color: var(--ak-text-black);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body.modal-open {
    padding-right: 0 !important;
    overflow: hidden;
}

.btn-close:focus {
    box-shadow: none !important;
}

.btn-close {
    opacity: 1;
    position: absolute;
}

.ak-container {
    margin: auto;
    max-width: 1536px;
    padding: 0 15px;
}

.ak-container .row > div {
    padding: 15px;
}

/* slider*/

.ak-hero-slider {
    position: relative;
    overflow: hidden;
}

.ak-hero-slide {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.ak-hero-slide-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.ak-hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.38);
}

.ak-hero-slide-content {
    position: relative;
    z-index: 2;
    color: var(--ak-text-white);
    text-align: center;
}

.ak-hero-slide-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.ak-hero-slide-title {
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 2rem;
}

.ak-btn-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    min-height: 54px;
    padding: 0 26px;
    border-radius: 999px;
    background: #fff;
    color: #111;
    text-decoration: none;
    font-weight: 700;
}

.ak-hero-slider .swiper-pagination-bullet {
    background: rgba(255,255,255,0.65);
    opacity: 1;
}

.ak-hero-slider .swiper-pagination-bullet-active {
    background: #fff;
}

.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
    padding-bottom: 40px;
}

/* slider*/

main {
    flex: 1;
    padding-bottom: 1rem;
}

a {
    text-decoration: none;
}

.ak-cart-bounce {
    animation: akCartBounce 0.45s ease;
}

@keyframes akCartBounce {
    0% { transform: scale(1); }
    30% { transform: scale(1.14); }
    60% { transform: scale(0.96); }
    100% { transform: scale(1); }
}

/* Modal */

.ak-modal-close-icon {
    padding: 20px;
}

.ak-extra-qty-control {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--ak-text-black);
    font-weight: 700;
}

.ak-extra-minus,
.ak-extra-plus-small {
    border: 0;
    background: transparent;
    color: var(--ak-orange);
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
}

.ak-modal-head-mobile {
    display: flex;
}

#modal_extras_container {
    padding-bottom: 10px;
}

.ak-close-modal-btn {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

[data-bs-theme="dark"] .btn-close {
    filter: none;
}

/*.modal-dialog {*/
/*    min-height: 100%;*/
/*    margin: 0;*/
/*}*/

/* Modal */

/*Menu*/

.ak-shop-hours {
    font-size: 15px;
    color: var(--ak-text-white) !important;
    min-width: 148px;
}

.ak-alert-hours {
    background-color: var(--ak-orange);
    color: var(--ak-text-white);
}

.ak-icon-burger {
    -webkit-mask: url(/images/icons/mob_menu.svg);
    mask: url(/images/icons/mob_menu.svg);
    mask-repeat: repeat;
    width: 21px;
    height: 15px;
    margin: 3px 1px 0 2px;
    background-color: var(--ak-text-white); !important;
    display: inline-block;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
}

#navbarDropdownMdBurger::after {
    width: 0;
    height: 0;
    display: none;
}

.dropdown-toggle::after {
    margin-top: 11px;
    margin-left: 7px;
    position: absolute;
}

.ak-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: var(--ak-header-height);
    z-index: 9999;
    overflow: hidden;
    background: linear-gradient(
        180deg,
        #1a0d05 0%,
        #0b0b0b 60%,
        #000000 100%
    );

    border-bottom: 1px solid rgb(138, 68, 6);
    transition:
        background 0.45s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.ak-header-mobile {
    height: var(--ak-header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
    margin: 0;
}

.ak-topbar::before {
    content: "";
    position: absolute;
    inset: 0;

    background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, 0.03),
        transparent 70%
    );

    opacity: 0.4;
}

.ak-topbar::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient( circle at 20% 50%, rgba(255, 120, 0, 0.12), transparent 60% ),
    radial-gradient( circle at 80% 50%, rgba(255, 120, 0, 0.12), transparent 60% );
    pointer-events: none;
}

.ak-topbar > * {
    position: relative;
    z-index: 1;
}

.ak-topbar .ak-heat-shimmer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.16;
    mix-blend-mode: screen;
    background:
        linear-gradient(
            115deg,
            transparent 0%,
            rgba(255, 120, 0, 0.00) 38%,
            rgba(255, 170, 60, 0.10) 48%,
            rgba(255, 120, 0, 0.00) 58%,
            transparent 100%
        );
    background-size: 220% 100%;
    animation: akHeatShimmer 8s linear infinite;
}

@keyframes akHeatShimmer {
    0% {
        background-position: 120% 0;
    }
    100% {
        background-position: -120% 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ak-topbar .ak-heat-shimmer {
        animation: none;
        opacity: 0.08;
    }
}

/* overlay */
.ak-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 999;
}

/* drawer */
.ak-menu-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    transform: translateX(-100%);
    transition: 0.3s ease;
    z-index: 1000;
    padding: 20px;
}

/* active state */
.ak-menu-drawer.active {
    transform: translateX(0);
}

.ak-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* header */
.ak-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* items */

.ak-menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid #ddd;
    font-size: 16px;
}

/* right side */
.ak-menu-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ak-login {
    color: #ff5a00;
}

.ak-user-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
}


.ak-logo {
    height: 56px;
    width: auto;
}

.ak-brand-title {
    font-weight: 900;
    letter-spacing: 0.02em;
    color: var(--ak-black);
}

.ak-nav-link {
    color: var(--ak-bg);
    font-weight: 600;
    font-size: 0.95rem;
}

.ak-nav-link:hover,
.ak-nav-link.active {
    color: var(--ak-orange);
}

.ak-account-btn {
    border-radius: 50%;
    color: var(--ak-text-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 24px;
    transition: all 0.2s ease;
}

.ak-account-btn:hover {
    box-shadow: 0 6px 24px 0 rgba(0,0,0,.2);
    transform: translateY(-1px);
    color: var(--ak-orange);
}

.ak-lang-clean {
    background: transparent;
    border: none;
    box-shadow: none;
    font-weight: 700;
    color: var(--ak-text-white);
    padding: 6px 8px;
}

.ak-lang-clean:hover,
.ak-lang-clean:focus {
    color: var(--ak-orange);
    box-shadow: none;
}

.ak-lang-dropdown {
    position: relative;
    font-weight: 700;
    font-size: 20px;
}

.ak-lang-dropdown a {
    color: var(--ak-orange);
}

.ak-lang-dropdown a:hover {
    color: var(--ak-orange-dark);
}

.ak-lang-trigger {
    position: relative;
    z-index: 3;
}

.ak-lang-menu {
    --bs-dropdown-min-width: 140px;
    border: 0;
    border-radius: 18px;
    padding: 14px;
    margin-top: 12px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    left: 0 !important;
    right: auto !important;
    overflow: visible;
}

.ak-lang-menu::before {
    content: "";
    position: absolute;
    top: -7px;
    left: 50%;
    width: 14px;
    height: 14px;
    background: #fff;
    transform: translateX(-50%) rotate(45deg);
    border-radius: 2px;
    box-shadow: -2px -2px 8px rgba(0, 0, 0, 0.04);
    z-index: -1;
}

.ak-lang-item {
    font-size: 16px;
    font-weight: 500;
    color: #111;
    padding: 8px 18px;
    background: transparent;
}

.ak-lang-item:hover,
.ak-lang-item:focus {
    background: transparent;
    color: var(--ak-orange);
}

.dropdown-item:hover {
    background: transparent;
    color: var(--ak-orange);
}

.ak-lang-menu .dropdown-item.active,
.ak-lang-menu .dropdown-item:active {
    background: transparent;
    color: #111;
}

#headerCartTotal {
    transition: all 0.2s ease;
}

.ak-cart-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 999px;
    background: var(--ak-orange);
    color: var(--ak-text-white);
    padding: 10px 20px;
    font-weight: 700;
    border: 1px solid var(--ak-orange);
}

.ak-cart-pill:hover {
    background: var(--ak-orange-dark);
    color: rgb(255, 255, 255);
}

.ak-back-arrow {
    color: var(--bs-secondary-color) !important;
    font-weight: 600;
}

.ak-back-arrow:hover {
    text-decoration: underline;
}

.ak-back-arrow::before {
    content: "";
    width: 12px;
    height: 12px;
    display: inline-block;
    background-image: url('/images/icons/back_arrow.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    flex-shrink: 0;
    margin-right: 10px;
}

.ak-page-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--ak-black);
    margin-bottom: 1.5rem;
}

.ak-empty-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: var(--ak-bg);
    /*border: 1px dashed var(--ak-border);*/
    border-radius: 24px;
    text-align: center;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
}

.ak_empty_cart {
    padding-bottom: 10px;
    font-weight: 700;
    font-size: 30px;
}

/*Menu*/

.ak-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex: 1;
    width: auto;
    min-width: 0;
}

.ak-mobile-left {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.ak-mobile-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.ak-badge-new-icon {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    width: 30px;
    height: 30px;
    border-radius: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d96a05 0%, #ff7a00 100%);
    color: var(--ak-text-white);
    box-shadow: 0 8px 18px rgba(217, 106, 5, 0.28);
}

.ak-badge-new-icon i {
    font-size: 16px;
    line-height: 1;
    display: block;
}

.ak-summary-img span i {
    font-size: 14px;
}

.extra-toggle-btn {
    border: none;
    background: transparent;
    font-size: 22px;
    color: var(--ak-orange);
    cursor: pointer;
}

.ak-categories-sticky {
    position: sticky;
    top: 89px;
    z-index: 10;
    background: var(--ak-bg);
    border-bottom: 1px solid var(--ak-border);
    width: 100%;
    height: 80px;
}

.ak-category-bar {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    white-space: nowrap;
    padding: 14px 0;
    scrollbar-width: none;
}

.ak-category-bar::-webkit-scrollbar {
    display: none;
}

.ak-category-link {
    position: relative;
    color: var(--ak-black);
    font-weight: 700;
    font-size: 1rem;
    padding: 6px 0;
    transition: color 0.2s ease;
    cursor: pointer;
}

.ak-category-link:hover {
    color: var(--ak-orange);
}

.ak-category-link.active {
    color: var(--ak-black);
}

.ak-category-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -14px;
    width: 100%;
    height: 3px;
    background: var(--ak-orange);
    border-radius: 999px;
}

.ak-category-section {
    scroll-margin-top: 165px; /* header + second sticky bar */
}

.ak-section-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--ak-black);
}

.ak-product-card {
    background: var(--ak-card);
    border: 1px solid var(--ak-border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(17, 17, 17, 0.04);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ak-product-card:hover {
    box-shadow: 0 6px 24px 0 rgba(0,0,0,.2);
}

.ak-product-card:hover .ak-product-body .ak-product-title {
    color: var(--ak-orange);
}

.ak-product-image-wrap {
    padding: 18px 18px 0;
    flex-shrink: 0;
}

.ak-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    background: #f1f1f1;
}

.ak-product-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    height: 100%;
    flex: 1;
}

.ak-product-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ak-black);
    margin-bottom: 4px;
}

.ak-product-meta {
    color: var(--ak-muted);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.ak-product-desc {
    color: var(--ak-muted);
    font-size: 0.95rem;
    line-height: 1.45;
    flex-grow: 1;
    margin-bottom: 16px;
}

.ak-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.ak-price {
    font-size: 18px;
    font-weight: 900;
    color: var(--ak-black);
}

.ak-btn-outline-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1.5px solid var(--ak-orange);
    color: var(--ak-orange);
    background: transparent;
    font-weight: 700;
    line-height: 1;
    text-align: center;
}

.ak-btn-outline-brand:hover {
    background: var(--ak-orange);
    color: var(--ak-text-white);
}

.ak-btn-brand {
    border-radius: 999px;
    background: var(--ak-orange);
    border: 1px solid var(--ak-orange);
    color: var(--ak-text-white);
    font-weight: 700;
    padding: 12px 22px;
    font-size: 18px;
}

.ak-btn-brand:hover {
    background: var(--ak-orange-dark);
    border-color: var(--ak-orange-dark);
    color: var(--ak-text-white);
}

.ak-modal .modal-content {
    border: 0;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
    max-height: calc(100vh - 100px);
    scrollbar-width: none;
}

.ak-modal .modal-body {
    overflow-x: hidden;
}

.ak-modal-head {
    padding: 50px 20px 0;
}

.ak-modal-product-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f0e5da;
    background: #f6f6f6;
}

.ak-modal-title {
    font-size: 2.3rem;
    font-weight: 900;
    color: var(--ak-black);
    margin-bottom: 6px;
}

.ak-modal-weight {
    font-size: 1.2rem;
    color: var(--ak-muted);
    margin-bottom: 16px;
}

.ak-modal-desc {
    color: #626262;
    font-size: 1rem;
    line-height: 1.6;
}

.ak-extras-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--ak-black);
    padding-bottom: 18px;
    margin: 0;
}

.ak-extra-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px dashed #eee5db;
}

.ak-extra-name {
    font-size: 1.06rem;
    color: var(--ak-black);
    font-weight: 600;
}

.ak-extra-price {
    color: var(--ak-muted);
    margin-left: 6px;
}

.ak-extra-toggle {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1.5px solid var(--ak-orange);
    color: var(--ak-orange);
    background: transparent;
    font-size: 1.15rem;
    font-weight: 700;
}

.ak-extra-toggle.active,
.ak-extra-toggle:hover {
    background: var(--ak-orange);
    color: var(--ak-bg);
}

.ak-modal-footer-bar {
    border-top: 1px solid var(--ak-border);
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.ak-modal-total {
    font-size: 28px;
    font-weight: 900;
    color: var(--ak-black);
}

.ak-qty-control {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    background: var(--ak-bg);
}

.ak-qty-btn {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 0;
    background: transparent;
    color: var(--ak-orange);
    font-size: 1.2rem;
    font-weight: 800;
}

.ak-qty-value {
    min-width: 24px;
    text-align: center;
    font-weight: 800;
}

.ak-panel {
    background: var(--ak-bg);
    border: 1px solid var(--ak-border);
    border-radius: 24px;
    box-shadow: 0 6px 18px rgba(17, 17, 17, 0.04);
}

.ak-cart-line,
.ak-summary-line {
    border-bottom: 1px solid var(--ak-border);
    padding: 14px 0;
}

.ak-cart-title {
    font-weight: 800;
    color: var(--ak-black);
}

.ak-cart-extra {
    color: var(--ak-muted);
    font-size: 0.92rem;
}

/*Cart*/


.modal {
    top: 50px;
}

.ak-extra-content-cart {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.ak-desc-items:has(.ak-extra-desc-container) {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    height: auto;
}

.ak-extra-part-desc {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

.ak-desc-items {
    height: 60px;
    display: flex;
    align-items: center;
    width: 180px;
}

.ak-img-mobile {
    width: 200px;
    position: relative;
}

.ak-img-mobile .ak-badge-new-icon {
    top: 0;
    left: 0;
    width: 25px;
    height: 25px;
}

.ak-cart-content-mobile {
    flex-direction: row;
    align-items: center !important;
    width: 100%;
    justify-content: space-between;
}

.ak-cart-right {
    display: flex;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
    height: 100%;
}

.ak-part-right-qty {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 60px;
    width: 100%;
}

#cartPage {
    padding-top: 80px;
}

.ak-cart-qty {
    padding-right: 30px;
}

.ak-cart-item {
    padding: 28px 20px;
    border-top: 1px solid var(--ak-orange);
    border-bottom: 1px solid var(--ak-orange);
}

.ak-cart-img {
    width: 120px;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.ak-remove-btn {
    font-size: 22px;
    cursor: pointer;
    color: var(--ak-orange);
    font-weight: 800;
    border-radius: 50%;

}

.ak-remove-link {
    border: 0;
    background: transparent;
    color: #d14343;
    font-size: 0.85rem;
    padding: 0;
}

.ak-cart-summary {
    background: var(--ak-bg);
    padding: 32px;
    border-radius: 24px;
    position: sticky;
    top: 120px;
}

.ak-checkout-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--ak-orange);
    color: var(--ak-bg);
    font-weight: 700;
    padding: 18px;
    border-radius: 999px;
    text-decoration: none;
    transition: 0.2s;
}

.ak-checkout-btn:hover {
    background: var(--ak-orange-dark);
    color: var(--ak-bg);
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number] {
    -moz-appearance: textfield;
}

.ak-remover-btn {
    display: flex;
    align-items: center;
    padding-left: 30px;
}

.ak-extra-desc-container {
    width: 260px;
}

/*Cart*/

/*Checkout*/

.ak-checkout-btn.disabled {
    opacity: .6;
    pointer-events: none;
    cursor: not-allowed;
}

.ak-checkout-cart-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ak-summary-img .ak-cart-img {
    max-width: 90px;
}

.ak-summary-img {
    padding: 20px 0;
    position: relative;
}

.ak-summary-img .ak-badge-new-icon {
    top: 20px;
    left: 0;
    z-index: 2;
    width: 22px;
    height: 22px;
}

.ak-checkout-left {
    max-height: calc(100vh - var(--ak-header-height, 90px) - 32px);
    overflow-y: auto;
    padding-right: 8px;
}

.ak-checkout-page {
    padding-top: 80px;
}

.ak-checkout-submit:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    pointer-events: none;
}

.ak-checkbox-custom {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
}

.ak-checkbox-custom input {
    display: none;
}

.ak-checkbox-box {
    position: relative;
    width: 20px;
    height: 20px;
    border-radius: 6px;
    border: 2px solid #ff6a00;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.ak-checkbox-custom input:checked + .ak-checkbox-box {
    background: linear-gradient(135deg, #ff6a00, #ff8c00);
    border-color: #ff6a00;
}

.ak-checkbox-box::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: translate(-50%, -60%) rotate(45deg) scale(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.ak-checkbox-custom input:checked + .ak-checkbox-box::after {
    transform: translate(-50%, -60%) rotate(45deg) scale(1);
}

.ak-checkbox-custom:hover .ak-checkbox-box {
    box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.15);
}

.ak-checkout-left::-webkit-scrollbar {
    display: none;
}

.ak-checkout-right {
    position: sticky;
    top: calc(var(--ak-header-height, 90px) + 20px);
}

.ak-checkout-left::-webkit-scrollbar {
    width: 6px;
}

.ak-checkout-left::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.18);
    border-radius: 20px;
}

.ak-checkout-info {
    font-weight: 700;
    font-size: 22px;
}

.ak-checkout-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 32px;
}

.ak-checkout-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px 32px;
}

.ak-field {
    position: relative;
    min-width: 0;
}

.ak-input,
.ak-textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #d9d9d9;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    outline: none;
    color: #1f1f1f;
    font-size: 16px;
    padding: 26px 28px 10px 0;
    line-height: 1.4;
}

.ak-input:focus,
.ak-textarea:focus {
    border-bottom-color: #d96a05;
    box-shadow: none;
    outline: none;
}

.ak-input[readonly] {
    cursor: default;
}

.ak-textarea {
    min-height: 56px;
    resize: vertical;
}

.ak-label {
    position: absolute;
    top: 12px;
    left: 0;
    color: #5f5f5f;
    font-size: 15px;
    line-height: 1;
    pointer-events: none;
    transition: all 0.18s ease;
}

.ak-required {
    color: #d96a05;
    margin-left: 2px;
}

.ak-input:focus + .ak-label,
.ak-input:not(:placeholder-shown) + .ak-label,
.ak-textarea:focus + .ak-label,
.ak-textarea:not(:placeholder-shown) + .ak-label,
.ak-field--filled .ak-label {
    top: -8px;
    font-size: 12px;
    color: #d96a05;
}

.ak-error {
    margin-top: 6px;
    color: #c62828;
    font-size: 12px;
}

.ak-phone-field {
    position: relative;
}

.ak-phone-prefix {
    position: absolute;
    left: 0;
    top: 18px;
    font-size: 14px;
    color: #777;
}

.ak-input-phone {
    letter-spacing: 1px;
}

.ak-checkbox input[type="checkbox"] {
    accent-color: #d96a05;
    width: 18px;
    height: 18px;
}

.ak-link {
    color: #000;
    text-decoration: underline;
}

.ak-payment-title {
    font-size: 2rem;
    font-weight: 800;
    color: #111;
    margin: 0 0 28px;
}

.ak-payment-options {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.ak-payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.ak-payment-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.ak-payment-radio {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #efefef;
    border: 1px solid #efefef;
    flex-shrink: 0;
    position: relative;
    transition: all 0.2s ease;
}

.ak-payment-option input[type="radio"]:checked + .ak-payment-radio {
    border-color: #d96a05;
    background: var(--ak-bg);
}

.ak-payment-option input[type="radio"]:checked + .ak-payment-radio::after {
    content: "";
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background: #d96a05;
}

.ak-payment-error-title {
    color: #2d1908 !important;
    font-weight: 900 !important;
}

.ak-payment-error-reason {
    padding: 5px 10px;
    background-color: transparent; !important;
    color: var(--ak-orange); !important;
    border-radius: 0 !important;
    font-size: 2rem;
    font-weight: 900;
}

.checkout_summary {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.ak-field--select {
    position: relative;
}

.ak-select-clean {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #d9d9d9;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    outline: none;
    color: #1f1f1f;
    font-size: 16px;
    line-height: 1.4;
    padding: 26px 28px 10px 10px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.ak-select-clean:focus {
    border-bottom-color: #d96a05;
    box-shadow: none;
    outline: none;
}

.ak-label--floated {
    position: absolute;
    top: 6px;
    left: 0;
    font-size: 12px;
    color: #d96a05;
    line-height: 1;
    pointer-events: none;
}

.ak-field--select::after {
    content: "▾";
    position: absolute;
    right: 6px;
    top: 0;
    font-size: 12px;
    color: #666;
    pointer-events: none;
}

.ak-deliveryHint {
    display: flex;
    flex-direction: column;
}

/*Checkout*/

/* contacts */

.leaflet-control-attribution {
    font-size: 10px;
    opacity: 0.4;
    padding: 2px 6px;
}

.leaflet-control-container,
.leaflet-top,
.leaflet-bottom {
    z-index: 1000 !important;
}

.leaflet-control-fullscreen a {
    background: #fff;
    border-radius: 8px;
    width: 36px;
    height: 36px;
    line-height: 36px;
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
}

.leaflet-control-fullscreen a:hover {
    background: #ff5a00;
    color: var(--ak-text-white);
}

.ak-contacts-container {
    border: 0;
    border-radius: 0;
}

.ak-contact-map {
    width: 100%;
    height: 560px;
    overflow: hidden;
    margin-top: 40px;
}

.ak-contact-grid {
    text-align: center;
    overflow: hidden;
    width: 100%;
}

.ak-contacts-info {
    font-size: 40px;
    font-weight: 700;
}

.contacts-page main {
    padding-bottom: 0;
    padding-top: 80px;
}

.ak-contact-grid a {
    color: inherit;
    text-decoration: none;
    font-weight: 700;
    font-size: 24px;
}

.ak-contact-grid a:hover {
    color: #d35400;
}

.ak-contact-map .leaflet-tile {
    filter: brightness(0.55) saturate(0.9);
}

.ak-map-marker {
    width:18px;
    height:18px;
    background:#ff5a00;
    border-radius:50%;
    position: relative;
}

/* contacts */

/* about */

.ak-about-us {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
}

.ak-about-hero .d-flex {
    width: 100%;
}

.ak-about-hero {
    position: relative;
    height: 100%;
    width: 100%;
    background-image: url('/storage/site-settings/about.webp');
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ak-about-overlay {
    position: absolute;
    inset: 0;
    background: rgba(38, 23, 12, 0.53);
}

.ak-about-content {
    position: relative;
    z-index: 2;
    color: var(--ak-text-white);
}

.ak-about-title {
    font-size: 48px;
    font-weight: 700;
}

.ak-about-subtitle {
    font-size: 18px;
    opacity: 0.9;
}

.ak-about-text-section {
    z-index: 10;
    padding: 20px 10px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient( 180deg, #2d1a08 0%, #1e1207 60%, #1b0f04 100% );
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.26);
    transition: background 0.45s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.ak-about-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--ak-text-white);
    text-align: center;
}

.ak-about-highlight {
    background: linear-gradient( 90deg, rgba(215, 68, 2, 0.52), rgba(15, 15, 15, 0.83) );
    color: var(--ak-text-white);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.56);
    backdrop-filter: blur(4px);
}

.ak-about-highlight h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--ak-text-white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.ak-about-highlight p {
    font-size: 17px;
    color: var(--ak-text-white);
    opacity: 0.95;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}

/* about */

/* products */

.ak-products-desc-card {
    padding: 15px 15px;
}

.ak-products-desc-bottom {
    border-bottom: 1px solid var(--ak-border);
}

/* products */

/* thank-you */

.thank-you-page {
    overflow-x: hidden;
}

.ak-thank-you-container {
    margin-top: 120px;
    height: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.ak-thank-you-container .ak-panel {
    border: 0;
    box-shadow: none;
}

.ak-thank-you-container .ak-panel p {
    font-size: 20px;
}

/* thank-you */


/* terms */

.ak-terms-page {
    padding: 140px 0 70px;
}

.ak-terms-card {
    max-width: 1122px !important;
    margin: auto;
}

.ak-terms-head {
    text-align: center;
    margin-bottom: 42px;
}

.ak-terms-badge {
    display: inline-flex;
    padding: 8px 18px;
    border-radius: 999px;
    background: var(--ak-orange);
    color: var(--ak-text-white);
    font-weight: 800;
    margin-bottom: 18px;
}

.ak-terms-head h1 {
    font-size: clamp(34px, 5vw, 54px);
    font-weight: 900;
    color: var(--ak-black);
    margin-bottom: 10px;
}

.ak-terms-head p {
    color: var(--ak-muted);
    margin: 0;
}

.ak-terms-content {
    color: var(--ak-black);
    line-height: 1.8;
    font-size: 1.25rem;
}

.ak-terms-content h2 {
    color: var(--ak-black);
    font-size: 24px;
    font-weight: 600;
    margin: 36px 0 40px;
    line-height: 34px;
}

.ak-terms-content p {
    margin-bottom: 46px;
}

.ak-terms-content p + ul {
    margin-bottom: 46px;
}


/* terms */

/*Footer*/

.ak-footer .container-xl {
    overflow: hidden;
}

.ak-footer-bottom div img {
    max-height: 32px;
    width: auto;
}

.ak-footer {
    background: var(--ak-bg);
    padding-top: 20px;
    border-top: 1px solid var(--ak-border);
}

.ak-footer-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ak-black);
    margin-bottom: 18px;
    text-decoration: underline;
}

.ak-footer-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    padding: 0;
}

.ak-footer-link {
    color: var(--ak-black);
    font-weight: 500;
    transition: color 0.2s ease;
}

.ak-footer-link:hover {
    color: var(--ak-orange);
}

.ak-footer-link.ak-category-link:after {
    background: none;
}

.ak-footer-bottom {
    /*margin-top: 56px;*/
    padding: 24px 0;
    border-top: 1px solid var(--ak-border);
    border-bottom: 1px solid var(--ak-border);
    color: var(--ak-black);
    font-size: 0.95rem;
}

.ak-footer-bottom img {
    padding-right: .5rem;
}

/*Footer*/

/* errors */
.ak-404-page {
    min-height: 100vh;
    background: #f7f7f7;
    padding: 0 10px;
}

.ak-404-code {
    font-size: 180px;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 2px #ff5a00;
    /*margin-bottom: 20px;*/
}

.ak-404-text {
    font-size: 28px;
    font-weight: 600;
    color: #111;
    margin-bottom: 20px;
}

.ak-404-link {
    font-size: 16px;
    color: #111;
    text-decoration: underline;
}

.ak-404-link:hover {
    color: #ff5a00;
}
/* errors */

/* media */

@media (min-width: 1536px) {
    .ak-categories-sticky .ak-category-bar {
        margin: auto;
        min-width: 1536px;
    }
}

@media (max-width: 1260px) {

    .ak-product-image {
        width: 100%;
        object-fit: cover;
        object-position: center center;
    }

    .ak-cart-extra-desc {
        padding-right: 10px;
    }

    .ak-extra-desc-container {
        width: 320px;
    }

    .ak-cart-content-mobile .ak-desc-items:has(.ak-cart-extra-desc) {
        align-items: flex-start;
    }

}

@media(max-width: 1244px) {

    .ak-part-right-qty {
        width: 100%;
        justify-content: space-between;
    }

}

@media (min-width: 993px) {

    .ak-topbar {
        padding: 0 50px;
    }

    .ak-section-title {
        padding: 50px 0;
    }

}

@media (max-width: 992px) {

    .ak-about-us {
        max-height: calc(100dvh - 80px);
    }

    .about-page main {
        padding-bottom: 0;
        padding-top: 80px;
    }

    .ak-about-highlight {
        width: 100%;
        border-radius: 0;
        padding: 20px 10px;
    }

    .ak-about-content {
        width: 100%;
    }

    .ak-about-hero .d-flex {
        flex-wrap: wrap;
        height: 100%;
        padding: 40px 0;
    }

    .ak-footer-bottom div {
        padding-bottom: 2rem;
    }

    .ak-img-mobile .ak-badge-new-icon {
        width: 22px;
        height: 22px;
        top: 0px;
        left: 0px;
    }

    .ak-img-mobile span i {
        font-size: 16px;
    }

    .ak-modal-head {
        padding: 22px 10px 0;
    }

    .ak-modal-head-mobile .ak-modal-mobile-badge {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        width: 100%;
    }

    .ak-modal-mobile-badge .ak-badge-new-icon {
        position: inherit;
    }

    .ak-modal-close-icon {
        padding: 20px;
    }

    .tooltip {
        z-index: 9999999;
    }

    .ak-extra-row-add {
        padding: 5px 15px;
    }

    .ak-modal-sum {
        min-width: 90px;
    }

    .ak-mobile-submenu.collapsing {
        height: auto !important;
        transition: none !important;
    }

    .ak-mobile-submenu.collapse {
        display: none;
    }

    .ak-mobile-submenu.collapse.show {
        display: block;
    }

    .ak-toggled-menu {
        position: fixed;
        inset: 0;
        width: 100vw;
        height: 100%;
        background: #fff;
        z-index: 999999;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        transform: translateX(-100%);
        transition: transform 0.25s ease;
        padding: 32px 24px;
    }

    .ak-toggled-menu.active {
        transform: translateX(0);
    }

    body.ak-menu-open {
        overflow: hidden;
    }

    .ak-menu-close {
        cursor: pointer;
        padding: 0 4px;
    }

    .ak-modal-footer-bar {
        flex: 0 0 auto;
        width: 100%;
        /*position: sticky;*/
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 20;
        background: #fff;
        padding: 16px 20px;
        box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.06);
    }

    .ak-hero-slider {
        padding-top: 155px;
    }

    .ak-header-content {
        flex: 0;
        min-width: auto;
    }

    .ak-modal-head-mobile {
        display: flex;
    }

    .ak-modal-head {
        flex: 0 1 auto;
        overflow-y: auto;
        max-height: calc(100dvh - 120px);
    }

    .ak-modal-head-mobile div {
        text-align: center;
    }

    .ak-modal-title, .ak-modal-desc, .ak-extras-title {
        text-align: left;
    }

    .modal.fade {
        z-index: 9999999;
    }

    .ak-modal-head div {
        margin-top: 0;
    }

    .modal {
        top: 0;
    }

    .ak-contact-grid {
        gap: 20px;
    }

    .ak-contacts-info {
        font-size: 24px;
    }

    .ak-contact-map {
        height: 380px;
    }

    .ak-close-modal-btn .btn-close {
        opacity: 2;
    }

    .ak-close-modal-btn .btn-close:focus {
        box-shadow: none;
    }

    .ak-mobile-menu-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .ak-mobile-menu-row {
        width: 100%;
        border: 0;
        background: transparent;
        padding: 14px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-weight: 700;
        color: var(--ak-text-black);
        text-align: left;
    }

    .ak-mobile-menu-row[aria-expanded="true"] i {
        transform: rotate(180deg);
    }

    .ak-mobile-submenu {
        padding: 0 0 10px 0;
    }

    .ak-mobile-submenu-link {
        display: block;
        padding: 7px 0;
        color: var(--ak-muted);
        text-decoration: none;
        font-size: 14px;
    }

    .ak-mobile-menu-row i {
        transition: transform 0.2s ease;
    }

    .ak-mobile-menu-row a {
        color: var(--ak-muted);
    }

    .ak-modal-lang {
        font-weight: 600;
        font-size: 16px;
    }

    .ak-lang-clean {
        color: var(--ak-text-black);
        font-weight: 500;
    }

    .ak-close-modal-btn {
        width: auto;
    }

    .ak-close-modal-btn div .btn-close:focus {
        box-shadow: var(--ak-text-black);
    }

    .ak-hero-slide {
        height: 460px;
        min-height: 0;
    }

    .ak-desk-item-left {
        justify-content: space-between;
        width: 100%;
    }

    .checkout_summary .ak-panel:first-child {
        margin-top: 3rem !important;
        padding: 1.5rem !important;
    }

    .ak-cart-plus-desc {
        padding-right: 10px;
    }

    .ak-part-right-qty {
        width: auto;
    }

    .ak-cart-content-mobile {
        flex-direction: row;
        align-items: center !important;
        width: 100%;
        justify-content: space-evenly;
    }

    .ak-cart-img {
        width: 200px;
        max-width: 100px;
    }

    .ak-cart-line {
        padding: 28px 30px;
    }

    .ak-header-mobile {
        padding: 0 1rem;
    }

    .ak-btn-outline-brand {
        width: 100%;
    }

    .ak-btn-outline-brand:hover {
        background: transparent;
    }

    .ak-btn-outline-brand .ak-price {
        color: var(--ak-orange);
        font-weight: 600 !important;
        font-size: 16px !important;
    }

    .ak-price-row {
        padding-top: 20px;
    }

    header .ak-cart-bottom-wrap {
        position: fixed;
        width: 100%;
        bottom: 34px;
        z-index: -10;
        display: block;
        left: 0;
        right: 0;
    }

    .ak-cart-bottom-wrap .ak-cart-pill {
        background: var(--ak-orange);
        height: 60px;
        min-height: 60px;
        min-width: 343px;
        width: 343px;
        position: relative;
        margin: auto;
        background-color: #fe5000;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        border-radius: 30px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        font-size: 18px;
        font-weight: 400;
    }

    .ak-mobile-cart-link {
        display: flex;
        justify-content: center;
        width: 100%;
        align-items: center;
    }

    .ak-mobile-cart-link .bi-bag-fill {
        margin-right: 10px;
    }

    .ak-categories-sticky {
        position: fixed;
        top: 88px;
        z-index: 18;
        height: 66px;
    }

    .ak-section-title {
        padding: 50px 0 10px;
    }

    .ak-checkout-grid-2 {
        grid-template-columns: 1fr;
    }

    .ak-checkout-grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .modal-dialog {
        width: 100%;
        max-width: 100%;
    }

    .ak-modal .modal-content {
        height: 100%;
        overflow: hidden;
        position: fixed;
        max-height: 100%;
        border-radius: 0;
    }

    .ak-modal-head .ak-modal-head-mobile {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center !important;
    }

    .ak-modal-product-image {
        width: 300px;
        height: 300px;
        border-radius: 50%;
        border: 0;
    }

    .ak-mobile-modal-description {
        width: 100%;
        padding-top: 50px;
    }

    .ak-mobile-modal-description .d-block.d-lg-none {
        height: 100%;
    }

    .ak-modal-title {
        font-size: 22px;
    }

    .ak-modal-desc {
        font-size: 14px;
        max-width: 605px;
    }

    .ak-extras-title {
        font-size: 18px;
    }

    .ak-btn-brand {
        flex: 1;
        min-width: 106px;
    }

    .ak-modal-total {
        font-size: 16px;
        font-weight: 600;
        color: var(--ak-text-white);
    }

    .ak-mobile-qty {
        width: 100%;
    }

    .ak-toggled-menu {
        min-height: 100vh !important;
        min-height: -webkit-fill-available !important;
        background: #fff;
        padding: 35px 25px;
    }

    .ak-topbar {
        z-index: 9999;
        overflow: visible !important;
    }

    .ak-page-title {
        font-weight: 600;
    }

    .ak-cart-content {
        display: flex;
        /*flex-direction: column;*/
        align-items: center;
        flex-grow: 0 !important;
    }

    .ak-cart-content-mobile {
        gap: 30px;
        justify-content: space-between;
    }

    .ak-img-mobile {
        width: 145px;
        position: relative;
    }

    .ak-cart-right {
        width: 100%;
    }

    .ak-desc-items {
        width: 100%;
        align-items: flex-start;
        justify-content: space-between;
        height: 63px;
        flex-wrap: wrap;
        padding-right: 10px;
    }

    .ak-extra-desc-container {
        flex-grow: 1;
        width: 320px;
        padding-bottom: 30px;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .ak-desc-items:has(.ak-extra-desc-container) {
        height: auto;
        flex-direction: row;
        width: 100%;
        gap: 10px;
    }

    .ak-extra-content-cart {
        width: 320px;
    }

    .ak-mobile-cart-content {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        width: 100%;
    }

    .ak-remover-btn {
        align-items: flex-start;
        padding-left: 0;
    }

    .ak-cart-mobile-content {
        flex-direction: column;
        width: 100%;
    }

    .ak-cart-mobile-qty {
        width: 100%;
        justify-content: space-between;
    }

    .ak-mobile-cart-right {
        flex-direction: column;
    }

}

@media (max-width: 767px) {

    .ak-contact-map {
        height: 360px;
    }

    .ak-page-title {
        font-size: 2rem;
    }

    .ak-section-title {
        font-size: 1.5rem;
    }

    .ak-modal-total {
        font-size: 1.7rem;
    }

    .ak-product-image {
        height: 240px;
    }

}

@media (max-width: 575px) {

    .ak-footer-bottom div img {
        max-height: 28px;
    }

    .ak-summary-img .ak-badge-new-icon {
        top: 10px;
    }

    .ak-modal-sum {
        min-width: 90px;
    }

    .ak-cart-pill {
        font-size: 18px;
    }

    .ak-logo {
        height: 56px;
        max-width: 180px;
        object-fit: contain;
    }

    .ak-about-overlay .d-flex {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .ak-contact-map {
        height: 300px;
    }

    .ak-summary-img {
        padding: 10px 0;
    }

    .ak-cart-items {
        flex-wrap: wrap;
        gap: 10px !important;
    }

    .ak-summary-checkout {
        padding-top: 10px;
    }

    .ak-cart-summary {
        border-radius: 0;
    }

    .ak-mobile-cart-content {
        gap: 10px;
    }

    .ak-modal-product-image {
        width: 250px;
        height: 250px;
    }

    #modal_extras_container {
        padding-right: 5px;
    }

    .ak-container .row > div {
        padding: 5px;
    }

    .ak-product-image-wrap {
        padding: 10px 10px 0;
    }

    .ak-product-image-wrap .ak-badge-new-icon {
        top: 10px;
        left: 10px;
        width: 28px;
        height: 28px;
    }

    .ak-product-body {
        padding: 10px;
    }

    .ak-footer .container-xl .row {
        padding-bottom: 0 !important;
    }

    .ak-footer-bottom {
        margin-top: 0;
    }

    .ak-product-title {
        font-size: 16px;
        font-weight: 600;
    }

    .ak-product-image {
        height: auto;
    }

    .ak-hero-slide {
        height: 340px;
        min-height: 0;
    }

    .modal-dialog {
        margin: 0;
        min-height: 100%;
    }

    .ak-checkout-grid-4 {
        grid-template-columns: 1fr;
    }

    .ak-topbar {
        height: 90px;
    }

}

@media (max-width: 530px) {

    .ak-thank-you-container .ak-panel {
        padding: 20px 0 !important;
    }

    .ak-thank-you-container .ak-panel p {
        font-size: 16px;
    }

    .ak-thank-you-container .ak-panel .ak-page-title {
        font-size: 1.5rem;
    }

    .ak-modal-sum {
        min-width: 70px;
    }

    .ak-extra-content-cart {
        width: 210px;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .ak-cart-plus-desc {
        padding-right: 0;
    }

    .ak-extra-desc-container {
        width: 190px;
    }

    .ak-mobile-cart-right-extra {
        flex-wrap: wrap;
    }

    .ak-cart-mobile-qty-extra {
        justify-content: space-between !important;
    }

}

@media (max-width: 400px) {

    .ak-footer-list, .ak-footer-title {
        width: 170px;
    }

    .ak-footer .container-xl .row:not(.ak-footer-bottom) {
        width: 100%;
    }

    .ak-footer-bottom div {
        padding-left: 15px;
        padding-right: 4px;
    }

    .ak-footer-bottom div img {
        max-height: 25px;
    }

}

@media (min-width: 350px) and (max-height: 600px) {

    .ak-about-hero {
        overflow-y: scroll;
    }

    .ak-about-us {
        max-height: 100%;
    }
}

@media (max-width: 600px) and (max-height: 500px) {

    .ak-about-us {
        max-height: 100%;
        height: 100%;
    }

    .ak-about-hero {
        overflow-y: scroll;
    }
}

/* media */
