* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

a:hover {
    color: #07304b;
}


h1,
h2,
h3,
h4,
h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.container {
    margin: 0 auto;
    padding: 0 15px;
}

.container2 {
    margin: 0 auto;
    padding: 0 15px;
    margin-bottom: 50px;
}

.containerhome {
    margin: 0 auto;
    padding: 0 15px;
    margin-bottom: 50px;
    position:relative;
    
}

header {
    background-color: #fff;
    border-bottom: 1px solid #eaeaea;
    padding: 10px 0;
    margin-bottom: 10px;
    position: sticky;
    top: 0;
    z-index: 9998;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-header img {
    max-height: 60px;
}

.navbar-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    position: fixed;
    right: 15px;
    top: 15px;
    z-index: 1001;
    color: #07304b;
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
    list-style-type: none;
}

.nav-links li {
    position: relative;
}

.nav-links li a {
    font-size: 19px;
    font-weight: 500;
    padding: 10px 15px;
}

.nav-links li a {
    transition: color 0.3s ease, background-color 0.3s ease;
}

.nav-links .dropdown-menu,
.nav-links .dropdown-menu2,
.nav-links .dropdown-menu3 {
    position: absolute;
    background-color: #fff;
    top: 100%;
    left: 0;
    padding: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 100;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    max-height: 300px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #888 #f5f5f5;
    will-change: transform, opacity;
    pointer-events: none;
    visibility: hidden;
}

.nav-links li:hover .dropdown-menu,
.nav-links li:hover .dropdown-menu2,
.nav-links li:hover .dropdown-menu3 {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
}

.nav-links .dropdown-menu li {
    padding: 5px 0;
}

.nav-links .dropdown-menu li a {
    padding: 5px 10px;
    white-space: nowrap;
}

.nav-links .dropdown-menu2 {
    display: none;
    position: absolute;
    background-color: #fff;
    top: 100%;
    right: 0;
    width: 220px;
    padding: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 100;
    text-align: center;
}

.nav-links li:hover .dropdown-menu2 {
    display: block;
}

.nav-links .dropdown-menu2 li {
    padding: 5px 0;
}

.nav-links .dropdown-menu2 li a {
    padding: 5px 10px;
    white-space: nowrap;
}

.nav-links .dropdown-menu3 {
    display: none;
    position: absolute;
    background-color: #fff;
    top: 100%;
    right: 0;
    width: 350px;
    padding: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.nav-links li:hover .dropdown-menu3 {
    display: block;
}

.nav-links .dropdown-menu3 li {
    padding: 5px 0;
}

.nav-links .dropdown-menu3 li a {
    padding: 5px 10px;
    white-space: nowrap;
}

.nav-links .dropdown-menu3 {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    display: none;
}

.nav-links li:hover .dropdown-menu3 {
    opacity: 1;
    transform: translateY(0);
}

.nav-links .dropdown-menu,
.nav-links .dropdown-menu2,
.nav-links .dropdown-menu3 {
    display: none;
    position: absolute;
    background-color: #fff;
    top: 100%;
    left: 0;
    padding: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 100;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    visibility: hidden;
    max-height: 300px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #888 #f5f5f5;
}

.nav-links .dropdown-menu::-webkit-scrollbar,
.nav-links .dropdown-menu2::-webkit-scrollbar,
.nav-links .dropdown-menu3::-webkit-scrollbar {
    width: 8px;
}

.nav-links .dropdown-menu::-webkit-scrollbar-thumb,
.nav-links .dropdown-menu2::-webkit-scrollbar-thumb,
.nav-links .dropdown-menu3::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 4px;
}

.nav-links .dropdown-menu::-webkit-scrollbar-track,
.nav-links .dropdown-menu2::-webkit-scrollbar-track,
.nav-links .dropdown-menu3::-webkit-scrollbar-track {
    background-color: #f5f5f5;
}

.nav-links li:hover .dropdown-menu,
.nav-links li:hover .dropdown-menu2,
.nav-links li:hover .dropdown-menu3 {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.navbar-search {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-search input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 20px;
    outline: none;
    transition: border 0.3s ease;
    font-size: 14px;
    min-width: 180px;
}

.navbar-search input:focus {
    border-color: #07304b;
}

.navbar-search button {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: #333;
}

.navbar-custom-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.navbar-custom-menu ul {
    display: flex;
    align-items: center;
    gap: 15px;
    list-style-type: none;
}

.cart a {
    position: relative;
    font-size: 24px;
    color: #333;
}

.cart .cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #07304b;
    color: #fff;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 50%;
}

.user-footer {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}

.user-footer .btn {
    flex: 1;
    margin: 0 5px;
}

.user-menu {
    position: relative;
}

.user-menu a {
    display: flex;
    align-items: center;
}

.user-menu img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.user-menu .dropdown-menu {
    display: none;
    position: absolute;
    background-color: #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    right: 0;
    top: 100%;
    padding: 10px;
    z-index: 100;
    list-style-type: none;
    width: 180px;
}

.user-menu:hover .dropdown-menu {
    display: block;
}

.user-dropdown li {
    padding: 5px 0;
}

.user-dropdown li a {
    padding: 5px 10px;
    display: block;
    color: #333;
}

footer {
    background-color: #f8f8f8;
    color: #333;
    padding: 60px 0 30px;
    font-size: 14px;
    border-top: 1px solid #eee;
    margin-top: 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #07304b;
    font-weight: 600;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-block;
    position: relative;
}

.footer-column ul li a:hover {
    color: #07304b;
}

.footer-column ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #07304b;
    transition: width 0.2s ease;
}

.footer-column ul li a:hover:after {
    width: 100%;
}

.footer-bottom {
    border-top: 1px solid #eee;
    padding-top: 30px;
    margin-top: 40px;
    text-align: center;
    color: #666;
}

.footer-bottom p {
    margin: 10px 0;
}

.footer-bottom a {
    color: #07304b;
    margin: 0 10px;
    font-size: 24px;
    transition: opacity 0.2s ease;
}

.footer-bottom a:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        gap: 40px;
        padding: 0 15px;
    }

    .footer-column {
        flex: 1 1 40%;
        min-width: 150px;
    }

    .footer-column:first-child {
        flex: 1 1 100%;
        text-align: center;
    }

    .footer-column h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .footer-bottom {
        margin-top: 30px;
        padding-top: 20px;
    }

    .hero-section img {
        display: none;
    }

}

@media (max-width: 480px) {
    .footer-column {
        flex: 1 1 100%;
        text-align: center;
    }

    .footer-column ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

}

.content {
    padding: 0px 0;
}

.product-box {
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.col-sm-4 {
    flex: 0 0 calc(20% - 20px);
    max-width: calc(20% - 20px);
    margin: 10px;
    box-sizing: border-box;
}

.afbeeldingproduct {
    position: relative;
    padding-top: 100%;
    width: 100%;
    overflow: hidden;
    margin-bottom: 10px;
}

.afbeeldingproduct img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.box-body.prod-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 8px;
}


.product-name {
    margin: 5px 0;
    font-size: 14px;
    line-height: 1.4;
    height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}


.sale-label {
    position: absolute;
    top: -3px;
    right: 10px;
    background-color: #07304b;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    z-index: 1;
}


.sale-label:empty,
.sale-label:blank,
.sale-label:only-whitespace {
    display: none;
}


.box-footer {
    margin-top: auto;
    padding-top: 5px;
}

.product-price {
    font-size: 16px;
    color: #07304b;
    display: block;
    margin-top: 0;
}


@media (max-width: 1400px) {
    .col-sm-4 {
        flex: 0 0 calc(25% - 20px);
        max-width: calc(25% - 20px);

    }
}

@media (max-width: 1100px) {
    .col-sm-4 {
        flex: 0 0 calc(33.333% - 20px);
        max-width: calc(33.333% - 20px);

    }
}

@media (max-width: 768px) {
    .col-sm-4 {
        flex: 0 0 calc(50% - 20px);
        max-width: calc(50% - 20px);

    }


    .product-box img {
        height: 250px;
        width: 100%;
        object-fit: cover;
    }
}


@media (max-width: 375px) {
    .product-box img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .col-sm-4 {
        flex: 0 0 calc(100% - 20px);
        max-width: calc(100% - 20px);

        margin: 10px;
    }
}


.row {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.row-products-home {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: -10px;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.col-sm-3 {
    flex: 1 0 calc(25% - 15px);
    max-width: calc(25% - 15px);
    box-sizing: border-box;

}

@media (max-width: 768px) {
    .col-sm-4 {
        flex: 1 0 calc(50% - 15px);

        max-width: calc(50% - 15px);
    }
}

@media (max-width: 576px) {
    .col-sm-4 {
        flex: 1 0 100%;

        max-width: 100%;
    }
}

.product-item.visible {
    opacity: 1;
    transform: translateY(0);
}

ul {
    list-style: none;
    padding-left: 0;
}


.banner {
    background-color: #fff;

    text-align: center;
    padding-top: 40px;

    width: 100%;

    position: relative;

    margin: auto;
    top: -20px;
    left: 10px;
}

.main-content {
    width: 100%;
}

.banner-image {
    max-height: 500px;

    width: 500px;
    object-fit: cover;
    margin: 0 auto;

}

.banner-text h1 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-top: 20px;
}

.banner-text p {
    font-size: 18px;
    font-weight: 500;
    color: #666;

}

.banner-text p b {
    font-weight: 600;
    font-size: 20px;
}

.banner-text a.btn {
    background-color: #07304b;

    color: white;
    padding: 10px 20px;
    text-transform: uppercase;
    margin-top: 20px;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.banner-text a.btn:hover {
    background-color: #07304b;

}

.banner-text .new-release {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-top: 20px;
}

.banner-text .cta {
    color: #07304b;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 18px;
}

.banner-text .shipping {
    color: #fff;
    background-color: #07304b;
    font-size: 14px;
    padding: 10px 0px;
    margin-top: 10px;
    overflow: hidden;
    margin-bottom: 15px;

}

.banner-text .shipping span {
    display: inline-block;
    animation: shake 1s infinite;
}

@keyframes shake {
    0% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(0);
    }

    40% {
        transform: translateX(4px);
    }

    60% {
        transform: translateX(-8px);
    }

    80% {
        transform: translateX(4px);
    }
}


.content2 .table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.content2 .table th,
.content2 .table td {
    padding: 15px;
    text-align: right;
    border-bottom: 1px solid #ddd;
}

.content2 .table th {
    background-color: #f8f8f8;
    color: #333;
}

.content2 .table tr:hover {
    background-color: #f1f1f1;

}


.content2 .btn {
    background: #07304b;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    cursor: pointer;
}


.content2 {
    padding: 40px 20px;

}

.content2 h1.page-header {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}


@media (max-width: 768px) {

    .content .table th,
    .content .table td {
        padding: 10px;

    }

    .content .btn {
        padding: 8px 12px;

    }
}

.content2 .input-group input.form-control {
    border: none;

    border-radius: 0;

    padding: 10px;

    font-size: 16px;

    width: 60px;

    text-align: center;

    transition: border 0.3s ease;

}

.content2 .input-group input.form-control:focus {
    outline: none;

    border: 1px solid #07304b;

}

.content2 .input-group input.form-control-discount {
    border: 1px solid black;

    border-radius: 0;

    padding: 10px;

    font-size: 16px;

    width: 250px;

    text-align: center;

    transition: border 0.3s ease;
    border-radius: 10px;

}

.content2 .input-group input.form-control-discount:focus {
    outline: none;

    border: 1px solid #07304b;

}


.animate-fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}





@media (max-width: 768px) {
    .content2 .input-group input.form-control {
        width: 50px;

        font-size: 14px;

    }
}


.productcontent {
    display: flex;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 80%;
    margin: auto;
}

.related-products {
    top: 30px;
    position: relative;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 80%;
    margin: auto;
}


@media (max-width: 1200px) {
    .productcontent {
        width: 90%;
        padding: 25px;
    }
}

