:root {
    --primary-color: #8b0000;
    /* Deep Crimson accents */
    --secondary-color: #b8860b;
    /* Darker Gold for visibility on light bg */
    --bg-light: #ffffff;
    --bg-beige: #fdf5e6;
    /* Old Lace / Beige */
    --text-dark: #2c2c2c;
    --text-muted: #555;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

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

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: clip;
    /* Clip horizontal overflow without breaking Safari sticky positioning */
}

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

/* Header Styles */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background: rgba(93, 64, 55, 0.95);
    /* Brown */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(184, 134, 11, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--secondary-color);
}

.header-center ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.header-center ul li a {
    text-decoration: none;
    color: var(--bg-beige);
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header-center ul li a:hover {
    color: var(--secondary-color);
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    color: var(--bg-beige);
    font-size: 1.4rem;
    transition: transform 0.3s, color 0.3s;
}

.social-icons a:hover {
    color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Hero Section */
.hero {
    margin-top: 90px;
    height: 80vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 100px;
    color: white;
    /* Keep white text for hero as it has a dark overlay */
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-family: var(--font-heading);
    color: #e0d8cd;
    font-size: 1.5rem;
    margin-bottom: 10px;
    letter-spacing: 3px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 30px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.cta-button {
    background-color: #9C8F82;
    color: white;
    border: 1px solid white;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 5px;
    display: inline-block;
    text-decoration: none;
}

.cta-button:hover {
    background-color: transparent;
    border-color: #9C8F82;
    color: #9C8F82;
}

/* Welcome Section */
.welcome-section {
    padding: 100px 0;
    text-align: center;
    background-color: var(--bg-beige);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.blog-row {
    display: flex;
    gap: 100px;
    justify-content: center;
    flex-wrap: wrap;
}

.blog-card.simple {
    flex: 1;
    min-width: 500px;
    padding: 40px;
    background: white;
    border: 1px solid rgba(184, 134, 11, 0.1);
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.blog-card.simple:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-color);
}

.blog-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

/* Vibe Section */
.vibe-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0;
    margin: 40px 0;
    background-color: var(--bg-beige);
}

/* Featured Blog with Images */
.featured-blogs {
    padding: 100px 0;
    margin-top: 00px;
    background-color: var(--bg-light);
}

.blog-card.with-img {
    flex: 1;
    min-width: 400px;
    background: var(--bg-beige);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(184, 134, 11, 0.1);
}

.blog-card.with-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s;
}

.blog-card.with-img:hover img {
    transform: scale(1.1);
}

.blog-content {
    padding: 30px;
}

.blog-content h3 {
    color: var(--primary-color);
}

.blog-content p {
    color: var(--text-muted);
}

/* Testimonials Slider */
.testimonials {
    padding: 100px 0;
    background: url('img/testimonial_bg.png') center/cover no-repeat;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    /* Dark overlay */
    z-index: 0;
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.testimonials .section-title {
    color: var(--bg-beige);
}

.slider-container {
    overflow: hidden;
    padding: 20px 0;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: calc(33.333% - 20px);
    margin: 0 10px;
    background: linear-gradient(135deg, rgba(253, 245, 230, 0.9) 0%, rgba(253, 245, 230, 0.3) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    font-style: italic;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    color: #1a1a1a; /* Darker text for comments readability */
}

.slide span {
    display: block;
    margin-top: 20px;
    font-weight: 600;
    font-style: normal;
    color: #3e2723; /* Dark brown color for the author name */
}

/* Footer */
.main-footer {
    background: #5D4037;
    /* Brown */
    padding: 80px 0 30px;
    border-top: 2px solid var(--secondary-color);
    color: var(--bg-beige);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-grid h3 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.footer-info p {
    margin-bottom: 15px;
    color: #e0d8cd;
}

.footer-info i {
    color: var(--primary-color);
    margin-right: 10px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #e0d8cd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bbb;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1200px) {}

@media (max-width: 992px) {
    .slide {
        min-width: calc(50% - 20px);
    }

    .header-center {
        display: none;
    }

    .blog-row {
        gap: 30px;
    }

    .blog-card.simple {
        min-width: 100%;
    }

    .vibe-section {
        padding: 40px 0;
    }

    .featured-blogs {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .main-header {
        padding: 15px 20px;
    }

    .header-logo {
        width: 50px;
        height: 50px;
    }

    /* Hero Section Mobile Adjustments */
    .hero {
        margin-top: 70px;
        /* Overlaps slightly with 80px header to ensure no gap */
        padding-top: 40px;
        height: 70vh;
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .small-hero {
        height: 40vh;
        padding-top: 40px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .blog-card.with-img {
        min-width: 100%;
    }

    .slide {
        min-width: 100%;
    }

    .footer-grid {
        text-align: center;
        gap: 30px;
    }
}

.frida-img {
    display: block;
    margin: 0 auto;
    height: auto;
    width: 90%;
    max-width: 800px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Page Specific Styles */

/* Small Hero for internal pages */
.small-hero {
    height: 50vh;
    padding-top: 80px;
}

/* Menu Styles */
.menu-section {
    padding: 80px 0;
}

.menu-category {
    margin-bottom: 60px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.menu-item {
    display: flex;
    gap: 20px;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px dashed rgba(93, 64, 55, 0.3);
}

.menu-item img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid var(--secondary-color);
}

.menu-item-info {
    flex: 1;
}

.cta-button.small {
    padding: 8px 20px;
    font-size: 0.8rem;
    margin-top: 15px;
    display: inline-block;
    text-decoration: none;
}

.price {
    font-weight: 600;
    color: var(--secondary-color);
    white-space: nowrap;
}

/* Gallery Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 80px 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

/* About Styles */
.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
    padding: 80px 0;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 20px 20px 0 var(--bg-beige);
}

/* Contact Styles */
.contact-section {
    display: flex;
    gap: 50px;
    padding: 80px 0;
}

.contact-form {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.submit-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

@media (max-width: 768px) {

    .about-content,
    .contact-section {
        flex-direction: column;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    z-index: 2001;
    background: var(--bg-light);
    width: 90%;
    max-width: 1000px;
    height: 80vh;
    border-radius: 10px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    animation: modalPop 0.3s ease-out forwards;
}

@keyframes modalPop {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: var(--text-muted);
    cursor: pointer;
    z-index: 2002;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--primary-color);
}

.modal-image-container {
    flex: 6;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.modal-details {
    flex: 4;
    display: flex;
    flex-direction: column;
    background: var(--bg-light);
    border-left: 1px solid #eee;
}

.modal-header {
    display: flex;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 15px;
    border: 1px solid var(--secondary-color);
}

.username {
    font-weight: 600;
    color: var(--text-dark);
}

.modal-comments {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.comment {
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.comment-user {
    font-weight: 600;
    margin-right: 10px;
    color: var(--text-dark);
}

.modal-input-area {
    padding: 15px 20px;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #fafafa;
}

.modal-input-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.reviewer-name-input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    outline: none;
    font-family: inherit;
    font-size: 0.9rem;
    background: #fff;
    color: var(--text-dark);
}

.reviewer-name-input:focus,
.modal-comment-row .comment-input:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 4px rgba(184, 134, 11, 0.2);
}

.star-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    user-select: none;
}

.stars-row {
    display: flex;
    gap: 5px;
}

.stars-row i {
    font-size: 1.2rem;
    color: #ccc;
    cursor: pointer;
    transition: color 0.2s, transform 0.1s;
}

.stars-row i:hover {
    transform: scale(1.2);
}

.stars-row i.fas {
    color: var(--secondary-color);
}

.modal-comment-row {
    display: flex;
    align-items: flex-end;
    gap: 12px;
}

.modal-comment-row .comment-input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    outline: none;
    font-family: inherit;
    font-size: 0.9rem;
    resize: none;
    height: 60px;
    background: #fff;
    color: var(--text-dark);
}

.modal-comment-row .post-comment-btn {
    background: var(--secondary-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.3s, opacity 0.3s;
    white-space: nowrap;
}

.modal-comment-row .post-comment-btn:hover {
    background: #9d7108;
}

.modal-comment-row .post-comment-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Yorum renderlama stilleri */
.comment {
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f5f5f5;
    font-size: 0.95rem;
}

.comment:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.comment-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 5px;
}

.comment-user {
    font-weight: 600;
    color: var(--text-dark);
}

.review-stars {
    color: var(--secondary-color);
    font-size: 0.85rem;
    display: inline-flex;
    gap: 2px;
}

.comment-date {
    font-size: 0.75rem;
    color: #999;
    margin-left: auto;
}

.edit-badge {
    background: rgba(184, 134, 11, 0.1);
    color: var(--secondary-color);
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
}

.comment-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    word-break: break-word;
}

@media (max-width: 768px) {
    .modal-content {
        flex-direction: column;
        height: 92vh;
        max-height: 92vh;
        width: 95%;
    }

    .modal-image-container {
        flex: none;
        height: 40%;
    }

    .modal-details {
        flex: 1;
        height: 60%;
        border-left: none;
        border-top: 1px solid #eee;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .modal-comments {
        flex: 1;
        overflow-y: auto;
    }

    .close-modal {
        color: white;
        right: 10px;
        top: 10px;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }
}

/* Blog Detail Modal Styles */
.blog-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    justify-content: center;
    align-items: center;
}

.blog-modal.active {
    display: flex;
}

.blog-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.blog-modal-content {
    position: relative;
    z-index: 3001;
    background: var(--bg-light);
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    animation: blogFadeIn 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes blogFadeIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-blog-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 35px;
    color: #fff;
    background: rgba(139, 0, 0, 0.8);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3002;
    transition: all 0.3s;
}

.close-blog-modal:hover {
    background: var(--primary-color);
    transform: rotate(90deg);
}

.blog-modal-body {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    max-height: 90vh;
}

.blog-modal-image {
    width: 100%;
    height: 400px;
}

.blog-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-modal-info {
    padding: 40px;
    background: var(--bg-light);
}

.blog-modal-info h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.blog-meta i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.blog-modal-info hr {
    border: 0;
    border-top: 1px solid #eee;
    margin-bottom: 25px;
}

#blog-detail-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.blog-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    background: var(--bg-beige);
    color: var(--secondary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .blog-modal-image {
        height: 250px;
    }

    .blog-modal-info {
        padding: 25px;
    }

    .blog-modal-info h2 {
        font-size: 1.8rem;
    }
}

/* --- YENİ DİNAMİK MENÜ KART VE GRID STİLLERİ --- */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
    /* Masaüstünde esnek kart dağılımı */
    gap: 35px;
    justify-content: center;
}

.menu-section .blog-card.with-img {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    /* Kartların genişliğini grid sütununa eşitle */
    margin: 0;
    min-width: 0 !important;
    /* Min-width ezilsin */
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.menu-section .blog-card.with-img:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-color);
}

.menu-section .blog-card.with-img img {
    width: 100%;
    height: 250px;
    /* PC'de ideal fotoğraf yüksekliği (anasayfadan biraz daha minimal) */
    object-fit: cover;
}

.menu-section .blog-card.with-img .blog-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 25px;
}

.menu-section .blog-card.with-img .blog-content h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--primary-color);
}

.menu-section .blog-card.with-img .blog-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    /* 2 satırda kırpma */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.menu-section .blog-card.with-img .blog-content .open-product-detail {
    align-self: flex-start;
    margin-top: auto;
    width: auto;
}

/* Responsive Düzenlemeler */
@media (max-width: 992px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        /* Tabletlerde 2 sütun */
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .menu-grid {
        grid-template-columns: 1fr !important;
        /* Mobilde tek sütun */
        gap: 30px;
        padding: 0 20px;
    }

    .menu-section .blog-card.with-img {
        width: 100%;
        /* Sınırlandırılmış genişlik içinde tam yayılmasını sağla */
        max-width: 320px;
        /* Mobilde kaba durmaması için kart genişliği */
        margin: 0 auto;
    }

    .menu-section .blog-card.with-img img {
        height: 180px;
        /* Mobilde fotoğraf yüksekliği */
    }

    .menu-section .blog-card.with-img .blog-content {
        padding: 20px;
    }
}

/* --- MOBILE NAVIGATION DRAWER & SIDEBAR --- */

/* Header Right Flexbox Alignment */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--bg-beige);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s, transform 0.2s;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn:hover {
    color: var(--secondary-color);
}

