:root {
    --black: #000000;
    --white: #ffffff;
    --gold: #D4AF37;
    --beige: #F5F5DC;
    --light-beige: #FAF9F6;
}

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

/* #### Generated By: http://font.download #### */

@font-face {
    font-family: 'Andale Mono Regular';
    font-style: normal;
    font-weight: normal;
    src: local('../fonts/Andale Mono Regular'), url('../fonts/ANDALEMO.woff') format('woff');
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--black);
    overflow-x: hidden;
}

.w-100 {
    width: 100%;
}

/* Script Font for "The" */
.script-font {
    font-family: 'Dancing Script', cursive;
    font-weight: 400;
    font-style: normal;
}

.text-right {
    text-align: right;
}

/* Bold Sans-serif for "LUXE EDIT" */
.bold-font {

    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mt-50 {
    margin-top: 50px;
}

/* Header/Navigation */
.navbar {
    background-color: var(--black);
    padding: 1rem 0;
    border-radius: 25px;
    margin: 15px;
    transition: padding 0.5s ease;

}

.navbar.scrolled {
    padding: 0.3rem 0;
    ;
}

.navbar-brand {
    font-size: 1.5rem;
    color: var(--white) !important;
    text-decoration: none;
}

.navbar-brand .script-part {
    font-family: 'Dancing Script', cursive;
    font-size: 1.2rem;
    font-weight: 400;
}

.navbar-brand .bold-part {

    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.3rem;
}

.navbar-nav {
    margin: 0 auto;
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 1px;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-item:last-child {
    border: 1px solid #fff;
    border-radius: 10px;
    padding: 0px;

}

.navbar-nav .nav-link:hover {
    color: var(--gold) !important;
}

.navbar-nav .nav-link.active {
    color: var(--gold) !important;
}

.navbar-utils {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.navbar-utils a {
    color: var(--white);
    font-size: 1.2rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.navbar-utils a:hover {
    color: var(--gold);
}

.cart-icon {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--gold);
    color: var(--black);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: end;
    justify-content: center;
    overflow: hidden;
}

.hero-section .hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero-section .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.section-hero-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.section-hero-section-bg {
    position: absolute;
    top: -20%;
    left: 0;
    right: 0;
    height: 200%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
    z-index: 0;
}

.section-hero-section .section-hero-section-bg {
    background-image: url('../images/hero.jpeg');
}

.section-hero-section.map .section-hero-section-bg {
    background-image: url('../images/mapke.png');
}

.section-hero-section .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    font-size: 3rem;
    letter-spacing: 2px;
    font-weight: 300;
    padding: 40px 60px;
    border-radius: 8px;
}

@media (max-width: 1024px) {
    .section-hero-section {
        min-height: 400px;
    }

    .section-hero-section .hero-content {
        padding: 20px 30px;
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .section-hero-section .hero-content {
        font-size: 2rem;
    }
}

@media (max-width: 425px) {
    .section-hero-section .hero-content {
        font-size: 2rem;
    }
}

.section-hero-section .hero-content a {
    margin-top: 60px;
    color: #fff;
    padding: 12px 32px;
    border-radius: 15px;
    border: 2px solid #fff;
    text-decoration: none;
    font-size: 2.5rem;
    font-weight: 300;
    display: inline-block;
	transition: all 0.3s ease;
}
.section-hero-section .hero-content a:hover {
    background:#000;
    color: inherit;

}
@media (max-width: 768px) {
    .section-hero-section .hero-content a {
        font-size: 2rem;
    }
}

@media (max-width: 425px) {
    .section-hero-section .hero-content a {
        font-size: 1.5rem;
    }
}

.footer-hero-content a {
    color: #fff;
    text-decoration: none;
    border: 2px solid #fff;
    padding: 10px 15px;
    border-radius: 10px;
    margin-top: 30px;
    display: inline-block;
}

/* .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
        }*/

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    color: var(--white);
    width: 100%;
    padding: 40px 40px 120px 40px;

}

@media (max-width: 768px) {
    .hero-content {
        padding: 20px 30px 30px 30px;
    }
}

.hero-content h1 {
    letter-spacing: 5px;
    font-size: 3.5rem;
    font-weight: 300;
    padding-bottom: 2.5rem;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 425px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

.hero-content p {
    letter-spacing: 5px;
    font-size: 2rem;
    font-weight: 200;
    margin-bottom: 3rem;
    font-family: 'Andale Mono Regular';
    color: #ccc;
    position: relative;
    border-right: 2px solid rgba(255, 255, 255, .75);
    overflow: hidden;
    transform: translateY(-50%);
}

@media (max-width: 768px) {
    .hero-content p {
        font-size: 1.5rem;
    }
}

@media (max-width: 425px) {
    .hero-content p {
        font-size: 1.2rem;
    }
}

/* Animation */
.anim-typewriter {
    animation: typewriter 4s steps(44) 1s 1 normal both,
        blinkTextCursor 500ms steps(2) 1s 8 normal forwards;
}

@keyframes typewriter {
    from {
        width: 0;
    }

    to {
        width: 12em;
    }
}

@media (max-width: 768px) {
    @keyframes typewriter {
        from {
            width: 0;
        }

        to {
            width: 13em;
        }
    }
}

@keyframes blinkTextCursor {
    from {
        border-right-color: rgba(255, 255, 255, .75);
    }

    to {
        border-right-color: transparent;
    }
}

.hero-content .bold-text {

    font-weight: 800;
    font-size: 4.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2rem;
}

.shop-now-btn {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 12px 40px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.shop-now-btn:hover {
    background-color: var(--white);
    color: var(--black);
}

/* THE LATEST Section */
.latest-section {
    background-color: var(--light-beige);
    padding: 80px 0;
}

.latest-section.bordered {
    border-radius: 25px;
    margin-top: -20px;
    margin-bottom: -20px;
    position: relative;
    z-index: 2;
}

.latest-section .subtitle {
    color: #ccc;
    font-family: 'Andale Mono Regular';
    letter-spacing: 1px;
    font-size: 2rem;
    line-height: 2rem;
    margin-bottom: 50px;
    padding-bottom: 50px;

    border-bottom: 1px solid #ccc;
}

.latest-section.bordered h2 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    color: var(--black);
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #ccc;
    text-transform: uppercase;
}
@media (max-width: 425px) {
    .latest-section.bordered h2 {
        font-size: 2rem;
        padding-bottom:     0px;
    }
}
.latest-section.bordered h2.noborder {
    border-bottom: none;

}

.latest-section p,.latest-section ul {
    padding: 0;
    margin: 0;
    letter-spacing: 1px;
    font-size: 1rem;
    font-weight: 200;
}

@media (max-width: 425px) {
    .latest-section p {
        font-size: 1rem;
    }
}

.latest-section img {
    border-radius: 25px;

}

.footer-section.bordered {
    border-radius: 25px 25px 0 0;
    margin-top: -20px;
    margin-bottom: -20px;
    position: relative;
}

.section-title {
    text-align: left;

    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 2rem;
    margin-bottom: 30px;
    padding-bottom: 30px;
    color: var(--black);
    border-bottom: 1px solid #020202;
}


/* The most WANTED Section */
.wanted-section {
    display: flex;
    min-height: 600px;
    width: 100%;
}

.wanted-left {
    flex: 1;
    min-height: 600px;
    background-color: #000000;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px;
    text-align: center;
}

.wanted-left .script-text {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.wanted-left .bold-text {

    font-weight: 800;
    font-size: 4rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--white);
    margin-bottom: 40px;
}

.wanted-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #f5f5f5;
}

.wanted-right .wanted-image {
    width: 100%;
    max-width: 80%;
    height: auto;
    object-fit: contain;
}

.wanted-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-collage {
    position: relative;
    width: 100%;
    height: 100%;
}

.image-overlap {
    position: absolute;
    width: 60%;
    height: 80%;
    object-fit: cover;
}

.image-overlap:first-child {
    left: 10%;
    top: 10%;
    z-index: 1;
}

.image-overlap:last-child {
    right: 10%;
    bottom: 10%;
    z-index: 2;
}

/* Footer */
.footer-section {
    background-color: var(--black);
    color: var(--white);
    padding: 80px 0 40px;
    margin-top: 0;
}

.footer-logo {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.footer-logo .script-part {
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    font-weight: 400;
}

.footer-logo .bold-part {

    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.8rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

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

.social-link {
    color: var(--white);
    font-size: 1.3rem;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.social-link:hover {
    color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.footer-title {

    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-newsletter-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.footer-newsletter-form .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 12px 15px;
}

.footer-newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter-form .form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--gold);
    color: var(--white);
    box-shadow: none;
}

.footer-newsletter-form .btn {
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 12px 20px;
}

.footer-newsletter-form .btn:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.footer-contact {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--gold);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);

}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin: 0;
}

.footer-legal {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--gold);
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.fade-in {
    transform: translateY(30px);
}

.animate-on-scroll.slide-left {
    transform: translateX(-50px);
}

.animate-on-scroll.slide-right {
    transform: translateX(50px);
}

.animate-on-scroll.scale-in {
    transform: scale(0.9);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Delay classes for staggered animations */
.animate-on-scroll.delay-1 {
    transition-delay: 0.1s;
}

.animate-on-scroll.delay-2 {
    transition-delay: 0.2s;
}

.animate-on-scroll.delay-3 {
    transition-delay: 0.3s;
}

.animate-on-scroll.delay-4 {
    transition-delay: 0.4s;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content .script-text {
        font-size: 2rem;
    }

    .hero-content .bold-text {
        font-size: 3rem;
    }

    .wanted-section {
        flex-direction: column;
    }

    .wanted-right {
        position: relative;
        width: 100%;
        height: 400px;
    }

    .wanted-left .script-text {
        font-size: 2rem;
    }

    .wanted-left .bold-text {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-content .script-text {
        font-size: 1.5rem;
    }

    .hero-content .bold-text {
        font-size: 2rem;
    }

    .navbar-nav {
        margin: 1rem 0;
    }

    .navbar-utils {
        gap: 1rem;
    }
}

.page-hero {

    /* position: relative; */

    min-height: 300px;
    background-image: url(../images/footer.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 50px;
    text-align: center;
    color: var(--white);
}


.page-hero .script-text {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.page-hero .bold-text {

    font-weight: 800;
    font-size: 4rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2rem;
}

.page-hero .subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* About Content Section */
.about-content {
    padding: 100px 0;
}

.about-section {
    margin-bottom: 80px;
}

.section-title {

    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--black);
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 20px;
}

.about-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 30px;
}

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

.value-card {
    text-align: center;
    padding: 40px 20px;
}

.value-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.value-title {

    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--black);
}

.value-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.7);
}