@media (max-width: 992px) {
    .productcontent {
        width: 95%;
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .productcontent {
        width: 98%;
        padding: 15px;
        margin: 0 auto;
        flex-direction: column;
    }

    .productcontent .details-container {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .productcontent {
        width: 100%;
        padding: 10px;
        border-radius: 0;
        box-shadow: none;
    }
}

.productcontent .details-container {
    flex: 2;

}

.productcontent img {
    border-radius: 10px;


    max-width: 400px;

    transition: transform 0.3s;

}

.productcontent h1.page-header {
    font-size: 26px;

    color: #333;

    margin-bottom: 10px;

}

.productcontent h3 {
    color: #07304b;

    font-weight: bold;

    margin-bottom: 15px;

}

.productcontent p {
    margin-bottom: 10px;

}

.productcontent .form-inline {
    display: flex;

    justify-content: flex-start;

    align-items: center;

    margin-top: 20px;

}

.productcontent .form-control {
    border: 1px solid #ddd;

    border-radius: 5px;

    padding: 10px;

    width: 196px;

}

.productcontent .input-group {
    display: flex;
    align-items: center;
    border-radius: 5px;
    overflow: hidden;
}

.productcontent .input-group input.form-control {
    border: none;

    border-radius: 0;

    padding: 10px;

    font-size: 16px;

    width: 60px;

    text-align: center;

    transition: border 0.3s ease;

}

.productcontent .input-group input.form-control:focus {
    outline: none;

    border: 1px solid #07304b;

}


.productcontent .input-group-btn {
    background-color: #07304b;

}

.productcontent .input-group-btn button {
    border: none;

    background: none;

    color: white;

    padding: 10px 12px;

    cursor: pointer;

    transition: background-color 0.3s ease;

}

.productcontent .input-group-btn button:hover {
    background-color: #07304b;

}


@media (max-width: 768px) {
    .productcontent .input-group input.form-control {
        width: 50px;

        font-size: 14px;

    }
}

.productcontent #selecteereenmaat {
    color: #07304b;

    display: none;

}

.productcontent .fb-comments {
    margin-top: 30px;

}


@media (max-width: 768px) {
    .productcontent {
        flex-direction: column;

    }

    .productcontent .image-container {
        padding-right: 0;

        margin-bottom: 20px;

    }

    .productcontent .form-inline {
        flex-direction: column;

        align-items: flex-start;

    }

    .productcontent .form-control {
        width: auto;

    }
}

.productcontent .addtocart {

    border: none;


    background-color: #07304b;


    color: white;


    padding: 10px 12px;


    cursor: pointer;


    transition: background-color 0.3s ease;

    margin-left: 30px;

}

.productcontent .edit-product {

    border: none;


    background-color: #07304b;


    color: white;


    padding: 10px 12px;


    cursor: pointer;


    transition: background-color 0.3s ease;


}


.productcontent .addtocart:hover {

    background-color: #07304b;


}

.productcontent .addtowishlist {

    border: none;


    background-color: #07304b;


    color: white;


    padding: 10px 12px;


    cursor: pointer;


    transition: background-color 0.3s ease;

    margin-left: 30px;

}


.productcontent .addtowishlist:hover {

    background-color: #07304b;


}


.category-title {
    text-align: center;
}

.login-box-msg {
    font-weight: bold;
}




.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;

    background-color: #f5f5f5;

}

.login-box {
    background-color: #ffffff;

    border-radius: 10px;

    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);

    padding: 40px;

    width: 400px;

    text-align: center;

    margin: 10px auto;
    margin-top: 80px;
    margin-bottom: 80px;
}


.login-box h1 {
    font-size: 24px;

    color: #333;

    margin-bottom: 20px;

}

.login-box label {
    display: block;

    margin-bottom: 5px;

    text-align: left;

    font-weight: 600;

    color: #333;

}

.login-box input[type="email"],
.login-box input[type="password"] {
    width: 100%;

    padding: 10px;

    border: 1px solid #ddd;

    border-radius: 5px;

    margin-bottom: 20px;

    font-size: 16px;

    transition: border 0.3s ease;

}

.login-box input[type="email"]:focus,
.login-box input[type="password"]:focus {
    border-color: #07304b;

    outline: none;

}

.login-box button {
    background-color: #07304b;

    color: white;

    border: none;

    border-radius: 5px;

    padding: 10px;

    cursor: pointer;

    font-size: 16px;

    transition: background-color 0.3s ease;

}

.login-box button:hover {
    background-color: #07304b;

}

.login-box .footer-links {
    margin-top: 20px;

}

.login-box .footer-links a {
    color: #07304b;

    text-decoration: none;

    transition: color 0.3s ease;

}

.login-box .footer-links a:hover {
    color: #07304b;

}

@media (max-width: 576px) {
    .login-box {
        width: 90%;

    }
}







.profile-image-box {
    background-color: #ffffff;

    border-radius: 10px;

    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);

    padding: 40px;

    width: 400px;

    text-align: center;

    margin: 10px auto;
    margin-top: 120px;
    margin-bottom: 120px;
}


.profile-image-box h1 {
    font-size: 24px;

    color: #333;

    margin-bottom: 20px;

}

.profile-image-box label {
    display: block;

    margin-bottom: 5px;

    text-align: left;

    font-weight: 600;

    color: #333;

}

.profile-image-box input[type="email"],
.profile-image-box input[type="password"] {
    width: 100%;

    padding: 10px;

    border: 1px solid #ddd;

    border-radius: 5px;

    margin-bottom: 20px;

    font-size: 16px;

    transition: border 0.3s ease;

}

.profile-image-box input[type="email"]:focus,
.profile-image-box input[type="password"]:focus {
    border-color: #07304b;

    outline: none;

}

.profile-image-box button {
    background-color: #07304b;

    color: white;

    border: none;

    border-radius: 5px;

    padding: 10px;

    cursor: pointer;

    font-size: 16px;

    transition: background-color 0.3s ease;

}

.profile-image-box button:hover {
    background-color: #07304b;

}

.profile-image-box .footer-links {
    margin-top: 20px;

}

.profile-image-box .footer-links a {
    color: #07304b;

    text-decoration: none;

    transition: color 0.3s ease;

}

.profile-image-box .footer-links a:hover {
    color: #07304b;

}

@media (max-width: 576px) {
    .profile-image-box {
        width: 90%;

    }
}







.register-box {

    background-color: #ffffff;


    border-radius: 10px;


    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);


    padding: 40px;


    width: 70%;


    text-align: center;


    margin: 10px auto;

}


.register-box h1 {

    font-size: 24px;


    color: #333;


    margin-bottom: 20px;


}


.register-box label {

    display: block;


    margin-bottom: 5px;


    text-align: left;


    font-weight: 600;


    color: #333;


}


.register-box input[type="email"],

.register-box input[type="password"],

.register-box input[type="text"],

.register-box select {

    width: 100%;


    padding: 10px;


    border: 1px solid #ddd;


    border-radius: 5px;


    margin-bottom: 20px;


    font-size: 16px;


    transition: border 0.3s ease;


}


.register-box input[type="email"]:focus,

.register-box input[type="password"]:focus,

.register-box input[type="text"]:focus,

.register-box select:focus {

    border-color: #07304b;


    outline: none;


}


.register-box button {

    background-color: #07304b;


    color: white;


    border: none;


    border-radius: 5px;


    padding: 10px;


    cursor: pointer;


    font-size: 16px;


    transition: background-color 0.3s ease;


}


.register-box button:hover {

    background-color: #07304b;


}

.col-xs-4 {
    margin: auto;
}


.personal-info,
.address-info {

    flex: 1;

    margin: 10px;

    padding: 20px;

    border: 1px solid #ddd;

    border-radius: 5px;

    background-color: #f9f9f9;

}


.personal-info h3,
.address-info h3 {

    font-size: 18px;


    color: #333;


    margin-bottom: 10px;


}



.form-row {

    display: flex;

    justify-content: space-between;

    align-items: flex-start;

}

.address-row {

    display: flex;


    justify-content: space-between;


}


.address-row .form-control {

    flex: 1;


    margin-right: 10px;


}


.address-row .form-control:last-child {

    margin-right: 0;


}

.name-row {

    display: flex;


    align-items: center;


}


.name-row .form-control {

    flex: 1;


    margin-right: 10px;


}


.name-row .form-control:last-child {

    margin-right: 0;


}

.name-row,
.address-row {

    margin: 0;


    padding: 0;


}

.callout-success {
    color: green;
}

.callout-danger {
    color: red;
}

.page-header-container2 {
    margin: auto;
    text-align: center;
    font-size: 40px;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: uppercase;
}

.page-header-home {
    margin: auto;
    text-align: center;
    font-size: 40px;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: uppercase;
}

.page-paragraph-container2 {
    text-align: center;
}







.reclame-banner {
    background-color: #fff;

    text-align: center;
    padding: 30px 0;

    width: 100vw;

    position: relative;

    margin: auto;
}




.reclame-banner-image {
    max-height: 300px;

    width: 300px;
    object-fit: cover;
    margin: 0 auto;

}

.reclame-banner-text h1 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-top: 20px;
}


.reclame-banner-text a {
    color: #07304b;
}

.reclame-banner-text p b {
    font-weight: 600;
}

.reclame-banner-text a.btn {
    background-color: #07304b;

    color: white;
    padding: 10px 20px;
    text-transform: uppercase;
    margin-top: 20px;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.reclame-banner-text a.btn:hover {
    background-color: #07304b;

}

.reclame-banner-text .new-release {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-top: 20px;
}

.reclame-banner-text .cta {
    color: #07304b;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 18px;
}

.reclame-banner-text .shipping {
    color: #fff;
    background-color: #07304b;
    font-size: 14px;
    padding: 10px 0px;
    margin-top: 10px;
    overflow: hidden;

}

.reclame-banner-text .shipping span {
    display: inline-block;
    animation: shake 1s infinite;
}

.collections {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding: 0 180px;
}

.col-box-1,
.col-box-2 {
    padding: 20px 20px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-radius: 25px;
    margin: auto;
}

.col-box-1 img,
.col-box-2 img {
    border-radius: 25px;
    height: 525px;
}

@media (max-width: 768px) {
    .collections {
        flex-direction: column;

    }
}

.parallax {
    background-image: url('../../images/site-images/collections-home/background-parallex3.webp');

    height: 70vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    margin-top: -40px;
    margin-bottom: -40px;
}

.parallax-text {
    color: black;
    font-weight: bold;
    padding: 20px;
    font-size: 24px;
    line-height: 1.5;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 5px;
}

.fa-tiktok {
    -webkit-text-stroke-width: 2.3px;
    -webkit-text-stroke-color: #07304b;
    color: white;
}

.containerfilter {

    display: flex;


    justify-content: space-between;


    margin: 0 auto;

    margin: 50px;

}

.filtertextheader {

    display: flex;


    justify-content: space-between;


    margin-left: 50px;
    font-size: 35px;
}

.filters {
    padding: 50px;
    margin-right: 15px;
    border-right: 1px solid #ddd;
    background-color: #fff;
    width: 300px;

}

.filters {
    overflow-wrap: break-word;

    word-wrap: break-word;
    hyphens: auto;
}



.products {

    flex: 3;


    padding: 20px;


    background-color: #f9f9f9;


}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.table.full-width {

    width: 100%;

    table-layout: fixed;

}

.product-brand-category {
    position: relative;
    bottom: 5px;
}



.reclame-banner {
    text-align: center;
    padding: 40px;
    background-color: #f9f9f9;
    margin-bottom: 20px;
}

.reclame-banner-text h1,
.reclame-banner-text h2 {
    color: #07304b;
}

.reclame-banner-text p {
    color: #666;
    line-height: 1.6;
    max-width: 800px;
    margin: 10px auto;
}

.gallery-container {
    text-align: center;
    padding: 20px;
}

.gallery-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.gallery-item {
    text-align: center;
    max-width: 250px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

.gallery-item p {
    margin-top: 10px;
    font-weight: bold;
    color: #333;
}

.filters select[name="sort_by"] {
    display: inline-block;
    width: 100%;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.filters select[name="sort_by"]:hover {
    background-color: #eaeaea;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.filters select[name="sort_by"]:focus {
    outline: none;
    border-color: #07304b;
}



.elementor-section {
    margin-bottom: 40px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.elementor-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.elementor-column {
    flex: 1;
    text-align: center;
}

.elementor-column img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.elementor-column img:hover {
    transform: scale(1.05);
}


.info-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 40px;
}

.info-column {
    flex: 1;
    padding: 10px;
}

.info-column p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.info-column a {
    color: #3498db;
    text-decoration: none;
}

.info-column a:hover {
    text-decoration: underline;
}



input[readonly] {
    background-color: transparent;
    pointer-events: none;

}

.product-grid {
    display: flex;
    flex-wrap: wrap;
}




.image-container {
    text-align: center;
    margin-right: 20px;
}

.main-image {
    position: relative;
    overflow: hidden;

    height: 350px;
    width: 350px;
    border-radius: 10px;

}

.main-image img {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease-in-out, left 0.5s ease-in-out;

}

.main-image img.active {
    left: 0;

}

.main-image img.exit-left {
    left: -100%;

}

.main-image img.exit-right {
    left: 100%;

}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.7);
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    user-select: none;
    z-index: 10;
}

#prev {
    left: 10px;
}