.mobile-menu-btn:active {
    transform: scale(0.9);
}

/* Sidebar Backdrop Overlay */
.sidebar-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

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

/* Mobile Sidebar Drawer */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 50vw;
    height: 100vh;
    background: rgba(93, 64, 55, 0.95);
    /* Brown theme matches main-header */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 2000;
    padding: 90px 30px 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
    border-left: 1px solid rgba(184, 134, 11, 0.2);
}

.mobile-sidebar.active {
    right: 0;
}

/* Close Button in Sidebar */
.close-sidebar {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 2.2rem;
    color: var(--bg-beige);
    cursor: pointer;
    transition: color 0.3s, transform 0.3s;
    line-height: 1;
}

.close-sidebar:hover {
    color: var(--secondary-color);
    transform: rotate(90deg);
}

/* Sidebar Navigation */
.sidebar-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-nav ul li a {
    text-decoration: none;
    color: var(--bg-beige);
    font-size: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    transition: color 0.3s, padding-left 0.3s;
}

.sidebar-nav ul li a:hover,
.sidebar-nav ul li a.active {
    color: var(--secondary-color);
    padding-left: 10px;
}

/* 2x2 Social Media Grid inside Sidebar */
.sidebar-social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 100%;
    max-width: 140px;
    margin-top: 10px;
    /* Bring it up, close to navigation links */
}

