:root {
    --dark-blue: #06152b;
    --text-muted: #b8b8b8;
    --main-yellew: #FFC20E;
    --add-to-basket-height: 46px;
    --sweep-background-effect: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .28),
            transparent);
    --product-detail-page-max-width: 1200px;
}

a {
    text-decoration: none;
    color: black;
}

body>main {
    align-items: center;
    background: #dedede;
    padding: 10px 30px 0 30px;
    padding-bottom: 50px;
}

.white-box {
    border: 1px solid #343434;
    background-color: white;
    border-radius: 15px;
    padding: 30px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: white;
    color: #fff;
}

.footer {
    background: linear-gradient(90deg, #07142b 0%, #09224e 100%);
    padding: 50px 35px 40px;
}

.footer-logo {
    margin-bottom: 50px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Logo */
.logo img {
    width: 220px;
    display: block;
}

/* Titles */
.footer h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.footer h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 60px;
    height: 4px;
    background: #f2c200;
    border-radius: 10px;
}

/* Links */
.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer ul li a:hover {
    color: #fff;
    transform: translate(-200px);
}

/* Contact */
.contact p {
    margin-bottom: 14px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 2;
}

.important-contanct-info {
    margin-top: 35px;
}

.important-contanct-info p {
    line-height: 0;
}

.contact-info {
    margin: 0;
}

.contact strong {
    color: #fff;
}

/* Social */
.social {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: #163671 1px solid;
    background: #08152c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: bold;
}

.social a {
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    font-weight: 600;
}

/* Payment buttons */
.payments {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.payment-box img {
    width: 200px;
}

.payment-box {
    background: #fff;
    flex: 1;
    border-radius: 10px;
    padding: 10px 22px;
    font-weight: bold;
    text-align: center;
    font-size: 18px;
    color: black;
}

/* Visit buttons */
.visit-buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.visit-buttons img {
    width: 200px;
}

.visit-buttons a {
    border: #10284f solid 2px;
    background: #09162d;
    color: #fff;
    text-decoration: none;
    padding: 16px 22px;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    transition: 0.3s;
    font-size: 18px;
    flex: 1;
}


.visit-buttons a:hover {
    background: #10284f;
}

/* Copyright */
.copyright {
    margin-top: 50px;
    color: #c5c5c5;
    font-size: 20px;
}


.topbar {
    background: #031326;
    margin: 0;
    padding: 12px 28px;
}

.topbar-container {
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    row-gap: 30px;
    flex-wrap: wrap;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    column-gap: 40px;
    row-gap: 10px;
    flex-wrap: wrap;
}

.top-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}

.icon {
    width: 20px;
    height: 20px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    line-height: 1;
    flex-shrink: 0;
}

.icon.plus::before {
    content: "+";
    font-size: 14px;
    transform: translateY(0);
}

.icon.close {
    border: none;
    font-size: 18px;
}

.icon.close::before {
    content: "✕";
}

.icon.headset {
    border: none;
    font-size: 18px;
}

.icon.headset::before {
    content: "◔";
}

.contact {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
}


.header {
    background: var(--main-yellew);
    padding: 20px 30px;
}

.header-container {
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

/* SEARCH */
.search-wrapper {
    flex: 1;
    position: relative;
    max-width: 520px;
}

.search-box {
    background: #ffffff;
    border-radius: 18px;
    padding: 4px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.search-icon {
    width: 52px;
    text-align: center;
    color: rgb(54, 54, 54);
    font-size: 30px;
    flex-shrink: 0;
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    height: 42px;
    font-size: 15px;
    color: #1a1a1a;
}

.search-box input::placeholder {
    color: #8a8f99;
}

.search-btn {
    background: #f4be07;
    border: none;
    color: #000;
    font-size: 15px;
    font-weight: 700;
    padding: 11px 31px;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s;
}

.search-btn:hover {
    border-radius: 15px;
    background: #e2af05;
}



/* ACTION BUTTONS */
.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hidden-btn {
    display: none;
}

.action-btn-bg {
    position: absolute;
    inset: 0;
    background: var(--dark-blue);
    border-radius: 16px;
}

.action-btn-bg:hover {
    border-radius: 15px;
    background: #102c57;
    transition: 0.3s;
    transform: scale(1.05);
}

.action-btn {
    color: #fff;
    text-decoration: none;
    border-radius: 18px;
    min-width: 74px;
    height: 48px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
}

.action-text {
    pointer-events: none;
    display: flex;
    flex-direction: column;
    line-height: 1.05;
    font-size: 12px;
    font-weight: 700;
    z-index: 1;
}

@media(max-width:400px) {
    .search-box input {
        font-size: 11px;
    }
}

@media(max-width:600px) {
    .logo img {
        width: 120px;
    }

    .search-btn {
        padding: 10px 18px;
    }

    .action-btn {
        min-width: 64px;
    }

    .action-text {
        font-size: 11px;
    }
}

.follow-message {
    font-size: large !important;
    color: white !important;
}

.account-btn {
    background: var(--dark-blue);
    color: #fff;
    text-decoration: none;
    border-radius: 18px;
    height: 48px;
    padding: 0 14px 0 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 88px;
}

.account-icon {
    pointer-events: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.account-icon::before {
    content: "";
    position: absolute;
    top: 1px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    border: 2px solid #fff;
    border-radius: 50%;
}

.account-icon::after {
    content: "";
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 21px;
    height: 8px;
    border: 2px solid #fff;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border-bottom: none;
}

.account-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    font-size: 12px;
    font-weight: 700;
    z-index: 1;
    pointer-events: none;
}

.cart-btn {
    flex-direction: column;
}

.icon-cart {
    pointer-events: none;
    position: relative;
    width: 30px;
    top: -8;
    height: 30px;
    flex-shrink: 0;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    box-sizing: border-box;
    width: 7px;
    height: 10px;
    margin-top: 0px;
    margin-left: -20px;
    margin-right: 9px;
    transition: border-color 0.25s ease;
}

.icon-cart::before {
    content: '';
    position: absolute;
    top: 1px;
    left: 5px;
    width: 24px;
    height: 10px;
    border-top: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    border-left: 2px solid currentColor;
    border-right: 2px solid currentColor;
    clip-path: polygon(0% 0%, 100% 0%, 80% 100%, 0% 100%);
    background: linear-gradient(113deg, transparent 76%, currentColor 80%);
    transition: border-color 0.25s ease;
}

/* Cart Wheels */
.icon-cart::after {
    content: '';
    position: absolute;
    top: 16px;
    left: 7px;
    width: 3px;
    height: 3px;
    background-color: currentColor;
    border-radius: 50%;
    box-shadow: 16px 0 0 currentColor;
    transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.follow-us-header {
    margin-top: 30px;
    margin-bottom: 0px;
}

/* breadcrumbs */
.breadcrumb_start {
    color: black;
}

.navbar {
    background: #efefef;
    padding-left: 40px;
    border-bottom: 2px dotted var(--main-yellew);
}

.navbar-container {
    max-width: 1400px;
    margin: 0;
    display: flex;
    align-items: center;
    height: 42px;
}

.navbar-container ul {
    display: flex;
    flex-direction: row;
}

.navbar-mega-menu ul {
    column-gap: 30px;
}

.navbar-mega-menu li {
    word-break: break-all;
}

.navbar-mega-menu {}

.navbar-container div {
    display: flex;
    flex-direction: column;
}

.navbar-container a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #1d2430;
    font-size: 15px;
    font-weight: 700;
    padding: 12px 0 8px;
}

.navbar-container {
    display: flex;
    align-items: center;
    gap: 48px;
}

/* NAV LINKS */
.navbar-container a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #1d2430;
    font-size: 15px;
    font-weight: 700;
    padding: 12px 0 8px;
}

.navbar-mega-menu a:hover::after {
    width: 100%;
    transition: 0.3s;
}


.navbar-mega-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 3px;
    background: #f6bf08;
    border-radius: 10px;
}

.navbar-container a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: #f6bf08;
    border-radius: 10px;
}