#next {
    right: 10px;
}

.thumbnail-container {
    display: flex;
    overflow: hidden;
    width: 350px;
    border-radius: 5px;

    padding-right: 11px;
}

.thumbnails {
    display: flex;
    transition: transform 0.5s ease-in-out;

    will-change: transform;
    padding: 2px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.thumbnail {
    margin: 0 5px;
    height: 70px;
    width: 70px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease, border-color 0.3s ease;

}

.thumbnail:hover {
    transform: scale(1.1);

    border: 2px solid #07304b;
}

.thumbnail.active {
    border: 3.5px solid #07304b;

}


.profile-container {
    max-width: 1000px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: 80px auto;
    width: 90%;
}




@media (max-width: 768px) {
    .profile-container {
        margin: 40px auto;
        width: 95%;
    }
}

.profile-photo-preview {
    width: 200px;
}

.profile-picture {
    text-align: center;
    margin-bottom: 20px;
}

.profile-picture img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid #07304b;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-picture img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}


.profile-info {
    text-align: center;
    margin-bottom: 30px;
}

.profile-info h1 {
    font-size: 28px;
    color: #333;
    font-weight: bold;
    margin-bottom: 10px;
}

.profile-info p {
    font-size: 16px;
    color: #666;
}


.profile-sections {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.profile-card {
    flex: 1;
    min-width: 280px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.profile-card h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.profile-card p {
    font-size: 14px;
    color: #666;
}


.profile-button {
    display: inline-block;
    background-color: #07304b;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s;
}

.profile-button:hover {
    background-color: #07304b;
    transform: scale(1.05);
}


@media (max-width: 768px) {
    .profile-sections {
        flex-direction: column;
    }

    .profile-card {
        width: 100%;
    }
}





.hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f9f9f9;
    padding: 20px;
    text-align: center;
    position: relative;
}

.hero-image {
    flex: 1;
    max-width: 25%;

    text-align: center;
}

.hero-image img {
    width: 250px;
    height: auto;
    border-radius: 50%;

}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
}

.hero-section h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.btn2 {
    display: inline-block;
    padding: 10px 20px;
    background-color: #07304b;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn2:hover {
    color: white;
}



.service-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.service-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card-content {
    padding: 20px;
}

.service-card h3 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 1em;
    color: #666;
    line-height: 1.6;
}

.process-section {
    background-color: #ffffff;
    padding: 60px 0;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.process-step {
    text-align: center;
    flex: 1;
    padding: 0 20px;
}

.process-step i {
    font-size: 3em;
    color: #07304b;
    margin-bottom: 20px;
}

.process-step h4 {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.9em;
    color: #666;
}

.cta-section {
    background-color: #07304b;
    color: white;
    text-align: center;
    padding: 60px 0;
}

.cta-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.cta-btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: white;
    color: #07304b;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-btn:hover {
    background-color: #f0f0f0;

}

@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
    }

    .process-step {
        margin-bottom: 30px;
    }
}



.before-after-section {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.sneaker-carousel {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    max-width: 800px;
}

.sneaker-item {
    display: none;
}

.sneaker-item.active {
    display: block;
}


.image-comparison {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.before-image,
.after-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.before-image {
    left: 0;
}

.after-image {
    clip-path: inset(0 50% 0 0);
}

.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #fff;
    left: 50%;
    cursor: ew-resize;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.slider-handle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
}

.slider-handle:hover::before {
    width: 50px;
    height: 50px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.image-comparison::before,
.image-comparison::after {
    content: attr(data-label-before);
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.7);
    color: #000;
    font-weight: bold;
    z-index: 1;
}

.image-comparison::after {
    content: attr(data-label-after);
    left: auto;
    right: 10px;
}

.carousel-nav {
    text-align: center;
    margin-top: 20px;
}

.prev-btn,
.next-btn {
    background: #07304b;
    color: #fff;
    border: none;
    padding: 10px 15px;
    margin: 0 10px;
    cursor: pointer;
}


.cta-section h2 {
    color: white;
}

.service-container .page-header {
    text-align: center;
    margin: auto;
}

.algemenevoorwaarden a,
.privacyverklaring a,
.verzending a {
    color: #07304b;
    text-decoration: underline;
}

.algemenevoorwaarden,
.privacyverklaring,
.verzending {
    width: 800px;
    margin: auto;
    background-color: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);

}

.product-image {
    transition: opacity 0.3s ease-in-out;
    position: relative;
}


.sale-label {
    font-size: 15px;
    color: white;
    font-weight: 500;
    margin-top: 10px;
    display: block;
}

.sale-label2 {
    font-size: 20px;
    color: #07304b;
    font-weight: 900;
    margin-top: 10px;
}


.delivery-buttons {
    display: flex;
    gap: 20px;
    margin: 20px 0;
}

.delivery-btn {
    flex: 1;
    padding: 20px;
    border: 2px solid #ddd;
    border-radius: 8px;
    background: white;
    transition: all 0.3s ease;
}

.delivery-btn:hover {
    border-color: #07304b;
    transform: translateY(-2px);
}

.delivery-btn.active {
    border-color: #07304b;
    background: #f8f9fa;
}

.payment-methods {
    display: flex;
    gap: 20px;
    margin: 20px 0;
}

.payment-method {
    flex: 1;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-method:hover {
    border-color: #07304b;
    transform: translateY(-2px);
}

.payment-method.active {
    border-color: #07304b;
    background: #f8f9fa;
}

.payment-method img {
    max-height: 40px;
    margin-bottom: 10px;
}

.payment-method-pickup {
    flex: 1;
    padding: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: white;
}

.payment-method-pickup:hover {
    border-color: #07304b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(7, 48, 75, 0.1);
}

.payment-method-pickup.active {
    border-color: #07304b;
    background: #f8f9fa;
    box-shadow: 0 4px 12px rgba(7, 48, 75, 0.1);
}

.payment-method-pickup i {
    font-size: 24px;
    color: #07304b;
}

.payment-method-pickup span {
    font-weight: 500;
    color: #333;
}

.contact-verification {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}


.contact-verification .form-group {
    margin-bottom: 20px;
}


.contact-verification label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}


.contact-verification input.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.contact-verification input.form-control:focus {
    border-color: #07304b;
    box-shadow: 0 0 0 3px rgba(7, 48, 75, 0.1);
    outline: none;
}

.contact-verification input.form-control:disabled,
.contact-verification input.form-control[readonly] {
    background-color: #f8f9fa;
    border-color: #e0e0e0;
    cursor: not-allowed;
}


.contact-verification h4 {
    color: #07304b;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
}


.contact-verification .row {
    margin-bottom: 15px;
}


.contact-verification button {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 10px;
}


@media (max-width: 768px) {
    .contact-verification {
        padding: 20px;
    }

    .contact-verification .row {
        margin-left: -10px;
        margin-right: -10px;
    }

    .contact-verification [class*="col-"] {
        padding-left: 10px;
        padding-right: 10px;
    }
}

#edit-contact {
    background-color: #6c757d;
    color: white;
}



#confirm-contact {
    background-color: #07304b;
    color: white;
}


.delivery-options,
#address-section,
#payment-section {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.delivery-options h3,
#address-section h3,
#payment-section h3 {
    color: #07304b;
    font-size: 22px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}


.delivery-buttons {
    display: flex;
    gap: 20px;
    margin: 20px 0;
}

.delivery-btn {
    flex: 1;
    padding: 25px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background: white;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    cursor: pointer;
}

.delivery-btn i {
    font-size: 24px;
    color: #07304b;
}

.delivery-btn span {
    font-size: 16px;
    font-weight: 500;
}

.delivery-btn:hover {
    border-color: #07304b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(7, 48, 75, 0.1);
}

.delivery-btn.active {
    border-color: #07304b;
    background: #f8f9fa;
    box-shadow: 0 4px 12px rgba(7, 48, 75, 0.1);
}


#address-form .form-group {
    margin-bottom: 20px;
}

#address-form label {
    font-weight: 500;
    color: #555;
    margin-bottom: 8px;
    display: block;
}

#address-form .form-control {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px;
    height: auto;
    transition: all 0.3s ease;
}

#address-form .form-control:focus {
    border-color: #07304b;
    box-shadow: 0 0 0 3px rgba(7, 48, 75, 0.1);
}


.payment-methods {
    display: flex;
    gap: 20px;
    margin: 20px 0;
}

.payment-method,
.payment-method-pickup {
    flex: 1;
    padding: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: white;
}

.payment-method:hover,
.payment-method-pickup:hover {
    border-color: #07304b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(7, 48, 75, 0.1);
}

.payment-method.active,
.payment-method-pickup.active {
    border-color: #07304b;
    background: #f8f9fa;
    box-shadow: 0 4px 12px rgba(7, 48, 75, 0.1);
}

.payment-method img {
    height: 40px;
    object-fit: contain;
}

.payment-method span,
.payment-method-pickup span {
    font-weight: 500;
    color: #333;
}

.payment-method-pickup i {
    font-size: 24px;
    color: #07304b;
}


.contact-verification {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    border: 2px solid #e0e0e0;
}

.contact-verification h4 {
    color: #07304b;
    margin-bottom: 20px;
    font-size: 18px;
}

.contact-verification .form-control {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px;
    height: auto;
}

.contact-verification .form-control[readonly] {
    background-color: #f8f9fa;
    cursor: not-allowed;
}


#edit-contact,
#confirm-contact {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

#edit-contact {
    background-color: #07304b;
    color: white;
    border: none;
}

#confirm-contact {
    background-color: #07304b;
    color: white;
    border: none;
}

#edit-contact:hover,
#confirm-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}


#ideal-banks {
    margin-top: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
}

#ideal-banks h4 {
    color: #07304b;
    margin-bottom: 15px;
    font-size: 18px;
}

#bank-select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    cursor: pointer;
}


#place-order {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 12px;
    background: #07304b;
    border: none;
    color: white;
    margin-top: 30px;
    transition: all 0.3s ease;
}

#place-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(7, 48, 75, 0.2);
}


@media (max-width: 768px) {

    .delivery-buttons,
    .payment-methods {
        flex-direction: column;
    }

    .delivery-btn,
    .payment-method,
    .payment-method-pickup {
        width: 100%;
    }
}




#edit-delivery-contact {
    background-color: #6c757d;
    color: white;
}

#edit-delivery-contact {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

#edit-delivery-contact {
    background-color: #07304b;
    color: white;
    border: none;
}

#confirm-delivery-contact {
    background-color: #07304b;
    color: white;
    border: none;
}

#edit-delivery-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.checkmark-circle {
    display: block;
    margin: 0 auto;
    position: relative;
    width: 200px;
    height: 200px;
}