.sidebar-social-grid a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    aspect-ratio: 1;
    border-radius: 8px;
    color: var(--bg-beige);
    font-size: 1.4rem;
    border: 1px solid rgba(184, 134, 11, 0.15);
    text-decoration: none;
    /* Remove any underlines */
    transition: background 0.3s, color 0.3s, transform 0.3s;
}

.sidebar-social-grid a:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
}

/* Responsive Media Queries for Mobile Menu */
@media (max-width: 992px) {
    .mobile-menu-btn {
        display: flex;
        /* Make it visible on screens where header links hide */
    }
}

@media (max-width: 576px) {
    .mobile-sidebar {
        width: 70vw;
        /* Take more width on very small phone screens for better legibility */
        padding: 90px 20px 40px;
    }
}

/* --- CATEGORY NAVIGATION BAR --- */

/* Desktop Layout (screens > 992px) */
@media (min-width: 993px) {
    .menu-layout-container {
        margin-top: 40px;
        margin-bottom: 80px;
        position: relative;
    }

    .category-nav-bar {
        display: flex;
        flex-direction: column;
        width: 160px;
        /* Shortened sidebar width */
        position: absolute;
        top: 145px;
        /* Starts next to Kahvaltılar heading (below concept banner) */
        left: calc(20px - (100vw - min(1200px, 100vw)) / 2);
        /* Kept at exactly 20px from screen left edge */
        z-index: 990;
        background: transparent;
        /* Keep original transparent background */
        border: none;
        border-radius: 0;
        padding: 0;
        gap: 8px;
        /* Tighter gap */
        max-height: calc(100vh - 180px);
        overflow-y: auto;
        scrollbar-width: none;
        /* Hide scrollbars Firefox */
    }

    .category-nav-bar.sticky {
        position: fixed;
        top: 130px;
        /* Sticky offset top under fixed header */
        left: 20px;
        /* Locked to screen left */
        transform: none;
        bottom: auto;
    }

    .category-nav-bar.stopped {
        position: absolute;
        top: auto;
        bottom: 40px;
        /* Sit exactly 40px from bottom of menu-layout-container */
        left: calc(20px - (100vw - min(1200px, 100vw)) / 2);
        /* Aligned with screen left edge */
        transform: none;
    }

    .menu-main-content {
        width: 100%;
        /* Spans full width of centered container, not pushed */
        padding-left: max(0px, 180px - (100vw - min(1200px, 100vw)) / 2);
        /* Shifts right only as much as needed to clear the sidebar on narrow screens */
    }
}