.category-btn a {
    text-decoration: none;
}

/* CATEGORY BUTTON */
.category-btn {
    background: var(--main-yellew);
    color: #000;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding-top: 6px;
    height: 34px;
    border-radius: 18px;
    font-size: 15px;
    font-weight: 700;
    flex-shrink: 0;
}

.category-btn:hover {

    background: #f6bf08;
}

.category-btn-dropdown {
    visibility: hidden;
    opacity: 0;
}

.category-btn:hover div {
    visibility: visible;
    opacity: 1;
    transition: 0.2s;
}

.category-btn-dropdown a {
    text-decoration: none;
    color: black;
    height: 100%;
    width: 100%;
}

.category-btn-dropdown ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    z-index: 2;
    border-bottom-left-radius: 10px;
    background: #f6bf08;
}

.category-btn-dropdown li {
    position: relative;
    display: inline;
    display: flex;
    align-items: center;
    padding: 2px 20px;
    width: 220px;
    color: #1c2330;
    text-decoration: none;

    font-size: 15px;
    font-weight: 700;

    transition: 0.25s;
}

.category-btn-dropdown li>ul {
    visibility: hidden;
    left: 100%;
    top: 0;
    position: absolute;
    display: none;
}

.category-btn-dropdown li:hover>ul {
    visibility: visible;
    display: block;
    transition: 1;
}

.category-btn-dropdown li:hover {
    background: #fac928;
    color: #000;
    border-bottom-left-radius: 10px;
}


.category-btn-dropdown li:hover::before {
    width: 8px;
    height: 8px;
}

.category-btn:hover {
    background: #f6bf08;
}

.category-btn i {
    font-size: 15px;
}

.category-btn .arrow {
    font-size: 13px;
    margin-left: 2px;
}


.category-section {
    max-width: 1100px;
}

.category-title {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 26px;
}

.category-layout {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    flex-wrap: wrap;
}

/* LEFT MENU */
.category-menu {
    width: 320px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.category-menu h3 {
    color: #000;
}

.category-item a {
    text-decoration: none;
    color: black;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border-radius: 14px;
    text-decoration: none;
    color: #1c2330;
    font-size: 18px;
    font-weight: 700;
    transition: 0.25s;
    border: rgb(218, 218, 218) solid 1px;
}

.category-item i {
    width: 18px;
    text-align: center;
    font-size: 18px;
}

.category-item:hover {
    background: #ececec;
}

/* ACTIVE ITEM */
.category-item.active {
    background: #f5f1df;
    border: 1px solid #e5c558;
}

.category-menu a {
    pointer-events: none;
}

/* RIGHT BOX */

.subcategory-box span {
    color: #000;
}

.category-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin-bottom: 50px;
}

div.subcategory-box {
    display: none;
    width: 290px;
    padding: 12px 16px;
    margin-top: 30px;
    background: #efefef;
    border: 1px solid #d8d8d8;
    border-radius: 14px;
}

.subcategory-box.active {
    display: block;
}

.subcategory-container a {
    position: relative;

    display: block;

    padding: 4px 0 4px 16px;

    color: #1c2330;
    text-decoration: none;

    font-size: 15px;
    font-weight: 700;

    border-bottom: 1px solid #dcdcdc;
}

.subcategory-container a:last-child {
    border-bottom: none;
}

.subcategory-container a::before {
    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 6px;
    height: 6px;

    background: #f2bc05;
    border-radius: 50%;

    transform: translateY(-50%);
}

.subcategory-container {
    margin-left: 20px;
}

.subcategory-container a:hover {
    color: #000;
}

.subcategory-container a {
    list-style: none;
}

.subcategory-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    border-bottom: 1px solid #dcdcdc;
}

.subcategory-list li:last-child {
    border-bottom: none;
}

.dot {
    width: 7px;
    height: 7px;
    background: #f1bc07;
    border-radius: 50%;
    flex-shrink: 0;
}

.subcategory-list a {
    color: #1c2330;
    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
    transition: 0.25s;
}

.subcategory-list a:hover {
    color: #000;
}

