
body {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #2D3748;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Crimson Text', serif;
    font-weight: 600;
    color: #162945;
}

.uk-position-top {
  z-index: 2;
}

.uk-text-lead {
    font-family: 'Crimson Text', serif;
    font-weight: 400;
}


.uk-section-primary {
    background-color: #162945;
}

.uk-button-primary {
    background-color: #2F8E9D;
}

.uk-button-primary:hover {
    background-color: #00A7B5;
}

.uk-button-default {
    border-color: #71797E;
    color: #162945;
}

.uk-text-primary {
    color: #2F8E9D !important;
}


header .uk-navbar-nav > li > a {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #71797E;
}

header .uk-navbar-nav > li.uk-active > a {
    color: #fff;
}

header .uk-logo img {
    max-height: 50px;
}

.uk-offcanvas-bar {
    background-color: #162945;
}


.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(47, 142, 157, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 30px;
    color: #2F8E9D;
}


.security-level-icon {
    margin-bottom: 20px;
    text-align: center;
}


.play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.play-button:hover {
    background-color: rgba(255, 255, 255, 0.4);
}


.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(47, 142, 157, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #2F8E9D;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #2F8E9D;
    color: white;
}


footer {
    background-color: #F0F2F5;
}

footer h4 {
    color: #162945;
    font-size: 18px;
    margin-bottom: 15px;
}

footer a {
    color: #71797E;
    transition: color 0.2s ease;
}

footer a:hover {
    color: #2F8E9D;
    text-decoration: none;
}


#cookie-consent-banner {
    z-index: 990;
}

#cookie-settings-modal .switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

#cookie-settings-modal .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

#cookie-settings-modal .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

#cookie-settings-modal .slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

#cookie-settings-modal input:checked + .slider {
    background-color: #2F8E9D;
}

#cookie-settings-modal input:checked + .slider:before {
    transform: translateX(26px);
}

#cookie-settings-modal .slider.round {
    border-radius: 24px;
}

#cookie-settings-modal .slider.round:before {
    border-radius: 50%;
}


.scroll-trigger {
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.scroll-trigger.hidden {
    opacity: 0;
    transform: translateY(50px);
}

.scroll-trigger.visible {
    opacity: 1;
    transform: translateY(0);
}


.image-scale-scroll {
    transition: transform 0.8s ease;
}

.image-scale-scroll:hover {
    transform: scale(1.05);
}


.fade-in-section {
    opacity: 0;
    transform: translateY(20vh);
    visibility: hidden;
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
    will-change: opacity, visibility;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: none;
    visibility: visible;
}


.product-showcase {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.product-showcase img {
    transition: transform 0.5s ease;
}

.product-showcase:hover img {
    transform: scale(1.05);
}

.product-showcase .uk-overlay {
    background: rgba(22, 41, 69, 0.7);
    transition: opacity 0.3s ease;
}

.product-showcase:hover .uk-overlay {
    opacity: 0.9;
}


.map-container {
    height: 450px;
    width: 100%;
}

.map-container iframe {
    border: none;
    height: 100%;
    width: 100%;
}


.shipping-option {
    cursor: pointer;
    transition: box-shadow 0.3s ease;
}

.shipping-option:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.shipping-option input[type="radio"] {
    margin-right: 10px;
}


@media screen and (max-width: 639px) {
    h1.uk-heading-medium {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .uk-text-lead {
        font-size: 1.1rem;
        line-height: 1.4;
    }
    
    .uk-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    
    .uk-card-body {
        padding: 20px;
    }
    
    .uk-margin-medium-top {
        margin-top: 20px !important;
    }
    
    .uk-margin-large {
        margin-top: 40px !important;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon i {
        font-size: 24px;
    }
}


[data-aos="custom-fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition-property: transform, opacity;
}

[data-aos="custom-fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="custom-fade-right"] {
    opacity: 0;
    transform: translateX(-30px);
    transition-property: transform, opacity;
}

[data-aos="custom-fade-right"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="custom-fade-left"] {
    opacity: 0;
    transform: translateX(30px);
    transition-property: transform, opacity;
}

[data-aos="custom-fade-left"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}


.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


.product-card {
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}


.animated-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.animated-button:after {
    content: '';
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255,255,255,0.2);
    transition: width 0.3s ease;
}

.animated-button:hover:after {
    width: 100%;
}


.responsive-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

@media screen and (max-width: 767px) {
    .responsive-table table {
        min-width: 600px;
    }
}


.iti {
    width: 100%;
}

.iti__flag-container {
    z-index: 99;
}