.success-animation {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.success-animation {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 0;
}

.checkmark-circle {
    width: 150px;
    height: 150px;
    position: relative;
    background: #07304b;
    border-radius: 50%;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(7, 48, 75, 0.2);
}

.checkmark {
    position: absolute;
    transform: rotate(45deg);
    left: 55px;
    top: 35px;
    height: 60px;
    width: 30px;
    border-bottom: 8px solid #fff;
    border-right: 8px solid #fff;
    animation: checkmark-appear 0.8s ease-in-out forwards;
    opacity: 0;
}

@keyframes checkmark-appear {
    0% {
        opacity: 0;
        transform: rotate(45deg) scale(0.5);
    }

    50% {
        opacity: 1;
        transform: rotate(45deg) scale(1.2);
    }

    100% {
        opacity: 1;
        transform: rotate(45deg) scale(1);
    }
}

.success-text {
    margin-top: 20px;
    font-size: 24px;
    color: #07304b;
    font-weight: 500;
}



@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}


@media (max-width: 1400px) {

    .container,
    .container2 {
        max-width: 1140px;
    }

    .row-products-home {
        gap: 15px;
    }
}

@media (max-width: 1200px) {

    .container,
    .container2 {
        max-width: 960px;
    }


    .nav-links li a {
        font-size: 16px;
        padding: 8px 12px;
    }


    .product-box {
        width: calc(25% - 20px);
    }


    .banner-image {
        max-height: 400px;
        width: 400px;
    }
}

