/* CSS Variables for Premium Light Marble/Gold Theme */
:root {
    --bg-main: #ffffff;
    --bg-secondary: #f4f4f4;
    --bg-dark-panel: #3a3835;
    --accent-gold: #c3a35a;
    --accent-gold-hover: #a18544;
    --text-main: #222222;
    --text-muted: #555555;
    --text-light: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(0, 0, 0, 0.05);
    --whatsapp-color: #25d366;

    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;

    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-main);
    background-image: url('../images/marble_bg.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.bg-dark-panel {
    background-color: var(--bg-dark-panel);
    color: var(--text-light);
}

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

.accent {
    color: var(--accent-gold);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.bg-dark-panel .section-title {
    color: var(--accent-gold);
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 600;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 5px;
    font-weight: 500;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background-color: var(--accent-gold-hover);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid var(--text-main);
}

.bg-dark-panel .btn-outline {
    color: var(--text-light);
    border-color: var(--accent-gold);
}

.btn-outline:hover {
    background-color: var(--accent-gold);
    color: #fff;
    border-color: var(--accent-gold);
}

/* Navigation */
.navbar {
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
    position: relative;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 60px;
    height: auto;
    max-height: 60px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-gold);
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: 2px;
}

/* Custom Language Selector */
.custom-lang-selector {
    position: relative;
    background: #3a3835;
    color: #fff;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    user-select: none;
    z-index: 1000;
}

.lang-current {
    padding: 8px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 90px;
}

.lang-flag {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
}

.lang-options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #3a3835;
    border-radius: 0 0 5px 5px;
    overflow: hidden;
    display: none;
    flex-direction: column;
}

.custom-lang-selector.open .lang-options {
    display: flex;
}

.custom-lang-selector.open {
    border-radius: 5px 5px 0 0;
}

.lang-option {
    padding: 8px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
}

.lang-option:hover {
    background: var(--accent-gold);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-main);
}

/* Hero Embedded Image */
.hero-embedded {
    max-width: 900px;
    margin: 0 auto 40px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.hero-embedded img {
    width: 100%;
    height: 750px;
    object-fit: cover;
    object-position: center 20%;
    display: block;
}

.hero-embedded-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    text-align: center;
}

.hero-embedded h1 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.hero-embedded-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

/* About Section */
.about-section {
    padding: 60px 0;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-section h2 {
    font-size: 2.5rem;
    color: var(--text-main);
    margin-bottom: 20px;
}

.about-section p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Dark Panels */
.info-bar {
    display: flex;
    justify-content: center;
    background: var(--bg-dark-panel);
    color: #fff;
}

.info-bar-item {
    flex: 1;
    text-align: center;
    padding: 30px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.info-bar-item:last-child {
    border-right: none;
    background: #eceadd;
    /* Lighter panel from image 2 */
    color: var(--text-main);
}

.info-bar h3 {
    font-size: 1.2rem;
    font-family: var(--font-primary);
    font-weight: 400;
}

.info-bar p {
    font-size: 0.9rem;
    margin-top: 10px;
}

/* Gallery Section */
.gallery-section {
    background: var(--bg-dark-panel);
    padding: 60px 0;
}

.gallery-header {
    text-align: center;
    margin-bottom: 40px;
    color: #fff;
}

.gallery-header h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 10px;
}

.gallery-header .btn-outline {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    border: 3px solid #E5E4E2;
    box-shadow: 0 0 15px rgba(229, 228, 226, 0.4);
    aspect-ratio: 4/5;
    position: relative;
    background: #000;
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Sidebar Price List */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.price-sidebar {
    position: fixed;
    top: 0;
    left: -400px;
    width: 400px;
    max-width: 85%;
    height: 100%;
    background: var(--bg-main);
    z-index: 10001;
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    overflow-y: auto;
    padding: 30px 20px;
}

.price-sidebar.active {
    left: 0;
}

.sidebar-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-main);
}

.sidebar-title {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent-gold);
    color: var(--text-main);
}

.sidebar-btn {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: var(--bg-dark-panel);
    color: #fff;
    padding: 15px 10px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 2px;
    transition: var(--transition);
}