/* Hero */
.hero {
    background: #f3f4f6;
    padding: 80px 40px;
    width: 100%;
}

.hero-content {
    margin-top: 30px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-text {
    color: #172033;
    flex: 1;
    display: flex;
    flex-direction: column;
    max-width: 520px;
}

.hero-text .btn {
    width: 50%;
}

.hero-text h1 {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 8px;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.4;
    color: #5b6678;
    margin-bottom: 20px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 24px;

    border-radius: 14px;
    text-decoration: none;

    font-size: 16px;
    font-weight: 700;

    transition: .25s;
}

.btn-shine-sweep {
    position: relative;
    overflow: hidden;

    transition:
        transform .1s,
        box-shadow .1s;

}

.btn-shine-sweep:hover {
    transform: translateY(-2px);

}

.btn-shine-sweep::before {
    content: "";

    position: absolute;
    top: 0;
    left: -150%;

    width: 70%;
    height: 100%;

    background: var(--sweep-background-effect);
    transition: .7s;
}

.btn-shine-sweep:hover::before {
    left: 150%;
}

.btn-primary {
    background: #f6bf08;
    color: #000;
    width: 100%;
    margin-bottom: 6px;
}

.btn-secondary {
    background: #fff;
    color: #172033;
    border: 2px solid #949494;
    background-color: rgb(226, 226, 226);
    width: 100%;
}

.hero-content .btn {
    padding: 0;
    width: 100% !important;
}

.hero-content .btn a {
    padding: 20px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16/10;

    background: #ffffff;

    border: 2px dashed #cfd5df;
    border-radius: 20px;
}

/* Categor Card */
.category-card {
    background: linear-gradient(90deg,
            #08152b 0%,
            #0d2347 100%);

    border: 3px solid #0d8dff;
    border-radius: 18px;

    padding: 18px 14px 12px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    text-decoration: none;
}

.category-card h3 {
    color: #fff;

    text-align: center;

    font-size: 16px;
    font-weight: bold;

    margin-top: 18px;

    letter-spacing: .5px;
}

.category-card-btn a {
    width: 100%;
}

.category-card-btn {
    background: #f6bf08;
    color: #000;
    cursor: pointer;

    text-align: center;

    margin: 12px;

    border-radius: 6px;

    font-size: 13px;
    font-weight: 800;

    transition: .25s;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

/* RESPONSIVE */
@media(max-width:768px) {}

@media (max-width: 1200px) {
    .footer-container {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .topbar-container {
        row-gap: 16px;
    }


    .topbar-right {
        row-gap: 8px;
    }

    .topbar {
        padding: 8px 16px;
    }

    .footer {
        padding: 20px;
    }

    .header-container {
        flex-wrap: wrap;
    }

    .search-wrapper {
        order: 3;
        width: 100%;
        max-width: 100%;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .navbar {
        padding: 15px;
    }

    .navbar-container {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        gap: 18px;
    }

    .navbar-mega-menu {
        column-gap: 20px;
        flex-direction: column;
        display: flex;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 20px;
    }

    .productMiniature {
        display: none;
    }

}

@media (max-width: 768px) {
    .footer h3 {
        font-size: 24px;
    }

    .footer ul li a,
    .contact p,
    strong,
    .social a {
        font-size: 18px;
    }

    .logo img {
        width: 180px;
    }

    .footer-container {
        gap: 10px;
    }

    .category-layout {
        flex-direction: column;
    }

    .category-menu,
    .subcategory-box {
        width: 100%;
    }
}

@media (max-width: 500px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}


.product-cards-container {
    width: 100%;
    border-radius: 14px;

    padding: 12px;

    display: flex;
    flex-direction: column;
}

.product-cards-container h2 {
    color: black;
}


.product-tag {
    align-self: flex-start;

    background: #f6bf08;

    color: #000;

    padding: 6px 14px;

    border-radius: 20px;

    font-size: 12px;
    font-weight: 700;

    margin-bottom: 18px;
}

.product-image-placeholder {
    height: 90px;

    border: 2px dashed #d2d7de;
    border-radius: 12px;

    background: #fff;

    margin-bottom: 18px;
}

.product-title {
    font-size: 14px;
    font-weight: 700;

    color: #1b2433;

    line-height: 1.4;

    margin-bottom: 8px;
}

.product-cards-container h2>a {
    color: black;
    text-decoration: none;
    font-size: 16px;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-subtitle {
    font-size: 13px;
    color: #6b7485;

    margin-bottom: 12px;
}

/* Price Tag */
.product-cards-container .product-price span {
    font-size: 14px;
    font-weight: bold;
    color: rgb(64, 64, 64);
}


.product-cards-container .product-price .without_vat *,
.product-cards-container .product-price .without_vat {
    display: none;
}

.product-cards-container .product-price,
.product-cards-container .product-price .without_vat {
    font-size: 12px;
    color: rgb(26, 26, 26);
    font-weight: normal;
    line-height: 1;
    margin-bottom: 4px;
}

.product-cards-container ul.produkt_list {
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)) !important;
    display: grid;
}

.products-cards-title h2 {
    color: black;
    margin-top: 50px;
}

.product-price span {
    font-size: 13px;
    font-weight: 500;

    color: #6b7485;
}

.product-cards-container .buy_buttons>div {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-cards-container .buy_buttons a {
    width: 100%;
    height: 100%;
    display: flex;
    color: black;
    text-decoration: none;
    align-items: center;
    justify-content: center;
}

.single-product-container .fav-div{
    position: absolute;
    z-index: 10;
}


.buy_buttons::before {
    content: "";

    position: absolute;
    top: 0;
    left: -150%;

    width: 70%;
    height: 100%;

    background: var(--sweep-background-effect);

    transition: .7s;
}

.buy_buttons:hover::before {
    left: 150%;
}

.product-cards-container .buy_buttons {
    position: relative;
    overflow: hidden;

    transition:
        transform .1s,
        box-shadow .1s;

    cursor: pointer;
    display: flex;
    margin-top: auto;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    height: 20px;

    background: #f6bf08;

    color: #000;
    z-index: 20;

    text-decoration: none;

    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;

    font-size: 14px;
    font-weight: 700;

    transition: .25s;
}

.product-button:hover {
    background: #ffca1f;
}

.image-container a,
.pki.catalog_image_container,
.slick-list,
.slick-track,
.pki.catalog_image_container_top {
    width: 100% !important;
    max-width: 100% !important;
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    z-index: 999;
}
.single-product-container .image-container a,
.single-product-container .pki.catalog_image_container,
.single-product-container .slick-list,
.single-product-container .slick-track,
.single-product-container .pki.catalog_image_container_top {
    z-index: 2 !important;
}

.pki.catalog_image_container_top {}

.product-cards-container li.produkt_list::marker {
    display: none;
    visibility: hidden;
    color: transparent;
}

.product-cards-container li.produkt_list {
    margin: 15px;
    background-color: white;
    border: 1px solid #343434;
    text-decoration: none;
    border-radius: 10px;
}

.product-cards-container ul.pagination {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30px, 1fr));
}

.product-cards-container .product_katalog_img {
    height: 150px;
}

.single-product-container {
    position: relative;
    cursor: pointer;
}

.product-cards-container .info-container h2 a {
    font-size: 14px;
}

.product-cards-container .info-container h2 {
    max-height: 4vh;
    margin-bottom: 5px;
}

.info-container {
    position: absolute;
    opacity: 0;
    background-color: rgba(255, 255, 255, 0.324);
    color: black;
    z-index: 999;
    width: 100%;
    bottom: 0px;
    pointer-events: none;
    transition:
        transform 0.7s ease-in-out,
        opacity 2s;
}

.single-product:hover .info-container {
    opacity: 1;
    transform: translateY(-20px);
    transition:
        transform 0.7s ease-in-out,
        opacity 2s;
}

/* Why Us */
.why-us {
    grid-template-columns: minmax(400px, 2fr) repeat(auto-fit, minmax(180px, 1fr));
    display: grid;
    color: #434343;
    justify-content: space-between;
    gap: 40px;
    padding: 60px 60px;
}

@media(max-width:800px) {
    .why-us {
        display: flex;
        flex-direction: column;
    }
}

.why-us-left {
    max-width: 320px;
}

.why-us-left h2 {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.25;

    color: #172033;

    margin-bottom: 20px;
}

.why-us-left {
    font-size: 15px;
    line-height: 1.8;

    color: #6b7485;

    margin-bottom: 20px;
}

.why-us-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 8px 12px;

    background: #f6bf08;
    color: #000;

    border-radius: 999px;

    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
}

.feature-icon {
    width: 44px;
    height: 44px;

    border-radius: 50%;

    background: #f4e7b6;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 14px;
}

.feature-icon i {
    font-size: 22px;
    color: #172033;
}

.why-us h3 {
    font-size: 24px;
    font-weight: 700;

    color: #172033;

    margin-bottom: 10px;
}

#results-container::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

#results-container {
    /* Firefox */
    scrollbar-width: none;
    /* IE and Edge */
    -ms-overflow-style: none;

    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    color: black;
    background-color: white;
    position: absolute;
    width: 100%;
    display: flex;
    flex-direction: column;
    visibility: hidden;
    background: #ffffff;
    border: solid #003b7a5f;
    border-width: 2px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    max-height: 300px;
    overflow-y: auto;
    box-sizing: border-box;
    padding: 0px;
    margin-top: 8px;
}

#results-container .autocomplete-result-text {
    width: 100%;
    height: 100%;
    padding-left: 25%;
    position: absolute;
    top: 0;
    left: 0;
}