/* Team Section */


.main_logo {
    max-width: 250px;
}

@media screen and (max-width: 768px) {
    .main_logo {
        max-width: 200px;
    }
}

@media screen and (max-width: 425px) {
    .main_logo {
        max-width: 160px;
    }
}

.carousel-intro-owl .owl-item {
    /*background-color: #000;
            padding: 40px 20px;*/
    color: #fff;
    display: flex;
    height: 100%;
}

.carousel-intro-owl .owl-item img {
    border-radius: 35px;
}

.carousel-intro-owl .owl-item .item {}

.carousel-intro-owl .owl-item .news-item {
    height: 100%;
    width: 100%;
    position: relative;
    border-radius: 25px;
}

.carousel-intro-owl .owl-stage {
    display: flex;
    align-items: stretch;
}

.carousel-intro-owl .owl-stage-outer {
    display: flex;
}

.carousel-intro-owl .owl-carousel {
    position: relative;
}

.carousel-intro-owl .owl-carousel .owl-item .news-item .product-name {
    font-size: 3rem;
    position: absolute;
    text-align: left;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    background-color: rgba(0, 0, 0, .3);
    transition: background-color 0.5s ease;
    font-weight: 300;
    padding: 10px 30px;
    margin-bottom: 0px;
    border-radius: 35px;
}