.menu-section {
    padding: 0;
}

.category-nav-bar::-webkit-scrollbar {
    display: none;
    /* Hide scrollbars Chrome/Safari */
}

.category-nav-item {
    width: 100%;
    text-align: left;
    background: #5D4037;
    /* Warm brand brown matching the header */
    border: 1px solid #5D4037;
    /* Warm brand brown border */
    color: var(--bg-beige);
    /* Light beige text color */
    padding: 8px 14px;
    /* Shorter proportional padding */
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    /* Slightly smaller text for proportionality */
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    outline: none;
    -webkit-tap-highlight-color: transparent;
    flex-shrink: 0;
}

.category-nav-item:hover,
.category-nav-item.active {
    background: var(--bg-beige) !important;
    /* Light beige background on active/hover */
    color: #5D4037 !important;
    /* Warm brand brown text color */
    border-color: var(--bg-beige) !important;
    transform: translateX(5px);
    /* Indent right on hover like a sidebar list */
    box-shadow: 0 4px 12px rgba(93, 64, 55, 0.25);
}

.category-nav-item:active {
    transform: scale(0.97);
}

/* Offset for jumping directly under desktop header + spacing */
.menu-category {
    scroll-margin-top: 120px;
}

/* Responsive Overrides for Mobile & Tablet */
@media (max-width: 992px) {
    .menu-layout-container {
        display: block;
        margin-top: 0;
        padding: 0 !important;
        /* Full width edge-to-edge for category bar */
    }

    .menu-main-content {
        width: 100%;
        padding: 0 20px;
        /* Keep content padded from screen edges */
    }

    .menu-section {
        padding: 20px 0 80px;
    }

    .category-nav-bar {
        position: -webkit-sticky;
        position: sticky;
        top: 115px;
        /* Floating 15px beneath the 100px header on tablet */
        display: flex;
        flex-direction: row;
        width: calc(100% - 40px);
        /* Restricted from sides */
        margin: 15px auto 25px;
        /* Margin top gap & centered horizontally */
        max-height: none;
        background: rgba(93, 64, 55, 0.96);
        /* Brown matching main header */
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(184, 134, 11, 0.3);
        /* Premium gold border all around */
        border-radius: 30px;
        /* Rounded corners */
        padding: 12px 20px;
        gap: 10px;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        /* More premium shadow for floating effect */
        z-index: 990;
    }

    .category-nav-item {
        width: auto;
        text-align: center;
        background: #522a1f;
        /* Darkest brown on mobile too */
        border: 1px solid #1a0c08;
        color: var(--bg-beige);
        padding: 7px 15px;
        border-radius: 20px;
        font-size: 0.85rem;
    }

    .category-nav-item:hover,
    .category-nav-item.active {
        background: var(--bg-beige) !important;
        color: #1a0c08 !important;
        /* Darkest brown text on active/hover */
        border-color: var(--bg-beige) !important;
        transform: translateY(-1px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }

    .category-nav-item:active {
        transform: scale(0.95);
    }

    .menu-category {
        scroll-margin-top: 190px;
        /* 115px category bar top + ~60px bar height + 15px gap */
    }
}

@media (max-width: 768px) {
    .menu-main-content {
        padding: 0 15px;
        /* Tighter padding for phones */
    }

    .category-nav-bar {
        top: 95px;
        /* Floating 15px beneath the 80px header on mobile */
        width: calc(100% - 30px);
        /* Narrower on mobile screens */
        padding: 10px 15px;
    }

    .menu-category {
        scroll-margin-top: 165px;
        /* 95px category bar top + ~54px bar height + 16px gap */
    }
}

/* --- BREAKFAST CONCEPT BANNER CARD --- */
.concept-banner-container {
    width: 100%;
    margin-bottom: 30px;
}

.concept-banner-card {
    display: flex;
    align-items: center;
    gap: 25px;
    background: var(--bg-beige);
    /* Old Lace / Beige matching the theme */
    border: 1px solid rgba(184, 134, 11, 0.3);
    /* Gold border */
    border-radius: 16px;
    padding: 25px 35px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.concept-banner-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.15);
}