@media (max-width: 992px) {

    .container,
    .container2 {
        max-width: 720px;
    }


    .navbar {
        padding: 10px 0;
    }

    .navbar-search input {
        min-width: 150px;
    }


    .product-box {
        width: calc(33.333% - 20px);
    }


    .collections {
        flex-direction: column;
        padding: 0 15px;
    }

    .col-box-1,
    .col-box-2 {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {

    .container,
    .container2 {
        max-width: 540px;
        padding: 0 15px;
    }


    .navbar-header img {
        max-height: 40px;
    }

    .navbar-search {
        display: none;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        height: 100vh;
        width: 80%;
        background: #fff;
        z-index: 1000;
        transition: 0.3s;
        overflow-y: auto;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        display: block;
        margin: 15px 0;
    }


    .nav-links .dropdown-menu,
    .nav-links .dropdown-menu2,
    .nav-links .dropdown-menu3 {
        position: static;
        width: 100%;
        box-shadow: none;
        display: none;
        opacity: 1;
        transform: none;
        max-height: none;
        visibility: visible;
    }


    .product-box {
        width: 100%;
        max-width: 300px;
        margin: 10px auto;
    }


    .productcontent {
        padding: 15px;
    }

    .main-image {
        height: 300px;
        width: 100%;
    }

    .thumbnail-container {
        width: 100%;
        justify-content: center;
    }


    .main-content {
        padding-top: 60px;
    }


    .banner {
        padding-top: 60px;
    }


    .content {
        padding-top: 60px;
    }


    .content2 {
        padding-top: 60px;
    }
}

@media (max-width: 576px) {

    .container,
    .container2 {
        padding: 0 10px;
    }


    .navbar-custom-menu {
        gap: 10px;
    }

    .cart .cart-count {
        font-size: 10px;
    }


    .product-box {
        width: 100%;
        margin: 10px 0;
    }


    .banner-image {
        max-height: 300px;
        width: 300px;
    }

    .banner-text h1 {
        font-size: 20px;
    }


    .login-box,
    .register-box,
    .profile-image-box {
        width: 95%;
        padding: 15px;
        margin: 40px auto;
    }


    .delivery-buttons,
    .payment-methods {
        gap: 10px;
    }

    .payment-method {
        padding: 10px;
    }


    .profile-container {
        padding: 15px;
    }

    .profile-card {
        min-width: 100%;
    }
}


@media (max-width: 375px) {
    .navbar-header img {
        max-height: 30px;
    }

    .banner-image {
        max-height: 250px;
        width: 250px;
    }

    .product-box img {
        height: 150px;
    }

    .payment-method img {
        max-height: 30px;
    }
}


@media (max-height: 500px) and (orientation: landscape) {
    .nav-links {
        padding-top: 60px;
    }

    .nav-links li {
        margin: 8px 0;
    }

    .banner {
        padding-top: 20px;
    }

    .banner-image {
        max-height: 200px;
        width: 200px;
    }
}


@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {

    .navbar-header img,
    .product-box img,
    .banner-image {
        image-rendering: -webkit-optimize-contrast;
    }
}


@media (hover: none) {

    .nav-links li a:hover,
    .product-box:hover,
    .payment-method:hover {
        transform: none;
    }
}


@media (max-width: 280px) {
    .navbar-header img {
        max-height: 25px;
    }

    .product-box {
        padding: 5px;
    }

    .banner-text h1 {
        font-size: 18px;
    }
}


@media print {

    .navbar-toggle,
    .navbar-search,
    .navbar-custom-menu,
    footer {
        display: none !important;
    }

    .container,
    .container2 {
        max-width: 100% !important;
        padding: 0 !important;
    }
}

.reclame-banner-text {
    font-size: 18px;
    font-weight: 500;
    color: #666;
    width: 80%;
    max-width: 800px;
    margin: auto;
}


@media (max-width: 1200px) {
    .reclame-banner-text {
        width: 90%;
    }
}

@media (max-width: 992px) {
    .reclame-banner-text {
        width: 95%;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .reclame-banner-text {
        width: 100%;
        padding: 0 20px;
        font-size: 15px;
    }

    .collections {
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .reclame-banner-text {
        padding: 0 15px;
        font-size: 14px;
    }

    .collections {
        padding: 0 15px;
    }
}


@media (max-width: 768px) {
    .product-box {
        width: 100%;
        max-width: 300px;
        margin: 10px auto;
    }

    .product-box img {
        width: 100%;
        height: 250px;
        max-height: 250px;
        object-fit: cover;
    }
}



body.menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}


@media (max-width: 768px) {
    .navbar-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -280px;
        width: 280px;
        height: 100vh;
        background: white;
        padding: 60px 20px 20px;
        z-index: 1000;
        transition: right 0.3s ease;
        overflow-y: auto;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links>li {
        display: block;
        margin: 15px 0;
    }

    .navbar-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: white;
        padding: 10px;
        z-index: 1001;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .navbar-header img {
        height: 40px;
    }


    .nav-links .dropdown-menu,
    .nav-links .dropdown-menu2 {
        position: static;
        width: 100%;
        box-shadow: none;
        padding-left: 20px;
        max-height: none;
        overflow: visible;
    }

    .navbar-custom-menu {
        width: 100%;
        margin-top: 20px;
    }

    .navbar-search {
        width: 100%;
        margin: 10px 0;
    }

    .navbar-search input {
        width: 100%;
    }


    .navbar-search {
        display: block !important;
    }
}


@media (max-width: 768px) {

    .navbar {
        padding: 0;
        position: relative;
    }

    .navbar-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 15px;
        background: white;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1001;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .navbar-header img {
        height: 40px;
        margin: 0;
    }


    .navbar-toggle {
        display: flex;
        align-items: center;
        background: none;
        border: none;
        padding: 8px;
        margin-left: auto;
        cursor: pointer;
    }

    .navbar-toggle i {
        font-size: 24px;
        color: #07304b;
    }


    .nav-links {
        display: block;
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: white;
        padding: 20px;
        overflow-y: auto;
        transition: left 0.3s ease;
        z-index: 1000;
    }

    .nav-links.active {
        left: 0;
    }


    .nav-links>li {
        margin: 0;
        border-bottom: 1px solid #eee;
    }

    .nav-links>li>a {
        display: block;
        padding: 15px 0;
        font-size: 16px;
    }


    .dropdown-menu,
    .dropdown-menu2,
    .dropdown-menu3 {
        position: static !important;
        width: 100% !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        padding: 0 0 0 20px !important;
        margin: 0 !important;
        display: none !important;
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        max-height: none !important;
        visibility: visible !important;
    }

    .dropdown.active .dropdown-menu,
    .user-menu.active .dropdown-menu2 {
        display: block !important;
    }


    .navbar-search {
        position: fixed;
        top: 55px;
        left: 0;
        right: 0;
        padding: 10px;
        background: white;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .navbar-search form {
        display: flex;
        gap: 10px;
    }

    .navbar-search input {
        flex: 1;
        min-width: 0;
        border-radius: 20px;
        padding: 8px 15px;
    }


    .navbar-custom-menu {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #eee;
    }

    .navbar-custom-menu ul {
        justify-content: space-around;
    }


    body.menu-open {
        overflow: hidden;
    }


    .user-menu img {
        width: 30px;
        height: 30px;
    }

    .user-menu .dropdown-menu2 {
        width: 100% !important;
    }


    .nav-links>li:last-child {
        border-bottom: none;
        margin-bottom: 20px;
    }
}


@media (max-width: 375px) {
    .navbar-header img {
        height: 35px;
    }

    .nav-links>li>a {
        font-size: 15px;
        padding: 12px 0;
    }

    .navbar-search input {
        font-size: 14px;
    }
}

@media (max-width: 768px) {

    .nav-links {
        top: 110px;
        height: calc(100vh - 110px);
    }


    .navbar-header {
        z-index: 1002;
        background: white;
    }


    .navbar-search {
        top: 60px;
        z-index: 1002;
        background: white;
    }


    .nav-links.active::before {
        content: none;
    }


    .nav-links .dropdown-menu,
    .nav-links .dropdown-menu2,
    .nav-links .dropdown-menu3 {
        background: #f8f9fa;
        margin-top: 5px;
        margin-bottom: 5px;
        border-radius: 4px;
    }
}

@media (max-width: 768px) {

    .navbar-search {
        display: block !important;
        position: static;
        width: 100%;
        margin: 20px 0;
        background: none;
    }


    .nav-links {
        top: 60px;
        height: calc(100vh - 60px);
        padding-top: 20px;
    }


    .navbar-header {
        z-index: 1002;
        background: white;
    }


    .navbar-search {
        width: 100%;
        margin: 0 0 20px 0;
    }

    .navbar-search input {
        width: 100%;
        background-color: #f5f5f5;
    }
}

@media (max-width: 768px) {

    .user-menu {
        width: 100%;
        margin: 10px 0;
    }

    .user-menu .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        padding: 10px 0;
        background-color: #f8f9fa;
        border-radius: 4px;
        margin-top: 10px;
    }

    .user-menu img {
        width: 32px;
        height: 32px;
    }

    .user-header {
        padding: 15px;
        text-align: center;
    }

    .user-header img {
        width: 80px;
        height: 80px;
        margin-bottom: 10px;
    }

    .user-footer {
        padding: 10px 15px;
        flex-direction: row;
        gap: 10px;
    }

    .user-footer .btn {
        padding: 8px 15px;
        font-size: 14px;
        width: 100%;
        text-align: center;
        background-color: #fff;
        border: 1px solid #ddd;
        margin: 0;
    }
}

@media (max-width: 768px) {

    .navbar-custom-menu {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .navbar-custom-menu ul {
        width: 100%;
    }


    .cart {
        margin-bottom: 15px;
    }


    .user-menu {
        width: 100%;
        position: relative;
    }

    .user-menu .dropdown-menu2 {
        position: static;
        width: 100%;
        box-shadow: none;
        padding: 10px 0;
        background-color: #f8f9fa;
        border-radius: 4px;
        margin-top: 10px;
        display: none;
    }

    .user-menu.active .dropdown-menu2 {
        display: block;
    }


    .user-header {
        padding: 15px;
        text-align: center;
    }

    .user-header img {
        width: 80px;
        height: 80px;
        margin-bottom: 10px;
    }


    .user-footer {
        padding: 10px 15px;
        flex-direction: row;
        gap: 10px;
    }

    .user-footer .btn {
        padding: 8px 15px;
        font-size: 14px;
        width: 100%;
        text-align: center;
        background-color: #fff;
        border: 1px solid #ddd;
        margin: 0;
    }
}

.container2 .row {
    justify-content: center;
}


.collections {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.col-box-1,
.col-box-2 {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.col-box-1:hover,
.col-box-2:hover {
    transform: translateY(-5px);
}

.col-box-1 img,
.col-box-2 img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.col-box-1 h3,
.col-box-2 h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.col-box-1 p,
.col-box-2 p {
    color: #666;
    margin-bottom: 15px;
}

.col-box-1 a,
.col-box-2 a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #07304b;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.col-box-1 a:hover,
.col-box-2 a:hover {
    background-color: #051f31;
}


@media (max-width: 768px) {
    .collections {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding: 0 15px;
    }

    .col-box-1,
    .col-box-2 {
        width: 100%;
        min-width: unset;
        margin: 0;
    }

    .col-box-1 img,
    .col-box-2 img {
        max-height: 250px;
    }

    .col-box-1 h3,
    .col-box-2 h3 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {

    .col-box-1,
    .col-box-2 {
        padding: 15px;
    }

    .col-box-1 img,
    .col-box-2 img {
        max-height: 200px;
    }

    .col-box-1 h3,
    .col-box-2 h3 {
        font-size: 16px;
    }

    .col-box-1 p,
    .col-box-2 p {
        font-size: 14px;
    }

    .col-box-1 a,
    .col-box-2 a {
        padding: 8px 16px;
        font-size: 14px;
    }
}


@media (max-width: 768px) {
    .containerfilter {
        flex-direction: column;
    }

    .filters {
        position: fixed;
        top: 0;
        left: -100%;
        height: 100vh;
        width: 85%;
        background: #fff;
        z-index: 10000;
        transition: 0.3s;
        overflow-y: auto;
        padding: 20px;
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    }

    .filters.active {
        left: 0;
    }


    .filter-toggle {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background: #07304b;
        color: white;
        padding: 12px 20px;
        border-radius: 25px;
        z-index: 1001;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        display: flex;
        align-items: center;
        gap: 8px;
    }


    .mobile-product-box {
        width: calc(100% - 20px);
        margin: 10px;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }

    .mobile-product-box .product-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .mobile-product-box .product-info {
        padding: 12px;
    }

    .mobile-product-box .product-name {
        font-size: 14px;
        margin-bottom: 8px;
        color: #333;
    }

    .mobile-product-box .product-price {
        font-size: 16px;
        font-weight: bold;
        color: #07304b;
    }

    .mobile-product-box .sale-label {
        position: absolute;
        top: 10px;
        right: 10px;
        background: #07304b;
        color: white;
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 12px;
    }
}




.product-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}


.product-item.visible {
    opacity: 1;
    transform: translateY(0);
}


.product-image {
    opacity: 1;
    transition: opacity 0.2s ease-in-out;

}

.product-item {
    position: relative;
    overflow: hidden;
}

.filter-buttons {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.filter-apply-btn,
.filter-reset-btn {
    padding: 10px 15px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.filter-apply-btn {
    background-color: #07304b;
    color: white;
}

.filter-apply-btn:hover {
    background-color: #051f31;
}

.filter-reset-btn {
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    color: #333;
}

.filter-reset-btn:hover {
    background-color: #e9ecef;
}

@media (max-width: 768px) {
    .filter-buttons {
        padding: 0 15px 20px;
    }
}



@media (max-width: 768px) {

    .navbar-custom-menu {
        order: 2;
    }

    .navbar-custom-menu ul {
        display: flex;
        flex-direction: column;
        width: 100%;
    }


    .navbar-custom-menu ul li {
        width: 100%;
        padding: 10px 0;
        border-top: 1px solid #f0f0f0;
    }


    .user-menu {
        width: 100%;
    }


    .user-menu .dropdown-menu2 {
        position: static;
        width: 100%;
        box-shadow: none;
        background-color: #f8f9fa;
        margin-top: 10px;
        padding: 0;
        border-radius: 4px;
    }


    .user-menu .dropdown-menu2 li {
        padding: 8px 15px;
        border: none;
    }

    .user-menu .dropdown-menu2 li:hover {
        background-color: #f0f0f0;
    }


    .user-menu .user-header img.img-circle,
    .user-menu .user-header p small {
        display: none;
    }


    .user-menu .user-footer {
        padding: 10px 15px;
        background: none;
        border-top: none;
    }

    .user-menu .user-footer .btn {
        width: 100%;
        margin: 5px 0;
        background-color: transparent;
        color: #333;
        text-align: left;
        padding-left: 15px;
    }
}

@media (max-width: 768px) {
    .sale-label {
        position: absolute;
        top: 14px;
        left: auto;
        right: 45px;
        background: #07304b;
        color: white;
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 12px;
        z-index: 1;
    }
}


.whatsapp-text {
    display: none;
}


@media (min-width: 769px) {
    .navbar-custom-menu ul {
        display: flex;
        align-items: center;
    }
}


@media (max-width: 768px) {

    .whatsapp-text {
        display: inline;
    }


    .navbar-custom-menu ul {
        display: flex;
        flex-direction: column;
    }


    .user-menu {
        order: -2;
    }


    .navbar-custom-menu ul li {
        width: 100%;
        padding: 10px 0;
        border-top: 1px solid #f0f0f0;
    }
}


.profile-navigation {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 30px;
}

.profile-nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.profile-nav-button {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.profile-nav-button:hover {
    background-color: #07304b;
    color: white;
    transform: translateX(5px);
}

.profile-nav-button i {
    margin-right: 15px;
    font-size: 20px;
    color: #07304b;
    transition: color 0.3s ease;
}

.profile-nav-button:hover i {
    color: white;
}

.profile-nav-button span {
    font-weight: 500;
}


.profile-nav-button.active {
    background-color: #07304b;
    color: white;
    border-color: #07304b;
}

.profile-nav-button.active i {
    color: white;
}


@media (max-width: 768px) {
    .profile-navigation {
        margin: 20px;
    }

    .profile-nav-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .profile-nav-button {
        flex: 1 1 calc(50% - 10px);
        min-width: 150px;
    }
}


.profile-wrapper {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
}


.profile-navigation {
    flex: 0 0 280px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    height: fit-content;
    position: sticky;
    top: 100px;
    margin-top: 30px;
    min-height: 400px;
}


.profile-container {
    flex: 1;
    min-width: 0;
    margin-top: 30px;
    min-height: 450px;
}


@media (max-width: 992px) {
    .profile-wrapper {
        flex-direction: column;
        padding: 20px;
    }

    .profile-navigation {
        flex: none;
        width: 100%;
        position: static;
        margin-top: 20px;
        margin-bottom: 20px;
        min-height: auto;
    }

    .profile-container {
        margin-top: 0;
        width: 100%;
        min-height: auto;
    }

    .profile-nav-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }

    .profile-nav-button {
        flex: 1 1 calc(50% - 5px);
        min-width: 150px;
    }
}

@media (max-width: 576px) {
    .profile-wrapper {
        padding: 15px;
    }

    .profile-navigation,
    .profile-container {
        border-radius: 8px;
        margin-left: 0;
        margin-right: 0;
    }

    .profile-nav-button {
        flex: 1 1 100%;
    }
}


.profile-content {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.profile-content.fade-out {
    opacity: 0;
    transform: translateX(-20px);
}

.profile-content.fade-in {
    opacity: 0;
    transform: translateX(20px);
}


.profile-nav-button.active {
    background-color: #07304b;
    color: white;
}


.order-details-container {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.back-button {
    background: #07304b;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease;
}

.back-button:hover {
    background: #051f31;
}

.order-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.order-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.order-section h2 {
    color: #07304b;
    margin-bottom: 15px;
    font-size: 1.2em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.order-section h3 {
    color: #07304b;
    margin: 15px 0 10px;
    font-size: 1.1em;
}

.order-section2 {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.order-section2 h2 {
    color: #07304b;
    margin-bottom: 15px;
    font-size: 1.2em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.order-section2 h3 {
    color: #07304b;
    margin: 15px 0 10px;
    font-size: 1.1em;
}

.current-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    color: white;
    font-weight: bold;
    margin: 10px 0;
}

.order-items {
    margin-top: 30px;
}

.order-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 20px;
    padding: 15px;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.order-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.order-item h3 {
    margin: 0 0 8px;
    color: #333;
    font-size: 1.1em;
}

@media (max-width: 768px) {
    .order-item {
        grid-template-columns: 80px 1fr;
    }

    .order-item>div:last-child {
        grid-column: 1 / -1;
        text-align: right;
        border-top: 1px solid #eee;
        padding-top: 10px;
        margin-top: 10px;
    }
}




@media (max-width: 768px) {
    .orders-table {
        display: block;
    }

    .orders-table thead {
        display: none;
    }

    .orders-table tbody {
        display: block;
    }

    .orders-table tr {
        display: block;
        margin-bottom: 15px;
        background: white;
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

    .orders-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 0;
        border-bottom: 1px solid #eee;
    }

    .orders-table td:last-child {
        border-bottom: none;
    }


    .orders-table td::before {
        content: attr(data-label);
        font-weight: 600;
        margin-right: 10px;
    }


    .orders-table td:nth-child(4) {
        justify-content: flex-start;
    }

    .orders-table .view-button {
        width: 100%;
        justify-content: center;
        margin-top: 5px;
    }
}


@media (max-width: 768px) {

    .content2 .table {
        display: block;
        width: 100%;
    }

    .content2 .table thead {
        display: none;
    }

    .content2 .table tbody {
        display: block;
        width: 130%;
    }

    .alert {
        width: 130%;
    }

    #delivery-method-section {
        width: 130%;
    }

    #address-section {
        width: 130%;
    }

    .content2 .table tr {
        display: block;
        margin-bottom: 20px;
        border: 1px solid #ddd;
        padding: 10px;
        position: relative;
    }

    .content2 .table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px;
        border: none;
        text-align: left;
    }


    .content2 .table td:first-child {
        justify-content: flex-end;
        padding: 0;
        position: absolute;
        top: 10px;
        right: 10px;
        width: auto;
    }


    .content2 .table td:nth-child(2) {
        justify-content: center;
        padding-top: 30px;
    }

    .content2 .table td:nth-child(3) {
        justify-content: center;
        font-weight: bold;
    }


    .content2 .table td:nth-child(4):before {
        content: "Prijs: ";
        font-weight: bold;
    }

    .content2 .table td:nth-child(6) {
        flex-wrap: wrap;
    }

    .content2 .table td:nth-child(6):before {
        content: "Aantal: ";
        font-weight: bold;
        width: 100%;
        margin-bottom: 5px;
    }

    .content2 .table td:nth-child(7):before {
        content: "Subtotaal: ";
        font-weight: bold;
    }


    .content2 .table .input-group {
        width: 100%;
        justify-content: center;
    }

    .content2 .table .input-group-btn {
        display: inline-block;
    }

    .content2 .table .qty_input {
        width: 60px !important;
        text-align: center;
        margin: 0 5px;
    }


    .content2 .table tr:last-child {
        border: none;
    }

    .content2 .table tr:last-child td {
        flex-direction: column;
        align-items: stretch;
    }

    .content2 .table .input-group[style*="display: flex"] {
        flex-direction: column;
        gap: 10px;
        left: 0 !important;
    }

    .content2 .table #discount_code {
        width: 100%;
        margin-bottom: 10px;
    }

    .content2 .table #apply_discount {
        width: 100%;
        margin-left: 0 !important;
    }


    .content2 .table tr[id="discount_row"] td,
    .content2 .table tr:last-child td {
        text-align: right;
        justify-content: flex-end;
    }
}

@media (max-width: 768px) {

    .content2 .table tr:last-child td:first-of-type {
        position: static;
        padding: 15px;
    }


    .content2 .table .input-group[style*="display: flex"] {
        position: static !important;
        width: 100%;
        margin: 10px 0;
    }


    .form-control-discount {
        width: 100% !important;
        height: 40px;
        padding: 8px 12px;
        border: 1px solid #ddd;
        border-radius: 4px;
        margin-bottom: 10px;
    }


    #apply_discount {
        width: 100%;
        height: 40px;
        margin: 0 !important;
    }


    .content2 .table tr:last-child {
        background: transparent;
        border: none;
        margin-top: 20px;
    }


    .content2 .table tr:last-child td {
        padding: 8px 15px;
        justify-content: space-between;
        align-items: center;
        background: white;
        margin-bottom: 5px;
        border-radius: 4px;
    }
}

@media (max-width: 768px) {

    .content2 .table #discount_row td {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 5px;
    }

    .content2 .table #discount_row td b {
        width: 100%;
        text-align: center;
    }


    .content2 .table tr:last-child td[align="right"] {
        flex-direction: row;
        text-align: right;
        justify-content: space-between;
    }
}


.orders-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.orders-table th,
.orders-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.orders-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #333;
}

.orders-table tr:hover {
    background-color: #f8f9fa;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.9em;
    white-space: nowrap;
    color: white;
}

.view-button {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: #07304b;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: background-color 0.2s;
}

.view-button:hover {
    background: #051f31;
    color: white;
}

@media (max-width: 768px) {
    .orders-table {
        display: block;
        overflow-x: auto;
    }

    .orders-table th,
    .orders-table td {
        white-space: nowrap;
    }
}

.facturen-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.facturen-table th,
.facturen-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.facturen-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #333;
}

.facturen-table tr:hover {
    background-color: #f8f9fa;
}

.download-button {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: #07304b;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: background-color 0.2s;
}

.download-button:hover {
    background: #051f31;
    color: white;
}

.download-button.disabled {
    background: #6c757d;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .facturen-container {
        padding: 0;
        width: 100%;
        max-width: 100%;
    }

    .facturen-container h2 {
        margin-bottom: 25px;
        padding: 0 15px;
    }

    .facturen-table {
        display: block;
        overflow-x: visible;
        box-shadow: none;
        font-size: 16px;
        min-height: calc(100vh - 250px);
        width: 100%;
        max-width: 100%;
    }

    .facturen-table thead {
        display: none;
    }

    .facturen-table tr {
        display: block;
        margin: 0 0 25px 0;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        border-radius: 0;
        background: white;
        width: 140%;
    }

    .facturen-table td {
        display: block;
        text-align: right;
        padding: 20px 25px;
        position: relative;
        border-bottom: 1px solid #eee;
        min-height: 36px;
        width: 100%;
        box-sizing: border-box;
    }

    .facturen-table td:last-child {
        border-bottom: none;
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .facturen-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 25px;
        font-weight: 600;
        color: #333;
        font-size: 16px;
    }

    .download-button {
        width: 100%;
        justify-content: center;
        padding: 14px;
        font-size: 16px;
        margin: 5px 0;
    }

    .download-button i {
        font-size: 18px;
    }

    .facturen-table tr:last-child {
        margin-bottom: 40px;
    }

    .facturen-table td[data-label="Download"]::before {
        display: none;
    }
}


.success-animation {
    text-align: center;
    padding: 40px 0;
    width: 100%;
    max-width: 600px;
}

.checkmark-circle {
    width: 150px;
    height: 150px;
    position: relative;
    margin: 0 auto;
    background: #07304b;
    border-radius: 50%;
    overflow: hidden;
}


.cart-to-check {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
}

.cart-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    color: white;
    opacity: 1;
    animation: cartFadeOut 0.5s ease forwards 1s;
}