#results-container .autocomplete-result-itemnumber {
    display: none;
    visibility: hidden;
}

#results-container .autocomplete-result-headline {
    line-clamp: 1;
    display: -webkit-box;
    font-weight: 0;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#results-container .autocomplete-result-description {
    line-clamp: 2;
    display: -webkit-box;
    font-weight: 0;
    width: 100%;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    overflow: hidden;
}

#results-container .autocomplete-result-description>b {
    font-weight: 100;
}

#results-container .autocomplete-result-price {
    margin-top: 4px;
    font-size: 14px;
    font-weight: bold;
    color: rgb(55, 55, 0);
}

#results-container .autocomplete-result-read-more {
    position: absolute;
    top: 0;
    left: 0;
    margin-bottom: 20px;
    width: 100%;
    height: 100%;
}

#results-container .autocomplete-result-read-more a {
    width: 100%;
    height: 100%;
    z-index: 22;
    color: transparent;
    display: block;
}

#results-container .autocomplete-result-container:hover {
    background-color: #33a0ff49;
}

#results-container .autocomplete-result-container {
    border-bottom: 2px solid #003b7a5f;
    position: relative;
    min-height: 100px;
    height: 100px;
    display: flex;
    flex-direction: row;
    cursor: pointer;
}

#results-container .autocomplete-result-headline {
    margin-bottom: 4px;
    font-weight: bold;
}

#results-container .autocomplete-result-image {
    background-color: white;
    height: 100%;
    width: 20%;
}

#results-container .autocomplete-result-image img {
    width: 100%;
    height: 100%;
}




/* Procuct Page */
.DM_ProductTitle {
    max-width: var(--product-detail-page-max-width);
    color: black;
    margin: 14px auto 8px auto;
}

.DM_ProductTitle p {
    color: #64748b;
    font-size: 14px;
}

.DM_ProductTitle h1 {
    margin-bottom: 7px;
}

.freight_price_info_product_detail:empty,
p.DM_ShortExplain:empty {
    display: none;
    padding: 0;
}

.product_page_header {
    display: grid;
    grid-template-columns: minmax(500px, 1.4fr) minmax(350px, 0.9fr);
    column-gap: 32px;
    row-gap: 32px;
    align-items: start;
    margin-bottom: 50px;
}

.product_page_header .DM_LeftContainer {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    position: sticky;
    padding: 0 30px;
    top: 20;

    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1000px) {
    .product_page_header {
        grid-template-columns: minmax(350px, 1fr);
    }

    .product_page_header .DM_LeftContainer {
        position: static;
    }
}