.carousel-intro-owl .owl-carousel .owl-item .news-item .img {
    transition: filter 0.5s ease, transform 0.4s ease;
}

.carousel-intro-owl .owl-carousel .owl-item .news-item:hover img {
    filter: blur(2px);

}

.carousel-intro-owl .owl-carousel .owl-item .news-item .product-name:hover {
    background-color: rgba(0, 0, 0, .6);
}

.carousel-intro-owl .owl-carousel .owl-item .news-item .product-price {
    font-size: 1.2rem;

    color: #fff;
}

.carousel-intro-owl .owl-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
}

.carousel-intro-owl .owl-nav button,
.carousel-intro-owl .owl-nav button.owl-prev,
.carousel-intro-owl .owl-nav button.owl-next {
    pointer-events: all;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 !important;
    background: rgba(0, 0, 0, 0.6) !important;
    border: none !important;
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    padding: 0 !important;
}

.carousel-intro-owl .owl-nav button:hover,
.carousel-intro-owl .owl-nav button.owl-prev:hover,
.carousel-intro-owl .owl-nav button.owl-next:hover {
    background: rgba(0, 0, 0, 0.8) !important;
}

.carousel-intro-owl .owl-nav .owl-prev {
    left: -40px;
}

.carousel-intro-owl .owl-nav .owl-next {
    right: -40px;
}

