/* ===== style.css ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Montserrat', sans-serif;
    background: #121212;
    color: #fff;
    line-height: 1.6;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.section-title {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 15px;
    border-bottom: 2px solid #E50914;
    padding-bottom: 5px;
    color: #fff;
}
.section-subtitle {
    color: #B0B0B0;
    margin-bottom: 20px;
    font-size: 1.1rem;
}
.text-center {
    text-align: center;
}

/* ===== HEADER ===== */
.site-header {
    background: #1E1E1E;
    border-bottom: 1px solid #333;
    padding: 15px 0;
}
.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo a {
    font-size: 1.5rem;
    font-weight: bold;
    color: #E50914;
    text-decoration: none;
}
.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
}
.nav-menu a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s;
}
.nav-menu a:hover,
.nav-menu a.active {
    color: #E50914;
}
.lang-switch a {
    margin-left: 10px;
    color: #B0B0B0;
    text-decoration: none;
}
.lang-switch a.active {
    color: #E50914;
    font-weight: bold;
}

/* ===== LAYOUT ===== */
.profile-layout {
    display: flex;
    max-width: 1200px;
    margin: 30px auto;
    gap: 30px;
    padding: 0 20px;
}
.profile-sidebar {
    width: 30%;
}
.profile-main {
    width: 70%;
}

/* ===== SIDEBAR ===== */
.profile-cover {
    width: 100%;
    aspect-ratio: 3/4;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    position: relative;
    border: 2px solid #333;
    transition: transform 0.3s ease;
}
.profile-cover:hover {
    transform: scale(1.02);
}
.cover-title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}
.cover-title h1 {
    font-size: 2rem;
    display: flex;
    align-items: center;
    color: #E50914;
}
.verified-badge {
    color: #4CAF50;
    font-size: 1.2rem;
    margin-left: 8px;
    vertical-align: middle;
}
.cover-title .location {
    font-size: 1rem;
    font-weight: normal;
    margin-top: 5px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 5px;
}
.cover-title .location i {
    color: #E50914;
}

/* Bloc statut */
.status-block {
    background: #1E1E1E;
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    border: 1px solid #333;
}
.status-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #E50914;
    margin-bottom: 15px;
    animation: float 3s ease-in-out infinite;
}
.status-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0); }
}
.status-header {
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFA500;
    margin-bottom: 10px;
    text-transform: none;
}
.status-message {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 10px;
}
.status-time {
    font-size: 0.9rem;
    color: #FFA500;
    margin-bottom: 15px;
}
.status-time i {
    margin-right: 5px;
}
.btn-message {
    display: inline-block;
    background: #E50914;
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}
.btn-message:hover {
    background: #b80710;
}

/* ===== MAIN ===== */
.section-title {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 15px;
    border-bottom: 2px solid #E50914;
    padding-bottom: 5px;
    color: #fff;
}
.section-subtitle {
    color: #B0B0B0;
    margin-bottom: 20px;
    font-size: 1.1rem;
}
.text-center {
    text-align: center;
}

/* Miniatures en ligne (7) */
.miniatures-row {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: nowrap;
}
.miniature-item {
    flex: 0 0 calc((100% - 60px) / 7);
    aspect-ratio: 9/16;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #333;
    transition: transform 0.3s;
}
.miniature-item:hover {
    transform: scale(1.05);
    border-color: #E50914;
}
.miniature-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Grandes photos carrées */
.gallery-large {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 30px;
}
.large-item {
    aspect-ratio: 1/1;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #333;
    transition: transform 0.3s;
}
.large-item:hover {
    transform: scale(1.02);
    border-color: #E50914;
}
.large-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* À propos */
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    background: #1E1E1E;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 1px solid #333;
}
.about-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
}
.about-item i {
    color: #E50914;
    width: 20px;
}

/* ===== SECTION PLEINE LARGEUR POUR LES 4 BLOCS ===== */
.info-cards-fullwidth {
    width: 100%;
    background: #1E1E1E;
    padding: 40px 0;
    margin: 30px 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}
