/***************************
// Font Imports
***************************/
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter_24pt-Thin.woff2') format('woff2');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter_24pt-ExtraLight.woff2') format('woff2');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter_24pt-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter_24pt-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter_24pt-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter_24pt-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter_24pt-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter_24pt-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter_24pt-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
}

/***************************
// End Font Imports
***************************/

/***************************
// Default Styles
***************************/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --font-inter: 'Inter', sans-serif;

    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-01172E: #01172E;
    --color-1E1E1E: #1E1E1E;
}

body {
    letter-spacing: 0;
    font-family: var(--font-inter);
    color: var(--color-1E1E1E);
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0;
}


.font-color-686868 * {
    color: #686868 !important;
}


.letter-spacing-5 * {
    letter-spacing: 0.05em !important;
}


.font-color-01172E * {
    color: #01172E !important;
}

.font-size-48 * {
    font-size: 48px !important;
}

.font-size-45 * {
    font-size: 45px !important;
}

.font-size-40 * {
    font-size: 40px !important;
}

.font-size-32 * {
    font-size: 32px !important;
}

.font-size-24 * {
    font-size: 24px !important;
}

.font-size-20 * {
    font-size: 20px !important;
}

.font-size-18 * {
    font-size: 18px !important;
}

.font-size-16 * {
    font-size: 16px !important;
}

.font-size-15 * {
    font-size: 15px !important;
}

.font-size-14 * {
    font-size: 14px !important;
}

.font-size-13 * {
    font-size: 13px !important;
}

.font-size-12 * {
    font-size: 12px !important;
}

.font-size-11 * {
    font-size: 11px !important;
}


.font-weight-900 * {
    font-weight: 900 !important;
}

.font-weight-800 * {
    font-weight: 800 !important;
}

.font-weight-700 * {
    font-weight: 700 !important;
}

.font-weight-600 * {
    font-weight: 600 !important;
}

.font-weight-500 * {
    font-weight: 500 !important;
}

.font-weight-400 * {
    font-weight: 400 !important;
}

.font-weight-300 * {
    font-weight: 300 !important;
}

.font-weight-200 * {
    font-weight: 200 !important;
}

.font-weight-100 * {
    font-weight: 100 !important;
}


.line-height-200 * {
    line-height: 200% !important;
}

.line-height-190 * {
    line-height: 190% !important;
}

.line-height-180 * {
    line-height: 180% !important;
}

.line-height-170 * {
    line-height: 170% !important;
}

.line-height-160 * {
    line-height: 160% !important;
}

.line-height-150 * {
    line-height: 150% !important;
}

.line-height-140 * {
    line-height: 140% !important;
}

.line-height-130 * {
    line-height: 130% !important;
}

.line-height-120 * {
    line-height: 120% !important;
}

.line-height-110 * {
    line-height: 110% !important;
}

.line-height-100 * {
    line-height: 100% !important;
}


/***************************
// End Default Styles
***************************/

/***************************
// Buttons
***************************/
.btn:not(.btn-close) img {
    transform: translateX(0);
    transition: transform 0.3s ease;
}

.btn:not(.btn-close):hover img {
    transform: translateX(5px);
    transition: transform 0.3s ease;
}

.btn.btn-filled-dark-blue {
    font-family: var(--font-inter);
    height: 48px;
    opacity: 1;
    border-radius: 5px;
    padding-top: 12px;
    padding-right: 34px;
    padding-bottom: 12px;
    padding-left: 34px;
    gap: 16px;
    background: #01172E;
    box-shadow: 0px 4px 4px 0px #00000021;
}

.btn.btn-filled-dark-blue:hover {
    background: rgba(1, 23, 46, 0.8);
}

.btn.btn-filled-light-blue {
    font-family: var(--font-inter);
    height: 48px;
    opacity: 1;
    border-radius: 5px;
    padding-top: 12px;
    padding-right: 34px;
    padding-bottom: 12px;
    padding-left: 34px;
    gap: 16px;
    background: #489FFD;
    box-shadow: 0px 4px 4px 0px #00000021;
}

.btn.btn-filled-light-blue:hover {
    background: rgba(72, 159, 253, 0.8);
}

