/* Fix for bold headings in rich text editor */
h2 strong,
h2 b,
h3 strong,
h3 b {
    font-weight: 700 !important;
}

.gallery-main {
    height: 500px;
    object-fit: cover;
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 15px;
    justify-items: stretch;
}

.gallery-thumbs img {
    height: 120px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.gallery-thumbs img:hover {
    transform: scale(1.05);
    border-color: var(--primary-red);
    box-shadow: 0 10px 30px rgba(198, 40, 40, 0.2);
}

@media (max-width: 768px) {
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .gallery-main {
        height: 300px;
        border-radius: 10px;
    }

    .gallery-thumbs {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gallery-thumbs img {
        height: 80px;
    }

    .price-box {
        position: static;
        margin-top: 2rem;
        padding: 1.5rem;
    }

    .price-box .price {
        font-size: 2.5rem;
    }

    h1 {
        font-size: 2.5rem !important;
        word-wrap: break-word;
    }

    .feature-box {
        padding: 1.5rem;
    }

    .feature-box h3 {
        font-size: 1.4rem;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .feature-item {
        padding: 0.3rem;
    }
}

@media (max-width: 576px) {
    body {
        overflow-x: hidden;
    }

    .container {
        max-width: 100%;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .gallery-thumbs {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    h1 {
        font-size: 2.25rem !important;
    }

    .breadcrumb {
        font-size: 0.85rem;
    }
}

.feature-box {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.feature-box h3 {
    color: var(--nature-dark);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem;
    color: var(--text-dark);
}

.feature-item i {
    color: var(--primary-red);
    font-size: 1.2rem;
}

.price-box {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
    color: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    position: sticky;
    top: 100px;
    box-shadow: 0 15px 40px rgba(198, 40, 40, 0.2);
}

.price-box .price {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.breadcrumb {
    background: transparent;
    padding: 1rem 0;
}

.breadcrumb-item a {
    color: var(--nature-green);
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-item a:hover {
    color: var(--primary-red);
}

.breadcrumb-item.active {
    color: var(--text-light);
}