body {
    font-family: "Open Sans", sans-serif;
}

/* Navbar */
.navbar-brand {
    font-weight: 700;
    color: #B4130C !important;
    font-size: 1.5rem;
}

.navbar-brand img {
    width: 50px;
    height: 50px;
    margin-right: 15px;
}


/* Dropdown */
.custom-dropdown {
    max-width: 300px;
    margin: 20px auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.dropdown-toggle {
    background-color: white;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
}

.dropdown-toggle::after {
    display: none;
}

.dropdown-menu {
    width: fit-content;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 0;
}

.dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    color: #333;
    transition: background-color 0.3s ease;
}

.dropdown-item:hover {
    background-color: #f0f0f0;
}

.dropdown-item .icon {
    color: #ff1493;
    margin-right: 10px;
}

.dropdown-item .arrow {
    color: #888;
}

.dropdown-item span {
    margin-right: 20px;
}

/* Section */
.section-0 {
    background-color: #f8f9fa;
    padding-top: 50px;
    padding-bottom: 50px;
}

.section-1 {
    background-color: #fff;
    padding-top: 0px;
    padding-bottom: 50px;
}

.section-subtitle {
    font-size: 0.875rem;
    color: #6c757d;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.section-title {
    font-weight: 700;
    font-size: 1.75rem;
    margin-bottom: 15px;
}

/* Button */
.btn {
    border-radius: 10px;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
}

/* Card */
.card {
    border-radius: 15px;
    background-color: #f8f9fa;
    border: none;
    margin-bottom: 20px;
    overflow: hidden;
}

.card h4 {
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.4;
}

.card-img-container {
    position: relative;
    width: 150px;
    height: 220px;
    border-radius: 12px;
    overflow: hidden;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
    background-color: #000;
}

.card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card:hover .card-img-container {
    transform: rotate(0deg);
}

.card-text {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Product */
.title-product {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.description-product {
    text-align: justify;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.image-product {
    width: 100%;
    border-radius: 10px;
}

.price-product i {
    margin-right: 5px;
}

/* Carousel */
.carousel {
    margin-bottom: 1rem;
}

.carousel-item {
    height: 300px;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
}

.carousel-control-prev,
.carousel-control-next {
    display: none;
}

.carousel-indicators {
    margin-bottom: 1rem;
}

/* About */
.image-profile {
    border-radius: 50%;
    width: 200px;
    height: 200px;
}

.text-h4 {
    margin-top: 30px;
    font-size: 2.125rem !important;
    font-weight: 700 !important;
    line-height: 2.5rem !important;
    letter-spacing: 0.00735em;
}

.text-h5 {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 2rem;
    letter-spacing: normal;
}

.social-media {
    margin-top: 20px;
}

.social-media i {
    color: #B4130C !important;
    font-size: 2.5rem;
    margin-right: 1rem;
}

.footer {
    margin-top: 50px;
    text-align: center;
}

/* Footer */
.footer p {
    font-size: 0.9rem;
    line-height: 0.5rem;
}

/* Video */
.description-video {
    text-align: justify;
    /* margin-top: 30px; */
    font-size: 1.125rem;
    line-height: 1.5;
}

.trailer iframe {
    margin-top: 50px;
    border-radius: 15px;
    width: 100%;
    height: 650px;
}

.lock-product {
    margin-top: 10px;
    background-color: #f8f9fa;
    padding-top: 10px;
    padding-bottom: 20px;
    text-align: center;
}

/* Lock */
#lock {
    font-size: 3rem;
    color: #B4130C;
    margin-bottom: 15px;
}

.lock-product p {
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.5;
}

/* Question */
.question {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 3px;
}

.answer {
    text-align: justify;
}

/* Popup */
.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 10px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    width: 95%;
    height: 85%;
    max-width: 1200px;
    max-height: 900px;
}

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
    background: red;
    color: white;
    border: none;
    padding: 5px 15px;
}

.popup iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .dropdown-toggle {
        display: none;
    }

    .btn {
        margin-bottom: 20px;
    }

    .container {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important;
    }

    .section-title {
        font-weight: 700;
        font-size: 1.4rem;
    }

    .card {
        padding: 1rem !important;
    }

    .card-content-wrapper {
        flex-direction: column;
    }

    .card-img-container {
        margin-top: 20px;
        height: 200px;
        margin-bottom: 1.5rem;
    }

    .carousel-item {
        height: 150px;
    }

    .image-card {
        display: flex;
        justify-content: center;
    }

    .text-h4 {
        font-size: 1.7rem !important;
    }

    .text-h5 {
        font-size: 1rem;
    }

    .image-profile {
        margin-top: 20px;
    }

    .social-media {
        margin-bottom: 20px;
    }

    .title-product {
        font-size: 2rem;
    }

    .description-product {
        font-size: 1.1rem;
    }

    .image-product {
        display: none;
    }

    .trailer iframe {
        margin-top: 30px;
        height: 300px;
    }

    .question {
        font-size: 1rem;
    }

    .answer {
        font-size: 0.9rem;
    }
}