.btn.btn-offer {
    font-family: var(--font-inter);
    background: #03355F;
    height: 48px;
    opacity: 1;
    border-radius: 5px;
    padding-top: 12px;
    padding-right: 34px;
    padding-bottom: 12px;
    padding-left: 34px;
    gap: 16px;
    box-shadow: 0px 4px 4px 0px #00000021;
}

.btn.btn-offer:hover {
    background: rgba(3, 53, 95, 0.8);
}

.btn.btn-close {
    border: 0.5px solid #ECF0FF;
    background: #FBFCFF;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border-width: 0.5px;
}

.btn.btn-close img {
    width: 22px !important;
    height: 22px !important;
    margin-right: 0 !important;
}

/***************************
// End Buttons
***************************/

/***************************
// Navbar
***************************/
.navbar {
    padding: 0;
}

.navbar-custom {
    width: 100%;
    z-index: 10;
}

.navbar-toggler {
    position: absolute;
    z-index: 11;
    color: var(--color-black);
    border: 1px solid var(--color-black);
    border-radius: 10px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(68, 68, 68, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none;
    box-shadow: none;
}

.navbar-collapse {
    transition: none !important;
}

.navbar-custom.scrolled {
    background-color: #2f2f2f;
}

.navbar-custom .nav-link {
    color: var(--color-1E1E1E);
}

.navbar-custom .nav-link:hover {
    color: #03355F;
}

.nav-item.dropdown {
    position: relative;
}

.dropdown-menu {
    border-radius: 0;
    padding: 0;
}

/* MEGAMENU */

.dropdown-toggle::after {
    display: none;
}


.icons .navbar-toggler {
    border: 1px solid var(--color-black);
    background-color: transparent;
    padding: 4px 8px;
}

.navbar-toggler-icon {
    width: 24px;
    height: 24px;
}

.navbar-toggler {
    padding: 5px 8px;
    min-width: 40px;
    min-height: 40px;
}










/***************************
// End Navbar
***************************/

/****************************
// Header Section
***************************/
.main-header {
    height: 137px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.main-header .logo {
    max-width: 249px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.search {
    width: 100%;
    max-width: 722px;
}

.main-header .icons {
    position: relative;
}

.main-header .navbar-toggler {
    position: relative;
}

.search .form-control,
.main-header input.form-control:focus {
    height: 70px;
    outline: none !important;
    box-shadow: none !important;
    border-color: #E0E0E0 !important;
}

.search-input {
    background: url('../images/icons/search.svg') no-repeat right 12px center;
}

.main-header .icons img {
    width: 30px;
    height: 30px;
}

.show {
    transition: none !important;
    animation: none !important;
}

/***************************
// Hero Section
***************************/
.hero-opinions {
    padding-top: 2rem;
}

.hero-slide {
    position: relative;
    display: flex;
    align-items: center;
    height: 504px;
    width: 100%;
    /* max-width: 1230px; */
    max-width: 1320px;
    margin: 0 auto;
    background-size: cover;
    background-position: center;
    border-radius: 51px;
    overflow: hidden;
    z-index: 1;
    padding: 6rem;
}

.splide {
    overflow: visible;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay,
.overlay-dark {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
}

/* Circle Image Styles */
.image-circle-size {
    width: 292px;
    height: 292px;
    border-radius: 50%;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    flex: 0 0 292px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-circle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    display: block;
}

/* Splide Slide Centering */
.splide__slide {
    display: flex;
    justify-content: center;
}

/* Default: no background */
.only-on-center {
    background: none;
    transition: background 0.3s;
}

/* Overlay dark only if parent slide is .is-center */
.splide__slide.is-center .only-on-center {
    background: rgba(0, 0, 0, 0.4);
}

/* Pagination */
.splide__pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    bottom: -50px;
    position: relative;
    z-index: 3;
}

.splide__pagination__page {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s;
}

.splide__pagination__page.is-active {
    background: #FFC107;
}

.splide:not(.is-overflow) .splide__pagination {
    display: block;
}

.splide__arrows {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 1230px;
    display: flex;
    justify-content: space-between;
    transform: translate(-50%, -50%);
    z-index: 3;
    margin: 0 auto;
    right: 0;
    width: 100%;
}

/* Nyilak stílusa */
.splide__arrow {
    border: 1px solid var(--color-white);
    width: 49px;
    height: 49px;
    background: transparent;
    padding: 0.5rem 1rem;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.splide__arrow.img {
    width: 20px;
    height: 20px;
}

.splide__arrow:hover {
    background: rgba(255, 255, 255, 0.5);
}


/* Responsive */
@media (max-width: 768px) {
    .hero-slide {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 0;
    }

    .hero-image-circle {
        margin-top: 1rem;
    }
}

/***************************
// End Hero Section
***************************/

/***************************
// Features Section
***************************/
.features-section {
    padding: 3rem 0;
    color: var(--color-01172E);
}

.features-section .icon {
    width: 45px;
    height: 45px;
}

/***************************
// End Features Section
***************************/

/***************************
// Product Categories Section
***************************/

.category-card {
    width: 100%;
    max-width: 380px;
    height: 250px;
    background: #ECF0FF;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2.5rem;
}

.category-btn {
    margin-top: 1rem;
    background: #00142a;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 2rem;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0 4px 10px 0 rgba(0, 20, 42, 0.10);
}

.category-btn:hover {
    background: #003366;
}

@media (max-width: 991px) {
    .category-card {
        margin-bottom: 1.5rem;
    }
}

/***************************
// End Product Categories Section
***************************/

/***************************
// Category Circles Section
***************************/

.category-circles-section {
    padding-top: 3rem;
}

.category-circle {
    width: 155px;
    height: 155px;
    background: #A2C4FE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    transition: background-color 0.3s ease;
}

.category-circle img {
    height: 65px;
    width: 65px;
}

.category-circle:hover {
    background-color: #BBCCFF;
}

@media (max-width: 991px) {
    .category-circle {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 575px) {
    .category-circle {
        width: 90px;
        height: 90px;
    }
}

/***************************
// End Category Circles Section
***************************/

/***************************
// Popular Products Section
***************************/
.popular-products-section {
    padding: 6rem 0;
}

.popular-product-card {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    transition: box-shadow 0.2s;
    overflow: hidden;
    position: relative;
}

.popular-product-card .card-body {
    height: 170px;
}

.popular-product-img-wrapper {
    height: 280px;
    overflow: hidden;
    margin-bottom: 0.5rem;
    position: relative;
    display: block;
}

.popular-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.popular-product-card .price .sale {
    text-decoration: line-through;
    color: #03355F;
    font-weight: 400 !important;
    font-size: 15px !important;
}

.popular-product-card:hover .price {
    display: none;
}

.popular-product-card:hover .popular-product-img {
    transform: scale(1.6);
}

.popular-product-card .btn.btn-offer {
    width: 100%;
}

.popular-product-card .btn.btn-offer {
    display: none;
}

.popular-product-card:hover .btn.btn-offer {
    display: block;
}

.popular-product-card .title p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/***************************
// End Popular Products Section
***************************/
.about-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background: #ECF0FF;
}

.about-section .btn.btn-offer {
    width: 100%;
    max-width: 275px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.about-img {
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.2s;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-img a {
    height: 100%;
}

/* Tall-short combo for 2nd column */
.about-img-tall-short {
    grid-row: span 2;
    display: grid;
    grid-template-rows: 2fr 1fr;
    gap: 2rem;
    height: 100%;
    min-height: 0;
    background: none;
    box-shadow: none;
    border-radius: 0;
    aspect-ratio: unset;
}

.about-img-tall-short .about-img-tall {
    grid-row: 1;
    min-height: 0;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img-tall-short .about-img-tall img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-img-tall-short .about-img-short {
    grid-row: 2;
    min-height: 0;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img-tall-short .about-img-short img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Remove old tall/short styles */
.about-img-tall,
.about-img-short {
    aspect-ratio: unset !important;
    min-height: unset !important;
    max-height: unset !important;
    align-self: unset !important;
}


/***************************
// End About Section
***************************/

/***************************
// Important Section
***************************/
.why-choose-us {
    background-color: #ECF0FF;
}

.why-choose-us .intro-text {
    flex: 1;
    padding: 4rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 50%;
}

.why-choose-us .intro-text-wrapper {
    max-width: 835px;
    height: 100%;
    margin-left: auto;
    padding: 3rem;
    padding-right: 6rem;
    display: flex;
    align-items: center;
}

.why-choose-us .right-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-choose-us ul li {
    font-size: 16px !important;
}

.custom-check-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.custom-check-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.custom-check-list .check-icon {
    display: inline-block;
    width: 25px;
    height: 25px;
    background: url('../images/icons/check-mark.svg') no-repeat center center;
    background-size: contain;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

/***************************
// End Why Choose Us Section
***************************/

/***************************
// Blog Section
***************************/
.blog {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.blog .btn.btn-read-more {
    text-decoration: underline;
    text-decoration-style: solid;
    text-underline-offset: 21%;
    text-decoration-thickness: 1px;
    padding-left: 0;
    padding-right: 0;
}

.blog .card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: none;
    width: 100%;
    max-width: 380px;
}

.blog .card-body {
    padding: 1rem 0;
    width: 100%;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tags .tag {
    background-color: #ECF0FF;
    height: 31px;
    border-radius: 10px;
    padding-top: 8px;
    padding-right: 16px;
    padding-bottom: 8px;
    padding-left: 16px;
    gap: 10px;
}

.blog .card-body p {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #686868;
}

.blog .card img {
    width: 100%;
    object-fit: cover;
    display: block;
    height: 200px;
    border-radius: 18px;
}

.blog .service-card {
    flex: 0 0 22%;
    max-width: 30%;
}

/* Blog Image Wrapper with Time Indicator */
.blog-image-wrapper {
    position: relative;
    width: 100%;
}

.blog-time-indicator {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--color-white);
    padding: 0.8rem 1rem;
    border-radius: 11px;
    z-index: 2;
}

.blog-time-indicator span {
    white-space: nowrap;
}

/***************************
// End Blog Section
***************************/

/***************************
// Testimonials Section
***************************/

.testimonials {
    padding-bottom: 6rem;
    background-color: var(--color-white);
}

.testimonials .splide__slide {
    height: 200px;
}

.testimonials .testimonial-card {
    border: 1px solid #737373;
    border-radius: 18px;
    width: 100%;
    max-width: 280px;
}

.testimonials .profile-img img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
}

.testimonials .testimonial-card .stars img {
    width: 15px;
    height: 15px;
}

.testimonials .testimonial-card .text p {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #737373;
}

/***************************
// End Testimonials Section
***************************/

/***************************
// Newsletter Section
***************************/

.newsletter {
    padding: 3.5rem 0;
    background: #01172E;
}

.newsletter-input {
    background: transparent;
    border: 1px solid var(--color-white);
    color: var(--color-white);
    border-radius: 5px;
    height: 48px;
    border-radius: 5px;
    border-width: 1px;
    padding-top: 13px;
    padding-right: 24px;
    padding-bottom: 13px;
    padding-left: 24px;
    gap: 10px;
    transition: border-color 0.2s;
    max-width: 511px;
}

.newsletter-input::placeholder {
    color: var(--color-white);
    opacity: 1;
}

.newsletter-input:focus {
    background: #ECF0FF;
    border-color: transparent !important;
    box-shadow: none !important;
    outline: none !important;
}

.newsletter-input:focus::placeholder {
    color: #01172E;
}

@media (max-width: 768px) {
    .newsletter .container {
        flex-direction: column;
        gap: 1rem;
    }

    .newsletter-title {
        margin-bottom: 0.5rem;
        text-align: center;
    }

    .newsletter form {
        width: 100%;
    }
}

/***************************
// End Newsletter Section
***************************/


/***************************
// Footer Section
***************************/
footer {
    background-color: #ECF0FF;
    padding-top: 4rem;
    padding-bottom: 1.5rem;
}

footer img.logo {
    max-width: 416px;
    height: auto;
    width: 100%;
    object-fit: cover;
}

footer .footer-icon {
    width: 55px;
    height: 55px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #8A766F;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
}

footer .copyright {
    font-weight: 400;
    line-height: 100%;
}

footer .copyright strong {
    font-weight: 700;
}

footer a {
    color: inherit;
    text-decoration: none;
}

footer hr {
    border: none;
    border-top: 1px solid #01172E;
    margin: 0;
    max-width: 100%;
}

footer a:hover {
    text-decoration: underline;
}

footer img.phone-icon {
    width: 43px;
    height: 43px;
}

@media (min-width: 1200px) {
    footer .col-lg-2 {
        flex: 0 0 auto;
        width: 17.666667%;
    }

    footer .offset-lg-2 {
        margin-left: 21.666667%;
    }
}

/***************************
// End Footer Section
***************************/

/***************************
// Little Hero Section
***************************/

.little-hero {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.little-hero-img-wrapper {
    position: relative;
    width: 100%;
    height: 252px;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.little-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.little-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 23, 46, 0.4);
}

.little-hero-title {
    position: absolute;
    padding: 0 4rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.little-hero .blog-image-wrapper {
    position: relative;
    width: 100%;
}

.little-hero .blog-image-wrapper img {
    width: 100%;
    object-fit: cover;
    display: block;
    height: 366px;
    border-radius: 18px;
}


/***************************
// End Little Hero Section
***************************/

/***************************
// About Us Section
***************************/
.about-us-section {
    padding-bottom: 3rem;
}

.about-us-section img {
    max-width: 400px;
    height: 424px;
    width: 100%;
    object-fit: cover;
    border-radius: 30px;
}

/***************************
// End About Us Section
***************************/

/***************************
// Why Choose Us Section
***************************/
.why-choose-us-section {
    padding-bottom: 3rem;
}

.why-choose-us-img {
    max-width: 480px;
    width: 100%;
    border-radius: 10px;
    height: auto;
}

/***************************
// End Why Choose Us Section
***************************/

/***************************
// Person Card Section
***************************/
.person-card {
    padding-bottom: 6rem;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.person-image-large {
    width: 100%;
    max-width: 400px;
    height: 424px;
    border-radius: 30px;
    opacity: 0.4;
    object-fit: cover;
    display: block;
}

.person-image-small-wrapper {
    background: var(--color-white);
    position: absolute;
    bottom: -25px;
    right: 0;
    width: 100%;
    height: 209px;
    max-width: 219px;
    border-radius: 30px;
    border: 25px solid var(--color-white);
    overflow: hidden;
    box-sizing: content-box;
}

.person-image-small-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 30px;
}

.role img {
    transform: translateX(0);
    transition: transform 0.3s ease;
}

.role:hover img {
    transform: translateX(5px);
    transition: transform 0.3s ease;
}

/***************************
// End Person Card Section
***************************/

/***************************
// Blog In Section
***************************/
.blog-in {
    padding-bottom: 3rem;
}

.blog-in strong {
    font-weight: 500 !important;
}

/***************************
// End Blog In Section
***************************/

/***************************
// Breadcrumb
***************************/

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    cursor: pointer;
}

.breadcrumb-item img {
    width: 13px;
    height: 13px;
    transform: translateX(0);
    transition: transform 0.3s ease;
}

.breadcrumb-item:hover img {
    transform: translateX(-5px);
    transition: transform 0.3s ease;
}

/***************************
// End Breadcrumb
***************************/

/***************************
// Sort Bar
***************************/

.sort-bar {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.sort-bar.product .sort-bar-inner {
    background: #f1f4ff;
    padding: 1.5rem 3rem;
    display: block;
}

.sort-bar-inner {
    border-radius: 18px;
    padding: 1rem 2rem;
    background: #f1f4ff;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: 66px;
}

.sort-bar-right {
    display: flex;
    align-items: center;
    gap: 4px;
}

.sort-bar-label {
    user-select: none;
}

.sort-bar-arrow {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 2px;
    background: url('../images/icons/arrow-down.svg') no-repeat center center;
    background-size: contain;
    vertical-align: middle;
}

.sort-bar .dropdown-menu {
    min-width: 180px;
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 10;
}

/***************************
// End Blog Sort Bar
***************************/

/***************************
// Blog List Section
***************************/

.blog-list {
    padding-bottom: 6rem;
}

.blog-list .image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}


.blog-list .image-wrapper img {
    width: 100%;
    height: 100%;
    max-height: 220px;
    border-radius: 18px;
    object-fit: cover;
    display: block;
}

.blog-list .image-wrapper .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    z-index: 2;
    pointer-events: none;
}

.blog-list .card {
    height: 100%;
}

.blog-list .context * {
    color: var(--color-1E1E1E);
}

.blog-list .card div.context p {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-list .btn-read-more {
    margin-top: auto;
}

.blog-list .items img {
    width: 100%;
    max-width: 380px;
    height: 100%;
    object-fit: cover;
}

.blog-list iframe {
    width: 100%;
}

.blog-list .btn.btn-read-more {
    text-decoration: underline;
    text-decoration-style: solid;
    text-underline-offset: 21%;
    text-decoration-thickness: 1px;
    padding-left: 0;
    padding-right: 0;
}

/***************************
// End Services List Section
***************************/

/***************************
// Pagination Bar
***************************/
.pagination-bar {
    padding-top: 3rem;
}

.pagination-wrapper {
    position: relative;
}

.pagination-line {
    top: -10px;
    height: 2px;
    background-color: #e0e0e0;
    z-index: 1;
}

.pagination-numbers {
    position: relative;
    z-index: 2;
}

.pagination-list {
    display: flex;
    padding: 0;
}

.pagination-number {
    text-decoration: none;
    position: relative;
}

.pagination-number.active {
    color: #489FFD;
}

.pagination-number.active::after {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 2px;
    background-color: #489FFD;
}

.pagination-prev,
.pagination-next {
    text-decoration: none;
    color: var(--color-black);
    z-index: 2;
}

/***************************
// End Pagination Bar
***************************/

/***************************
// Contact Cards Section
***************************/
.contact-cards {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.contact-cards .contact-card {
    background-color: #ECF0FF;
    padding: 2rem;
    border-radius: 18px;
    height: 162px;
}

.contact-cards .icon-wrapper {
    background-color: #A2C4FE;
    border-radius: 50%;
    width: 85px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-cards .icon {
    width: 35px;
    height: 35px;
}

/***************************
// End Contact Cards Section
***************************/

/***************************
// Contact Section
***************************/
.contact {
    padding-bottom: 6rem;
}

.contact .contact-wrapper {
    padding: 3rem 8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #ECF0FF;
    border-radius: 51px;
}

.contact .form-control {
    border: 0.5px solid var(--color-1E1E1E);
    background: var(--color-white);
    width: 100%;
    height: 60px;
    gap: 10px;
    border-radius: 10px;
    padding-top: 12px;
    padding-right: 20px;
    padding-bottom: 12px;
    padding-left: 20px;
    outline: none;
    /* Prevent focus outline */
    box-shadow: none;
    /* Prevent focus shadow */
}

.contact .form-control:focus {
    outline: none;
    /* Prevent focus outline */
    box-shadow: none;
    /* Prevent focus shadow */
}

.contact .form-select::placeholder,
.contact .form-control::placeholder,
.contact textarea::placeholder {
    color: var(--color-1E1E1E);
}

.contact .form-group {
    margin-bottom: 1.5rem;
}

.contact .form-control-textarea {
    border: 0.5px solid var(--color-1E1E1E);
    background: var(--color-white);
    width: 100%;
    height: 164px;
    gap: 10px;
    border-radius: 10px;
    padding-top: 12px;
    padding-right: 20px;
    padding-bottom: 12px;
    padding-left: 20px;
    outline: none;
    /* Prevent focus outline */
    box-shadow: none;
    /* Prevent focus shadow */
}

.contact .form-control-textarea:focus {
    outline: none;
    /* Prevent focus outline */
    box-shadow: none;
    /* Prevent focus shadow */
}

.newsletter .form-check-input,
.contact .form-check-input {
    background: #F8F8F8;
    width: 23px;
    height: 23px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    border: 0.5px solid #C3C3C3;
}

.request .label-policy strong,
.contact .label-policy strong {
    font-weight: 700 !important;
    color: #272B2C;
}

.newsletter .form-check-input:checked,
.contact .form-check-input:checked {
    border-color: #A2C4FE;
    position: relative;
}

.newsletter .form-check-input:checked::after,
.contact .form-check-input:checked::after {
    content: "";
    width: 10px;
    height: 10px;
    background-color: #A2C4FE;
    display: block;
}

.newsletter .form-select,
.contact .form-select {
    border: 0.5px solid #E0E0E0;
    width: 100%;
    height: 50px;
    border-radius: 5px;
    padding-top: 7px;
    padding-right: 15px;
    padding-bottom: 7px;
    padding-left: 15px;
    gap: 10px;
    --bs-form-select-bg-img: url('../images/icons/down-arrow.svg');
    background-size: 20px 20px;
    background-position: right 15px center;
    background-repeat: no-repeat;
}

.custom-file-upload {
    display: inline-block;
    padding: 18px 30px;
    cursor: pointer;
    background-color: #E3E3E3;
    border: none;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    text-align: center;
    font-size: 13px;
}

.custom-file-upload:hover {
    background-color: #c7c7c7;
}

#cv {
    display: none;
}

.file-name {
    margin-top: 10px;
    font-style: italic;
    color: #333;
}

.contact .btn.btn-offer {
    width: 280px;
}

/***************************
// End contact Section
***************************/

/***************************
// Text Image Block
***************************/
.text-image-block {
    padding-top: 3rem;
}

.text-image-content img {
    width: 100%;
    max-width: 566px;
    height: 617px;
    object-fit: cover;
}

/***************************
// End Text Image Block
***************************/

/***************************
// Product Page
***************************/

.product .product-little-gallery-index {
    width: 100%;
    max-width: 566px;
    align-items: center;
    overflow: hidden;
    display: flex;
    gap: 16px;
    height: 100%;
    justify-content: center;
}

.product .splide {
    width: 100%;
}

.product .splide__list {
    display: flex;
    justify-content: space-between;
}

.product .product-little-gallery-index img {
    width: 126px;
    height: 182px;
    object-fit: cover;
    aspect-ratio: 126 / 182;
    display: block;
}

.product .btn.btn-filled-light-blue {
    width: 100%;
    max-width: 280px;
}

.product-table .item img {
    width: 65px;
    height: 65px;
    object-fit: contain;
}

.product-table .rounded {
    border-radius: 18px !important;
}

.product-table .border {
    border: 1px solid #737373 !important;
}

.table> :not(caption)>*>* {
    border: 0.5px solid #C3C3C3;
    padding: .25rem 1rem;
}

.table> :not(caption)>*>*:first-child,
.product-table .table-light th:first-child {
    border-left: none !important;
}

.table> :not(caption)>*>*:last-child,
.product-table .table-light th:last-child {
    border-right: none !important;
}

.product-table .table-light th {
    background-color: #FBFCFF !important;
}

.table>tbody>tr:last-child>td,
.table>tbody>tr:last-child>th {
    background-color: transparent !important;
}

.table tbody tr:last-child {
    border-bottom: none;
}

.table tbody tr:last-child td {
    border-bottom: none;
}

.product-features {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.popular-products {
    padding-bottom: 3rem;
}

/***************************
// End Product Page
***************************/

/***************************
// Product List Section
***************************/

.product-list {
    padding-bottom: 6rem;
}

.product-list .filter-section {
    height: 100%;
}

.product-list .filter-section .filter-card {
    height: 100%;
}

.product-list .selected-filter {
    background-color: #FBFCFF;
    border-radius: 10px;
    border: 0.5px solid #ECF0FF;
}

.product-list .selected-filter span.filter-title-value {
    color: #03355F;
    font-weight: 400 !important;
}

.request .form-check-input[type=radio] {
    border: 0.5px solid #ECF0FF;
    width: 19px;
    height: 19px;
    border-radius: 5px;
    margin-right: 10px;
    background: #F8F8F8;
}

.form-check-input[type=checkbox] {
    border: 0.5px solid #ECF0FF;
    width: 19px;
    height: 19px;
    border-radius: 5px;
    margin-right: 10px;
    background: #F8F8F8;

}

.form-check {
    padding-top: 0;
    padding-right: 0;
    margin-bottom: 0;
}

.form-check-input {
    margin-top: 0;
}

/* Ha a .form-check-input egy .filter-options szülőn belül van, ne legyen margin-top */
.filter-options .form-check-input {
    margin-top: 0.25em;
}

.request .form-check-input[type=checkbox]:checked,
.request .form-check-input[type=radio]:checked,
.product-list .form-check-input[type=checkbox]:checked {
    background-color: #03355F !important;
    border-color: #03355F !important;
    background-image: none !important;
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

.request .form-check-input[type=checkbox]:focus,
.request .form-check-input[type=radio]:focus,
.product-list .form-check-input[type=checkbox]:focus {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

.filter-card {
    border: 1px solid #737373;
    border-radius: 18px;
    padding: 1rem;
}

.filter-card .label {
    display: block;
}

/***************************
// End Product List Section
***************************/

.request {
    padding-top: 2rem;
    padding-bottom: 3rem;
}

.request .search {
    max-width: 100%;
    width: 100%;
}

.request .added-products img {
    width: 152px;
    height: 176px;
    object-fit: cover;
    border-radius: 10px;
}

.request textarea {
    border: 1px solid #C8C8C8;
    height: 233px;
}

.request textarea::placeholder {
    color: var(--color-1E1E1E);
}

.request input {
    border: 1px solid #C8C8C8;
    height: 60px;
}

.request .form-check-input[type=radio] {
    width: 23px;
    height: 23px;
}

.upload-box {
    position: relative;
    border: 1px dashed #03355F;
    border-radius: 5px;
    padding: 40px 20px;
    background: #ECF0FF;
    text-align: center;
    color: #333;
    height: 175px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.upload-box input[type="file"] {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    cursor: pointer;
}

.upload-box.drag-over {
    background-color: #e0f7ff;
    border-color: #00BFFF;
}

.request .btn.btn-filled-light-blue {
    width: 280px;
}









.form-select.dropdown-category {
    background: transparent;
    border: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('../images/icons/arrow-down.svg');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px 18px;
    padding-right: 32px;
    padding-left: 0;
    padding-top: 0;
    padding-bottom: 0;
    cursor: pointer;
}

.form-select.dropdown-category:focus {
    outline: none;
    box-shadow: none;
}


.why-choose-us ul {
    padding-left: 0;
    margin: 0;
}

.why-choose-us ul li {
    list-style: none;
    position: relative;
    padding-left: 0;
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    font-weight: 500;
    line-height: 160;
    letter-spacing: 0.05em;
}

.why-choose-us ul li::before {
    content: "";
    display: inline-block;
    width: 25px;
    height: 25px;
    background: url('../images/icons/check-mark.svg') no-repeat center center;
    background-size: contain;
    margin-right: 0.75em;
    flex-shrink: 0;
}














.preview-image {
    width: 100%;
    max-width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.preview-file {
    background-color: #ECF0FF;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-close-preview {
    border: 0.5px solid #ECF0FF;
    background: #FBFCFF;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    padding: 0;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s;
}

.btn-close-preview:hover {
    background: #ECF0FF;
    border-color: #ECF0FF;
}

.search-wrapper {
    position: relative;
    /* A kereső konténer pozíciója lesz a hivatkozási alap */
    width: 100%;
}

.custom-search-results {
    position: absolute;
    top: calc(100% + 10px);
    /* közvetlen alatta, 10px távolsággal */
    left: 0;
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
    padding: 0.5rem 0;
    display: none;
}

.custom-search-results .search-item {
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.custom-search-results .search-item:hover {
    background-color: #f8f9fa;
}

.search-result-item:hover {
    background-color: #f8f9fa;
}









.footer-productfluid {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    background-color: #fff;
    box-shadow: 0 0 10px #0000008c;
}

.footer-productfluid.slideUp {
    transform: translateY(0);
}

.footer-productfluid.slideDown {
    transform: translateY(100%);
}

.product-footerbox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em;
}

.product-footertitle {
    display: flex;
    align-items: center;
}

.product-footerimage {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.product-footertitle p {
    align-self: center;
    margin-bottom: 0 !important;
}