.carousel-intro-owl .owl-nav button span {
    font-size: 50px;
    color: #fff;
    line-height: 1;
}

.nav-contact-icons {
    margin-right: 25px;
}

.nav-contact-icons a {
    color: #fff;
    font-size: 22px;
    margin-right: 5px;
}

.nav-contact-icons a:hover {
    color: var(--gold)
}

.bordered-image {
    border-radius: 55px;
}

.list-intro .item {
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

.list-intro .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.list-intro .item .product-name {
    font-size: 3.3rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    position: absolute;
    text-align: left;
    top: 0px;
    left: 0px;
    right: 0;
    bottom: 0;
    color: #fff;
    background-color: rgba(0, 0, 0, .3);
    transition: background-color 0.5s ease;
    padding: 10px 30px;
}

.list-intro .item .img {
    transition: filter 0.5s ease, transform 0.4s ease;
}

.list-intro .item:hover img {
    filter: blur(2px);

}

.list-intro .item .product-name:hover {
    background-color: rgba(0, 0, 0, .6);
}

.light-title-text {
    color: rgb(175, 174, 170);
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.team-grid .item {
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #999;
}

.team-grid .item img {
    border-radius: 25px;
}

@media (max-width: 768px) {
    .team-grid .item img {
        margin-top: 20px;
    }
}

.team-grid .item .first-name {
    font-size: 5.5rem;
    font-weight: 300;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    line-height: 4.5rem;
}
.team-grid .item .last-name {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: rgb(175, 174, 170);
    margin-bottom: 20px;
    padding: 0px 0 15px 0;
    position: relative;
}
@media (max-width: 1024px) {
    .team-grid .item .first-name {
        font-size: 4.5rem;
    }
}
@media (max-width: 1024px) {
    .team-grid .item .last-name {
        font-size: 3rem;
    }
}



@media (max-width: 768px) {
    .team-grid .item .first-name {
        font-size: 4rem;
    }

    .team-grid .item .last-name {
        font-size: 2.5rem;
    }
}

@media (max-width: 425px) {
    .team-grid .item .first-name {
        font-size: 2.5rem;
        text-align: left;
    }

    .team-grid .item .last-name {
        font-size: 2rem;
        text-align: left;
    }
}


.team-grid .item .right-item .last-name:before {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
    height: 1px;
    background-color: rgb(175, 174, 170);
}
@media (max-width: 425px) {
    .team-grid .item .right-item .last-name:before {
        left: 0;
    }
}
.team-grid .item .left-item .last-name:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50%;
    height: 1px;
    background-color: rgb(175, 174, 170);
}

.team-grid .item .category {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}
@media (max-width: 425px) {
    .team-grid .item .category,.team-grid .item .instagram,.team-grid .item .text {
        text-align: left;
    }
}
.team-grid .item .instagram a {
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 1.2px;
    color: rgb(100, 100, 98);
    text-decoration: none;
	transition:text-decoration 0.3s ease;

}
.team-grid .item .instagram a:hover{
	text-decoration:underline;
}
.team-grid .item .text {
    letter-spacing: 1.2px;
}

.gallery {}

.gallery img {
    margin-bottom: 25px;
}

.product-grid .item {
    padding-bottom: 60px;
    margin-bottom: 80px;
    border-bottom: 1px solid #999;
}
@media (max-width: 425px) {
    .product-grid .item {
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
}
.product-grid .item:last-child {
    margin-bottom: 0px;
}

.product-grid .item img {
    border-radius: 25px;
}

.product-grid .item .first-name {
    font-size: 5.5rem;
    font-weight: 300;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    line-height: 4.5rem;
}

@media (max-width: 768px) {
    .product-grid .item .first-name {
        font-size: 4.5rem;
    }
}
@media (max-width: 425px) {
    .product-grid .item .first-name {
        font-size: 2.5rem;
        text-align: left;
    }
}
.product-grid .item .last-name {
    margin-top: 30px;
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 1.4px;
    color: rgb(175, 174, 170);
    font-family: 'Andale Mono Regular';
}
@media (max-width: 425px) {
    .product-grid .item .last-name {
        text-align: left;
        margin-top: 10px;
        margin-bottom: 10px;
    }
}
.product-grid .item .category {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.product-grid .item a {
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 1.2px;
    color: #000;
    text-decoration: none;
    border: 1px solid #000;
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-block;
    text-align: center;
    margin-top: 30px;
    width: 100%;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .product-grid .item a {
        margin-bottom: 30px;
    }
}
@media (max-width: 425px) {
    .product-grid .item a {
       font-size: 1rem;
    }
}
.product-grid .item a:hover {
    background-color: #000;
    color: #fff;
}

.product-grid .item .text {
    letter-spacing: 1.2px;
}
@media (max-width: 425px) {
    .product-grid .item .text {
        text-align: left;
    }
}
/* Lessons week calendar */
.lessons-widget {
    margin-top: 1rem;
    position: relative;
}

.lessons-week-calendar {
    margin-bottom: 2rem;
}

.lessons-week-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.lessons-nav-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--black);
    color: var(--white);
    text-decoration: none;
    font-size: 1.4rem;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.lessons-nav-arrow:hover {
    background: var(--gold);
    color: var(--black);
    transform: scale(1.05);
}

.lessons-week-label {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--black);
    min-width: 200px;
    text-align: center;
}

.lessons-week-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.75rem;
}

