:root {
    --primary-color: #A82024;
    /* Logo Deep Red */
    --primary-dark: #82181B;
    --text-dark: #1F1F1F;
    --text-gray: #555555;
    --bg-light: #F9F9F9;
    --bg-white: #FFFFFF;
    --bg-dark: #121212;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
    --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

img {
    max-width: 100%;
    display: block;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 500;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    border: 1px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(168, 32, 36, 0.3);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--text-dark);
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 500;
    font-family: var(--font-heading);
    border: 1px solid var(--text-dark);
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-secondary:hover {
    background-color: var(--text-dark);
    color: #fff;
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 500;
    border: 1px solid var(--primary-color);
    text-transform: uppercase;
    font-size: 0.85rem;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Header */
header {
    background-color: transparent;
    padding: 30px 0;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: none;
    backdrop-filter: none;
}

header .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
}




/* Hero Section */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0;
}

/* .hero-background replaced by .hero-overlay and .hero-bg-img in HTML for LCP optimization */
.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.eyebrow {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: white;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: white;
    text-align: center;
    animation: bounce 2s infinite;
}

.scroll-down span {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Institutional Section */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-tag {
    display: inline-block;
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.text-block h3 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.text-block p {
    color: var(--text-gray);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.feature-list {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-weight: 500;
}

.feature-item i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.1rem;
}

.image-block {
    position: relative;
}

.image-block img {
    max-width: 50%;
    margin: 0 auto;
    border-radius: 4px;
    box-shadow: var(--shadow-md);
}

.image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60%;
    height: 60%;
    border: 2px solid var(--primary-color);
    z-index: -1;
    border-radius: 4px;
}

/* Process Section */
#process {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('process-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

@media (max-width: 768px) {
    #process {
        background-attachment: scroll;
        /* Fix mobile scroll jank */
    }
}

.bg-light {
    background-color: var(--bg-light);
}

.section-header {
    max-width: 700px;
    margin: 0 auto 60px;
}

/* Override header colors for dark background in this section */
#process .section-header h3 {
    font-size: 2.2rem;
    margin: 15px 0;
    color: white;
}

#process .section-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

#process .section-tag {
    /* Keep primary color or make it lighter/white? Primary stands out well on dark. */
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
    /* Subtle pill bg for better readability */
    padding: 5px 15px;
    border-radius: 20px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-card {
    background: white;
    /* Keep white for contrast */
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    /* Enhanced shadow */
    transition: var(--transition);
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.icon-box {
    width: 70px;
    height: 70px;
    background-color: rgba(160, 140, 91, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.process-card h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.process-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.emotional-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-style: italic;
}

/* Environments Section */
/* Showroom Gallery */
.showroom-gallery {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 280px;
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item.large {
    grid-column: span 3;
    grid-row: span 2;
}

/* Uniform 3x2 Grid Layout for 6 items */
.gallery-item:nth-child(1),
.gallery-item:nth-child(2),
.gallery-item:nth-child(3),
.gallery-item:nth-child(4),
.gallery-item:nth-child(5),
.gallery-item:nth-child(6) {
    grid-column: span 2;
    grid-row: span 1;
}

/* Remove old leftover rules if needed or override them above */

@media (max-width: 992px) {
    .showroom-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 300px;
    }

    .gallery-item.large,
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4),
    .gallery-item:nth-child(5),
    .gallery-item:nth-child(6),
    .gallery-item:nth-child(7),
    .gallery-item:nth-child(8),
    .gallery-item:nth-child(9) {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 576px) {
    .showroom-gallery {
        grid-template-columns: 1fr;
    }
}

/* Differentials */
.bg-dark {
    background-color: var(--bg-dark);
    color: white;
}

.tag-light {
    color: white;
    opacity: 0.7;
}

.bg-dark h3 {
    color: white;
}

.differentials-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.diff-item {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 20px;
}

.diff-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.5;
    line-height: 1;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.diff-item h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.diff-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.section-footer-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Testimonials */
/* Testimonials Carousel */
.testimonial-carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 30px;
}

.testimonial-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    flex: 0 0 100%;
    /* Default to 1 per view on mobile */
    max-width: 100%;
    text-align: left;
}