.concept-banner-icon {
    font-size: 2.2rem;
    color: var(--secondary-color);
    /* Gold color */
    background: rgba(184, 134, 11, 0.08);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(184, 134, 11, 0.15);
    transition: transform 0.3s ease;
}

.concept-banner-card:hover .concept-banner-icon {
    transform: rotate(-10deg) scale(1.05);
}

.concept-banner-text {
    flex-grow: 1;
}

.concept-banner-text h3 {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    color: var(--primary-color);
    /* Deep crimson */
    margin: 0 0 8px 0;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.concept-banner-text p {
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* Responsive adjustments for tablet and mobile */
@media (max-width: 992px) {
    .concept-banner-container {
        margin: 30px auto 15px;
        padding: 0 20px;
    }

    .concept-banner-card {
        padding: 22px 30px;
    }
}

@media (max-width: 768px) {
    .concept-banner-container {
        margin: 20px auto 10px;
        padding: 0 15px;
    }

    .concept-banner-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 15px;
    }

    .concept-banner-icon {
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }

    .concept-banner-text h3 {
        font-size: 1.3rem;
        margin-bottom: 6px;
    }

    .concept-banner-text p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

/* --- LANGUAGE SWITCHER SYSTEM --- */
.lang-switcher {
    display: flex;
    gap: 8px;
    align-items: center;
}

.lang-btn {
    width: 32px;
    height: 32px;
    padding: 0;
    border: 1px solid rgba(253, 245, 230, 0.3);
    /* Premium transparent old-lace border */
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    outline: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.lang-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(45%);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.lang-btn:hover {
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(184, 134, 11, 0.15);
}

.lang-btn:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.lang-btn.active {
    border-color: var(--secondary-color);
    background: rgba(184, 134, 11, 0.15);
    /* Gold background glow */
    box-shadow: 0 0 10px rgba(184, 134, 11, 0.4);
    transform: none;
}

.lang-btn.active img {
    filter: grayscale(0%);
}

.lang-btn:active {
    transform: scale(0.95);
}

/* Clear mobile header space by hiding social icons and fitting lang switcher */
@media (max-width: 768px) {
    .main-header .social-icons {
        display: none;
        /* Social icons are already in the mobile sidebar drawer */
    }

    .lang-switcher {
        gap: 6px;
    }

    .lang-btn {
        width: 30px;
        height: 30px;
    }
}

/* --- HOMEPAGE DYNAMIC REVIEWS & GOOGLE SIGN-IN --- */
.homepage-reviews-section {
    margin-top: 50px;
    padding: 30px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.reviews-subtitle {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
}

.reviews-subtitle::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

.homepage-comments-list {
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 35px;
    padding-right: 10px;
}

/* Scrollbar styling for reviews list */
.homepage-comments-list::-webkit-scrollbar {
    width: 6px;
}

.homepage-comments-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.homepage-comments-list::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.homepage-comments-list::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

.homepage-comment-form-container {
    background: #fafafa;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #eaeaea;
}

.homepage-comment-form-container .form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.homepage-comment-form-container .form-header h4 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--text-dark);
    margin: 0;
}

.comment-form-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: opacity 0.3s ease;
}

.comment-form-inner.disabled {
    pointer-events: none;
}

.comment-form-inner.disabled .stars-row i,
.comment-form-inner.disabled .comment-textarea,
.comment-form-inner.disabled #homepage-submit-btn {
    opacity: 0.4;
    cursor: not-allowed;
}