.DM_ProductShowOff ol,
.DM_ProductShowOff ul {
    margin-left: 24px;
}

.DM_ProductShowOff {
    max-width: var(--product-detail-page-max-width);
    color: black;
    margin: 0 auto;
}

.DM_ProductImage img {
    max-height: calc(100% - 15px);
}

.DM_ProductImage {
    width: 100%;
    object-fit: contain;
}

.DM_LeftContainer,
.DM_ProductInfo {
    box-shadow:
        0 4px 20px rgba(15, 35, 69, .05);
}

.DM_ShortExplain {
    line-height: 1.7 !important;
    color: #475569 !important;
    max-width: 55ch;

    margin-bottom: 30px !important;
}

.DM_ShortExplain b {
    font-size: 20px;
}

.price-grade-warranty {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}

.DM_BuyInfo .add-to-favourites {
    color: #64748b !important;
    font-size: 14px;
}

.DM_BuyInfo .multivariants select.multivariant {
    height: 52px !important;
    border-radius: 12px !important;
    padding: 0 16px !important;
    border: 1px solid #d6d9df !important;
}

.DM_BuyInfo .multivariants select:focus {
    border-color: #f4c000 !important;

    box-shadow: 0 0 0 3px rgba(244, 192, 0, .15) !important;
}

.DM_ProductInfo p {
    color: black;
    line-height: 1.3;
}

.DM_ProductInfo {
    background: #f8f9fb;
    border-radius: 16px;
    padding: 10px 24px 
}


.DM_BuyInfo .p_prices {
    font-size: 52px;
    font-weight: 800;

    color: #172033;

    line-height: 1;
}

.DM_BuyInfo .from_price_caption {
    color: #6b7280;
    font-size: 14px;

    margin-top: 5px;
}

.DM_BuyInfo .product_quantity {
    width: 80px;
    height: var(--add-to-basket-height);
    border: 1px solid #c4c8cc;
    border-radius: 15px 0px 0px 15px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
}

.DM_BuyInfo .addToBasket {
    height: var(--add-to-basket-height);

    padding: 11px 32px 14px 32px;

    border: none;
    border-radius: 0px 15px 15px 0px;

    background: var(--main-yellew);
    margin-left: -8px;
    color: #000;

    font-size: 16px;
    font-weight: 700;

    cursor: pointer;
}

.DM_ProductShowOff h2 {
    margin-top: 40px;
    font-size: 30px;
    font-weight: 800;

    color: #172033;

    margin-bottom: 16px;
}

.DM_ProductShowOff h3 {
    font-size: 28px;
    font-weight: 700;

    color: #172033;

    margin: 40px 0 15px;
}

.DM_ProductShowOff li,
.DM_ProductShowOff p {
    font-size: 18px;
    line-height: 1.8;

    margin-left: 0px;
    color: #4b5563;
}

.DM_ProductShowOff .multivariants {
    margin-bottom: 50px;
    column-gap: 30px;
}

.DM_ProductShowOff .multivariants .row {
    margin-top: 30px;
}


.DM_ProductShowOff td {
    padding: 18px 20px;

    border-bottom: 1px solid #ececec;

    color: #4b5563;
}

.DM_ProductShowOfftd:first-child {
    font-weight: 600;
    color: #172033;
    width: 25%;
}

.DM_ProductShowOff th {
    background: #172033;
    color: #fff;

    text-align: left;

    padding: 14px 18px;

    font-size: 15px;
    font-weight: 700;
}

.DM_KortForklaring {
    margin-bottom: 20px !important;
}

.DM_KortForklaring,
.DM_KortForklaring div,
.DM_KortForklaring p {
    color: black !important;
    line-height: 1.4 !important;
    padding: 0;
    margin: 0;
    font-size: 16px;
}

.DM_ProductShowOff table {
    width: 100%;
    min-width: 400px;
    width: auto;
    border-collapse: collapse;

    background: #fff;

    border-radius: 16px;

    overflow: hidden;

    box-shadow: 0 4px 12px rgba(0, 0, 0, .04);
}

.breadcrumb-bar {
    color: rgb(9, 9, 56);
    font-weight: bold;
}

.breadcrumb-bar .breadcrumbs_links:hover {
    text-decoration: underline;
}


/* =========================
   1. GLOBAL & CONTAINERS
========================= */
.DM_ProductImage {
    width: 100%;
    overflow: hidden;
}

.product-image-container,
.pdi.detail_image_container,
.slick-list {
    width: 100% !important;
    max-width: 100%;
    overflow: hidden;
}

/* =========================
   2. MAIN WRAPPER LAYOUT
========================= */
.product-image-container.thumbnails-left {
    display: flex !important;
    gap: 15px;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    margin-left: 0;
    padding-left: 0;
}

/* Main image box expands to fill remaining space next to thumbnails */
.pdi.detail_image_container.slick-slider {
    height: 100% !important;
    flex: 1;
    max-width: 100%;
    position: relative;
    overflow: hidden;
}

/* =========================
   3. SLICK SLIDER & TRACK FIXES
========================= */
/* Locks track size and stops horizontal shift bugs */
.pdi.detail_image_container .slick-track {
    display: block !important;
    width: 100% !important;
    transform: none !important;
}

/* Stabilizes the active image container frame */
.pdi.detail_image_container_top.slick-slide {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 420px !important;
    display: block !important;
    opacity: 1 !important;
    z-index: 10 !important;
}

/* =========================
   4. IMAGE STYLING & CENTERING
========================= */
.pdi.detail_image_container_top img {
    max-width: 80% !important;
    height: 100% !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
}

/* =========================
   5. THUMBNAILS PANEL
========================= */
.detail_thumbnail_container {
    min-width: 20% !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
}

.detailimg-container>img {
    object-fit: contain !important;
}

.breadcrumbs_links:hover {
    text-decoration: none !important;
}

.breadcrumbs_links a:hover {
    text-decoration: underline;
}


/* Login */
.login-box {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;
}