@media (min-width: 768px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 15px);
        /* 2 per view on tablet */
        max-width: calc(50% - 15px);
    }
}

@media (min-width: 992px) {
    .testimonial-card {
        flex: 0 0 calc(33.333% - 20px);
        /* 3 per view on desktop */
        max-width: calc(33.333% - 20px);
    }
}

.stars {
    color: #FFD700;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.stars i {
    margin-right: 3px;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.6;
}

.client-info {
    display: flex;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.client-info img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.client-info span {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 15px;
}

.control-btn {
    background-color: transparent;
    border: 1px solid var(--text-gray);
    color: var(--text-gray);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* Adjustments for Headers */
.section-tag {
    margin-bottom: 5px;
    /* Reduced from 15px */
}

.section-header h3 {
    margin-top: 5px;
    /* ensure tight spacing */
    margin-bottom: 25px;
}

.mt-large {
    margin-top: 15px !important;
}

.mt-40 {
    margin-top: 40px !important;
}

.mt-50 {
    margin-top: 50px !important;
}

.text-center {
    text-align: center;
}

/* Vision 2026 Section */
#vision-2026 .subtitle-2026 {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 25px;
    font-family: var(--font-heading);
}

#vision-2026 .content-2026 p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-gray);
}

#vision-2026 .video-block {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mt-30 {
    margin-top: 30px !important;
}

@media (max-width: 992px) {
    #vision-2026 .video-block {
        margin-bottom: 40px;
    }
}

/* Lifestyle Gallery */
#lifestyle {
    padding-top: 40px;
    padding-bottom: 80px;
}

.lifestyle-gallery {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 200px;
    /* Smaller base row for more flexibility */
    gap: 15px;
    margin-top: 40px;
}

/* Custom staggered layout */
.lifestyle-gallery .gallery-item:nth-child(1) {
    grid-column: span 5;
    grid-row: span 2;
}

/* Kitchen */
.lifestyle-gallery .gallery-item:nth-child(2) {
    grid-column: span 7;
    grid-row: span 1;
}

/* Living Sofa */
.lifestyle-gallery .gallery-item:nth-child(3) {
    grid-column: span 4;
    grid-row: span 2;
}

/* Teen Bedroom */
.lifestyle-gallery .gallery-item:nth-child(4) {
    grid-column: span 3;
    grid-row: span 2;
}

/* Baby Room 2 */
.lifestyle-gallery .gallery-item:nth-child(5) {
    grid-column: span 5;
    grid-row: span 2;
}

/* Integrated Dining */
.lifestyle-gallery .gallery-item:nth-child(6) {
    grid-column: span 7;
    grid-row: span 2;
}

/* Kids Bedroom */
.lifestyle-gallery .gallery-item:nth-child(7) {
    grid-column: span 5;
    grid-row: span 1;
}

/* Office */
.lifestyle-gallery .gallery-item:nth-child(8) {
    grid-column: span 4;
    grid-row: span 1;
}

/* Details */
.lifestyle-gallery .gallery-item:nth-child(9) {
    grid-column: span 4;
    grid-row: span 1;
}

/* Suite Master */
.lifestyle-gallery .gallery-item:nth-child(10) {
    grid-column: span 4;
    grid-row: span 1;
}

/* Mixed 5 (Large) */
.lifestyle-gallery .gallery-item:nth-child(11) {
    grid-column: span 8;
    grid-row: span 2;
}

/* Kids 1 */
.lifestyle-gallery .gallery-item:nth-child(12) {
    grid-column: span 4;
    grid-row: span 1;
}

/* Mixed 5 */
.lifestyle-gallery .gallery-item:nth-child(13) {
    grid-column: span 4;
    grid-row: span 1;
}

/* Bedroom */
.lifestyle-gallery .gallery-item:nth-child(14) {
    grid-column: span 6;
    grid-row: span 2;
}