.info-cards-fullwidth .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    align-items: stretch;
}
.info-card {
    background: #2A2A2A;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #444;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    border-color: #E50914;
}
.info-card h3 {
    color: #E50914;
    margin-bottom: 15px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.info-card h3 i {
    font-size: 1.4rem;
}
.info-card .location-text {
    margin-bottom: 15px;
}
.info-card .location-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.info-card .location-options span {
    background: #1E1E1E;
    padding: 5px 12px;
    border-radius: 30px;
    border: 1px solid #555;
    font-size: 0.9rem;
}
.language-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.9rem;
}
.language-item:last-child {
    margin-bottom: 0;
}
.lang-flag {
    font-size: 1.4rem;
    margin-right: 8px;
    width: 30px;
    text-align: center;
}
.lang-name {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.lang-main {
    background: #07b307;
    color: #000;
    font-weight: bold;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 0.7rem;
    margin-right: 10px;
    white-space: nowrap;
}
.lang-level {
    color: #F5C518;
    white-space: nowrap;
}
.fa-star, .far.fa-star {
    color: #F5C518;
}
.info-card-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}
.info-card-group .info-card {
    flex: 1;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.pricing-card-special, .payment-card-special {
    background: linear-gradient(135deg, #E50914, #b80710);
    color: white;
}
.pricing-card-special h3, .payment-card-special h3 {
    color: white;
}
.pricing-card-special p, .payment-card-special p {
    color: white;
}

/* ===== SECTIONS PLEINE LARGEUR (Services, Description) ===== */
.services-fullwidth, .description-fullwidth {
    width: 100%;
    background: #1E1E1E;
    padding: 40px 0;
    margin: 30px 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}
.services-fullwidth .container, .description-fullwidth .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.services-fullwidth .services-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 20px;
}
.services-list {
    list-style: none;
}
.services-list li {
    background: #2A2A2A;
    color: #fff;
    padding: 8px 12px;
    border-radius: 30px;
    text-align: center;
    font-size: 0.9rem;
    border: 1px solid #444;
}
.services-list li:hover {
    background: #E50914;
    border-color: #E50914;
    cursor: default;
}

/* Description */
.description-fullwidth p {
    color: #B0B0B0;
    margin-bottom: 15px;
}
.description-fullwidth h3 {
    color: #E50914;
    margin: 20px 0 10px;
}
.description-fullwidth ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 10px;
}
.description-fullwidth ul li {
    background: #2A2A2A;
    color: #fff;
    padding: 8px 12px;
    border-radius: 30px;
    text-align: center;
    border: 1px solid #444;
}

/* ===== STYLES AJOUTÉS DEPUIS L'INDEX ===== */
.video-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(229,9,20,0.8);
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    z-index: 2;
    border: 1px solid #E50914;
}
.miniature-item, .large-item {
    position: relative;
    background: #2A2A2A;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.miniature-item img, .large-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.status-avatar {
    overflow: hidden;
    border-radius: 50%;
}
.status-avatar img {
    transition: transform 0.3s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.status-avatar:hover img {
    transform: scale(1.1);
}
.story-circle {
    position: relative;
    overflow: hidden;
}
.story-circle img {
    transition: transform 0.3s ease;
}
.story-circle:hover img {
    transform: scale(1.1);
}
.selfie-item {
    overflow: hidden;
}
.selfie-item img {
    transition: transform 0.3s ease;
}
.selfie-item:hover img {
    transform: scale(1.1);
}

.stories-section, .selfies-section {
    margin-bottom: 40px;
}
.stories-grid {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
}
.story-item {
    flex: 0 0 auto;
    width: 100px;
    text-align: center;
    text-decoration: none;
    color: inherit;
}
.story-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #E50914;
    margin: 0 auto 5px;
}
.story-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.story-title {
    color: #B0B0B0;
    font-size: 0.8rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.selfies-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.selfie-item {
    aspect-ratio: 1/1;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #333;
    display: block;
    text-decoration: none;
}
.selfie-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.selfie-title {
    text-align: center;
    color: #B0B0B0;
    margin-top: 5px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: #2A2A2A;
    border-radius: 12px;
    overflow: hidden;
}
.pricing-table th,
.pricing-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #444;
    color: #fff;
}
.pricing-table th {
    background: #333;
    color: #E50914;
}

.services-tabs {
    margin-top: 20px;
}
.tab-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
}
.tab-button {
    background: none;
    border: none;
    color: #B0B0B0;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 8px 20px;
    cursor: pointer;
    transition: color 0.2s, border-bottom 0.2s;
    border-bottom: 3px solid transparent;
}
.tab-button.active {
    color: #E50914;
    border-bottom-color: #E50914;
}
.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}