#profile-dropdown {
    display: none;
    position: absolute;
    background-color: white;
    width: 280px;
    border-radius: 16px;
    box-shadow:
        0 10px 25px rgba(0, 0, 0, .08),
        0 4px 8px rgba(0, 0, 0, .04);
    border: 1px solid #ececec;
    overflow: hidden;
}

#profile-dropdown h1 {
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
}

#profile-dropdown a {
    text-decoration: none;
    color: #333;
    padding: 12px 16px;
    border-radius: 10px;
    font-weight: 500;
    transition: .2s;

    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    z-index: 1000;
}

#profile-dropdown li a:hover {
    background: #f5f7fa;
    color: #0f2345;
    transform: translateX(4px);
}

button.logout-btn {
    width: calc(100% - 16px);
    margin: 8px;
    padding: 12px;
    border: none;
    border-radius: 10px;
    background: #f8f8f8;
    color: #d43d3d;
    font-weight: 600;
    cursor: pointer;
    transition: .2s;
}

.logout-btn:hover {
    background: #ffeaea;
}

#profile-dropdown.active {
    display: block;
}

.login-box form {
    width: 100%;
    max-width: 420px;

    padding: 40px;

    background: #fff;

    border-radius: 20px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .08);
}

.form-group {
    margin-bottom: 20px;
}

.login-box .form-group label {
    display: block;

    margin-bottom: 8px;

    color: #4b5563;

    font-size: 14px;
    font-weight: 600;
}

.login-box .form-group input {
    width: 100%;

    height: 50px;

    padding: 0 16px;

    border: 1px solid #d9dde3;
    border-radius: 10px;

    font-size: 16px;

    transition: .2s;
}

.login-box .form-group input:focus {
    outline: none;

    border-color: #f6bf08;

    box-shadow:
        0 0 0 4px rgba(246, 191, 8, .15);
}

.login-box .renewPassword {
    display: inline-block;

    margin-bottom: 25px;

    color: #172033;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;
}

.login-box .renewPassword:hover {
    text-decoration: underline;
}

.login-box p {
    display: none;
}

#loginbtn {
    width: 100%;

    height: 52px;

    border: none;
    border-radius: 12px;

    background: #f6bf08;

    color: #000;

    font-size: 16px;
    font-weight: 700;

    cursor: pointer;

    transition:
        transform .2s,
        box-shadow .2s;
}

#loginbtn:hover {
    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(246, 191, 8, .35);
}

#resetPWbtn {
    cursor: pointer;
}

.profile-links {
    color: black;
}

.edit-account-data {
    max-width: 900px;
    padding: 40px;

    background: #fff;

    border-radius: 20px;

    box-shadow:
        0 8px 30px rgba(0, 0, 0, .08);
}

.edit-account-data #loginEditUser {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(300px, 1fr));

    gap: 24px;
}

.edit-account-data .form-group:last-of-type {
    margin-top: 30px;
    grid-column: 1/-1;
}

.edit-account-data .form-group:last-of-type input[type='checkbox'] {
    width: 50%;
    height: 30px;
}

.edit-account-data .form-group:last-of-type>div>div>label {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.edit-account-data .form-group label {
    display: block;

    margin-bottom: 8px;

    font-size: 14px;
    font-weight: 600;

    color: #4b5563;
}

.edit-account-data .form-group input {
    width: 100%;

    height: 50px;

    padding: 0 16px;

    border: 1px solid #d9dde3;
    border-radius: 10px;

    font-size: 15px;

    transition: .2s;
}


.edit-account-data .form-group input:focus {
    outline: none;

    border-color: #f6bf08;

    box-shadow:
        0 0 0 4px rgba(246, 191, 8, .15);
}

.edit-account-data button {
    margin-top: 40px;
    grid-column: 1 / -1;
    min-width: 180px;
    height: 52px;

    border: none;
    border-radius: 12px;

    background: #f6bf08;

    font-size: 16px;
    font-weight: 700;

    cursor: pointer;

    transition:
        transform .2s,
        box-shadow .2s;
}

.edit-account-data button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(246, 191, 8, .35);
}

/* Account Menu */
.profile-menu {
    list-style: none;

    padding: 0;
    margin: 0;

    width: 280px;

    background: #fff;

    border-radius: 20px;

    overflow: hidden;

    box-shadow:
        0 2px 8px rgba(0, 0, 0, .04),
        0 12px 30px rgba(0, 0, 0, .06);
}

.profile-menu li {
    border-bottom: 1px solid #edf0f4;
}

.profile-menu li:last-child {
    border-bottom: none;
}

.profile-menu a {
    display: flex;
    align-items: center;

    padding: 14px 20px;


    color: #172033;

    text-decoration: none;

    font-weight: 600;

    transition:
        background .2s,
        color .2s,
        padding-left .2s;
}

.profile-menu a:hover {
    background: #f8f9fb;

    padding-left: 28px;
}

.profile-menu a.active {
    background: #172033;
    color: #fff;

    position: relative;
}

.profile-menu a.active::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 4px;
    height: 100%;

    background: #f6bf08;
}

.profile-page {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    padding-top: 50px;
    row-gap: 50px;
    column-gap: 70px;
    color: black;

}

.basket-notifier-container.hidden {
    display: none !important;
    visibility: hidden !important;
}

.favourite-products-list {
    color: black;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.favourite-products-list>div:last-child {
    min-width: 180px;

}

.favourite-products-list .favourite-products>div>div:last-child>div>a {
    display: flex;
    justify-content: center;
    align-items: center;

    height: 48px;

    background: #f6bf08;

    color: #000;

    font-weight: 700;
    text-decoration: none;

    border-radius: 10px;

    transition: .2s;
}

.favourite-products-list .favourite-products>div:last-child a:hover {
    transform: translateY(-2px);
}

.favourite-products-list .favourite-products {
    gap: 24px;
    width: 100%;
    align-items: center;

    padding: 20px;

    background: #fff;

    border-radius: 16px;

    border: 1px solid #6a6a6a;

    position: relative;

    transition:
        transform .2s,
        box-shadow .2s;
}

.favourite-products-list .image-container {
    width: 120px;
    height: 120px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f8f9fb;

    border-radius: 12px;
}

.favourite-products-list .image-container img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}