/* Kids 2 */
.lifestyle-gallery .gallery-item:nth-child(15) {
    grid-column: span 6;
    grid-row: span 2;
}


@media (max-width: 992px) {
    .lifestyle-gallery {
        grid-template-columns: repeat(6, 1fr);
        grid-auto-rows: 180px;
    }

    .lifestyle-gallery .gallery-item {
        grid-column: span 3 !important;
        grid-row: span 1 !important;
    }

    .lifestyle-gallery .gallery-item:nth-child(1),
    .lifestyle-gallery .gallery-item:nth-child(6),
    .lifestyle-gallery .gallery-item:nth-child(11),
    .lifestyle-gallery .gallery-item:nth-child(14),
    .lifestyle-gallery .gallery-item:nth-child(15) {
        grid-column: span 6 !important;
        grid-row: span 2 !important;
    }
}

@media (max-width: 576px) {
    .lifestyle-gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .lifestyle-gallery .gallery-item {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
}


/* Footer */
footer {
    background-color: #1a1a1a;
    color: white;
    padding: 80px 0 20px;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
    object-fit: contain;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 2fr;
    gap: 30px;
    margin-bottom: 60px;
}

.footer-col h3 {
    color: white;
    margin-bottom: 20px;
}

.footer-col h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p {
    color: #999;
    font-size: 0.95rem;
    margin-bottom: 20px;
    max-width: 300px;
}

.contact-list li {
    margin-bottom: 15px;
    color: #bbb;
    display: flex;
    align-items: center;
}

.contact-list i {
    margin-right: 10px;
    color: var(--primary-color);
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    margin-right: 10px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-link,
.map-link {
    color: white;
    text-decoration: underline;
    opacity: 0.8;
}

.footer-link:hover,
.map-link:hover {
    opacity: 1;
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #666;
    font-size: 0.85rem;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}



/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* Responsive */
@media (max-width: 992px) {
    .split-layout {
        grid-template-columns: 1fr;
    }

    .process-grid,
    .differentials-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .environments-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .env-card.large {
        grid-column: span 2;
        grid-row: auto;
        height: 300px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }



    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {

    .process-grid,
    .differentials-wrapper {
        grid-template-columns: 1fr;
    }

    .environments-grid {
        grid-template-columns: 1fr;
    }

    .env-card.large {
        grid-column: span 1;
    }

    .hero-title {
        font-size: 2rem;
    }
}

/* Clean link style for footer contact items */
.footer-link-clean {
    text-decoration: none;
    color: #bbb;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.footer-link-clean:hover {
    color: var(--primary-color);
}

.footer-link-clean i {
    margin-right: 10px;
    color: var(--primary-color);
}

/* Lightbox styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: auto;
    max-width: 90%;
    max-height: 80vh;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

#lightboxCaption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 20px 0;
    font-family: var(--font-heading);
    font-weight: 300;
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 2001;
}

.lightbox-close:hover {
    color: var(--primary-color);
}

.lightbox-prev,
.lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 24px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-next {
    right: 35px;
}

.lightbox-prev {
    left: 35px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: var(--primary-color);
}

/* Indicador de cursor na galeria */
.gallery-item {
    cursor: zoom-in;
}

/* Header Stars */
.header-stars {
    justify-content: center;
    margin-top: -15px;
    /* Pull closer to title */
    margin-bottom: 40px;
    font-size: 1.4rem;
    /* Larger than card stars */
    display: flex;
    gap: 5px;
}

/* Store Visit Section */
.store-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.store-img {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.store-img:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.store-img img {
    width: 100%;
    height: 300px;
    /* Fixed height for consistency */
    object-fit: cover;
}

/* Store Feature Image Override */
.store-feature-img img {
    max-width: 100% !important;
    /* Override the 50% default from .image-block */
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.store-invite-text {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

@media (max-width: 768px) {
    .store-gallery {
        grid-template-columns: 1fr;
    }

    .store-img img {
        height: auto;
        aspect-ratio: 4/3;
    }
}