@media (max-width: 768px) {
    .lessons-week-days {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 480px) {
    .lessons-week-days {
        grid-template-columns: repeat(2, 1fr);
    }
}

.lessons-day-card {
    background: var(--light-beige);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 1rem 0.75rem;
    text-align: center;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lessons-day-card:hover {
    border-color: rgba(0, 0, 0, 0.12);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.lessons-day-today {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.08);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.lessons-day-date {
    display: block;
    margin-bottom: 0.35rem;
}

.lessons-day-num {
    display: block;
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--black);
    letter-spacing: 0.5px;
}

.lessons-day-month {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

.lessons-day-today .lessons-day-num {
    color: var(--gold);
}

.lessons-day-name {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(0, 0, 0, 0.65);
}

.lessons-day-today .lessons-day-name {
    color: var(--black);
}

/* Login status menu – right-aligned (light background) */
.login-status-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 0 1.25rem;
    margin-bottom: 40px;
}

.login-status-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--black);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.login-status-link i {
    font-size: 1.1rem;
    opacity: 0.85;
}

.login-status-link:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.login-status-link-logout {
    margin-left: 0.5rem;
    padding-left: 1rem;
    border-left: 1px solid rgba(0, 0, 0, 0.2);
}

.login-status-link-logout:hover {
    border-left-color: rgba(212, 175, 55, 0.6);
}

.lessons-widget {
    margin-top: 1rem;
    background: #eee;
    padding: 40px 20px;
    border-radius: 25px;
}

.lessons-preloader {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 120px;
    background: rgba(255, 255, 255, 0.9);
    z-index: 999;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    pointer-events: all;
}

.lessons-preloader.lessons-preloader-active {
    display: flex !important;
}

.lessons-preloader::after {
    content: '';
    width: 40px;
    height: 40px;
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: lessons-preloader-spin 0.8s linear infinite;
}

@keyframes lessons-preloader-spin {
    to {
        transform: rotate(360deg);
    }
}

.lessons-day-card {
    cursor: pointer;
}

.lessons-day-card.lessons-day-selected {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.12);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.35);
}

