/* ================================================
   CỬA HÀNG ANH NGA — Organic Style (Laravel/Bootstrap)
   ================================================ */

:root {
    --green-dark:   #2d5016;
    --green-main:   #4a7c2f;
    --green-light:  #7ab648;
    --green-pale:   #e8f5d8;
    --brown-dark:   #5c3d1e;
    --brown-main:   #8b5e3c;
    --brown-light:  #c49a6c;
    --cream:        #faf6ef;
    --cream-dark:   #f0e8d8;
    --gold:         #d4a843;
    --text-dark:    #2c2c2c;
    --text-mid:     #555;
    --font-head:    'Playfair Display', serif;
    --font-body:    'Be Vietnam Pro', sans-serif;
    --radius:       12px;
    --radius-lg:    20px;
    --shadow:       0 4px 24px rgba(0,0,0,.08);
    --shadow-md:    0 8px 40px rgba(0,0,0,.12);
    --transition:   .3s ease;
}

/* ================================================
   PAGE LOADER
   ================================================ */
#pageLoader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .5s ease, visibility .5s ease;
}
#pageLoader.hide {
    opacity: 0;
    visibility: hidden;
}
.loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.loader-logo {
    height: 80px;
    width: auto;
    animation: loaderPulse 1.4s ease-in-out infinite;
}
@keyframes loaderPulse {
    0%, 100% { opacity: 1;   transform: scale(1); }
    50%       { opacity: .6; transform: scale(.93); }
}
.loader-bar {
    width: 160px;
    height: 4px;
    background: var(--cream-dark);
    border-radius: 2px;
    overflow: hidden;
}
.loader-bar span {
    display: block;
    height: 100%;
    width: 40%;
    background: linear-gradient(90deg, var(--green-main), var(--green-light));
    border-radius: 2px;
    animation: loaderSlide 1.2s ease-in-out infinite;
}
@keyframes loaderSlide {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(350%); }
}

/* ---- Base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}
h1, h2, h3 { font-family: var(--font-head); }
a { text-decoration: none; }
.bg-cream { background-color: var(--cream) !important; }
.section-pad { padding: 90px 0; }

/* ---- Section tags & titles ---- */
.section-tag {
    display: inline-block;
    background: var(--green-pale);
    color: var(--green-main);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 50px;
}
.section-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--green-dark);
    line-height: 1.25;
}

/* ---- Buttons ---- */
.btn-primary-custom {
    background: var(--green-main);
    color: #fff;
    border: 2px solid var(--green-main);
    font-family: var(--font-body);
    font-weight: 600;
    transition: var(--transition);
}
.btn-primary-custom:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(74,124,47,.35);
}
.btn-outline-custom {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,.7);
    font-family: var(--font-body);
    font-weight: 600;
    transition: var(--transition);
}
.btn-outline-custom:hover {
    background: rgba(255,255,255,.15);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}

/* ================================================
   NAVBAR
   ================================================ */
.navbar-main {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
#navbar {
    padding-top: 18px;
    padding-bottom: 18px;
    transition: var(--transition);
}
#navbar.scrolled {
    background: rgba(255,255,255,.97) !important;
    box-shadow: 0 2px 20px rgba(0,0,0,.08);
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}
#navbar.scrolled .nav-link-custom { color: var(--text-dark) !important; }
#navbar.scrolled .nav-link-custom:hover { color: var(--green-main) !important; }
#navbar.scrolled .lang-btn { color: var(--text-dark) !important; }
#navbar.scrolled .lang-divider { color: #ccc !important; }

/* Logo */
.navbar-logo {
    height: 78px;
    width: auto;
    object-fit: contain;
    transition: opacity var(--transition);
}
.navbar-logo:hover { opacity: .85; }
#navbar.scrolled .navbar-logo { filter: none; }