.favourite-products-list .headline {
    line-clamp: 2;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 22px;
    font-weight: 700;
    color: #172033;
    margin-top: 0 !important;
}

.favourite-products-list .price {
    font-size: 18px;
    font-weight: 600;
    color: #6b7280;
}


.favourite-products-list .removeFavouriteProduct {
    position: absolute;

    top: 14px;
    right: 14px;

    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #ef4444;

    text-decoration: none;

    font-size: 24px;

    transition: .2s;
}

.favourite-products-list .remove-favourite:hover {
    background: #fee2e2;
}

.favourite-products-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


/* Kurv */
/* ========================
    Cart looks
=========================*/
/* ==========================================================================
   GLOBAL STYLE LAYOUT & STEP CONTROLLERS
   ========================================================================== */
body {
    background-color: #fafbfc;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* Page Separation engine */
body.view-step1 .step2Container,
body.view-step1 .step3Container,
body.view-step1 .step4Container,
body.view-step1 .step5Container,
body.view-step1 .custom-step-indicator {
    display: none !important;
}

body.view-step2 .step1Container {
    display: none !important;
}

/* ==========================================================================
   PAGE 2: SIDE-BY-SIDE GRID (DESKTOP)
   ========================================================================== */
@media (min-width: 992px) {
    body.view-step2 #checkoutForm {
        display: grid;
        grid-template-columns: 1fr 380px;
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        align-items: start;
    }

    /* Wrap page 2 form fields under a single grid stack column area */
    body.view-step2 .step2Container,
    body.view-step2 .step3Container,
    body.view-step2 .step4Container {
        grid-column: 1;
    }

    /* Move totals summary container over to Column 2 with Sticky layout tracking */
    body.view-step2 .step5Container {
        grid-column: 2;
        grid-row: 1 / span 10;
        position: sticky;
        top: 20px;
        z-index: 100;
    }
}

/* ==========================================================================
   VISUAL STYLING: CARDS, INPUTS & COMPONENT CONTAINERS
   ========================================================================== */

/* Modern Rounded White Cards styling matching screenshot design */
.step1Container,
.step2Container,
.step3Container,
.step4Container,
.step5Container,
.custom-step-indicator {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

/* Header Text styling with Orange accents */
#checkoutForm h2.text-center,
#checkoutForm h2 {
    text-align: left !important;
    font-size: 22px;
    font-weight: 600;
    color: #333333;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

/* Transform the order status numeric tags into the stylized orange numbers */
#checkoutForm h2 span._orderStep {
    background: var(--main-yellew) !important;
    color: black !important;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
}

/* Form Input Field Custom Restyling */
#checkoutForm .form-control {
    border: 1px solid #a5a5a5;
    border-radius: 6px;
    padding: 10px 14px;
    height: auto;
    font-size: 14px;
    box-shadow: none;
    transition: border-color 0.2s;
}

#checkoutForm .form-control:focus {
    border-color: #ff8432;
    box-shadow: 0 0 0 2px rgba(255, 132, 50, 0.1);
}

/* ==========================================================================
   CHECKBOX BAR RECONSTRUCTION
   ========================================================================== */
/* Move secondary address checkboxes right beside profile fields layout */
@media (min-width: 768px) {
    .step2Container .row {
        display: flex;
        flex-wrap: wrap;
    }

    .step2Container .col-lg-6 {
        flex: 1;
        min-width: 45%;
    }
}

/* Stylize checkboxes into separate white panel links */
.step2Container .checkbox-container {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 12px;
    transition: all 0.2s ease;
    align-items: center;
}

.step2Container .checkbox-container:hover {
    border-color: #bcbcbc;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.step2Container .checkbox-container input[type="checkbox"] {
    margin-right: 12px;
    width: 16px;
    height: 16px;
    accent-color: #ff8432;
}

.step2Container .checkbox-container label {
    margin: 0;
    font-weight: 500;
    color: #444;
    cursor: pointer;
}

/* ==========================================================================
   BUTTONS & ACTIONS
   ========================================================================== */
.btn-orange-primary {
    background: #ffe229 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 14px 28px !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    width: 100%;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-orange-primary:hover {
    background: #ffe229 !important;
}

/* Stylize the base theme button elements */
#btn-submit-order {
    border: none !important;
    border-radius: 8px !important;
    padding: 14px 24px !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    width: 100%;
    box-shadow: 0 4px 12px rgba(80, 227, 194, 0.2);
}

/* Back Link button styles */
.btn-back-link {
    background: #ffffff;
    border: 1px solid #ff8432;
    color: #ff8432;
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    font-weight: 600;
    width: 100%;
    display: block;
    margin-top: 15px;
    text-decoration: none !important;
}

.btn-back-link:hover {
    background: #fff8f4;
}

/* ==========================================================================
   STEP PROGRESS INDICATOR STYLING
   ========================================================================== */
.custom-step-indicator {
    padding: 20px;
    margin-top: 20px;
}

.step-bar-flex {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.step-bar-item {
    text-align: center;
    flex: 1;
    font-size: 12px;
    color: #aaa;
    font-weight: 500;
}

.step-bar-item.active {
    color: #ff8432;
    font-weight: 600;
}

.step-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #f0f0f0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 6px auto;
    font-size: 11px;
}

.step-bar-item.active .step-circle {
    background: #ffe432;
    color: #fff;
}

/* ==========================================================================
   TRUE 2-COLUMN MAIN CONTENT SPLIT
   ========================================================================== */
.step2Container .margin-container>.row {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 30px !important;
}