.lessons-day-content {
    margin-top: 1.5rem;
}

.lessons-day-list-title {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1.25rem;
    color: var(--black);
}

.lessons-day-list-title i {
    color: var(--gold);
    margin-right: 0.5rem;
}

.lessons-day-list-empty {
    color: rgba(0, 0, 0, 0.55);
    font-size: 0.95rem;
}

/* Lessons vertical timeline */
.lessons-timeline {
    position: relative;
    padding-left: 1rem;
}

.lessons-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--gold), rgba(212, 175, 55, 0.4));
    border-radius: 2px;
}

.lessons-timeline-item {
    position: relative;
    padding-bottom: 1.5rem;
}

.lessons-timeline-item:last-child {
    padding-bottom: 0;
}

.lessons-timeline-node {
    position: absolute;
    left: -1rem;
    top: 1rem;
    width: 16px;
    height: 16px;
    margin-left: -8px;
    background: var(--gold);
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--gold);
    z-index: 1;
}

.lessons-timeline-card {
    margin-left: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.lessons-timeline-card:hover {
    box-shadow: 0 6px 24px rgba(212, 175, 55, 0.15);
}

.lessons-timeline-card-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(212, 175, 55, 0.08);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.lessons-timeline-card-time {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
}

.lessons-timeline-card-time i {
    color: var(--gold);
    margin-right: 0.4rem;
}

.lessons-type-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
}

.lessons-timeline-card-type {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--black);
}

.lessons-timeline-card-type i {
    color: var(--gold);
    margin-right: 0.35rem;
}

.lessons-timeline-card-capacity {
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.65);
}

.lessons-timeline-card-capacity i {
    color: var(--gold);
    margin-right: 0.25rem;
}

.lessons-timeline-card-body {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.9rem 1.25rem;
}

.lessons-timeline-card-instructor {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.75);
}

.lessons-timeline-card-instructor i {
    color: var(--gold);
    margin-right: 0.35rem;
}

.lessons-timeline-card-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
}

.lessons-timeline-card-footer {
    padding: 0 1.25rem 1rem;
    text-align: right;
}

@media (max-width: 480px) {
    .lessons-timeline-card {
        margin-left: 1.5rem;
    }
}