.checkmark {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 80px;
    border-right: 12px solid white;
    border-top: 12px solid white;
    transform: translate(-50%, -50%) rotate(135deg) scale(0);
    opacity: 0;
    animation: checkmarkAppear 0.5s ease forwards 1.5s;
}

@keyframes cartFadeOut {
    from {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    to {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }
}

@keyframes checkmarkAppear {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(135deg) scale(0);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%) rotate(135deg) scale(1);
    }
}


.success-animation {
    text-align: center;
    padding: 40px 0;
    width: 100%;
    max-width: 600px;
}


.checkmark-circle {
    width: 160px;
    height: 160px;
    position: relative;
    margin: 0 auto;
    background: #07304b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.cart-to-check {
    position: relative;
    width: 100px;
    height: 100px;
}


.cart-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    color: white;
    animation: cartFade 1.5s forwards;
}


.checkmark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    opacity: 0;
}

.checkmark:after {
    content: '';
    position: absolute;
    width: 12px;
    height: 60px;
    border-right: 12px solid white;
    border-top: 12px solid white;
    top: -10px;
    left: 28px;
    transform: rotate(135deg);
    transform-origin: center;
    opacity: 0;
    animation: checkmark 0.8s ease-in-out forwards 1.5s;
}


@keyframes cartFade {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    80% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }
}

@keyframes checkmark {
    0% {
        opacity: 0;
        transform: rotate(135deg) scale(0);
    }

    50% {
        opacity: 1;
        transform: rotate(135deg) scale(1.2);
    }

    100% {
        opacity: 1;
        transform: rotate(135deg) scale(1);
    }
}


.success-animation h1,
.success-animation p,
.buttons-container {
    opacity: 0;
    animation: fadeIn 0.5s ease-in forwards;
}

.success-animation h1 {
    animation-delay: 2.3s;
}

.success-animation p {
    animation-delay: 2.5s;
}

.buttons-container {
    animation-delay: 2.7s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.success-animation {
    text-align: center;
    padding: 40px 0;
    width: 100%;
    max-width: 600px;
}


.checkmark-circle {
    width: 160px;
    height: 160px;
    position: relative;
    margin: 0 auto;
    background: #07304b;
    border-radius: 50%;
}


.animation-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
}


.cart-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 60px;
    visibility: hidden;
    animation: showCart 2s forwards;
}


.success-checkmark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 80px;
    visibility: hidden;
    animation: showCheckmark 1s forwards 2s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
}


@keyframes showCart {
    0% {
        visibility: visible;
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }

    20% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    80% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        visibility: visible;
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }
}

@keyframes showCheckmark {
    0% {
        visibility: visible;
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2);
    }

    100% {
        visibility: visible;
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}


.success-animation h1,
.success-animation p,
.buttons-container {
    opacity: 0;
    animation: fadeIn 0.5s ease-in forwards;
}

.success-animation h1 {
    animation-delay: 3s;
}

.success-animation p {
    animation-delay: 3.2s;
}

.buttons-container {
    animation-delay: 3.4s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.cart-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 60px;
    visibility: hidden;
    animation: showCart 2s forwards;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
}


.success-checkmark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 80px;
    visibility: hidden;
    animation: showCheckmark 1s forwards 2s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
}

@media (max-width: 768px) {

    .orders-table td[data-label="Status"] {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 15px;
    }

    .orders-table td[data-label="Status"] .status-pill {
        min-width: 140px;
        justify-content: center;
    }


    .orders-table td[data-label="Status"]::before {
        position: static;
        transform: none;
    }

    .order-item img {
        position: relative;
        right: 20px;
    }
}


.order-section2 {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


.delivery-buttons {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    justify-content: center;
}

.delivery-btn {
    flex: 1;
    max-width: 250px;
    padding: 20px;
    border: 2px solid #ddd;
    background: #fff;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.delivery-btn.active {
    border-color: #07304b;
    background: #f8f9fa;
}

.delivery-btn i {
    display: block;
    font-size: 28px;
    margin-bottom: 12px;
    color: #07304b;
}


.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}


.order-section h3 {
    text-align: center;
    margin-bottom: 25px;
    color: #07304b;
    font-size: 24px;
}

.order-section h4 {
    margin: 25px 0 15px;
    color: #333;
    font-size: 18px;
}


.order-section2 h3 {
    text-align: center;
    margin-bottom: 25px;
    color: #07304b;
    font-size: 24px;
}

.order-section2 h4 {
    margin: 25px 0 15px;
    color: #333;
    font-size: 18px;
}


.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin: 20px 0;
}

.payment-method,
.payment-method-pickup {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.payment-method.active,
.payment-method-pickup.active {
    border-color: #07304b;
    background: #f8f9fa;
}

.payment-method img {
    height: 40px;
    margin-bottom: 10px;
}


#ideal-banks {
    max-width: 400px;
    margin: 20px auto;
}


.btn-primary {
    background-color: #07304b;
    border: none;
    padding: 12px 24px;
    font-weight: 500;
    max-width: 400px;
    margin: 20px auto;
    display: block;
}

.btn-primary:hover {
    background-color: #051f31;
    color: white;
}


.row {
    margin: 0 -10px;
}

.col-md-3,
.col-md-4,
.col-md-6 {
    padding: 0 10px;
}


@media (max-width: 768px) {
    .order-section {
        padding: 20px;
    }

    .order-section2 {
        padding: 20px;
    }

    .delivery-buttons {
        flex-direction: column;
        align-items: center;
    }

    .delivery-btn {
        width: 100%;
        max-width: 100%;
    }

    .payment-method,
    .payment-method-pickup {
        min-width: 100%;
    }
}


.order-back-button {
    background: #07304b;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
}

.order-back-button i {
    font-size: 14px;
}

.order-back-button:hover {
    background: #051f31;
}


#delivery-method-section,
#address-section,
#payment-section {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#delivery-method-section h3,
#address-section h3,
#payment-section h3 {
    color: #333;
    font-size: 24px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}


#delivery-contact-form .row {
    margin-bottom: 20px;
}

#delivery-contact-form .form-group {
    margin-bottom: 20px;
}

#delivery-contact-form label {
    display: block;
    color: #555;
    font-weight: 600;
    margin-bottom: 8px;
}

#delivery-contact-form .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.5;
    color: #333;
    background-color: #fff;
    transition: all 0.3s ease;
    height: auto;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

#delivery-contact-form .form-control:focus {
    border-color: #07304b;
    box-shadow: 0 0 0 3px rgba(7, 48, 75, 0.1);
    outline: none;
}


.delivery-buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.delivery-btn {
    flex: 1;
    min-width: 200px;
    padding: 20px;
    border: 2px solid #ddd;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.delivery-btn:hover {
    border-color: #07304b;
    background: #f8f9fa;
}

.delivery-btn.active {
    border-color: #07304b;
    background: #f8f9fa;
    box-shadow: 0 2px 4px rgba(7, 48, 75, 0.1);
}

.delivery-btn i {
    font-size: 24px;
    margin-bottom: 12px;
    color: #07304b;
}


#delivery-payment-options {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.payment-method {
    flex: 1;
    min-width: 200px;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    background: #fff;
}

.payment-method:hover {
    border-color: #07304b;
    background: #f8f9fa;
}

.payment-method.active {
    border-color: #07304b;
    background: #f8f9fa;
    box-shadow: 0 2px 4px rgba(7, 48, 75, 0.1);
}

.payment-method img {
    max-height: 40px;
    margin-bottom: 10px;
}


#start-order,
#address-next,
#place-order {
    width: 100%;
    padding: 15px;
    background-color: #07304b;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#start-order:hover,
#address-next:hover,
#place-order:hover {
    background-color: #051f31;
}


#ideal-banks {
    margin-top: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

#ideal-banks h4 {
    margin-bottom: 15px;
    color: #333;
}

#bank-select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
}


.form-check {
    margin: 20px 0;
}

.form-check-input {
    margin-right: 8px;
}

.form-check-label {
    color: #555;
    cursor: pointer;
}


@media (max-width: 768px) {
    .delivery-buttons {
        flex-direction: column;
    }

    #delivery-payment-options {
        flex-wrap: wrap;
    }

    #delivery-contact-form .row {
        margin: 0;
    }

    #delivery-contact-form [class*='col-'] {
        padding: 0;
        margin-bottom: 15px;
    }

    #delivery-contact-form .form-control {
        font-size: 16px;
        padding: 12px;
    }

    #delivery-contact-form .form-group {
        margin-bottom: 20px;
    }

    #delivery-contact-form label {
        font-size: 14px;
    }
}