.sidebar-btn:hover {
    background: var(--accent-gold);
}

.sidebar-btn i {
    transform: rotate(90deg);
}

.price-sidebar .price-item {
    padding: 10px 0;
}

.price-sidebar .price-name {
    font-size: 0.95rem;
}

.price-sidebar .price-value {
    font-size: 1.1rem;
}

/* Services / Price List Page */
.page-header {
    text-align: center;
    padding: 60px 0 40px;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--text-main);
}

.page-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 10px auto 0;
}

.price-list-container {
    max-width: 800px;
    margin: 0 auto 60px;
    background: var(--glass-bg);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

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

.price-name {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-main);
}

.price-en {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    display: block;
}

.price-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-gold);
}

.price-disclaimer {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Contact Page Widgets */
.branches-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.branch-card {
    background: var(--glass-bg);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.branch-card h3 {
    font-size: 1.8rem;
    color: var(--text-main);
    margin-bottom: 15px;
}

.branch-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    border-radius: 10px;
    object-fit: cover;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-container {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Google Reviews Widget */
.google-reviews-widget {
    margin-top: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(253, 251, 245, 0.98));
    padding: 22px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(195, 163, 90, 0.08), 0 1px 3px rgba(0, 0, 0, 0.02);
    text-align: left;
    border: 1px solid rgba(195, 163, 90, 0.25);
    display: block;
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.google-reviews-widget:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(195, 163, 90, 0.15), 0 2px 6px rgba(0, 0, 0, 0.04);
    border-color: var(--accent-gold);
}

/* Google Reviews Slider */
.review-slider {
    position: relative;
    height: 52px;
    overflow: hidden;
    margin-top: 12px;
}

.review-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(45px);
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.92rem;
    line-height: 1.45;
    color: var(--text-muted);
    font-style: italic;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.review-slide.exit {
    opacity: 0;
    transform: translateX(-45px);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.rating {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
}

.stars {
    color: #fbbc04;
    font-size: 1.2rem;
}

.google-logo {
    width: 20px;
    height: auto;
    margin-left: auto;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Footer (Updated to Marble) */
.footer {
    background-image: url('../images/marble_bg.png');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    padding: 60px 0 30px;
    color: var(--text-main);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.contact-text {
    max-width: 600px;
    margin: 0 auto 30px;
    text-align: center;
    color: var(--text-muted);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-gold);
    color: #fff;
    border-color: var(--accent-gold);
}

.copyright {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-align: center;
    position: relative;
}

.admin-icon {
    position: absolute;
    right: 0;
    top: 20px;
    color: var(--text-muted);
    transition: var(--transition);
}

.admin-icon:hover {
    color: var(--accent-gold);
}

/* Floating Action Buttons */
.floating-whatsapp-container,
.floating-buttons-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #fff;
    transition: var(--transition);
    text-decoration: none;
}

.floating-btn.floating-whatsapp {
    background-color: var(--whatsapp-color);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.floating-btn.floating-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 4px 15px rgba(220, 39, 67, 0.4);
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-3px);
}

/* Branch Cards Social Icons (Mikail style but with premium theme) */
.branch-social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.branch-social-icons .social-icon {
    font-size: 1.6rem;
    color: var(--text-main);
    transition: var(--transition);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fcfbfa;
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
}

.branch-social-icons .social-icon:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.branch-social-icons .social-icon[aria-label="Telefon"]:hover {
    background: #007bff;
    border-color: #007bff;
}

.branch-social-icons .social-icon[aria-label="WhatsApp"]:hover {
    background: var(--whatsapp-color);
    border-color: var(--whatsapp-color);
}

.branch-social-icons .social-icon[aria-label="Instagram"]:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
}

.branch-social-icons .social-icon[aria-label="Facebook"]:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.branch-social-icons .social-icon[aria-label="TikTok"]:hover {
    background: #010101;
    border-color: #010101;
}

/* Products Carousel */
.products-section {
    background: var(--glass-bg);
    padding: 60px 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.products-title {
    text-align: center;
    color: var(--text-main);
    font-size: 2.5rem;
    font-family: var(--font-heading);
    margin-bottom: 40px;
}

.carousel-track {
    display: flex;
    gap: 30px;
    /* 6 items * 250px + 6 items * 30px gap = 1680px. * 2 for seamless = 3360px. */
    width: max-content;
    animation: scrollProducts 30s linear infinite;
}

.carousel-item {
    width: 250px;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 3px solid #E5E4E2;
    flex-shrink: 0;
    position: relative;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

@keyframes scrollProducts {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 7 - 30px * 7));
    }
}