.form-overlay-msg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    background: rgba(250, 250, 250, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.95rem;
    padding: 20px;
    box-sizing: border-box;
}

.comment-form-inner:not(.disabled) .form-overlay-msg {
    display: none !important;
}

.user-profile-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.user-profile-info {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 6px 12px;
    border-radius: 25px;
    border: 1px solid #ddd;
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--secondary-color);
}

.user-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.logout-google-btn {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 0.85rem;
    padding: 2px;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logout-google-btn:hover {
    color: #d9534f;
}

.form-comment-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.comment-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    resize: vertical;
    font-family: inherit;
    font-size: 0.92rem;
    background: #fff;
    color: var(--text-dark);
    transition: border-color 0.3s;
}

.comment-textarea:focus {
    border-color: var(--secondary-color);
}


/* --- REVERTED GALLERY ZOOM MODAL --- */
.modal-content.gallery-zoom-content {
    background: transparent;
    box-shadow: none;
    max-width: 90%;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.full-width-zoom {
    flex: 1;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.full-width-zoom img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

/* --- COMMENT USER AVATARS & INITIALS BADGES --- */
.comment-header-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.comment-avatar-container {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-beige);
    border: 1px solid rgba(184, 134, 11, 0.3);
    flex-shrink: 0;
}

.comment-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-avatar-initial {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.comment-meta-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.comment-meta-top {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.comment-meta-info .review-stars {
    font-size: 0.8rem;
    color: var(--secondary-color);
}

.comment-text {
    padding-left: 50px;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.5;
}


.comment-email-inline {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: normal;
    margin-left: 5px;
    opacity: 0.85;
}

/* --- REVIEWS SUMMARY HEADER --- */
.reviews-summary-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-beige);
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.summary-score-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.summary-score-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.summary-score-stars {
    color: var(--secondary-color);
    font-size: 1.1rem;
    display: flex;
    gap: 3px;
    margin: 4px 0;
}

.summary-total-count {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* --- GOOGLE LOGIN SIMULATION MODAL --- */
.google-login-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    display: none;
    justify-content: center;
    align-items: center;
}

.google-login-modal.active {
    display: flex;
}

.google-login-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
}

.google-login-content {
    position: relative;
    z-index: 3001;
    background: #fff;
    width: 90%;
    max-width: 440px;
    border-radius: 8px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
    padding: 35px 30px;
    font-family: 'Roboto', 'Open Sans', 'Poppins', sans-serif;
    color: #202124;
    animation: googlePop 0.25s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

@keyframes googlePop {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.google-login-header {
    text-align: center;
    margin-bottom: 25px;
}

.google-logo {
    width: 48px;
    height: 48px;
    margin-bottom: 15px;
}

.google-login-header h3 {
    font-size: 1.45rem;
    font-weight: 400;
    margin: 0 0 6px 0;
}

.google-login-header p {
    font-size: 0.95rem;
    color: #5f6368;
    margin: 0;
}

.google-accounts-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.google-account-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    border: 1px solid #dadce0;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s;
}

.google-account-item:hover {
    background-color: #f8f9fa;
    border-color: #aecbfa;
}

.google-account-item img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.google-account-item i {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #f1f3f4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5f6368;
    font-size: 0.95rem;
}

.google-account-item.custom-account {
    border-style: dashed;
}

.account-details {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.account-name {
    font-size: 0.92rem;
    font-weight: 500;
    color: #3c4043;
}

.account-email {
    font-size: 0.82rem;
    color: #5f6368;
}

.custom-google-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
    text-align: left;
}

.custom-google-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.custom-google-form label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #5f6368;
}

.custom-google-form input {
    padding: 10px 12px;
    border: 1px solid #dadce0;
    border-radius: 4px;
    font-size: 0.92rem;
    outline: none;
    transition: border-color 0.2s;
}

.custom-google-form input:focus {
    border-color: #1a73e8;
}

.custom-google-form .form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 10px;
}

.custom-google-form button {
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s;
}

.custom-google-form .btn-cancel {
    background-color: transparent;
    color: #1a73e8;
}

.custom-google-form .btn-cancel:hover {
    background-color: #f8f9fa;
}

.custom-google-form .btn-submit {
    background-color: #1a73e8;
    color: #fff;
}

.custom-google-form .btn-submit:hover {
    background-color: #1557b0;
}

.close-google-modal {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 24px;
    color: #5f6368;
    cursor: pointer;
    line-height: 1;
}

.close-google-modal:hover {
    color: #202124;
}

/* Custom Google Button style helper if GIS official is not rendered */
.custom-google-btn-trigger {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #dadce0;
    color: #3c4043;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s, box-shadow 0.2s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.custom-google-btn-trigger:hover {
    background-color: #f8f9fa;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.custom-google-btn-trigger img {
    width: 18px;
    height: 18px;
}

.dev-mode-banner {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-size: 0.88rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

.dev-mode-banner i {
    font-size: 1.1rem;
    color: #e0a800;
}