.services-grid {
    display: grid;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.services-grid li {
    background: #2A2A2A;
    border: 1px solid #444;
    border-radius: 30px;
    padding: 10px 15px;
    text-align: center;
    font-size: 0.95rem;
    color: #fff;
    transition: all 0.2s;
}
.extra-service {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.extra-price {
    color: #E50914;
    font-weight: bold;
    margin-left: 10px;
}

#tab-included .services-grid {
    grid-template-columns: repeat(4, 1fr);
}
#tab-extra .services-grid {
    grid-template-columns: repeat(3, 1fr);
}

#tab-included .services-grid li:hover {
    background: #E50914;
    border-color: #E50914;
    cursor: default;
}
#tab-extra .services-grid li:hover {
    background: #FF8C00;
    border-color: #FF8C00;
    cursor: default;
}
#tab-extra .services-grid li:hover .extra-price {
    color: #fff;
}

.availability-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 20px 0;
}
.city-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
.city-card {
    background: #1E1E1E;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #333;
}
.city-card h3 {
    color: #E50914;
    margin-bottom: 5px;
}
.city-date {
    font-size: 0.9rem;
    color: #B0B0B0;
    margin-bottom: 10px;
}
.map-container {
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #333;
}
.btn-outline-dark {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    display: inline-block;
}
.btn-outline-dark:hover {
    background: #fff;
    color: #121212;
}
.see-more-container {
    grid-column: 1 / -1;
    text-align: center;
    margin: 20px 0;
}

.gift-list {
    list-style: none;
    padding: 0;
}
.gift-list li {
    padding: 8px 0;
    border-bottom: 1px solid #333;
    color: #fff;
}