/* Responsive */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-flow: dense;
    }

    .gallery-grid .gallery-item:nth-child(4n-1) {
        grid-column: 2;
    }

    .gallery-grid .gallery-item:nth-child(4n) {
        grid-column: 1;
    }

    .branches-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 40px 0;
    }

    .page-header {
        padding: 40px 0 20px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--glass-bg);
        backdrop-filter: blur(10px);
        padding: 20px;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        gap: 15px;
        text-align: center;
    }

    .nav-links.active {
        display: flex !important;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-embedded img {
        height: 400px;
    }

    .hero-embedded h1 {
        font-size: 1.8rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .gallery-header h2 {
        font-size: 1.5rem;
    }

    .info-bar {
        flex-direction: column;
    }

    .info-bar-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 20px;
    }

    .price-list-container {
        padding: 20px;
    }

    .price-name {
        font-size: 1rem;
    }

    .price-value {
        font-size: 1rem;
    }

    .branch-card {
        padding: 20px;
    }

    .map-container {
        height: 250px;
    }

    .branch-social-icons {
        gap: 15px;
        margin: 20px 0;
    }

    .branch-social-icons .social-icon {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
        background: #fcfbfa;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    }

    .floating-whatsapp-container,
    .floating-buttons-container {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }

    .admin-icon {
        position: static;
        display: block;
        margin-top: 15px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-img-first {
        order: 1;
    }

    /* Hide the 9th item in mobile (when odd and last) */
    .gallery-grid .gallery-item:nth-child(odd):last-child {
        display: none;
    }

    .products-section {
        padding: 30px 0;
    }

    .products-title {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

    .carousel-item {
        width: 140px;
        height: 196px;
        border-width: 2px;
    }

    .carousel-track {
        gap: 10px;
        width: max-content;
        animation: scrollProductsMobile 20s linear infinite;
    }

    @keyframes scrollProductsMobile {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-140px * 7 - 10px * 7));
        }
    }
}

/* Google Reviews Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1200;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal.show {
    opacity: 1;
}

.modal-content {
    background-color: var(--bg-main);
    border-radius: 16px;
    width: 100%;
    max-width: 600px;
    padding: 30px;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
    border: 1px solid var(--glass-border);
    transform: translateY(-30px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 85vh;
    display: flex;
    flex-direction: column;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.8rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.02);
}

.modal-close:hover {
    color: var(--accent-gold);
    background: rgba(0, 0, 0, 0.05);
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 15px;
}

.modal-title i {
    color: #4285F4;
}

#modal-reviews-container {
    overflow-y: auto;
    flex: 1;
    margin-bottom: 20px;
    padding-right: 8px;
}

/* Custom Scrollbar for Reviews Modal */
#modal-reviews-container::-webkit-scrollbar {
    width: 6px;
}
#modal-reviews-container::-webkit-scrollbar-track {
    background: transparent;
}
#modal-reviews-container::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 3px;
}

.modal-review-card {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 15px;
    transition: var(--transition);
}

.modal-review-card:hover {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.06);
}

.modal-review-card .author-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.modal-review-card .author-name {
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.95rem;
}

.modal-review-card .review-stars {
    color: var(--accent-gold);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.modal-review-card .review-text {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text-muted);
    font-style: italic;
}

.modal-footer {
    display: flex;
    gap: 15px;
    border-top: 1px solid var(--glass-border);
    padding-top: 20px;
    justify-content: flex-end;
}

.modal-footer .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 576px) {
    .modal-content {
        padding: 20px;
        max-height: 90vh;
    }
    .modal-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }
    .modal-footer {
        flex-direction: column;
        gap: 10px;
        padding-top: 15px;
    }
    .modal-footer .btn {
        width: 100%;
        padding: 10px 20px;
    }
}