.empty-cart-container {
    margin: 50px auto;
    max-width: 600px;
    padding: 40px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.empty-cart-container i.fa-shopping-cart {
    font-size: 64px;
    color: #07304b;
    margin-bottom: 20px;
}

.empty-cart-container h2 {
    color: #333;
    margin-bottom: 15px;
}

.empty-cart-container p {
    color: #666;
    margin-bottom: 25px;
    font-size: 16px;
}

.empty-cart-container .btn-primary {
    background-color: #07304b;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 5px;
    color: white;
    text-align: center;
}

.empty-cart-container .btn-primary:hover {
    background-color: #05263b;
}

.empty-cart-container .btn-primary i {
    margin-right: 8px;
}


#loading-indicator,
#order-processing {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    max-width: 600px;
}

#loading-indicator i.fa-spinner,
#order-processing i.fa-spinner {
    color: #07304b;
    margin-bottom: 15px;
    animation: spin 1s linear infinite;
}

#loading-indicator p,
#order-processing p {
    color: #666;
    font-size: 16px;
    margin: 0;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.breadcrumb-container {
    margin-top: 20px;
    background-color: #ffffff;
    padding: 10px 15px;
    border-radius: 10px;
    width: 80%;
    margin: 0 auto;
}

.breadcrumb {
    margin: 0;
    padding: 0;
    background-color: transparent;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}

.breadcrumb-item {
    font-size: 14px;
    color: #6c757d;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: ">";
    padding: 0 8px;
    color: #6c757d;
}

.breadcrumb-item a {
    color: #07304b;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #6c757d;
}

.description-container {
    position: relative;
    margin-bottom: 20px;
}