/* Nav links */
.nav-link-custom {
    color: rgba(255,255,255,.9) !important;
    font-size: .9rem;
    font-weight: 500;
    position: relative;
    transition: color var(--transition);
    padding: 8px 4px !important;
}
.nav-link-custom::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width var(--transition);
}
.nav-link-custom:hover::after { width: 100%; }

/* Language switch */
.lang-switch { gap: 8px; }
.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: .85rem;
    font-weight: 600;
    color: rgba(255,255,255,.7);
    padding: 2px 4px;
    font-family: var(--font-body);
    transition: color var(--transition);
}
.lang-btn.active { color: var(--gold) !important; }
.lang-btn:hover { color: #fff; }
.lang-divider { color: rgba(255,255,255,.3); font-size: .85rem; }

/* Hamburger */
.navbar-toggler-icon-custom {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.navbar-toggler-icon-custom span {
    display: block;
    width: 24px; height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: var(--transition);
}
#navbar.scrolled .navbar-toggler-icon-custom span { background: var(--text-dark); }

/* Mobile menu */
@media (max-width: 991px) {
    #navbarMenu {
        background: var(--green-dark);
        padding: 20px;
        border-radius: 0 0 var(--radius) var(--radius);
        margin-top: 10px;
    }
    .nav-link-custom { font-size: 1.1rem !important; padding: 12px 0 !important; }
    .lang-switch { margin-top: 16px; justify-content: center; }
    #navbar.scrolled .nav-link-custom { color: #fff !important; }
}

/* ================================================
   HERO SLIDE BANNER
   ================================================ */

/* Wrapper */
.hero-slider {
    position: relative;
    width: 100%;
}

/* Carousel & slides */
#heroCarousel { width: 100%; }

.hero-slide {
    height: 100vh;
    min-height: 560px;
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* Placeholder gradient backgrounds cho từng slide (thay bằng ảnh thật sau) */
.hero-slide--1 {
    background: linear-gradient(135deg, #1a3a0a 0%, #2d5016 45%, #4a7c2f 100%);
}
.hero-slide--2 {
    background: linear-gradient(135deg, #3b2a0a 0%, #6b4a1e 45%, #8b6030 100%);
}
.hero-slide--3 {
    background: linear-gradient(135deg, #0a2a1a 0%, #1a5030 45%, #2a7a4a 100%);
}
.hero-slide--4 {
    background: linear-gradient(135deg, #1a2a3a 0%, #2a4a6a 45%, #3a6a8a 100%);
}

/* Overlay tối cho mỗi slide */
.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,.55) 0%,
        rgba(0,0,0,.25) 60%,
        rgba(0,0,0,.05) 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Container bên trong slide */
.hero-slide .container {
    position: relative;
    z-index: 2;
    padding-top: 100px;
    padding-bottom: 80px;
}

/* Nội dung text trong slide */
.hero-slide-content {
    animation: heroFadeUp .8s ease both;
}
.carousel-item:not(.active) .hero-slide-content {
    animation: none;
}
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-title {
    font-size: clamp(2rem, 4.2vw, 4.2rem);
    color: #fff;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 12px rgba(0,0,0,.25);
    white-space: pre-line;
}
.hero-sub {
    color: rgba(255,255,255,.88);
    font-size: 1.05rem;
    max-width: 560px;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 36px;
}

/* Indicators */
.hero-slider .carousel-indicators {
    bottom: 48px;
    gap: 8px;
    margin: 0;
    z-index: 10;
}
.hero-slider .carousel-indicators button {
    width: 32px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255,255,255,.45);
    border: none;
    transition: all .35s ease;
    opacity: 1;
}
.hero-slider .carousel-indicators button.active {
    width: 52px;
    background: var(--gold);
}

/* Prev / Next controls */
.hero-control {
    width: 52px;
    opacity: 1 !important;
    transition: opacity var(--transition);
}
.hero-control:hover { opacity: .85 !important; }
.hero-control-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px; height: 48px;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(6px);
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.3);
    font-size: 1.2rem;
    color: #fff;
    transition: background var(--transition), transform var(--transition);
}
.hero-control:hover .hero-control-icon {
    background: rgba(255,255,255,.28);
    transform: scale(1.08);
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-title { font-size: clamp(1.8rem, 3.8vw, 3.4rem); }
}
@media (max-width: 768px) {
    .hero-slide { height: 90vh; min-height: 500px; }
    .hero-title  { font-size: 1.9rem; }
    .hero-control { display: none; }
    .hero-slider .carousel-indicators { bottom: 28px; }
}
@media (max-width: 480px) {
    .hero-title { font-size: 1.65rem; }
    .hero-sub   { font-size: .95rem; }
}

/* ================================================
   ABOUT
   ================================================ */
.about-img-wrap { position: relative; }
.about-img-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(74,124,47,.1);
    display: block;
}
.about-badge {
    position: absolute;
    bottom: -16px; right: -16px;
    background: var(--green-main);
    color: #fff;
    padding: 14px 18px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: .9rem;
    box-shadow: var(--shadow);
}
.about-checklist li { color: var(--text-mid); font-size: .95rem; }
.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px; height: 22px;
    min-width: 22px;
    background: var(--green-pale);
    color: var(--green-main);
    border-radius: 50%;
    font-size: .8rem;
    font-weight: 700;
}