.lessons-btn-rezervovat {
    background: var(--gold);
    color: var(--black);
    border: none;
    padding: 0.4rem 0.9rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lessons-btn-rezervovat:hover {
    background: #c9a227;
    transform: scale(1.03);
}

/* Lessons reserve modal */
.lessons-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.lessons-modal.lessons-modal-open {
    display: flex;
}

.lessons-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.lessons-modal-content {
    position: relative;
    background: #fff;
    border-radius: 12px;
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.lessons-modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    line-height: 1;
}

.lessons-modal-close:hover {
    color: var(--black);
}

.lessons-modal-title {
    padding: 1.25rem 1.5rem 0;
    font-size: 1.25rem;
    font-weight: 700;
}

.lessons-modal-body {
    padding: 1rem 1.5rem;
}

.lessons-modal-row {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.lessons-modal-row i {
    color: var(--gold);
    margin-right: 0.35rem;
}

.lessons-modal-description {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.8);
}

.lessons-modal-price {
    margin-top: 1rem;
    font-size: 1.1rem;
}

.lessons-modal-price-value {
    color: var(--gold);
    font-weight: 700;
}

.lessons-modal-footer {
    padding: 1rem 1.5rem 1.5rem;
}

.lessons-btn-rezervovat-modal {
    width: 100%;
    background: var(--gold);
    color: var(--black);
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.2s ease;
}

.lessons-btn-rezervovat-modal:hover {
    background: #c9a227;
}

/* FAQ Accordion */
.faq-accordion {
    background: transparent;
    overflow: hidden;
}

.faq-accordion-item {
    background: transparent;
}

.faq-accordion-title-number {
    display: inline-block;
    /* padding-right: 20px; */
    padding-left: 10px;
    width: 40px;
}

.faq-accordion-item:last-child {
    border-bottom: none;
}

.faq-accordion-trigger {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.1rem 1.25rem;
    text-align: left;
    background: transparent;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

.faq-accordion-trigger:hover {
    background: transparent;
}

.faq-accordion-trigger:hover .faq-accordion-title {
    color: #000;
}

.faq-accordion-trigger:hover .faq-accordion-icon {
    color: #000;
}

.faq-accordion-trigger-open {
    background: transparent;
}

.faq-accordion-trigger-open .faq-accordion-icon {
    transform: rotate(90deg);
    color: #000;
}

.faq-accordion-trigger-open.faq-accordion-title {
    color: #000;
}

.faq-accordion-trigger-open .faq-accordion-icon {
    transform: rotate(180deg);
    color: #000;
}

.faq-accordion-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    font-size: 20px;
    line-height: 1;
    transition: transform 0.25s ease;
    color: #999;
}

.faq-accordion-title {
    flex: 1;
    color: #999;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 1.2px;

}
@media (max-width: 425px) {
    .faq-accordion-title {
        font-size: 1rem;letter-spacing: 1px;
    }
    .faq-accordion-trigger {
        padding: 0.1rem 0.5rem;
    }
}
.faq-accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-accordion-panel-open {
    max-height: 5000px;
}

.faq-accordion-content {
    background: transparent;
    padding: 20px 100px;
    color: rgba(0, 0, 0, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .faq-accordion-content {
        padding: 20px 5px;
    }
}

.second-menu {
    border-top: 1px solid #999;
    margin-top: 60px;
    padding-top: 60px;
}

.second-menu ul {
    list-style: none;
    padding: 0;
    padding-left: 0;
    margin: 0;

}

.second-menu ul li {
    position: relative;
    padding-left: 60px;
    color: #999;
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 1.2px;
}

@media (max-width: 768px) {
    .second-menu ul li {
        font-size: 2rem;
    }
}

.second-menu ul li:before {
    content: '>';
    position: absolute;
    left: 0;
    top: 0;

}

.second-menu ul li a {
    text-decoration: none;
    color: #999;
    transition: padding-left 0.3s ease;
}

.second-menu ul li a:hover {
    padding-left: 100px;
}

/* FORCE HIDE IMAGE ON MOBILE AND TABLET */
@media (max-width: 991px) {
    div.col-md-6.text-right.d-sm-none.d-md-block,
    div.col-md-6.text-right.d-sm-none.d-md-block img {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        opacity: 0 !important;
    }
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        position: relative;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
}