/* Base structural containers for left and right blocks */
.step2Container .col-lg-6.mobile-no-padding,
.step2Container .col-lg-6.checkout-boxes-padding {
    flex: 1 !important;
    min-width: 320px !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* ==========================================================================
   LEFT COLUMN: STRICT TOP-TO-BOTTOM FIELDS (ONE PER LINE)
   ========================================================================== */
/* Reset any column layouts on individual fields to force a standard vertical stack */
.step2Container .col-lg-6.mobile-no-padding .form-group,
.step2Container .col-lg-6.mobile-no-padding div[class*="col-"] {
    width: 100% !important;
    float: none !important;
    clear: both !important;
    padding: 0 !important;
    margin: 0 0 15px 0 !important;
    box-sizing: border-box !important;
}

/* Enforce block display for labels and inputs */
.step2Container .col-lg-6.mobile-no-padding label {
    display: block !important;
    width: 100% !important;
    font-weight: 600 !important;
    margin-bottom: 5px !important;
    text-align: left !important;
}

.step2Container .col-lg-6.mobile-no-padding .form-control,
.step2Container .col-lg-6.mobile-no-padding select {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* --- EXCEPTION 1: Email + Button Row --- */
#_getDataFromPreviousBox {
    display: flex !important;
    gap: 10px !important;
    align-items: center !important;
    width: 100% !important;
}

#_getDataFromPreviousBox #e-mail {
    flex: 1 !important;
    margin: 0 !important;
}

#_getDataFromPreviousBox .input-group-btn {
    display: block !important;
    width: auto !important;
    margin: 0 !important;
}

#_getDataFromPreviousBox .input-group-btn button {
    white-space: nowrap !important;
    padding: 10px 15px !important;
}

/* --- EXCEPTION 2: Zip & City Side-by-Side (Compact Row) --- */
.step2Container .form-inline {
    display: flex !important;
    gap: 10px !important;
    width: 100% !important;
}

.step2Container .form-inline #customer_zip {
    width: 100px !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
}

.step2Container .form-inline #city {
    flex: 1 !important;
    margin: 0 !important;
}

/* ==========================================================================
   RIGHT COLUMN: CONTAINED CONDITIONAL EXPANSIONS
   ========================================================================== */
.step2Container .checkbox-container {
    background: #ffffff !important;
    border: 1px solid #eaeaea !important;
    border-radius: 8px !important;
    padding: 15px !important;
    margin-bottom: 12px !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.01) !important;
    box-sizing: border-box !important;
}

/* Ensure the wrapper structure doesn't stretch items out to the right */
.step2Container .checkbox-container>div {
    width: 100% !important;
}

/* Make checkbox label look nice and sit inline with the box indicator */
.step2Container .checkbox-container label {
    display: inline-block !important;
    vertical-align: middle !important;
    margin: 0 !important;
    font-weight: 500 !important;
}

.step2Container .checkbox-container input[type="checkbox"] {
    display: inline-block !important;
    vertical-align: middle !important;
    margin: 0 10px 0 0 !important;
}

/* --- RE-CONTAIN SUB-FORMS THAT OPEN BELOW TICKED BOXES --- */
/* Target any toggle-revealed block area (like company form, alternative address, comment fields) */
.form-group-container,
#company-form-group,
#comment-area,
#alternativ-address-area,
#createUserArea,
#giftCodeArea {
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 15px !important;
    padding-top: 15px !important;
    border-top: 1px solid #f0f0f0 !important;
    box-sizing: border-box !important;
}

/* Force all sub-form elements inside the cards to follow a strict top-to-bottom layout */
.form-group-container .form-group,
.form-group-container div[class*="col-"],
.form-group-container .form-inline {
    display: block !important;
    width: 100% !important;
    float: none !important;
    padding: 0 !important;
    margin: 0 0 12px 0 !important;
}

.form-group-container label {
    display: block !important;
    margin-bottom: 4px !important;
}

.form-group-container textarea {
    width: 100% !important;
    resize: vertical !important;
}

#checkoutView * {
    color: black;
}

table#checkoutView {
    width: 100%;
}

.headlineContainer {
    padding: 20px 0;
}

#checkoutLines .productMiniature>div {
    width: 110px;
    height: 110px;

    border-radius: 12px;
    align-self: center;

    overflow: hidden;
}

#checkoutLines .productMiniature img {
    width: 100%;
    height: 100%;

    max-width: 100%;
    max-height: 100%;
}

#checkoutLines tr td {
    padding: 0px 2vw;
}

.btn-success {
    position: relative;
    overflow: hidden;

    transition:
        transform .1s,
        box-shadow .1s;
    background-color: var(--main-yellew);
}

.btn-success:hover {
    transform: translateY(-2px);
}

.btn-success::before {
    content: "";

    position: absolute;
    top: 0;
    left: -150%;

    width: 70%;
    height: 100%;

    background: var(--sweep-background-effect);

    transition: .7s;
}

.btn-success:hover::before {
    left: 150%;
}

.saveProCommentInput {
    display: none;
}

.btn-primary-action {
    position: relative;
    overflow: hidden;
    font-size: 24px;
    padding: 5px;
    border-radius: 5px;

    transition:
        transform .1s,
        box-shadow .1s;
    background-color: var(--main-yellew);
}

.btn-primary-action:hover {
    transform: translateY(-2px);
}

.btn-primary-action::before {
    content: "";

    position: absolute;
    top: 0;
    left: -150%;

    width: 70%;
    height: 100%;

    background: var(--sweep-background-effect);

    transition: .7s;
}

#checkoutForm div.checkout-boxes-padding {
    padding-top: 0px !important;
    padding-left: 0px !important;
}

.step2Container hr {
    display: none;
}

#btn-submit-order {
    margin-top: 20px;
}

.step5Container tbody {
    margin-bottom: 20px;
}

.step5Container .form-group {
    margin-top: 20px;
}

.step5Container .table {
    border-spacing: 5px;
}

.basketTotalAmountCaption .basketTotalAmountToPay {
    font-weight: bold;
}

.linePriceContainer,
.itemPriceContainer {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f2345;
}

.itemPriceHeader,
.linePriceHeader {
    text-align: center !important;
}

#checkoutLines tr {
    border-top: black;
    border-bottom: black;
}

.step1Container hr {
    display: none;
}

#btn-empty-basket {
    margin-top: 30px;
    cursor: pointer;
}

.step1Container .btn-primary-action {
    border: none;
    border-radius: 20px;
    padding: 10px;
}

.step1Container .headlineContainer {
    -webkit-line-clamp: 3;
    line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}