/* ================================================
   FAQ
   ================================================ */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    border: 1px solid rgba(74,124,47,.15) !important;
    border-radius: var(--radius) !important;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.faq-btn {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    color: var(--brown-dark);
    background: #fff;
    padding: 18px 20px;
    box-shadow: none !important;
    border: none;
}
.faq-btn:not(.collapsed) {
    color: var(--green-dark);
    background: var(--green-pale);
}
.faq-btn::after {
    filter: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234a7c2f'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.faq-body {
    font-size: .96rem;
    line-height: 1.8;
    color: var(--text-mid);
    background: #fff;
    padding: 16px 20px 20px;
}

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonial-card {
    border: 1px solid rgba(74,124,47,.1);
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
}
.testimonial-card::before {
    content: '\201C';
    font-family: var(--font-head);
    font-size: 5rem;
    line-height: 1;
    color: var(--green-pale);
    position: absolute;
    top: 44px;
    left: 0;
    z-index: 0;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.testimonial-stars {
    position: relative;
    z-index: 1;
    color: #f59e0b;
    font-size: .95rem;
    letter-spacing: 2px;
}
.testimonial-text {
    font-size: .97rem;
    line-height: 1.8;
    color: var(--text-mid);
    font-style: italic;
    padding-left: 8px;
}
.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--green-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
}
.testimonial-name {
    font-weight: 600;
    color: var(--brown-dark);
    font-size: .95rem;
}
.testimonial-role {
    font-size: .82rem;
}
.testimonial-summary {
    font-size: .95rem;
}

/* ================================================
   PRODUCTS
   ================================================ */
.product-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(74,124,47,.08);
    transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.product-img {
    height: 220px;
    background: linear-gradient(135deg, var(--green-pale), var(--cream-dark));
    overflow: hidden;
    padding: 0;
}
.product-img-photo {
    width: 100%;
    height: 220px;
    object-fit: contain;
    object-position: center;
    display: block;
}
.product-name {
    font-size: 1.15rem;
    color: var(--brown-dark);
    margin-bottom: 8px;
}
.product-desc {
    font-size: .875rem;
    line-height: 1.6;
    margin-bottom: 14px;
}
.product-tag {
    display: inline-block;
    background: var(--green-pale);
    color: var(--green-main);
    font-size: .75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
}
.btn-price-contact {
    font-size: .8rem;
    font-weight: 600;
    color: var(--brown-main);
    text-decoration: none;
    padding: 4px 12px;
    border: 1.5px solid var(--brown-light);
    border-radius: 50px;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
    white-space: nowrap;
}
.btn-price-contact:hover {
    background: var(--brown-main);
    color: #fff;
    border-color: var(--brown-main);
}