.full-width-sections {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 20px 0;
}
.pricing-card {
    background: #1E1E1E;
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #333;
}
.pricing-card.featured {
    border: 2px solid #E50914;
    transform: scale(1.05);
}
.price {
    font-size: 2rem;
    font-weight: 700;
    color: #E50914;
    margin: 15px 0;
}
.features {
    list-style: none;
    margin: 20px 0;
    text-align: left;
    color: #B0B0B0;
}
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}
.btn-primary {
    background: #E50914;
    color: #fff;
}
.btn-outline {
    background: transparent;
    border: 2px solid #E50914;
    color: #E50914;
}
.btn-large {
    padding: 12px 30px;
    font-size: 1.1rem;
}
.btn-small {
    background: #E50914;
    color: #fff;
    padding: 6px 15px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.9rem;
}
.upsell-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.upsell-card {
    background: #1E1E1E;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #333;
}
.upsell-card h4 {
    color: #E50914;
    margin-bottom: 10px;
}
.upsell-card p {
    color: #B0B0B0;
}
.testimonials {
    background: #1E1E1E;
    padding: 30px;
    margin: 30px 0;
    border-radius: 12px;
    border: 1px solid #333;
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.testimonial-card {
    background: #2A2A2A;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #444;
    font-style: italic;
    color: #B0B0B0;
}
.testimonial-card cite {
    display: block;
    margin-top: 10px;
    font-style: normal;
    font-weight: 600;
    color: #E50914;
}
.final-cta {
    background: linear-gradient(135deg, #E50914, #b80710);
    color: #fff;
    text-align: center;
    padding: 50px 20px;
    border-radius: 12px;
    margin-top: 30px;
}
.final-cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #E50914;
    color: #fff;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
.scroll-top.show {
    display: flex;
}
footer {
    background: #1E1E1E;
    color: #B0B0B0;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid #333;
}
footer a {
    color: #E50914;
    text-decoration: none;
}

/* ===== FORMULAIRES AUTH ===== */
.auth-container {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}
.auth-form {
    background: #1E1E1E;
    border: 1px solid #333;
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.auth-form h1 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: #fff;
    text-align: center;
}
.auth-form .form-group {
    margin-bottom: 20px;
}
.auth-form label {
    display: block;
    margin-bottom: 8px;
    color: #B0B0B0;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"] {
    width: 100%;
    padding: 14px 18px;
    background: #2A2A2A;
    border: 1px solid #444;
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.auth-form input:focus {
    outline: none;
    border-color: #E50914;
    box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.2);
}
.auth-form .btn {
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
    margin-top: 10px;
}
.auth-form .auth-links {
    margin-top: 20px;
    text-align: center;
}
.auth-form .auth-links a {
    color: #E50914;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}
.auth-form .auth-links a:hover {
    color: #b80710;
}
.success-message {
    background: rgba(76, 175, 80, 0.2);
    border-left: 4px solid #4CAF50;
    color: #fff;
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}
.auth-form .error-message {
    background: rgba(229, 9, 20, 0.2);
    border-left: 4px solid #E50914;
    color: #fff;
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}
.auth-form .error-message p {
    margin-bottom: 5px;
}

/* ===== NOUVEAUX STYLES POUR RESPONSIVE ET FONCTIONNALITÉS ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    align-items: center;
    justify-content: center;
}
.modal-content {
    background: #1E1E1E;
    border: 1px solid #E50914;
    border-radius: 24px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(229,9,20,0.3);
}
.modal-content h2 {
    color: #E50914;
    margin-bottom: 20px;
}
.close-modal {
    float: right;
    font-size: 2rem;
    cursor: pointer;
    color: #B0B0B0;
}
.close-modal:hover {
    color: #E50914;
}
.btn-contrast {
    background: #fff;
    color: #E50914;
    border: 1px solid #E50914;
    border-radius: 50px;
    padding: 5px 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    margin-left: 10px;
}
.btn-contrast:hover {
    background: #E50914;
    color: #fff;
}
.read-more-btn {
    background: none;
    border: none;
    color: #E50914;
    cursor: pointer;
    font-weight: 600;
    margin-top: 10px;
    font-size: 1rem;
}
.read-more-btn:hover {
    text-decoration: underline;
}
.description-short {
    overflow: hidden;
    max-height: 200px;
    transition: max-height 0.5s;
}
.description-full {
    max-height: 2000px;
}
.see-more {
    display: inline-block;
    margin-top: 15px;
    color: #E50914;
    border: 1px solid #E50914;
    padding: 8px 20px;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.see-more:hover {
    background: #E50914;
    color: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .profile-layout {
        flex-direction: column;
    }
    .profile-sidebar, .profile-main {
        width: 100%;
    }
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .info-card-group {
        grid-column: span 2;
        flex-direction: row;
    }
    .info-card-group .info-card {
        flex: 1;
    }
    .services-fullwidth .services-list {
        grid-template-columns: repeat(3, 1fr);
    }
    #tab-included .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    #tab-extra .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .miniatures-row .miniature-item:nth-child(n+3) {
        display: none;
    }
    .gallery-large {
        display: none;
    }
    .services-fullwidth .services-list {
        display: flex;
        overflow-x: auto;
        gap: 10px;
        padding-bottom: 10px;
        grid-template-columns: none;
    }
    .services-fullwidth .services-list li {
        flex: 0 0 auto;
        white-space: nowrap;
    }
    .pricing-card:nth-child(n+3) {
        display: none;
    }
    .upsell-card:nth-child(n+3) {
        display: none;
    }
    .availability-grid {
        grid-template-columns: 1fr;
    }
    .city-list {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .city-list .city-card:nth-child(n+5) {
        display: none;
    }
    .availability-grid .city-list {
        order: 1;
    }
    .availability-grid .see-more-container {
        order: 2;
    }
    .availability-grid .map-container {
        order: 3;
    }
    .miniatures-row {
        flex-wrap: wrap;
    }
    .miniature-item {
        flex: 0 0 calc((100% - 20px) / 3);
    }
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .info-grid {
        grid-template-columns: 1fr;
    }
    .info-card-group {
        grid-column: span 1;
        flex-direction: column;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    .description-fullwidth ul {
        grid-template-columns: 1fr;
    }
    .status-block {
        flex-direction: column;
        align-items: center;
    }
    .status-avatar {
        margin-bottom: 10px;
    }
    .services-fullwidth .services-list {
        grid-template-columns: repeat(2, 1fr);
    }
    #tab-included .services-grid,
    #tab-extra .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    #tab-included .services-grid,
    #tab-extra .services-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 480px) {
    .miniature-item {
        flex: 0 0 calc((100% - 10px) / 2);
    }
    .site-header .container {
        flex-direction: column;
        gap: 10px;
    }
    .nav-menu {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .services-fullwidth .services-list {
        grid-template-columns: 1fr;
    }
}