.description-content {
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.show-more-btn {
    background: none;
    border: none;
    color: #07304b;
    cursor: pointer;
    padding: 5px 10px;
    font-weight: bold;
    margin-top: 10px;
    transition: color 0.3s ease;
}

.show-more-btn:hover {
    color: #051b29;
}

.related-products {
    width: 80%;
    margin: 0 auto;

}

.related-products .products {
    background: none;
    margin: 0 auto;
}

.related-products .row {
    gap: 0px;
}




.content-wrapper .container-success {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}

.success-animation {
    text-align: center;
    padding: 40px 0;
    width: 100%;
    max-width: 600px;
}

.success-animation h1 {
    color: #07304b;
    margin: 25px 0;
    font-size: 2.5em;
}

.success-animation p {
    color: #666;
    font-size: 1.2em;
    margin: 15px 0;
}

.buttons-container {
    margin-top: 30px;
}

.buttons-container .btn {
    margin: 0 10px;
}

.checkmark-circle {
    width: 200px;
    height: 200px;
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 20px;
}

.checkmark-circle .background {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: #07304b;
    position: absolute;
}

.checkmark {
    border-radius: 50%;
    stroke-width: 2;
    stroke: #fff;
    stroke-miterlimit: 10;
    box-shadow: inset 0 0 0 #07304b;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
    position: relative;
    top: 50%;
    left: 50%;
    margin: -45px 0 0 -45px;
    transform: translate(-50%, -50%);
}

.checkmark.draw:after {
    content: '';
    width: 90px;
    height: 90px;
    background: #07304b;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
}

.checkmark:after {
    animation: animateCheckmark 0.3s ease-out forwards;
}

.checkmark.draw:before {
    content: '';
    width: 45px;
    height: 90px;
    border-right: 10px solid #fff;
    border-top: 10px solid #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-10%, -50%) scaleX(-1) rotate(135deg);
    transform-origin: left top;
    animation: checkmark 0.8s ease-in forwards;
    opacity: 0;
}

@keyframes checkmark {
    0% {
        height: 0;
        width: 0;
        opacity: 0;
    }

    20% {
        height: 0;
        width: 45px;
        opacity: 1;
    }

    40% {
        height: 90px;
        width: 45px;
        opacity: 1;
    }

    100% {
        height: 90px;
        width: 45px;
        opacity: 1;
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0 0 0 75px #07304b;
    }
}

@keyframes scale {

    0%,
    100% {
        transform: none;
    }

    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

.success-animation h1,
.success-animation p,
.buttons-container {
    opacity: 0;
    animation: fadeIn 0.5s ease-in forwards;
}

.success-animation h1 {
    animation-delay: 1s;
}

.success-animation p {
    animation-delay: 1.2s;
}

.buttons-container {
    animation-delay: 1.4s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.size-guide-container {
    margin-left: 10px;
}


.modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.modal-content {
    background-color: #fefefe;
    margin: 5vh auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    border-radius: 5px;
    position: relative;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.modal-header {
    position: relative;
    padding-right: 30px;
    flex-shrink: 0;
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
}

.modal-header h2 {
    margin: 0;
    padding-bottom: 15px;
}

.size-guide-content {
    overflow-y: auto;
    padding-right: 5px;
    flex-grow: 1;
    margin-bottom: 15px;
}

.modal-footer {
    flex-shrink: 0;
    border-top: 1px solid #ddd;
    padding-top: 15px;
    background-color: #fefefe;
}

.close {
    position: absolute;
    right: 20px;
    top: 10px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
}

.size-guide-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.size-guide-table th,
.size-guide-table td {
    border: 1px solid #ddd;
    padding: 12px 8px;
    text-align: center;
}

.size-guide-table th {
    background-color: #07304b;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1;
}

.size-guide-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.size-guide-table tr:hover {
    background-color: #f5f5f5;
}

.size-guide-note {
    margin: 0;
    font-size: 12px;
    color: #666;
    font-style: italic;
    text-align: center;
}

.size-guide-content::-webkit-scrollbar {
    width: 8px;
}

.size-guide-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.size-guide-content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.size-guide-content::-webkit-scrollbar-thumb:hover {
    background: #555;
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 3vh auto;
    }

    .size-guide-table {
        font-size: 14px;
    }

    .size-guide-table th,
    .size-guide-table td {
        padding: 8px 4px;
    }
}

.settings-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    gap: 30px;
}

.settings-navigation {
    width: 250px;
    flex-shrink: 0;
}

.settings-nav-btn {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 10px;
    border: none;
    border-radius: 8px;
    background-color: #f8f9fa;
    color: #495057;
    text-align: left;
    transition: all 0.3s ease;
}

.settings-nav-btn i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.settings-nav-btn:hover {
    background-color: #e9ecef;
    color: #212529;
}

.settings-nav-btn.active {
    background-color: #07304b;
    color: white;
}

.settings-content {
    flex-grow: 1;
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.settings-section {
    display: none;
}

.settings-section.active {
    display: block;
}

.settings-section h2 {
    margin-bottom: 25px;
    color: #07304b;
    font-size: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #495057;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: #07304b;
    outline: none;
    box-shadow: 0 0 0 2px rgba(7, 48, 75, 0.2);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.btn-primary {
    background-color: #07304b;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #051f31;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 6px;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.custom-control {
    position: relative;
    padding-left: 45px;
    margin-bottom: 15px;
}

.custom-control-input {
    position: absolute;
    opacity: 0;
}

.custom-control-label {
    position: relative;
    margin-bottom: 0;
    cursor: pointer;
}

.custom-control-label::before {
    position: absolute;
    left: -45px;
    top: 0;
    width: 36px;
    height: 20px;
    background-color: #e9ecef;
    border-radius: 20px;
    transition: background-color 0.3s ease;
    content: '';
}

.custom-control-label::after {
    position: absolute;
    left: -43px;
    top: 2px;
    width: 16px;
    height: 16px;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
    content: '';
}

.custom-control-input:checked~.custom-control-label::before {
    background-color: #07304b;
}

.custom-control-input:checked~.custom-control-label::after {
    transform: translateX(16px);
}

.custom-control-input:focus~.custom-control-label::before {
    box-shadow: 0 0 0 2px rgba(7, 48, 75, 0.2);
}

.form-text {
    font-size: 14px;
    color: #6c757d;
    margin-top: 5px;
    margin-left: 45px;
}

@media (max-width: 768px) {
    .settings-wrapper {
        flex-direction: column;
    }

    .settings-navigation {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .settings-nav-btn {
        flex: 1;
        min-width: 150px;
        text-align: center;
        justify-content: center;
    }

    .form-row {
        flex-direction: column;
        gap: 10px;
    }

    .settings-content {
        padding: 20px;
    }
}


.add-to-whitelist-btn {
    background-color: black;
}

.profile-photo-preview {
    max-width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 3px solid #07304b;
    padding: 3px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.text-center {
    text-align: center;
}

.settings-section {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.settings-section.active {
    display: block;
    opacity: 1;
}


@keyframes slideInDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.wishlist-container {
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.empty-wishlist {
    text-align: center;
    padding: 40px;
}

.empty-wishlist p {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}

.wishlist-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    padding: 20px 0;
}

.wishlist-item {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 200px;
}

.wishlist-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.wishlist-image {
    height: 200px;
    width: 200px;
    overflow: hidden;
}

.wishlist-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.wishlist-details {
    padding: 15px;
}

.wishlist-details h3 {
    margin: 0 0 10px;
    font-size: 16px;
    color: #333;
}

.price {
    font-size: 18px;
    color: #07304b;
    font-weight: bold;
    margin-bottom: 15px;
}

.wishlist-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wishlist-actions button {
    flex: 1;
    padding: 8px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 170px;
}

.add-to-cart-btn {
    background-color: #07304b;
    color: white;
}

.add-to-cart-btn:hover {
    background-color: #051f31;
}

.remove-wishlist-btn {
    background-color: #dc3545;
    color: white;
}

.remove-wishlist-btn:hover {
    background-color: #c82333;
}

@media (max-width: 768px) {
    .wishlist-grid {
        flex-direction: column;
    }

    .wishlist-actions {
        flex-direction: column;
    }
}

.afbeeldingproduct {
    position: relative;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: auto;
}

.main-image {
    opacity: 1;
}

.afbeeldingproduct.has-hover .product-image {
    transition: opacity 0.3s ease-in-out;
}

.hover-image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.afbeeldingproduct.has-hover:hover .main-image {
    opacity: 0;
}

.afbeeldingproduct.has-hover:hover .hover-image {
    opacity: 1;
}

.product-box .afbeeldingproduct {
    position: relative;
    overflow: hidden;
}

.product-box .product-image {
    width: 100%;
    height: auto;
    transition: opacity 0.3s ease-in-out;
}

.product-box .hover-image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.product-box:hover .main-image {
    opacity: 0;
}

.product-box:hover .hover-image {
    opacity: 1;
}

.discount-badge-product {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #07304b, #094369);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    z-index: 10;
    animation: badge-pulse 2s infinite;
}

.discount-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: translateZ(0);
}

.sale-text {
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 3px;
    letter-spacing: 1px;
}

.discount-percentage {
    font-size: 26px;
    font-weight: bold;
    line-height: 1;
}

.discount-shine {
    position: absolute;
    top: 0;
    left: -50%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: shine 3s infinite;
}

@keyframes badge-pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes shine {
    0% {
        left: -50%;
    }

    100% {
        left: 150%;
    }
}

.wishlist-actions {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    margin-right: 15px;
    margin-top: 15px;
}

.cart {
    position: relative;
}

.cart-preview {
    display: block !important;
    position: absolute;
    top: 100%;
    right: 0;
    width: 300px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 15px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.cart:hover .cart-preview {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.cart-preview-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.cart-preview-items {
    max-height: 300px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #07304b #f0f0f0;
}

.cart-preview-items::-webkit-scrollbar {
    width: 8px;
}

.cart-preview-items::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
}

.cart-preview-items::-webkit-scrollbar-thumb {
    background-color: #07304b;
    border-radius: 4px;
}

.cart-preview-footer {
    padding-top: 10px;
    border-top: 1px solid #eee;
    margin-top: 10px;
}

.empty-cart {
    text-align: center;
    padding: 20px 0;
    color: #666;
}

.empty-cart i {
    font-size: 24px;
    margin-bottom: 10px;
    display: block;
    color: #07304b;
}


.search-container {
    position: relative;
}

.search-results-dropdown {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 10px;
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    margin-top: 5px;
    width: 400px;
}

.search-results-dropdown[style*="display: block"] {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
    cursor: pointer;
}

.search-result-item:hover {
    background-color: #f5f5f5;
}

.search-result-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 15px;
}

.search-result-info {
    flex: 1;
}

.search-result-name {
    font-weight: 500;
    margin-bottom: 4px;
}

.search-result-price {
    color: #07304b;
    font-weight: 600;
}

.no-results {
    text-align: center;
    padding: 20px;
    color: #666;
}

.search-results-dropdown::-webkit-scrollbar {
    width: 8px;
}

.search-results-dropdown::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
}

.search-results-dropdown::-webkit-scrollbar-thumb {
    background-color: #07304b;
    border-radius: 4px;
}

.search-result-item.selected {
    background-color: #f0f0f0;
}

.cart-preview-footer a {
    color: white;
    text-align: center;
}


.cart-preview-item {
    display: flex;
    align-items: flex-start;
    padding-right: 10px;
    border-bottom: 1px solid #eee;
}

.cart-preview-item:last-child {
    border-bottom: none;
}

.cart-preview-item img.thumbnail {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 12px;
}

.cart-preview-item-details {
    flex: 1;
    min-width: 0;
}

.cart-preview-item-brand {
    font-weight: 600;
    font-size: 0.9em;
    color: #07304b;
    margin-bottom: 2px;
}

.cart-preview-item-name {
    font-size: 0.85em;
    color: #333;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-preview-item-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85em;
}

.cart-preview-item-price {
    font-weight: 600;
    color: #07304b;
}

.cart-preview-item-quantity {
    color: #666;
}

.dropdown-menu,
.dropdown-menu2,
.user-menu .dropdown-menu2 {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: none;
    position: absolute;
    z-index: 1000;
}

.dropdown-menu.active,
.dropdown-menu2.active,
.user-menu .dropdown-menu2.active {
    opacity: 1;
    transform: translateY(0);
    display: block;
}

.user-menu {
    position: relative;
}

.main-image {
    position: relative;
    overflow: hidden;
}

.main-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}

.main-image img.active {
    opacity: 1;
    transform: translateX(0);
}

.main-image img.enter-from-right {
    transform: translateX(100%);
}

.main-image img.enter-from-left {
    transform: translateX(-100%);
}

.main-image img.exit-left {
    transform: translateX(-100%);
    opacity: 0;
}

.main-image img.exit-right {
    transform: translateX(100%);
    opacity: 0;
}

.contact-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.contact-form {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

textarea.form-control {
    min-height: 150px;
}

.btn-submit {
    background: #07304b;
    color: #fff;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background: #052236;
}

.alert {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 4px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #07304b;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

.loading-text {
    color: #07304b;
    font-size: 1.2rem;
    font-weight: 500;
    position: relative;
    top: -100px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.success-container {
    max-width: 800px;
    margin: 4rem auto;
    padding: 2rem;
    text-align: center;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.success-icon {
    color: #28a745;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.success-title {
    color: #28a745;
    margin-bottom: 1rem;
}

.success-message {
    margin-bottom: 2rem;
    color: #666;
}

.btn-return {
    display: inline-block;
    background: #07304b;
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn-return:hover {
    background: #0a4a73;
    color: white;
}

.ticket-number {
    font-size: 1.2rem;
    font-weight: bold;
    color: #07304b;
    margin: 1rem 0;
}

.tickets-container {
    padding: 20px;
}

.empty-tickets {
    text-align: center;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 8px;
}

.tickets-grid {
    display: grid;
    gap: 20px;
    margin-top: 20px;
}

.ticket-card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.ticket-header {
    margin-bottom: 15px;
}

.ticket-badges {
    margin-bottom: 10px;
}

.status-badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.85em;
    margin-right: 8px;
    display: inline-block;
}

.status-new {
    background: #007bff;
    color: white;
}

.status-in_progress {
    background: #ffc107;
    color: black;
}

.status-waiting_customer {
    background: #17a2b8;
    color: white;
}

.status-resolved {
    background: #28a745;
    color: white;
}

.status-closed {
    background: #6c757d;
    color: white;
}

.status-archived {
    background: #343a40;
    color: white;
}

.priority-badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.85em;
    color: white;
    display: inline-block;
}

.ticket-number {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.85em;
    margin-right: 8px;
    display: inline-block;
    background: #07304b;
    color: white;
    font-family: monospace;
}

.ticket-info {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 15px;
}

.ticket-message {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 4px;
    margin-bottom: 15px;
}

.latest-reply {
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: 15px;
    font-size: 0.9em;
}

.latest-reply small {
    display: block;
    color: #666;
    margin-top: 5px;
}

.ticket-actions {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    text-align: right;
}

.ticket-actions .btn {
    display: inline-block;
    padding: 8px 16px;
    background-color: #07304b;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.ticket-actions .btn:hover {
    background-color: #0a4a73;
}

.ticket-actions .btn i {
    margin-right: 5px;
}

@media (min-width: 768px) {
    .tickets-grid {
        grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    }

}

.ticket-detail-container {
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.messages-container {
    margin: 20px 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.message {
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 8px;
    background: #f8f9fa;
}

.employee-message {
    align-self: flex-end;
    background: #e3f2fd;
    border-left: none;
    border-right: 4px solid #1976d2;
}

.customer-message {
    align-self: flex-start;
    background: #f5f5f5;
    border-left: 4px solid #78909c;
}

.message-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    gap: 20px;
}

.sender-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.sender-info i {
    color: #6c757d;
}

.date {
    color: #6c757d;
    font-size: 0.9em;
}

.message-content {
    line-height: 1.5;
}

.reply-form-container {
    margin-top: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.reply-form-container textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: vertical;
    margin-bottom: 15px;
}

.reply-form-container button {
    padding: 10px 20px;
    background: #07304b;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.reply-form-container button:hover {
    background: #0a4a73;
}

.reply-form-container button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.reply-form-container button i {
    margin-right: 5px;
}

.status-badge,
.priority-badge {
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.9em;
    margin-left: 8px;
}

.status-badge {
    background: #e9ecef;
}

.status-new {
    background: #cce5ff;
    color: #004085;
}

.status-in_progress {
    background: #fff3cd;
    color: #856404;
}

.status-waiting_customer {
    background: #d4edda;
    color: #155724;
}

.status-resolved {
    background: #d1ecf1;
    color: #0c5460;
}

.status-closed {
    background: #f8d7da;
    color: #721c24;
}

.status-archived {
    background: #e2e3e5;
    color: #383d41;
}


.remember-checkbox .custom-control {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    justify-content: center;
}

.remember-checkbox .custom-control-input {
    margin-right: 10px;
}

.remember-checkbox .custom-control-label {
    cursor: pointer;
    user-select: none;
}

.remember-checkbox .custom-control-input:checked+.custom-control-label::before {
    background-color: #07304b;
    border-color: #007bff;
}

.loading-spinner {
    margin: 0 auto;
    position: relative;
    top: 0px;
}

.search-result-price .discount-badge {
    background-color: #07304b;
    color: white;
    padding: 2px 5px;
    border-radius: 3px;
    margin-left: 10px;
    font-size: 0.8em;
    font-weight: bold;
}




.side-container .left-image {
    position:relative;
    left: 20px;
    width:300px;
    top:50%;
}

.side-container .right-image {
    position:relative;
    left: 80%;
    width:300px;
    bottom:530px;
}

.banner-image-actie {
    width: 50%;
}
.side-container{
    position: sticky;
  top: 100px;
  padding: 5px;
  width:100%;
  z-index:-1;
}


.register-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f5f5f5;
    padding: 20px;
}

.register-box {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 1100px;
    width: 100%;
    padding: 40px;
    transition: all 0.3s ease;
}

.register-box:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.register-header {
    text-align: center;
    margin-bottom: 30px;
}

.register-header h2 {
    color: #07304b;
    font-size: 28px;
    margin-bottom: 10px;
}

.register-header p {
    color: #666;
    font-size: 16px;
}

.signup-form .form-row {
    display: flex;
    gap: 30px;
}

.signup-form .personal-info,
.signup-form .address-info {
    flex: 1;
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}


.signup-form h3 {
    color: #07304b;
    margin-bottom: 15px;
    font-size: 20px;
}

.signup-form .form-control {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.signup-form .form-control:focus {
    border-color: #07304b;
    box-shadow: 0 0 0 3px rgba(7, 48, 75, 0.1);
}

.name-group,
.address-group,
.password-group {
    display: flex;
    gap: 15px;
}

.form-actions {
    margin-top: 25px;
}

.form-actions .btn-primary {
    background-color: #07304b;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s;
}

.form-actions .btn-primary:hover {
    background-color: #05233a;
    transform: translateY(-2px);
}

.form-footer {
    text-align: center;
    margin-top: 20px;
    color: #666;
}

.form-footer a {
    color: #07304b;
    font-weight: bold;
    transition: color 0.3s ease;
}

.form-footer a:hover {
    color: #05233a;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .signup-form .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .signup-form .personal-info,
    .signup-form .address-info {
        padding: 20px;
    }

    .name-group,
    .address-group,
    .password-group {
        flex-direction: column;
        gap: 10px;
    }
}

.order-section2 {
    transition: opacity 0.5s ease-in-out;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.delivery-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.delivery-btn {
    flex: 1;
    padding: 15px;
    border: 2px solid #ddd;
    background: #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.delivery-btn.active {
    border-color: #07304b;
    background: #f8f9fa;
}

.delivery-btn i {
    display: block;
    font-size: 24px;
    margin-bottom: 10px;
}

.payment-methods {
    margin: 20px 0;
}

#delivery-payment-options {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.payment-method {
    flex: 1;
    min-width: 200px;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    background: #fff;
}

.payment-method.active {
    border-color: #07304b;
    background: #f8f9fa;
}

.payment-method img {
    max-height: 40px;
    margin-bottom: 10px;
}

#delivery-contact-form {
    max-width: 1100px;
    margin: 0 auto;
}

#delivery-contact-form .form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 20px;
}

#delivery-contact-form .personal-info,
#delivery-contact-form .address-info {
    flex: 1;
    min-width: 300px;
    height: 370px;
}

#delivery-contact-form .name-group,
#delivery-contact-form .address-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

#delivery-contact-form h4 {
    color: #333;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

#delivery-contact-form .form-control {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

#delivery-contact-form .form-control:focus {
    border-color: #07304b;
    outline: none;
    box-shadow: 0 0 0 2px rgba(7, 48, 75, 0.1);
}

#delivery-contact-form .btn-primary {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-weight: 500;
    margin-top: 20px;
}

@media (max-width: 768px) {
    #delivery-contact-form .form-row {
        flex-direction: column;
        gap: 15px;
    }

    #delivery-contact-form .name-group,
    #delivery-contact-form .address-group {
        flex-direction: column;
        gap: 15px;
    }
}

.filters {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
    width: 300px;
    font-family: 'Poppins', sans-serif;
}

.filters h3 {
    font-size: 20px;
    color: #07304b;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
}

.filters label {
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    padding: 8px 0;
}

.filters input[type="checkbox"],
.filters input[type="radio"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #07304b;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filters input[type="checkbox"]:checked,
.filters input[type="radio"]:checked {
    background-color: #07304b;
    border-color: #07304b;
    position: relative;
}

.filters input[type="checkbox"]:checked::after,
.filters input[type="radio"]:checked::after {
    content: "";
    position: absolute;
    left: 4px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.filters select {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.filters select:hover {
    border-color: #07304b;
}

.filters button {
    background-color: #07304b;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.filters button:hover {
    background-color: #062a3e;
}


.error-page {
    text-align: center;
    padding: 60px 0;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.error-page h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #333;
}

.error-page p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #666;
}

.error-page .btn {
    padding: 10px 25px;
    font-size: 16px;
}