/* ================================================
   WHY US
   ================================================ */
.why-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    border: 1px solid var(--cream-dark);
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    background: #fff;
}
.why-icon {
    font-size: 2.4rem;
    color: var(--green-main);
    margin-bottom: 12px;
}
.why-title {
    font-size: 1.05rem;
    color: var(--brown-dark);
    margin-bottom: 10px;
}
.why-desc { font-size: .875rem; line-height: 1.65; }

/* ================================================
   CONTACT
   ================================================ */
.contact-icon-wrap {
    width: 44px; height: 44px;
    min-width: 44px;
    background: var(--green-pale);
    color: var(--green-main);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}
.contact-item { transition: transform var(--transition); }
.contact-item:hover { transform: translateX(4px); }
.contact-form-wrap { border: 1px solid rgba(74,124,47,.08); }
.form-control-custom {
    border: 2px solid var(--cream-dark);
    background: var(--cream);
    border-radius: var(--radius) !important;
    padding: 12px 16px;
    font-family: var(--font-body);
    transition: border-color var(--transition), background var(--transition);
}
.form-control-custom:focus {
    border-color: var(--green-light);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(122,182,72,.15);
}

/* Maps */
.maps-wrap {
    border: 1px solid rgba(74,124,47,.1);
}
.maps-wrap iframe {
    min-height: 380px;
}

/* ================================================
   FOOTER
   ================================================ */
.footer-logo {
    height: 78px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: .9;
    transition: opacity var(--transition);
}
.footer-logo:hover { opacity: 1; }
.footer {
    background: var(--green-dark);
    color: rgba(255,255,255,.8);
}
.footer-desc { font-size: .875rem; color: rgba(255,255,255,.6); line-height: 1.7; }
.footer-heading {
    font-family: var(--font-body);
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--gold);
    margin-bottom: 12px;
}
.footer-links a {
    display: block;
    font-size: .875rem;
    color: rgba(255,255,255,.65);
    margin-bottom: 8px;
    transition: color var(--transition);
}
.footer-links a:hover { color: #fff; }
.footer-contact-list li { font-size: .875rem; margin-bottom: 8px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 18px 0;
    text-align: center;
    font-size: .8rem;
    color: rgba(255,255,255,.4);
}

/* ================================================
   SCROLL TO TOP
   ================================================ */
.grecaptcha-badge {
    visibility: hidden !important;
}

#scrollTop {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9997;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--green-main);
    color: #fff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(74,124,47,.4);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity .3s ease, visibility .3s ease, transform .3s ease, background var(--transition);
}
#scrollTop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
#scrollTop:hover {
    background: var(--green-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(74,124,47,.5);
}
@media (max-width: 480px) {
    #scrollTop { right: 16px; bottom: 20px; width: 40px; height: 40px; }
}

/* ================================================
   ZALO CHAT WIDGET
   ================================================ */
#zaloWidget {
    position: fixed;
    bottom: 84px;
    right: 28px;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}
.zalo-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #0068FF;
    box-shadow: 0 4px 20px rgba(0,104,255,.45);
    transition: transform var(--transition), box-shadow var(--transition);
    text-decoration: none;
}
.zalo-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(0,104,255,.55);
}
.zalo-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: block;
}
.zalo-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(0,104,255,.4);
    animation: zaloPulse 2s ease-out infinite;
    pointer-events: none;
}
@keyframes zaloPulse {
    0%   { transform: scale(1);   opacity: .7; }
    70%  { transform: scale(1.6); opacity: 0; }
    100% { transform: scale(1.6); opacity: 0; }
}
.zalo-tooltip {
    background: #2c2c2c;
    color: #fff;
    font-size: .82rem;
    font-weight: 500;
    padding: 7px 14px;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 2px 12px rgba(0,0,0,.15);
    opacity: 0;
    transform: translateX(10px);
    transition: opacity .3s ease, transform .3s ease;
    pointer-events: none;
}
#zaloWidget:hover .zalo-tooltip {
    opacity: 1;
    transform: translateX(0);
}
@media (max-width: 480px) {
    #zaloWidget { bottom: 20px; right: 16px; }
    .zalo-btn  { width: 50px; height: 50px; }
    .zalo-icon { width: 50px; height: 50px; }
    .zalo-tooltip { display: none; }
}

