body {
    padding-top: 60px;
    background-color: #F2F2F2;
    font-family: 'Roboto', sans-serif;
}

.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

@media (max-width: 991.98px) {
    .navbar-nav {
        margin-top: 10px;
    }
    .navbar-nav .nav-item {
        margin-bottom: 5px;
    }
}

/* Add your custom styles here */

.floating-offer {
    background-color: #ff6b6b;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.img-shadow {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.video-shadow {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.whatsapp-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-widget a {
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    color: white;
    text-align: center;
    line-height: 60px;
    font-size: 30px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.whatsapp-widget a:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Add any other custom styles here */

.xiaohongshu-link {
    display: inline-block;
    margin-left: 10px; /* Adjusted from 15px to 10px to move 5px to the left */
    vertical-align: middle;
}

.xiaohongshu-icon {
    width: 24px;
    height: 24px;
    margin-top: -10px;
    transition: transform 0.3s ease;
}

.xiaohongshu-link:hover .xiaohongshu-icon {
    transform: scale(1.1);
}

.service-bubble {
    background-color: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-bubble:hover {
    background-color: #e9ecef;
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.service-bubble h3 {
    font-size: 1.2rem;
    margin: 0;
    padding: 10px;
}

.floating-offer a {
    text-decoration: none;
    color: inherit;
}

.floating-offer:hover {
    cursor: pointer;
    /* You can add other hover effects here if desired */
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

.accent-text {
    font-family: 'Montserrat', sans-serif;
}

.offer-text {
    font-family: 'Noto Sans SC', 'Roboto', sans-serif;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.offer-text::first-line {
    font-feature-settings: "tnum";
    font-variant-numeric: tabular-nums;
}

.image-container {
    width: 315px;
    height: 560px;
    overflow: hidden;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.video-shadow,
.image-container {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
    .image-container {
        width: 100%;
        height: auto;
        aspect-ratio: 315 / 560;
    }
}

.content-padding {
    padding-top: 2rem;
}

@media (max-width: 767px) {
    .content-padding {
        padding-top: 1rem;
    }
}



/* Mobile styles */
@media (max-width: 767px) {
    .responsive-image-container {
        width: 100%;
        height: auto;
        aspect-ratio: 315 / 560;
    }

    .responsive-image-container img {
        transform: scale(1); /* Fill the container on mobile */
    }
}

.image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.image-wrapper img {
    max-width: 92%;
    height: auto;
    object-fit: contain;
}

@media (max-width: 767px) {
    .image-wrapper {
        width: 100%;
    }
}

.dropdown-toggle {
    width: 100%;
    text-align: left;
    background-color: #694575;
    border-color: #694575;
}

.dropdown-toggle:hover, .dropdown-toggle:focus {
    background-color: #553960;
    border-color: #553960;
}

.dropdown-menu {
    width: 100%;
}

.dropdown-item:hover {
    background-color: #f0e6f5;
}