/* ================================================
   ERROR PAGES
   ================================================ */
.error-number {
    font-family: var(--font-head);
    font-size: clamp(6rem, 18vw, 12rem);
    font-weight: 700;
    color: var(--green-main);
    line-height: 1;
    opacity: .15;
    letter-spacing: -.02em;
}
.error-title {
    font-family: var(--font-head);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--green-dark);
}
.error-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-mid);
}
.btn-outline-custom-dark {
    background: transparent;
    color: var(--green-dark);
    border: 2px solid var(--green-main);
    font-family: var(--font-body);
    font-weight: 600;
    transition: var(--transition);
}
.btn-outline-custom-dark:hover {
    background: var(--green-main);
    color: #fff;
    transform: translateY(-2px);
}

/* ================================================
   SCROLL ANIMATION
   ================================================ */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================================================
   RESPONSIVE TWEAKS
   ================================================ */
@media (max-width: 768px) {
    .section-pad { padding: 64px 0; }
    .hero-title { font-size: 2.4rem; }
    .about-badge { bottom: -10px; right: -6px; }
}
@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
}

/* ================================================
   PRODUCT LIGHTBOX
   ================================================ */
.product-lightbox-trigger {
    cursor: zoom-in;
    transition: transform var(--transition), filter var(--transition);
}
.product-lightbox-trigger:hover {
    transform: scale(1.05);
    filter: brightness(0.92);
}

/* Modal override */
#productLightbox .modal-dialog {
    max-width: 820px;
}
.lightbox-content {
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #fff;
    box-shadow: 0 24px 80px rgba(0,0,0,.25);
    min-height: 420px;
}

/* Close button */
.lightbox-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 10;
    background: rgba(255,255,255,.9);
    border-radius: 50%;
    width: 34px;
    height: 34px;
    opacity: 1;
    box-shadow: 0 2px 8px rgba(0,0,0,.15);
    transition: background var(--transition), transform var(--transition);
}
.lightbox-close:hover {
    background: #fff;
    transform: scale(1.1);
}

/* Image side */
.lightbox-img-wrap {
    background: linear-gradient(135deg, var(--green-pale) 0%, var(--cream-dark) 100%);
    min-height: 360px;
    padding: 32px;
}
.lightbox-img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: var(--radius);
    animation: lightboxZoomIn .25s ease;
}
@keyframes lightboxZoomIn {
    from { opacity: 0; transform: scale(.9); }
    to   { opacity: 1; transform: scale(1); }
}

/* Info side */
.lightbox-info {
    border-left: 1px solid var(--cream-dark);
}
.lightbox-name {
    font-family: var(--font-head);
    font-size: 1.5rem;
    color: var(--brown-dark);
    line-height: 1.3;
}
.lightbox-desc {
    font-size: .95rem;
    line-height: 1.75;
    color: var(--text-mid);
}

/* Mobile: stack vertically */
@media (max-width: 767px) {
    .lightbox-img-wrap {
        min-height: 260px;
        padding: 24px;
    }
    .lightbox-img {
        max-height: 260px;
    }
    .lightbox-info {
        border-left: none;
        border-top: 1px solid var(--cream-dark);
        padding: 24px !important;
    }
    .lightbox-name {
        font-size: 1.2rem;
    }
}
