:root {
    --gaby-primary: #d0b23c;
    --gaby-primary-dark: #b99a2f;
    --gaby-primary-light: #ffe494;
    --gaby-primary-rgb: 208, 178, 60;
    --gaby-primary-gradient: linear-gradient(135deg, #d0b23c 0%, #ffe494 18%, #fbdf8d 36%, #d0b23c 54%, #ffe9a7 74%, #d0b23c 100%);
    --gaby-primary-gradient-dark: linear-gradient(135deg, #c4a736 0%, #f2d982 18%, #f2d982 36%, #c4a736 54%, #f2d982 74%, #c4a736 100%);
    --gaby-accent: #d8a25d;
    --gaby-light: #f7f4f0;
    --gaby-logo-pill-width: 20rem;
    --gaby-logo-pill-height: 7rem;
    --gaby-logo-pill-pad-y: 0.9rem;
    --gaby-logo-pill-pad-x: 1.1rem;
    --bs-border-color: #a0a0a0;
}

:root {
    --gaby-primary: #d0b23c;
    --gaby-primary-dark: #b99a2f;
    --gaby-primary-light: #ffe494;
    --gaby-primary-rgb: 208, 178, 60;
    --gaby-primary-gradient: linear-gradient(135deg, #d0b23c 0%, #ffe494 18%, #fbdf8d 36%, #d0b23c 54%, #ffe9a7 74%, #d0b23c 100%);
    --gaby-primary-gradient-dark: linear-gradient(135deg, #c4a736 0%, #f2d982 18%, #f2d982 36%, #c4a736 54%, #f2d982 74%, #c4a736 100%);
    --gaby-accent: #d8a25d;
    --gaby-light: #f7f4f0;
}

html, body {
    height: 100%;
}

body {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--gaby-light);
    color: #1d1b29;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body.has-fixed-nav {
    padding-top: 6.25rem;
}

body.gaby-legal-page {
    background: linear-gradient(180deg, #f4f6fb 0%, #ffffff 65%);
}

.gaby-customer-nav-logo-only .gaby-site-header-fixed {
    background: transparent;
    border-bottom: none;
    backdrop-filter: none;
    pointer-events: none;
    padding-top: 0.25rem !important;
    padding-bottom: 0 !important;
}

.gaby-site-header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(244, 246, 251, 0.88);
    border-bottom: 1px solid rgba(148, 163, 184, 0.25);
    backdrop-filter: blur(12px);
}

.gaby-legal-page .gaby-site-header-fixed {
    background: transparent;
    border-bottom: none;
    backdrop-filter: none;
    padding-top: 0.25rem !important;
    padding-bottom: 0 !important;
}

.gaby-customer-nav-logo-only .gaby-logo-only-navbar,
.gaby-legal-page .gaby-logo-only-navbar {
    pointer-events: none;
}

.gaby-customer-nav-logo-only .gaby-logo-only-navbar .navbar-brand,
.gaby-legal-page .gaby-logo-only-navbar .navbar-brand {
    pointer-events: auto;
}

.gaby-site-navbar-fixed .navbar-brand,
.gaby-logo-only-navbar .navbar-brand {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 14px 38px rgba(15, 23, 42, 0.14);
    border-radius: 999px;
    padding: 0.4rem 0.95rem;
}

.gaby-site-navbar-fixed .gaby-logo-img {
    height: 2.8rem;
}

.gaby-logo-only-navbar .navbar-brand {
    width: var(--gaby-logo-pill-width);
    height: var(--gaby-logo-pill-height);
    padding: var(--gaby-logo-pill-pad-y) var(--gaby-logo-pill-pad-x);
    justify-content: center;
}

.gaby-logo-only-navbar .gaby-logo-img {
    width: 100%;
    height: 100%;
    max-width: none;
}

.gaby-site-navbar-fixed .nav-link {
    font-weight: 600;
}

main {
    flex: 1 0 auto;
}

@media (min-width: 1400px) {
    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl,
    .container-xxl {
        max-width: 1620px;
    }
}

.navbar-brand {
    font-weight: 600;
    color: var(--gaby-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.gaby-logo-img {
    height: 3rem;
    width: auto;
    max-width: 20rem;
}

.gaby-logo-img {
    display: block;
    object-fit: contain;
}

.gaby-logo-backend-label {
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--gaby-primary);
}

@media (min-width: 992px) {
    .gaby-logo-img {
        height: 3.5rem;
    }
}

.offcanvas .navbar-nav {
    gap: 1rem;
}

.offcanvas .navbar-nav .nav-link {
    font-size: 1.05rem;
    font-weight: 500;
}

.offcanvas .navbar-nav .btn {
    width: 100%;
}

.nav-link {
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: "";
    position: absolute;
    top: -10%;
    left: -140%;
    width: 140%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 45%, rgba(255, 255, 255, 0) 70%);
    opacity: 0;
    transform: translateX(-120%) skewX(-20deg);
    pointer-events: none;
    animation: gaby-logo-loop 15s linear infinite;
}

.nav-link:hover::before,
.nav-link:focus-visible::before {
    opacity: 0.85;
    animation: gaby-gold-swoosh 0.7s ease;
}

.btn-gaby {
    position: relative;
    overflow: hidden;
    background: var(--gaby-primary-gradient);
    color: #2a1b0f;
    border: 1px solid rgb(255, 255, 255);
    box-shadow: 0 12px 20px -18px rgba(74, 45, 12, 0.45), inset 0 0 0 rgba(0, 0, 0, 0);
    border-radius: 999px;
    padding-inline: 1.5rem;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
    transition: box-shadow 0.25s ease, transform 0.18s ease, filter 0.25s ease, background 0.25s ease;
}

.btn-gaby::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.btn-gaby::after {
    content: "";
    position: absolute;
    top: -10%;
    left: -140%;
    width: 140%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.85) 45%, rgba(255, 255, 255, 0) 70%);
    opacity: 0;
    transform: translateX(-120%) skewX(-20deg);
    pointer-events: none;
    animation: gaby-logo-loop 15s linear infinite;
}

.btn-gaby:hover,
.btn-gaby:focus {
    background: var(--gaby-primary-gradient);
    filter: brightness(1.01);
    box-shadow: 0 14px 22px -18px rgba(74, 45, 12, 0.45), inset 0 4px 10px rgba(0, 0, 0, 0.12);
}

.btn-gaby:active {
    background: var(--gaby-primary-gradient-dark);
    filter: brightness(0.985);
    transform: translateY(1px);
    box-shadow: 0 10px 18px -18px rgba(74, 45, 12, 0.5), inset 0 5px 14px rgba(0, 0, 0, 0.18);
}

.btn-gaby:hover::before,
.btn-gaby:focus::before,
.btn-gaby:active::before {
    opacity: 0.65;
}

.btn-gaby:hover::after,
.btn-gaby:active::after,
.btn-gaby:focus-visible::after {
    opacity: 0.85;
    animation: gaby-gold-swoosh 0.7s ease;
}

.btn-gaby-outline {
    position: relative;
    overflow: hidden;
    border-radius: 999px;
    border: 1px solid var(--gaby-primary-dark);
    color: var(--gaby-primary-dark);
    background: rgba(255, 255, 255, 0.35);
}

.btn-gaby-outline::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.12);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.btn-gaby-outline::after {
    content: "";
    position: absolute;
    top: -10%;
    left: -140%;
    width: 140%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.85) 45%, rgba(255, 255, 255, 0) 70%);
    opacity: 0;
    transform: translateX(-120%) skewX(-20deg);
    pointer-events: none;
    animation: gaby-logo-loop 15s linear infinite;
}

.btn-gaby-outline:hover,
.btn-gaby-outline:focus {
    color: var(--gaby-primary-dark);
    border-color: var(--gaby-primary-dark);
    background: rgba(255, 255, 255, 0.5);
}

.btn-gaby-outline:hover::before,
.btn-gaby-outline:focus::before,
.btn-gaby-outline:active::before {
    opacity: 0.65;
}

.btn-gaby-outline:hover::after,
.btn-gaby-outline:active::after,
.btn-gaby-outline:focus-visible::after {
    opacity: 0.85;
    animation: gaby-gold-swoosh 0.7s ease;
}

.text-primary,
.gaby-primary-gradient {
    color: var(--gaby-primary);
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
    .text-primary,
    .gaby-primary-gradient {
        background-image: var(--gaby-primary-gradient);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }
}

@keyframes gaby-gold-swoosh {
    0% {
        transform: translateX(-120%) skewX(-20deg);
        opacity: 0;
    }
    20% {
        opacity: 0.85;
    }
    100% {
        transform: translateX(140%) skewX(-20deg);
        opacity: 0;
    }
}

@keyframes gaby-logo-loop {
    0% {
        transform: translateX(-120%) skewX(-20deg);
        opacity: 0;
    }
    3% {
        opacity: 0.8;
    }
    8% {
        transform: translateX(140%) skewX(-20deg);
        opacity: 0;
    }
    100% {
        transform: translateX(140%) skewX(-20deg);
        opacity: 0;
    }
}

.hero {
    padding: 6rem 0;
}

.hero h1 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

.gaby-hero-language-wrap {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1.5rem;
}

.gaby-hero-language {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(var(--gaby-primary-rgb), 0.12);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 16px 30px -24px rgba(24, 22, 33, 0.35);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.gaby-hero-language-link {
    color: rgba(29, 27, 41, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.gaby-hero-language-link.is-active,
.gaby-hero-language-link:hover {
    color: var(--gaby-primary);
}

.gaby-hero-language-sep {
    color: rgba(29, 27, 41, 0.35);
}

.gaby-about-story {
    position: relative;
    padding: 2.5rem;
    border-radius: 1.6rem;
    background: linear-gradient(160deg, rgba(var(--gaby-primary-rgb), 0.12) 0%, #fff 62%);
    border: 1px solid rgba(var(--gaby-primary-rgb), 0.18);
    box-shadow: 0 26px 60px -44px rgba(24, 22, 33, 0.45);
}

.gaby-about-story::after {
    content: "";
    position: absolute;
    inset: 1.4rem;
    border-radius: 1.2rem;
    border: 1px solid rgba(var(--gaby-primary-rgb), 0.12);
    pointer-events: none;
}

.gaby-about-story-eyebrow {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(29, 27, 41, 0.6);
    margin-bottom: 1rem;
}

.gaby-about-story-lead {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1d1b29;
}

.gaby-about-story-divider {
    width: 4.25rem;
    height: 0.2rem;
    border-radius: 999px;
    background: var(--gaby-primary-gradient);
    margin: 1.5rem 0;
}

footer {
    background: #181621;
    color: rgba(255, 255, 255, 0.78);
    padding: 2.5rem 0;
    flex-shrink: 0;
}

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

.gaby-legal-columns {
    column-count: 1;
    column-gap: 1.25rem;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .gaby-legal-columns {
        column-count: 2;
    }
}

@media (min-width: 1200px) {
    .gaby-legal-columns {
        column-count: 3;
    }
}

@media (max-width: 576px) {
    .gaby-hero-language-wrap {
        justify-content: center;
        margin-bottom: 1rem;
    }
    .gaby-hero-language {
        font-size: 0.75rem;
        letter-spacing: 0.1em;
    }
    .gaby-about-story {
        padding: 1.75rem;
    }
}

.login-card {
    max-width: 420px;
    margin-inline: auto;
    padding: 2rem;
    border-radius: 1.25rem;
    background: #fff;
    box-shadow: 0 25px 60px -30px rgba(24, 22, 33, 0.35);
}

.gaby-float-stack {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    z-index: 2000;
}

.gaby-float-menu {
    position: relative;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 0.4rem;
    width: 64px;
}

.gaby-float-menu__toggle {
    position: relative;
    overflow: hidden;
    width: 64px;
    height: 64px;
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 999px;
    background: var(--gaby-primary-gradient);
    color: #2a1b0f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 30px -20px rgba(0, 0, 0, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.gaby-float-menu__toggle::after {
    content: "";
    position: absolute;
    top: -10%;
    left: -140%;
    width: 140%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.85) 45%, rgba(255, 255, 255, 0) 70%);
    opacity: 0;
    transform: translateX(-120%) skewX(-20deg);
    pointer-events: none;
    animation: gaby-logo-loop 15s linear infinite;
}

.gaby-float-menu__toggle:hover::after,
.gaby-float-menu__toggle:focus-visible::after,
.gaby-float-menu__toggle:active::after {
    opacity: 0.85;
    animation: gaby-gold-swoosh 0.7s ease;
}

.gaby-float-menu__toggle:hover {
    filter: brightness(0.97);
    transform: translateY(-2px);
    box-shadow: 0 20px 36px -20px rgba(0, 0, 0, 0.45);
}

.gaby-float-menu__toggle:focus-visible {
    outline: 2px solid rgba(var(--gaby-primary-rgb), 0.6);
    outline-offset: 3px;
}

.gaby-float-menu__burger {
    position: relative;
    width: 20px;
    height: 16px;
}

.gaby-float-menu__burger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #2a1b0f;
    border-radius: 999px;
    transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}

.gaby-float-menu__burger span:nth-child(1) {
    top: 2px;
}

.gaby-float-menu__burger span:nth-child(2),
.gaby-float-menu__burger span:nth-child(3) {
    top: 7px;
}

.gaby-float-menu__burger span:nth-child(4) {
    top: 12px;
}

.gaby-float-menu.is-open .gaby-float-menu__burger span:nth-child(1),
.gaby-float-menu.is-open .gaby-float-menu__burger span:nth-child(4) {
    opacity: 0;
    transform: translateX(8px);
}

.gaby-float-menu.is-open .gaby-float-menu__burger span:nth-child(2) {
    transform: rotate(45deg);
}

.gaby-float-menu.is-open .gaby-float-menu__burger span:nth-child(3) {
    transform: rotate(-45deg);
}

.gaby-float-menu__links {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.4rem;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(6px);
    transition: max-height 0.4s ease, opacity 0.2s ease, transform 0.2s ease;
}

.gaby-float-menu__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    width: 190px;
    height: 52px;
    padding: 0 1rem 0 0.75rem;
    border-radius: 999px;
    background: var(--gaby-primary-gradient);
    color: #2a1b0f;
    text-decoration: none;
    white-space: nowrap;
    border: 1px solid rgba(var(--gaby-primary-rgb), 0.45);
    box-shadow: 0 14px 28px -22px rgba(var(--gaby-primary-rgb), 0.65);
    opacity: 0;
    transform: translateX(8px);
    transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.gaby-float-menu__link--gallery {
    border-color: rgba(var(--gaby-primary-rgb), 0.75);
    box-shadow: 0 18px 36px -20px rgba(var(--gaby-primary-rgb), 0.85);
    animation: gaby-float-pulse 3s ease-in-out infinite;
}

@keyframes gaby-float-pulse {
    0% {
        box-shadow: 0 18px 36px -20px rgba(var(--gaby-primary-rgb), 0.85), 0 0 0 0 rgba(var(--gaby-primary-rgb), 0.35);
    }
    50% {
        box-shadow: 0 22px 44px -20px rgba(var(--gaby-primary-rgb), 0.95), 0 0 0 8px rgba(var(--gaby-primary-rgb), 0.15);
    }
    100% {
        box-shadow: 0 18px 36px -20px rgba(var(--gaby-primary-rgb), 0.85), 0 0 0 0 rgba(var(--gaby-primary-rgb), 0.35);
    }
}

@media (prefers-reduced-motion: reduce) {
    .gaby-float-menu__link--gallery {
        animation: none;
    }
}

.gaby-float-menu__link::before {
    content: '';
    position: absolute;
    left: 52px;
    top: 50%;
    width: 3px;
    height: 0;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 999px;
    transform: translateY(-50%);
    transition: height 0.3s ease;
}

.gaby-float-menu__link.is-active::before {
    height: 18px;
}

.gaby-float-menu__link::after {
    content: "";
    position: absolute;
    top: -10%;
    left: -140%;
    width: 140%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.85) 45%, rgba(255, 255, 255, 0) 70%);
    opacity: 0;
    transform: translateX(-120%) skewX(-20deg);
    pointer-events: none;
    animation: gaby-logo-loop 15s linear infinite;
}

.gaby-float-menu__link:nth-child(1) {
    transition-delay: 0.05s;
}

.gaby-float-menu__link:nth-child(2) {
    transition-delay: 0.1s;
}

.gaby-float-menu__link:nth-child(3) {
    transition-delay: 0.15s;
}

.gaby-float-menu__link:nth-child(4) {
    transition-delay: 0.2s;
}

.gaby-float-menu__link:nth-child(5) {
    transition-delay: 0.25s;
}

.gaby-float-menu__icon {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.gaby-float-menu__icon svg {
    width: 18px;
    height: 18px;
}

.gaby-float-menu__text {
    font-size: 0.95rem;
    font-weight: 600;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

.gaby-float-menu__link:hover {
    filter: brightness(0.97);
    box-shadow: 0 16px 30px -22px rgba(var(--gaby-primary-rgb), 0.75);
}

.gaby-float-menu__link:focus-visible {
    outline: 2px solid rgba(var(--gaby-primary-rgb), 0.6);
    outline-offset: 2px;
}

.gaby-float-menu__link:hover::after,
.gaby-float-menu__link:focus-visible::after,
.gaby-float-menu__link:active::after {
    opacity: 0.85;
    animation: gaby-gold-swoosh 0.7s ease;
}

.gaby-float-menu__link:hover .gaby-float-menu__icon {
    transform: scale(1.05);
}

.gaby-float-menu.is-open .gaby-float-menu__links {
    max-height: 340px;
    opacity: 1;
    transform: translateY(0);
}

.gaby-float-menu.is-open .gaby-float-menu__link {
    opacity: 0.95;
    transform: translateX(0);
}

.gaby-float-pill {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gaby-float-pill::after {
    content: "";
    position: absolute;
    top: -10%;
    left: -140%;
    width: 140%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.85) 45%, rgba(255, 255, 255, 0) 70%);
    opacity: 0;
    transform: translateX(-120%) skewX(-20deg);
    pointer-events: none;
    animation: gaby-logo-loop 15s linear infinite;
}

.gaby-float-pill:hover::after,
.gaby-float-pill:focus-visible::after,
.gaby-float-pill:active::after {
    opacity: 0.85;
    animation: gaby-gold-swoosh 0.7s ease;
}

.gaby-float-pill svg {
    width: 20px;
    height: 20px;
}

.gaby-float-pill--download {
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 999px;
    background: var(--gaby-primary-gradient);
    color: #2a1b0f;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.75rem 1.1rem;
    box-shadow: 0 16px 30px -20px rgba(0, 0, 0, 0.4);
}

.gaby-float-pill--download svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
}

.gaby-download-label {
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
}

.gaby-float-pill--download:hover,
.gaby-float-pill--download:focus {
    transform: translateY(-2px);
    filter: brightness(0.97);
    box-shadow: 0 20px 34px -20px rgba(0, 0, 0, 0.5);
}

.gaby-float-pill--download.is-busy {
    cursor: wait;
}

.gaby-download-spinner {
    width: 16px;
    height: 16px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-top-color: rgba(42, 27, 15, 0.9);
    display: none;
    animation: galleryClientSpin 0.8s linear infinite;
}

.gaby-float-pill--download.is-busy .gaby-download-spinner {
    display: inline-flex;
}

.gaby-download-progress {
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: 8px;
    height: 3px;
    border-radius: 999px;
    background: #39ff14;
    box-shadow: 0 0 8px rgba(57, 255, 20, 0.75);
    width: 0;
    opacity: 0;
    transition: width 0.2s ease, opacity 0.2s ease;
}

.gaby-float-pill--request {
    background: var(--gaby-primary);
    color: #fff;
    box-shadow: 0 18px 40px -22px rgba(var(--gaby-primary-rgb), 0.7);
}

.gaby-float-pill--request:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 22px 44px -18px rgba(var(--gaby-primary-rgb), 0.85);
}

.gaby-float-pill--whatsapp {
    background: #25d366;
    border: 1px solid rgba(255, 255, 255, 0.95);
    color: #fff;
    box-shadow: 0 16px 30px -22px rgba(0, 0, 0, 0.3);
}

.gaby-float-pill--whatsapp:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 20px 36px -20px rgba(0, 0, 0, 0.4);
}

.btn:not(.btn-gaby):not(.btn-gaby-outline) {
    position: relative;
    overflow: hidden;
}

.btn:not(.btn-gaby):not(.btn-gaby-outline)::after {
    content: "";
    position: absolute;
    top: -10%;
    left: -140%;
    width: 140%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 45%, rgba(255, 255, 255, 0) 70%);
    opacity: 0;
    transform: translateX(-120%) skewX(-20deg);
    pointer-events: none;
    animation: gaby-logo-loop 15s linear infinite;
}

.btn:not(.btn-gaby):not(.btn-gaby-outline):hover::after,
.btn:not(.btn-gaby):not(.btn-gaby-outline):focus-visible::after,
.btn:not(.btn-gaby):not(.btn-gaby-outline):active::after {
    opacity: 0.8;
    animation: gaby-gold-swoosh 0.7s ease;
}

.navbar-brand,
.gallery-client-footer-logo {
    position: relative;
    overflow: hidden;
}

.navbar-brand::after,
.gallery-client-footer-logo::after {
    content: "";
    position: absolute;
    top: -10%;
    left: -140%;
    width: 140%;
    height: 120%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 45%, rgba(255, 255, 255, 0) 70%);
    opacity: 0;
    transform: translateX(-120%) skewX(-20deg);
    pointer-events: none;
    animation: gaby-logo-loop 15s linear infinite;
}

.navbar-brand:hover::after,
.gallery-client-footer-logo:hover::after,
.navbar-brand:focus-visible::after,
.gallery-client-footer-logo:focus-visible::after {
    opacity: 0.85;
    animation: gaby-gold-swoosh 0.7s ease;
}

@media (max-width: 576px) {
    .gaby-float-stack {
        bottom: 1rem;
        right: 1rem;
        gap: 0.4rem;
    }
    .gaby-float-menu {
        width: 56px;
    }
    .gaby-float-menu__toggle {
        width: 56px;
        height: 56px;
    }
    .gaby-float-menu__links {
        gap: 0.35rem;
    }
    .gaby-float-menu__link {
        width: 170px;
        height: 48px;
        padding: 0 0.9rem 0 0.6rem;
    }
    .gaby-float-menu__icon {
        width: 32px;
        height: 32px;
    }
    .gaby-float-menu__text {
        font-size: 0.9rem;
    }
    .gaby-float-pill {
        padding: 0.6rem 1rem;
    }
    .gaby-float-pill span {
        font-size: 0.9rem;
    }
}

.backend-body {
    background: var(--gaby-light);
}

.backend-header {
    border-bottom: 1px solid rgba(var(--gaby-primary-rgb), 0.08);
}

.backend-navbar .navbar-brand {
    color: var(--gaby-primary);
}

.backend-navbar .btn {
    border-radius: 999px;
}

.backend-main {
    min-height: 70vh;
}

.backend-navbar .navbar-nav .nav-link {
    color: rgba(29, 27, 41, 0.75);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.backend-navbar .navbar-nav .nav-link:hover,
.backend-navbar .navbar-nav .nav-link:focus {
    color: var(--gaby-primary);
}

.backend-navbar .navbar-nav .nav-link.active {
    color: var(--gaby-primary);
    position: relative;
}

.backend-navbar .navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -0.3rem;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gaby-primary);
}

.backend-user-chip {
    background: rgba(var(--gaby-primary-rgb), 0.08);
    border-radius: 999px;
    padding: 0.25rem 0.75rem;
}

.backend-sidebar-col {
    display: flex;
}

.backend-sidebar {
    background: #fff;
    border-radius: 1.25rem;
    padding: 1.75rem 1.5rem;
    box-shadow: 0 25px 60px -35px rgba(24, 22, 33, 0.45);
    width: 240px;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.backend-sidebar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.backend-sidebar-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: rgba(29, 27, 41, 0.6);
    letter-spacing: 0.08em;
    margin: 0;
}

.backend-sidebar-toggle {
    border: none;
    background: rgba(var(--gaby-primary-rgb), 0.08);
    color: var(--gaby-primary);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
}

.backend-sidebar-toggle:hover {
    background: rgba(var(--gaby-primary-rgb), 0.15);
}

.backend-toggle-icon {
    position: relative;
    width: 10px;
    height: 2px;
    background: currentColor;
}

.backend-toggle-icon::before,
.backend-toggle-icon::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 2px;
    background: currentColor;
    transition: transform 0.2s ease;
}

.backend-toggle-icon::before {
    transform: translateY(-4px);
}

.backend-toggle-icon::after {
    transform: translateY(4px);
}

.backend-mobile-toggle {
    border: none;
    background: rgba(var(--gaby-primary-rgb), 0.08);
    color: var(--gaby-primary);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
}

.backend-mobile-toggle:hover {
    background: rgba(var(--gaby-primary-rgb), 0.15);
}

.backend-mobile-icon {
    position: relative;
    width: 14px;
    height: 2px;
    background: currentColor;
}

.backend-mobile-icon::before,
.backend-mobile-icon::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 2px;
    background: currentColor;
}

.backend-mobile-icon::before {
    transform: translateY(-4px);
}

.backend-mobile-icon::after {
    transform: translateY(4px);
}

.backend-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.backend-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.9rem;
    border-radius: 0.75rem;
    color: #403c57;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s ease, color 0.2s ease;
}

.backend-nav-link:hover {
    background: rgba(var(--gaby-primary-rgb), 0.08);
    color: var(--gaby-primary);
}

.backend-nav-link.active {
    background: rgba(var(--gaby-primary-rgb), 0.12);
    color: var(--gaby-primary);
}

.backend-nav-icon {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.backend-nav-icon svg {
    width: 18px;
    height: 18px;
}

.backend-user-card {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.9rem;
    color: #403c57;
}

.backend-user-name {
    font-weight: 600;
}

.backend-user-role,
.backend-user-meta {
    font-size: 0.82rem;
    color: rgba(29, 27, 41, 0.65);
}

.backend-content-col {
    display: flex;
}

.backend-content {
    width: 100%;
}

.backend-content-header .btn {
    border-radius: 999px;
}

/* Dashboard (Gemini Vorlage auf PHP) */
.gaby-dashboard-shell {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 60%);
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}
.gaby-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.gaby-kicker {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #6366f1;
    margin-bottom: 0.25rem;
}
.gaby-headline {
    font-size: 2.25rem;
    font-weight: 800;
    margin: 0;
}
.gaby-subline {
    color: #6b7280;
    margin: 0.25rem 0 0;
}
.gaby-header-actions .btn {
    min-width: 150px;
}
.gaby-stat-grid {
    margin-bottom: 1.5rem;
}
.gaby-stat-card {
    background: #fff;
    border-radius: 20px;
    padding: 1.25rem;
    border: 1px solid #eef2ff;
    box-shadow: 0 12px 36px rgba(79, 70, 229, 0.08);
    position: relative;
    overflow: hidden;
}
.gaby-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    margin-bottom: 0.5rem;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}
.gaby-bg-indigo { background: #4f46e5; }
.gaby-bg-teal { background: #0d9488; }
.gaby-bg-amber { background: #d97706; }
.gaby-bg-rose { background: #e11d48; }
.gaby-stat-label {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
}
.gaby-stat-value {
    font-size: 2rem;
    font-weight: 800;
    margin: 0.15rem 0;
}
.gaby-stat-sub {
    color: #9ca3af;
    margin: 0;
}
.gaby-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem 0 1rem;
    gap: 1rem;
}
.gaby-section-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
}
.gaby-section-sub {
    color: #6b7280;
    margin: 0.2rem 0 0;
}
.gaby-empty-card {
    background: #fff;
    border: 1px dashed #cbd5e1;
    border-radius: 20px;
    padding: 1.5rem;
    text-align: left;
}
.gaby-card-goldframe {
    position: relative;
    border-radius: var(--gaby-card-radius, 1.5rem);
    border: 1px solid transparent;
    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(to top right, var(--gaby-primary) 0%, var(--gaby-primary-light) 32%, rgba(255, 255, 255, 0.95) 72%, #ffffff 100%) border-box;
}
.gaby-gallery-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.gaby-gallery-cover {
    height: 160px;
    background: linear-gradient(135deg, #6366f1, #a5b4fc);
    background-size: cover;
    background-position: center;
}
.gaby-gallery-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.gaby-gallery-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}
.gaby-gallery-client {
    margin: 0.1rem 0 0.4rem;
    color: #6b7280;
    font-size: 0.9rem;
}
.gaby-gallery-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin: 0.5rem 0;
}
.gaby-gallery-metrics div {
    text-align: center;
    background: #f8fafc;
    border-radius: 12px;
    padding: 0.5rem;
}
.gaby-gallery-metrics strong {
    display: block;
    font-size: 1.1rem;
}
.gaby-gallery-metrics span {
    display: block;
    color: #6b7280;
    font-size: 0.85rem;
}
.gaby-gallery-meta {
    color: #9ca3af;
    font-size: 0.9rem;
    margin: 0.2rem 0;
}
.gaby-badge {
    background: #eef2ff;
    color: #3730a3;
    border-radius: 999px;
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
    text-transform: capitalize;
}
.gaby-tool-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 1.25rem;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
}
.gaby-tool-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
}
.gaby-tool-sub {
    margin: 0.25rem 0 0;
    color: #6b7280;
}
.gaby-dashboard .btn-gaby {
    border-radius: 12px;
}
.gaby-dashboard .btn-gaby-outline {
    border-radius: 12px;
}

@media (max-width: 991px) {
    .gaby-dashboard-header {
        flex-direction: column;
    }
    .gaby-section-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Dashboard Gemini Layout */
.dashboard-modern .backend-navbar { display: none; }
.dash-wrapper {
    display: grid;
    grid-template-columns: 80px 1fr;
    min-height: calc(100vh - 40px);
    background: #f6f8fb;
    padding: 0.5rem;
    gap: 1rem;
}
.dash-sidebar {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0.75rem;
    gap: 1rem;
}
.dash-logo {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    font-weight: 800;
    display: grid;
    place-items: center;
    font-size: 1.2rem;
}
.dash-nav, .dash-nav-bottom {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    align-items: center;
}
.dash-nav-item {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: #eef2ff;
    display: grid;
    place-items: center;
    text-decoration: none;
    font-size: 1.25rem;
    box-shadow: 0 8px 18px rgba(99,102,241,0.15);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.dash-nav-item:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(99,102,241,0.25); }
.dash-nav-item.active { background: linear-gradient(135deg, #6366f1, #8b5cf6); color: #fff; }
.dash-main {
    background: #ffffff;
    border-radius: 28px;
    padding: 1.5rem;
    box-shadow: 0 18px 48px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.dash-topbar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}
.dash-kicker {
    text-transform: uppercase;
    color: #a5b4fc;
    letter-spacing: 0.08em;
    font-weight: 700;
    margin: 0;
}
.dash-hero {
    font-size: 2rem;
    font-weight: 800;
    margin: 0.1rem 0;
}
.dash-hero-highlight { color: #6366f1; }
.dash-subline { margin: 0; color: #6b7280; }
.dash-top-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}
.dash-user-chip {
    background: #f1f5f9;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    color: #475569;
    font-size: 0.9rem;
}
.dash-kpi-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}
.dash-kpi-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 18px;
    padding: 1rem;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    border: 1px solid #eef2ff;
    position: relative;
    overflow: hidden;
}
.dash-kpi-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}
.dash-kpi-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: #fff;
}
.dash-kpi-title { font-weight: 700; color: #475569; }
.dash-kpi-value { margin: 0; font-size: 1.8rem; font-weight: 800; }
.dash-kpi-sub { margin: 0; color: #94a3b8; }
.dash-sparkline {
    width: 100%;
    height: 46px;
    margin-top: 0.25rem;
}
.dash-kpi-trend {
    font-weight: 700;
    font-size: 0.95rem;
    margin: 0.2rem 0;
}
.dash-trend-up { color: #16a34a; }
.dash-trend-down { color: #dc2626; }
.dash-section {
    background: linear-gradient(180deg, #f9fbff 0%, #ffffff 70%);
    border-radius: 20px;
    padding: 1rem 1.2rem;
    border: 1px solid #eef2ff;
    box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}
.dash-period-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.dash-period-buttons {
    display: flex;
    gap: 0.5rem;
}
.dash-period-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.9rem;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #fff;
    text-decoration: none;
    color: #475569;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(0,0,0,0.04);
}
.dash-period-btn.active {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    border-color: transparent;
}
.dash-compare-btn {
    border-radius: 10px;
}
.dash-section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}
.dash-section-title { margin: 0; font-size: 1.3rem; font-weight: 800; }
.dash-section-sub { margin: 0; color: #6b7280; }
.dash-section-actions { display: flex; gap: 0.5rem; }
.dash-search-row {
    margin-bottom: 1rem;
}
.dash-search-input {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    padding: 0.75rem 1rem;
    background: #f8fafc;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.04);
}
.dash-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}
.dash-gallery-card {
    border-radius: 18px;
    color: #0f172a;
    box-shadow: 0 16px 36px rgba(0,0,0,0.12);
    padding: 0.9rem;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.dash-gallery-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #0f172a;
    font-weight: 700;
}
.dash-gallery-badge {
    background: rgba(255,255,255,0.85);
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
}
.dash-gallery-client {
    background: rgba(255,255,255,0.85);
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
}
.dash-gallery-body { margin-top: 0.75rem; background: #fff; border-radius: 14px; padding: 0.75rem; }
.dash-gallery-folder-icon { color: #1f2937; margin-bottom: 0.35rem; }
.dash-gallery-title { margin: 0; font-size: 1.05rem; font-weight: 800; }
.dash-gallery-sub { margin: 0.1rem 0 0.4rem; color: #6b7280; font-size: 0.9rem; }
.dash-gallery-pill {
    display: inline-block;
    background: #eef2ff;
    color: #3730a3;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
}
.dash-gallery-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin: 0.4rem 0;
}
.dash-gallery-stat-value { display: block; font-weight: 800; font-size: 1.1rem; }
.dash-gallery-stat-label { color: #6b7280; font-size: 0.85rem; }
.dash-gallery-actions { display: flex; gap: 0.5rem; margin-top: 0.5rem; }
.dash-tools {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}
.dash-bar-chart {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 0.5rem;
    padding: 0.5rem 0;
    align-items: end;
}
.dash-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
}
.dash-bar-inner {
    width: 100%;
    min-height: 8px;
    border-radius: 10px;
    background: linear-gradient(180deg, #a5b4fc, #6366f1);
    box-shadow: inset 0 -4px 10px rgba(99,102,241,0.25);
    transition: transform 0.2s ease;
}
.dash-bar:hover .dash-bar-inner {
    transform: translateY(-4px);
}
.dash-bar-label {
    font-size: 0.8rem;
    color: #475569;
}
.dash-tool-card {
    background: #fff;
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    border: 1px solid #eef2ff;
}
.dash-tool-title { margin: 0; font-weight: 800; }
.dash-tool-sub { margin: 0.2rem 0 0; color: #6b7280; }

@media (max-width: 991px) {
    .dash-wrapper { grid-template-columns: 64px 1fr; }
    .dash-topbar { flex-direction: column; align-items: flex-start; }
    .dash-top-actions { flex-wrap: wrap; }
}

.backend-empty-state {
    margin-top: 2rem;
}

.backend-empty-card {
    background: #fff;
    border-radius: 1.25rem;
    padding: 2.25rem;
    box-shadow: 0 25px 60px -35px rgba(24, 22, 33, 0.45);
}

.backend-gallery-tree {
    margin: 0;
    padding-left: 0;
}

.backend-gallery-item + .backend-gallery-item {
    margin-top: 0.5rem;
}

.backend-gallery-link {
    padding: 0.5rem 0.75rem;
    border-radius: 0.75rem;
    text-decoration: none;
    color: inherit;
    display: inline-flex;
    width: 100%;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.backend-gallery-link:hover {
    background-color: rgba(var(--gaby-primary-rgb), 0.08);
    color: inherit;
}

.backend-gallery-link.active {
    background-color: rgba(var(--gaby-primary-rgb), 0.12);
    font-weight: 600;
}

.backend-gallery-title {
    flex: 1 1 auto;
}

.backend-offcanvas .backend-nav {
    gap: 0.75rem;
}

.backend-body.backend-sidebar-collapsed .backend-sidebar {
    width: 76px;
    padding: 1.5rem 0.6rem;
    align-items: center;
}

.backend-body.backend-sidebar-collapsed .backend-sidebar-head {
    justify-content: center;
}

.backend-body.backend-sidebar-collapsed .backend-sidebar-title,
.backend-body.backend-sidebar-collapsed .backend-user-card {
    display: none;
}

.backend-body.backend-sidebar-collapsed .backend-nav-link {
    justify-content: center;
    padding: 0.65rem 0.5rem;
}

.backend-body.backend-sidebar-collapsed .backend-nav-label {
    display: none;
}

.backend-body.backend-sidebar-collapsed .backend-toggle-icon::before {
    transform: translateY(0) rotate(45deg);
}

.backend-body.backend-sidebar-collapsed .backend-toggle-icon::after {
    transform: translateY(0) rotate(-45deg);
}

@media (max-width: 991.98px) {
    .backend-navbar {
        border-bottom: 1px solid rgba(var(--gaby-primary-rgb), 0.08);
    }
}

.gallery-tabs .nav-link {
    border: none;
    font-weight: 500;
    color: rgba(29, 27, 41, 0.7);
}

.gallery-tabs .nav-link.active {
    color: var(--gaby-primary);
    border-bottom: 2px solid var(--gaby-primary);
}

.gallery-summary-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.2rem;
    box-shadow: 0 18px 45px -35px rgba(24, 22, 33, 0.45);
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.gallery-summary-label {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    color: rgba(var(--gaby-primary-rgb), 0.6);
}

.gallery-summary-value {
    font-size: 1.65rem;
    font-weight: 600;
    color: var(--gaby-primary);
}

.subgallery-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.4rem;
    box-shadow: 0 20px 50px -30px rgba(24, 22, 33, 0.35);
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.gallery-subform .form-control {
    background: rgba(244, 242, 247, 0.6);
    border: none;
}

.gallery-subform .form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(var(--gaby-primary-rgb), 0.15);
}

.gallery-meta-list dt {
    font-size: 0.85rem;
}

.gallery-meta-list dd {
    font-size: 0.95rem;
}

.foto-upload-wrapper {
    background: #fff;
    border-radius: 1.25rem;
    padding: 1.5rem;
    box-shadow: 0 25px 60px -35px rgba(24, 22, 33, 0.45);
}

.foto-upload-empty {
    border-radius: 0.75rem;
    border: 1px dashed rgba(var(--gaby-primary-rgb), 0.2);
    background: rgba(var(--gaby-primary-rgb), 0.04);
    color: rgba(29, 27, 41, 0.65);
    margin-bottom: 1.5rem;
}

.foto-upload-droparea {
    border: 2px dashed rgba(var(--gaby-primary-rgb), 0.3);
    border-radius: 1.5rem;
    padding: 3rem 2.5rem;
    background: rgba(244, 242, 247, 0.45);
    text-align: center;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.foto-upload-droparea.is-dragover {
    border-color: var(--gaby-accent);
    background: rgba(255, 240, 217, 0.65);
    box-shadow: 0 18px 36px -24px rgba(216, 162, 93, 0.8);
}

.foto-upload-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin: 0 auto 1.25rem;
    background: rgba(216, 162, 93, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.foto-upload-icon::before,
.foto-upload-icon::after {
    content: '';
    position: absolute;
    background: var(--gaby-accent);
}

.foto-upload-icon::before {
    width: 26px;
    height: 4px;
    border-radius: 2px;
}

.foto-upload-icon::after {
    width: 4px;
    height: 26px;
    border-radius: 2px;
}

.foto-upload-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gaby-primary);
}

.foto-upload-description {
    color: rgba(29, 27, 41, 0.65);
    margin-bottom: 1.25rem;
}

.foto-upload-info {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    margin-bottom: 1.25rem;
    background: rgba(var(--gaby-primary-rgb), 0.1);
    color: var(--gaby-primary);
    font-weight: 700;
    cursor: pointer;
}

.foto-upload-info:hover,
.foto-upload-info:focus {
    background: rgba(var(--gaby-primary-rgb), 0.2);
    color: var(--gaby-primary);
}

.foto-upload-button {
    border-radius: 999px;
    font-weight: 600;
}

.foto-upload-input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.foto-upload-list {
    display: none;
}

.foto-upload-item {
    background: rgba(244, 242, 247, 0.5);
    border-radius: 1rem;
    padding: 1.25rem;
    display: grid;
    gap: 0.75rem;
}

.foto-upload-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.foto-upload-item-name {
    font-weight: 600;
    color: var(--gaby-primary);
    word-break: break-word;
}

.foto-upload-item-status {
    font-size: 0.85rem;
    color: rgba(29, 27, 41, 0.6);
}

.foto-upload-progress {
    width: 100%;
    height: 8px;
    border-radius: 999px;
    background: rgba(var(--gaby-primary-rgb), 0.12);
    overflow: hidden;
    position: relative;
}

.foto-upload-progress-bar {
    background: var(--gaby-primary);
    height: 100%;
    width: 0;
    transition: width 0.2s ease;
}

.foto-upload-item--success .foto-upload-progress-bar {
    background: #3bb273;
}

.foto-upload-item--error .foto-upload-progress-bar {
    background: #d9534f;
}

.foto-upload-item-error {
    font-size: 0.85rem;
    color: #d9534f;
}

.foto-upload-modal {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    width: min(360px, calc(100% - 2rem));
    z-index: 1080;
    pointer-events: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.foto-upload-modal.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.foto-upload-modal-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 40px 90px -45px rgba(24, 22, 33, 0.75);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.foto-upload-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(var(--gaby-primary-rgb), 0.08);
}

.foto-upload-modal-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gaby-primary);
    margin: 0;
}

.foto-upload-modal-body {
    max-height: 260px;
    overflow-y: auto;
    padding: 1rem 1.25rem;
    display: grid;
    gap: 0.75rem;
}

.foto-upload-modal-item {
    border-radius: 0.85rem;
    background: rgba(244, 242, 247, 0.6);
    padding: 0.9rem 1rem;
    box-shadow: inset 0 0 0 1px rgba(var(--gaby-primary-rgb), 0.05);
    display: grid;
    gap: 0.65rem;
}

.foto-upload-modal-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.foto-upload-modal-name {
    font-weight: 600;
    color: var(--gaby-primary);
    font-size: 0.9rem;
    word-break: break-word;
}

.foto-upload-modal-status {
    font-size: 0.8rem;
    color: rgba(29, 27, 41, 0.6);
    white-space: nowrap;
}

.foto-upload-modal-progress {
    position: relative;
    width: 100%;
    height: 6px;
    background: rgba(var(--gaby-primary-rgb), 0.15);
    border-radius: 999px;
    overflow: hidden;
}

.foto-upload-modal-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: var(--gaby-primary);
    transition: width 0.2s ease;
}

.foto-upload-modal-item--success .foto-upload-modal-progress-bar {
    background: #3bb273;
}

.foto-upload-modal-item--error .foto-upload-modal-progress-bar {
    background: #d9534f;
}

.foto-upload-modal-error {
    font-size: 0.8rem;
    color: #d9534f;
}

.foto-upload-modal-footer {
    padding: 0.75rem 1.25rem;
    border-top: 1px solid rgba(var(--gaby-primary-rgb), 0.08);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
}

.foto-upload-modal-close {
    border: none;
    background: transparent;
    font-size: 0.85rem;
    color: rgba(29, 27, 41, 0.65);
    font-weight: 600;
    cursor: pointer;
}

.foto-upload-modal-close:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.foto-upload-modal-cancel {
    border: none;
    background: transparent;
    font-size: 0.8rem;
    color: rgba(29, 27, 41, 0.6);
    cursor: pointer;
}

.gallery-overview-table tbody tr {
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.gallery-overview-table tbody tr:hover {
    background: rgba(var(--gaby-primary-rgb), 0.04);
}

.gallery-overview-thumb {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--gaby-primary-rgb), 0.1);
}

.gallery-overview-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-overview-thumb.placeholder {
    font-size: 1.25rem;
    color: rgba(var(--gaby-primary-rgb), 0.65);
}

.gallery-overview-thumb .placeholder-icon {
    line-height: 1;
}

.gallery-media-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    height: 100%;
}

.gallery-media-card {
    background: #fff;
    border-radius: 1rem;
    border: 3px solid transparent;
    border-image: none;
    box-shadow: 0 18px 40px -32px rgba(24, 22, 33, 0.45);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery-media-card.is-photographer-selected {
    border-color: #f43f5e;
}

.gallery-media-card.is-client-selected {
    border-color: #10b981;
}

.gallery-media-card.is-client-preselected {
    border-color: #f59e0b;
}

.gallery-media-card.is-combined-selected {
    border-color: transparent;
    border-image: linear-gradient(120deg, #f43f5e, #10b981) 1;
}

.gallery-media-card.is-preselect-combined {
    border-color: transparent;
    border-image: linear-gradient(120deg, #f43f5e, #f59e0b) 1;
}

.gallery-media-thumb {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background: #f6f2ed;
}

.gallery-media-thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
    z-index: 1;
    transition: transform 0.2s ease;
    cursor: pointer;
}

.gallery-media-video-badge {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 3;
}

.gallery-media-video-badge span {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.45);
    color: #fff;
    backdrop-filter: blur(4px);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.25);
}

.gallery-media-video-badge svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.gallery-media-card:hover .gallery-media-thumb img {
    transform: scale(1.03);
}

.gallery-media-thumb::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--gallery-selection-overlay, none);
    background-repeat: repeat;
    background-position: center;
    background-size: var(--gallery-selection-overlay-size, 220px);
    opacity: var(--gallery-selection-overlay-opacity, 0);
    pointer-events: none;
    -webkit-mask-image: var(--gallery-selection-mask, none);
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-image: var(--gallery-selection-mask, none);
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    z-index: 2;
}

.gallery-media-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: transparent;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, background 0.2s ease;
    z-index: 3;
}

.gallery-media-card.is-delete-hover .gallery-media-thumb::after {
    opacity: 1;
    background: rgba(220, 53, 69, 0.25);
}

.gallery-media-badges {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    display: flex;
    gap: 0.4rem;
    z-index: 3;
}

.gallery-media-badge {
    background: rgba(15, 14, 24, 0.75);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    white-space: nowrap;
}

.gallery-media-favorite {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 4;
}

.gallery-media-favorite-button,
.gallery-media-star-button {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.85);
    padding: 0;
    cursor: pointer;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);
    transition: transform 0.2s ease, color 0.2s ease;
}

.gallery-media-favorite-button span {
    font-size: 1.6rem;
    line-height: 1;
}

.gallery-media-favorite-button:hover,
.gallery-media-favorite-button:focus {
    transform: scale(1.08);
    color: #fff;
}

.gallery-media-favorite-button.is-active span {
    color: #dc3545;
}

.gallery-media-actions {
    position: absolute;
    right: 0.65rem;
    bottom: 0.65rem;
    display: flex;
    gap: 0.35rem;
    z-index: 4;
}

.gallery-media-actions .gallery-media-icon {
    background: rgba(12, 11, 20, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    width: 32px;
    height: 32px;
}

.gallery-media-actions .gallery-media-icon-cover,
.gallery-media-actions .gallery-media-icon-app,
.gallery-media-actions .gallery-media-icon-download {
    color: #fff;
}

.gallery-media-actions .gallery-media-icon:hover,
.gallery-media-actions .gallery-media-icon:focus {
    transform: translateY(-1px);
    color: #fff;
}

.gallery-media-actions .gallery-media-icon-cover.is-active {
    background: rgba(91, 227, 154, 0.95);
    border-color: rgba(91, 227, 154, 0.95);
    color: #0e2a1b;
}

.gallery-media-actions .gallery-media-icon-app.is-active {
    background: rgba(102, 181, 255, 0.95);
    border-color: rgba(102, 181, 255, 0.95);
    color: #0f2234;
}

.gallery-media-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fdfdfd;
    background: transparent;
    cursor: pointer;
    transition: transform 0.15s ease, color 0.15s ease;
    text-decoration: none;
}

.gallery-media-icon:hover,
.gallery-media-icon:focus {
    transform: translateY(-1px);
    text-decoration: none;
}

.gallery-mosaic {
    column-count: 1;
    column-gap: 1rem;
}

@media (min-width: 576px) {
    .gallery-mosaic {
        column-count: 2;
    }
}

@media (min-width: 992px) {
    .gallery-mosaic {
        column-count: 3;
    }
}

.gallery-mosaic-item {
    break-inside: avoid;
    margin: 0 0 1rem;
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 18px 40px -32px rgba(24, 22, 33, 0.4);
    padding: 0.5rem;
}

.gallery-mosaic-item img {
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
    display: block;
}

.gallery-mosaic-item figcaption {
    padding: 0.4rem 0.25rem 0.2rem;
}

.gallery-media-icon svg {
    width: 18px;
    height: 18px;
}

.gallery-media-icon-cover {
    color: #9ce8c1;
}

.gallery-media-icon-cover.is-active {
    color: #5be39a;
}

.gallery-media-icon-app {
    color: #a7d4ff;
}

.gallery-media-icon-app.is-active {
    color: #66b5ff;
}

.gallery-media-icon-download {
    color: #ffe296;
}

.gallery-media-icon-delete {
    color: #ff8f8f;
}

.gallery-media-icon-preview {
    color: #fdfdfd;
}

.gallery-media-delete-flag {
    position: absolute;
    top: 0.6rem;
    left: 0.6rem;
    z-index: 4;
}

.gallery-media-delete-button {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ff8f8f;
    background: rgba(24, 22, 33, 0.8);
    transition: transform 0.15s ease, background 0.15s ease;
}

.gallery-media-delete-button svg {
    width: 18px;
    height: 18px;
}

.gallery-media-delete-button:hover,
.gallery-media-delete-button:focus {
    transform: translateY(-1px);
    background: rgba(217, 83, 79, 0.95);
    color: #fff;
}

.gallery-media-sequence {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6d6682;
    text-align: center;
}

.gallery-media-favorite-form,
.gallery-media-delete-form {
    margin: 0;
}

.gallery-media-card.is-cover {
    box-shadow: 0 22px 50px -28px rgba(40, 122, 44, 0.45);
}

.gallery-media-card.is-share {
    box-shadow: 0 22px 50px -28px rgba(0, 98, 176, 0.45);
}

.gallery-upload-sticky {
    position: sticky;
    top: 6rem;
}

@media (max-width: 1199.98px) {
    .gallery-upload-sticky {
        position: static;
    }
}

.gallery-upload-sticky .foto-upload-wrapper {
    margin-bottom: 0;
}

.gallery-media-favorite-button.is-busy {
    opacity: 0.6;
    pointer-events: none;
}

.gallery-client-page {
    background: #f4f6fb;
}

.gallery-client-page.has-fixed-nav,
.gallery-client-page.has-fixed-nav-overlay {
    padding-top: 0;
}

.gallery-client-page .gaby-site-header-fixed,
.gallery-client-page .gaby-logo-only-navbar {
    display: none;
}

.gallery-client-page a {
    color: inherit;
    text-decoration: none;
}

.gallery-client-page header {
    display: none;
}

.gallery-client-page footer {
    display: none;
}

.gallery-client-page footer.gallery-client-footer {
    display: block;
}

 .gallery-client-main {
    min-height: 100vh;
    background: linear-gradient(180deg, #f4f6fb 0%, #ffffff 65%);
    padding-bottom: 3rem;
}

.gallery-client-footer {
    background: #ffffff;
    color: #111827;
    padding: 0;
}

.gallery-client-footer-hero {
    position: relative;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.gallery-client-footer-hero-media {
    position: relative;
    width: 34%;
    max-width: 440px;
    height: clamp(220px, 26vw, 360px);
    border-radius: 1.5rem;
    overflow: hidden;
}

.gallery-client-footer-hero-media::after {
    content: "";
    position: absolute;
    top: -10%;
    left: -140%;
    width: 140%;
    height: 120%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 45%, rgba(255, 255, 255, 0) 70%);
    opacity: 0;
    transform: translateX(-120%) skewX(-20deg);
    pointer-events: none;
    animation: gaby-logo-loop 15s linear infinite;
}

.gallery-client-footer-hero-media:hover::after,
.gallery-client-footer-hero-media:focus-visible::after {
    opacity: 0.85;
    animation: gaby-gold-swoosh 0.7s ease;
}

.gallery-client-footer-hero-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 991.98px) {
    .gallery-client-footer-hero {
        width: 100%;
    }
    .gallery-client-footer-hero-media {
        width: min(90%, 520px);
    }
}

.gallery-client-footer-logo {
    position: absolute;
    left: 50%;
    bottom: -52px;
    transform: translateX(-50%);
    width: 220px;
    height: 120px;
    background: #ffffff;
    border-radius: 999px 999px 0 0;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 1rem;
}

.gallery-client-footer-logo img {
    width: 160px;
    height: 60px;
    object-fit: contain;
    display: block;
}

.gallery-client-footer-body {
    padding: 5.5rem 0 3.25rem;
    text-align: center;
}

.gallery-client-footer-title {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 500;
    margin: 0 0 1.25rem;
}

.gallery-client-footer-divider {
    width: min(520px, 90%);
    height: 1px;
    background: rgba(17, 24, 39, 0.18);
    margin: 0 auto 1.75rem;
}

.gallery-client-footer-contact {
    display: grid;
    gap: 0.65rem;
    font-size: 1.05rem;
    margin-bottom: 1.75rem;
}

.gallery-client-footer-contact a {
    color: inherit;
    text-decoration: none;
}

.gallery-client-footer-contact a:hover,
.gallery-client-footer-contact a:focus {
    text-decoration: underline;
}

.gallery-client-footer-links a,
.gallery-client-footer-contact a {
    position: relative;
    overflow: hidden;
}

.gallery-client-footer-links a::after,
.gallery-client-footer-contact a::after {
    content: "";
    position: absolute;
    top: -10%;
    left: -140%;
    width: 140%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.85) 45%, rgba(255, 255, 255, 0) 70%);
    opacity: 0;
    transform: translateX(-120%) skewX(-20deg);
    pointer-events: none;
    animation: gaby-logo-loop 15s linear infinite;
}

.gallery-client-footer-links a:hover::after,
.gallery-client-footer-links a:focus::after,
.gallery-client-footer-contact a:hover::after,
.gallery-client-footer-contact a:focus::after {
    opacity: 0.85;
    animation: gaby-gold-swoosh 0.7s ease;
}

.gallery-client-footer-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 2.25rem;
}

.gallery-client-footer-social a {
    position: relative;
    overflow: hidden;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    border: 1px solid rgba(var(--gaby-primary-rgb), 0.45);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gaby-primary-dark);
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.gallery-client-footer-social a::after {
    content: "";
    position: absolute;
    top: -10%;
    left: -140%;
    width: 140%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.85) 45%, rgba(255, 255, 255, 0) 70%);
    opacity: 0;
    transform: translateX(-120%) skewX(-20deg);
    pointer-events: none;
    animation: gaby-logo-loop 15s linear infinite;
}

.gallery-client-footer-social a:hover,
.gallery-client-footer-social a:focus {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(var(--gaby-primary-rgb), 0.22);
}

.gallery-client-footer-social a:hover::after,
.gallery-client-footer-social a:focus::after {
    opacity: 0.85;
    animation: gaby-gold-swoosh 0.7s ease;
}

.gallery-client-footer-social svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.gallery-client-footer-links {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1rem;
}

.gallery-client-footer-links a {
    color: inherit;
    text-decoration: none;
}

.gallery-client-footer-links a:hover,
.gallery-client-footer-links a:focus {
    text-decoration: underline;
}

.gallery-client-footer-links span {
    color: rgba(17, 24, 39, 0.35);
}

.gallery-client-shell {
    position: relative;
}

.gallery-client-toast {
    position: sticky;
    top: calc(7rem + 0.75rem);
    margin: 0 auto 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.4rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    background: #0f172a;
    color: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
    z-index: 50;
}

.gallery-client-toast.is-error {
    background: #dc2626;
}

.gallery-client-main-hero {
    position: relative;
    overflow: hidden;
    margin-top: 0;
    min-height: clamp(220px, 30vw, 500px);
    display: flex;
    align-items: flex-end;
}

.gallery-client-main-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--gallery-hero-image);
    background-size: cover;
    background-position: var(--gallery-hero-focus-x, 50%) var(--gallery-hero-focus-y, 50%);
    transform-origin: var(--gallery-hero-focus-x, 50%) var(--gallery-hero-focus-y, 50%);
    transform: scale(var(--gallery-hero-zoom, 1.02));
}

.gallery-client-main-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.15) 0%, rgba(15, 23, 42, 0.82) 100%);
}

.gallery-client-main-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.75rem 1.5rem 2rem;
}

.gallery-client-main-hero-title {
    font-size: clamp(2rem, 3.6vw, 3rem);
    font-weight: 900;
    color: #ffffff;
    margin: 0 0 0.5rem;
    letter-spacing: -0.02em;
}

.gallery-client-main-hero-message {
    margin: 0;
    max-width: 760px;
    color: rgba(226, 232, 240, 0.92);
    font-size: 1.05rem;
}

.gallery-client-selection-hint {
    margin: 1.5rem auto 0;
    max-width: 1200px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1.25rem;
    padding: 1.1rem 1.4rem;
    box-shadow: 0 20px 45px -32px rgba(15, 23, 42, 0.3);
}

.gallery-client-selection-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.gallery-client-selection-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    background: none;
    padding: 0;
    color: #0f172a;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
}

.gallery-client-selection-toggle svg {
    width: 18px;
    height: 18px;
    transition: transform 0.2s ease;
}

.gallery-client-selection-toggle.is-collapsed svg {
    transform: rotate(-90deg);
}

.gallery-client-selection-body {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.gallery-client-selection-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 220px;
}

.gallery-client-selection-item strong {
    display: block;
    color: #0f172a;
    font-size: 0.95rem;
}

.gallery-client-selection-item span {
    display: block;
    color: #475569;
    font-size: 0.9rem;
}

.gallery-client-selection-icon {
    width: 34px;
    height: 34px;
    border-radius: 0.75rem;
    display: grid;
    place-items: center;
    background: none;
    box-shadow: none;
    border: 2px solid #e2e8f0;
    color: #0f172a;
    flex-shrink: 0;
    line-height: 0;
}

.gallery-client-selection-icon svg {
    width: 18px;
    height: 18px;
    display: block;
    margin: 0;
}

.gallery-client-selection-icon.is-star {
    color: #f59e0b;
    border-color: #f59e0b;
}

.gallery-client-selection-icon.is-heart {
    color: #10b981;
    border-color: #10b981;
}

.gallery-client-selection-icon.is-frame {
    border-color: #e11d48;
    color: transparent;
}

.gallery-client-language-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 700;
    color: #94a3b8;
}

.gallery-client-language-switch a {
    text-decoration: none;
    color: #64748b;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 0.15rem 0.5rem;
}

.gallery-client-language-switch a.is-active {
    color: #0f172a;
    border-color: #c7d2fe;
    background: #eef2ff;
}

@media (max-width: 576px) {
    .gallery-client-main-hero {
        min-height: 280px;
    }

    .gallery-client-main-hero::before {
        background-position: var(--gallery-hero-focus-x, 50%) calc(var(--gallery-hero-focus-y, 50%) + 8%);
    }
}

.gallery-client-content {
    padding-top: 2.25rem;
    --bs-gutter-x: 1.5rem;
}

.gallery-client-section {
    margin-top: 2rem;
}

.gallery-client-section-header h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.2rem;
}

.gallery-client-section-header p {
    margin: 0;
    color: #64748b;
}

.gallery-client-children {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4.5rem 2.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .gallery-client-children {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1200px) {
    .gallery-client-children {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .gallery-client-children {
        gap: 4rem 1.5rem;
    }
    .gallery-client-child-thumb {
        border-radius: 17px;
    }
    .gallery-client-child-thumb-title {
        width: 88%;
        padding: 0.95rem 1rem;
        transform: translate(-50%, 40%);
    }
    .gallery-client-child-card:hover .gallery-client-child-thumb-title {
        transform: translate(-50%, 0%);
    }
    .gallery-client-child-title {
        font-size: 0.7rem;
        letter-spacing: 0.3em;
    }
    .gallery-client-child-meta {
        font-size: 0.6rem;
        letter-spacing: 0.2em;
    }
}

.gallery-client-child-card {
    position: relative;
    text-decoration: none;
    display: block;
    color: inherit;
    padding-bottom: 3.5rem;
    transition: transform 0.3s ease;
}

.gallery-client-child-card:hover {
    transform: translateY(-4px);
}

.gallery-client-child-card.is-active .gallery-client-child-thumb {
    box-shadow: 0 28px 60px -36px rgba(212, 175, 55, 0.45);
}

.gallery-client-child-thumb {
    position: relative;
    aspect-ratio: 6 / 4;
    border-radius: 17px;
    overflow: visible;
    background-color: #f8fafc;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.5s ease, transform 0.5s ease;
}

.gallery-client-child-thumb::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--gallery-child-cover, none);
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 2s ease;
    border-radius: inherit;
    z-index: 1;
}

.gallery-client-child-card:hover .gallery-client-child-thumb {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.gallery-client-child-card:hover .gallery-client-child-thumb::before {
    transform: scale(1.04);
}

.gallery-client-child-thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.02) 55%, rgba(0, 0, 0, 0.06) 100%);
    opacity: 0.7;
    transition: opacity 0.8s ease;
    z-index: 2;
    pointer-events: none;
    border-radius: inherit;
}

.gallery-client-child-card:hover .gallery-client-child-thumb-overlay {
    opacity: 1;
}

.gallery-client-child-thumb-title {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 40%);
    width: 82%;
    z-index: 3;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
    border-radius: 24px;
    border-left: 1px solid #d4af37;
    border-bottom: 1px solid #d4af37;
    border-top: 1px solid rgba(255, 255, 255, 0.9);
    border-right: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    text-align: center;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.gallery-client-child-card:hover .gallery-client-child-thumb-title {
    transform: translate(-50%, 0%);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.gallery-client-child-meta {
    margin: 0;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #3b2f0a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    text-align: center;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #f7e6a1 0%, #d4af37 100%);
    box-shadow: 0 8px 18px rgba(212, 175, 55, 0.25);
}

.gallery-client-child-meta::after {
    display: none;
}

.gallery-client-child-card:hover .gallery-client-child-meta::after {
    display: none;
}

.gallery-client-child-title {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: #fff;
    letter-spacing: 0.35em;
    text-transform: uppercase;
}

.gallery-client-current-header {
    margin-top: 2.25rem;
}

.gallery-client-current-top {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 0.85rem;
}

.gallery-client-hero-back {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    width: fit-content;
    margin-bottom: 0.9rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(226, 232, 240, 0.35);
    background: rgba(15, 23, 42, 0.35);
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 14px 26px -22px rgba(15, 23, 42, 0.35);
    backdrop-filter: blur(8px);
    transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.gallery-client-hero-back svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.gallery-client-hero-back:hover {
    transform: translateY(-1px);
    border-color: rgba(226, 232, 240, 0.55);
    background: rgba(15, 23, 42, 0.48);
    box-shadow: 0 16px 30px -22px rgba(15, 23, 42, 0.5);
}

.gallery-client-selection-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.08);
    color: #0f172a;
    font-weight: 700;
}

.gallery-client-meta-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    background: rgba(99, 102, 241, 0.12);
    color: #312e81;
    font-weight: 700;
}

.gallery-client-download-actions {
    margin-top: 1.25rem;
    display: flex;
    justify-content: flex-end;
}

.gallery-client-download-all {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 999px;
    background: var(--gaby-primary-gradient);
    color: #2a1b0f;
    padding: 0.7rem 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-weight: 700;
    box-shadow: 0 18px 36px -24px rgba(24, 22, 33, 0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.gallery-client-download-all.is-busy {
    cursor: wait;
}

.gallery-client-download-all:hover,
.gallery-client-download-all:focus {
    transform: translateY(-2px);
    filter: brightness(0.97);
    box-shadow: 0 22px 40px -24px rgba(24, 22, 33, 0.55);
}

.gallery-client-download-icon svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
}

.gallery-client-download-progress {
    position: absolute;
    left: 0.6rem;
    right: 0.6rem;
    bottom: 0.35rem;
    height: 3px;
    border-radius: 999px;
    background: #39ff14;
    box-shadow: 0 0 8px rgba(57, 255, 20, 0.75);
    width: 0;
    opacity: 0;
    transition: width 0.2s ease, opacity 0.2s ease;
}

.gallery-client-download-spinner {
    width: 16px;
    height: 16px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-top-color: rgba(42, 27, 15, 0.9);
    display: none;
    animation: galleryClientSpin 0.8s linear infinite;
}

.gallery-client-download-all.is-busy .gallery-client-download-spinner {
    display: inline-flex;
}

@media (max-width: 768px) {
    .gallery-client-download-actions {
        justify-content: center;
    }
}

.gallery-client-load-more {
    margin-top: 2.25rem;
    padding: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: #64748b;
    font-weight: 700;
}

.gallery-client-spinner {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    border: 3px solid rgba(99, 102, 241, 0.25);
    border-top-color: #6366f1;
    animation: galleryClientSpin 0.9s linear infinite;
}

.gallery-client-load-sentinel {
    height: 1px;
}

@keyframes galleryClientSpin {
    to {
        transform: rotate(360deg);
    }
}

.gallery-client-grid {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.gallery-client-grid--mosaic {
    display: block;
    column-count: 2;
    column-gap: 1rem;
    margin-top: 1.5rem;
}

@media (min-width: 576px) {
    .gallery-client-grid--mosaic {
        column-count: 2;
    }
}

@media (min-width: 992px) {
    .gallery-client-grid--mosaic {
        column-count: 3;
        column-gap: 1.25rem;
    }
}

@media (min-width: 1400px) {
    .gallery-client-grid--mosaic {
        column-count: 4;
    }
}

.gallery-client-grid--mosaic .gallery-media-item {
    display: inline-block;
    width: 100%;
    margin: 0 0 1rem;
    padding: 0;
    break-inside: avoid;
}

.gallery-client-grid--mosaic .gallery-media-card {
    height: auto;
    border-radius: 0.75rem;
    border: none;
    background: transparent;
    box-shadow: 0 18px 40px -32px rgba(24, 22, 33, 0.25);
}

.gallery-client-grid--mosaic .gallery-media-badges {
    display: none;
}

.gallery-client-grid--mosaic .gallery-media-thumb {
    padding-top: 0;
    background: transparent;
}

.gallery-client-grid--mosaic .gallery-media-thumb img {
    position: static;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.gallery-client-card {
    padding: 0.35rem;
    height: 100%;
}

@media (min-width: 768px) {
    .gallery-client-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 992px) {
    .gallery-client-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 2rem;
    }
}

@media (min-width: 1200px) {
    .gallery-client-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 1.25rem;
    }
}

.gallery-client-page .gallery-media-item {
    align-items: stretch;
}

.gallery-client-page .gallery-media-card {
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 18px 40px -32px rgba(24, 22, 33, 0.45);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.gallery-client-page .gallery-client-grid--mosaic .gallery-media-card {
    border: none;
    background: transparent;
    box-shadow: 0 18px 40px -32px rgba(24, 22, 33, 0.25);
}

.gallery-client-page .gallery-media-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 50px -30px rgba(99, 102, 241, 0.22);
}

.gallery-client-page .gallery-media-card.is-photographer-selected {
    border-color: #e11d48;
    box-shadow: 0 0 0 2px rgba(244, 63, 94, 0.16), 0 18px 40px -32px rgba(24, 22, 33, 0.45);
}

.gallery-client-page .gallery-media-card.is-client-selected {
    border-color: #10b981;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.16), 0 18px 40px -32px rgba(24, 22, 33, 0.45);
}

.gallery-client-page .gallery-media-card.is-client-preselected {
    border-color: #f59e0b;
    box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.18), 0 18px 40px -32px rgba(24, 22, 33, 0.45);
}

.gallery-client-page .gallery-media-card.is-combined-selected {
    border-color: transparent;
    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(120deg, #f43f5e, #10b981) border-box;
    box-shadow: 0 0 0 2px rgba(244, 63, 94, 0.12), 0 18px 40px -32px rgba(24, 22, 33, 0.45);
}

.gallery-client-page .gallery-media-card.is-preselect-combined {
    border-color: transparent;
    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(120deg, #f43f5e, #f59e0b) border-box;
    box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.16), 0 18px 40px -32px rgba(24, 22, 33, 0.45);
}

.gallery-client-page .gallery-media-badges {
    top: 0.35rem;
    left: 0.35rem;
}

.gallery-client-page .gallery-media-badge {
    background: rgba(255, 255, 255, 0.85);
    color: #374151;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    border-radius: 0.5rem;
    padding: 0.2rem 0.5rem;
    border: 1px solid rgba(229, 231, 235, 0.95);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
}

.gallery-client-page .gallery-media-thumb {
    background: #ffffff;
}

.gallery-client-page .gallery-client-grid--mosaic .gallery-media-thumb {
    background: transparent;
}

.gallery-client-page .gallery-media-thumb img {
    object-fit: cover;
    background: transparent;
}

.gallery-client-page .gallery-media-favorite {
    top: 0.5rem;
    right: 0.5rem;
    display: flex;
    gap: 0.35rem;
}

.gallery-client-page .gallery-media-download-button {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.85);
    background: var(--gaby-primary-gradient);
    color: #2a1b0f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 26px -18px rgba(24, 22, 33, 0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    z-index: 3;
}

.gallery-client-page .gallery-media-download-button.is-busy {
    cursor: wait;
    filter: brightness(0.97);
}

.gallery-client-page .gallery-media-download-button.is-busy::after {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-top-color: rgba(42, 27, 15, 0.9);
    animation: galleryClientSpin 0.8s linear infinite;
}

.gallery-client-page .gallery-media-download-button svg {
    width: 17px;
    height: 17px;
    stroke: currentColor;
    fill: none;
}

.gallery-client-page .gallery-media-download-button:hover,
.gallery-client-page .gallery-media-download-button:focus {
    transform: translateY(-2px);
    filter: brightness(0.97);
    box-shadow: 0 18px 32px -20px rgba(24, 22, 33, 0.5);
}

.gallery-client-page .gallery-media-compare-button {
    position: absolute;
    top: 0.5rem;
    right: 3rem;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(124, 58, 237, 0.3);
    background: rgba(124, 58, 237, 0.08);
    color: #7c3aed;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 24px -18px rgba(24, 22, 33, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    z-index: 3;
}

.gallery-client-page .gallery-media-compare-button.is-active {
    background: #7c3aed;
    border-color: rgba(124, 58, 237, 0.75);
    color: #fff;
}

.gallery-client-page .gallery-media-compare-button:hover,
.gallery-client-page .gallery-media-compare-button:focus {
    transform: translateY(-2px);
    filter: brightness(1.02);
    box-shadow: 0 16px 30px -18px rgba(24, 22, 33, 0.45);
}

.gallery-client-page .gallery-media-compare-button svg {
    width: 17px;
    height: 17px;
    stroke: currentColor;
    fill: none;
}

.gallery-client-page .gaby-float-pill--download {
    display: none;
}

.gallery-client-page .gaby-float-stack.is-lightbox-active .gaby-float-pill--download {
    display: inline-flex;
}

.gallery-client-page .gaby-lightbox-nav {
    top: 50%;
    bottom: auto;
    height: clamp(180px, 45vh, 520px);
    width: clamp(72px, 12vw, 160px);
    transform: translateY(-50%);
    background: transparent;
    box-shadow: none;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.gallery-client-page .gaby-lightbox-nav::before {
    content: "";
    position: absolute;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 999px;
    background: rgba(15, 14, 24, 0.7);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    transition: background 0.2s ease, transform 0.2s ease;
}

.gallery-client-page .gaby-lightbox-nav svg {
    position: relative;
    z-index: 1;
}

.gallery-client-page .gaby-lightbox-nav:hover,
.gallery-client-page .gaby-lightbox-nav:focus-visible {
    background: transparent;
}

.gallery-client-page .gaby-lightbox-nav:hover::before,
.gallery-client-page .gaby-lightbox-nav:focus-visible::before {
    background: rgba(15, 14, 24, 0.9);
}

.gallery-client-page .gaby-lightbox-nav-prev {
    left: 0;
}

.gallery-client-page .gaby-lightbox-nav-next {
    right: 0;
}

.gallery-client-download .gaby-lightbox-stage {
    padding: 0;
}

.gallery-client-download .gaby-lightbox-stage::after {
    inset: 0;
}

.gallery-client-download .gaby-lightbox-stage img,
.gallery-client-download .gaby-lightbox-stage video {
    border-radius: 0;
    box-shadow: none;
}

.gallery-client-page .gallery-media-favorite-button {
    color: rgba(107, 114, 128, 0.92);
    text-shadow: none;
    filter: drop-shadow(0 6px 16px rgba(15, 23, 42, 0.18));
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.gallery-client-page .gallery-media-favorite-button svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.9));
}

.gallery-client-page .gallery-media-favorite-button:hover,
.gallery-client-page .gallery-media-favorite-button:focus {
    transform: scale(1.1);
    color: rgba(31, 41, 55, 0.95);
}

.gallery-client-page .gallery-media-favorite-button.is-active {
    color: #10b981;
}

.gallery-client-page .gallery-media-favorite-button.is-active svg {
    fill: currentColor;
}

.gallery-client-page .gallery-media-star-button {
    color: rgba(107, 114, 128, 0.92);
    text-shadow: none;
    filter: drop-shadow(0 6px 16px rgba(15, 23, 42, 0.18));
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.gallery-client-page .gallery-media-star-button svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.9));
}

.gallery-client-page .gallery-media-star-button:hover,
.gallery-client-page .gallery-media-star-button:focus {
    transform: scale(1.1);
    color: rgba(31, 41, 55, 0.95);
}

.gallery-client-page .gallery-media-star-button.is-active {
    color: #f59e0b;
}

.gallery-client-page .gallery-media-star-button.is-active svg {
    fill: currentColor;
}

.gaby-lightbox.is-photographer-selected .gaby-lightbox-stage img {
    box-shadow:
        0 0 0 6px rgba(244, 63, 94, 0.65),
        0 25px 70px -50px rgba(0, 0, 0, 0.9);
}

.gaby-lightbox.is-client-selected .gaby-lightbox-stage img {
    box-shadow:
        0 0 0 6px rgba(16, 185, 129, 0.65),
        0 25px 70px -50px rgba(0, 0, 0, 0.9);
}

.gaby-lightbox.is-client-preselected .gaby-lightbox-stage img {
    box-shadow:
        0 0 0 6px rgba(245, 158, 11, 0.65),
        0 25px 70px -50px rgba(0, 0, 0, 0.9);
}

.gaby-lightbox.is-combined-selected .gaby-lightbox-stage img {
    box-shadow:
        0 0 0 6px rgba(244, 63, 94, 0.55),
        0 0 0 10px rgba(16, 185, 129, 0.5),
        0 25px 70px -50px rgba(0, 0, 0, 0.9);
}

.gaby-lightbox.is-preselect-combined .gaby-lightbox-stage img {
    box-shadow:
        0 0 0 6px rgba(244, 63, 94, 0.55),
        0 0 0 10px rgba(245, 158, 11, 0.5),
        0 25px 70px -50px rgba(0, 0, 0, 0.9);
}

.gaby-before-after {
    position: fixed;
    inset: 0;
    z-index: 1065;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.gaby-before-after.is-active {
    display: flex;
}

.gaby-before-after-overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 5, 12, 0.85);
}

.gaby-before-after-dialog {
    position: relative;
    z-index: 2;
    width: min(92vw, 1100px);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gaby-before-after-close {
    position: absolute;
    top: -1.5rem;
    right: -1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: none;
    background: rgba(15, 14, 24, 0.7);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
}

.gaby-before-after-stage {
    position: relative;
    width: 100%;
    max-height: 85vh;
    border-radius: 22px;
    overflow: hidden;
    background: #0b0a12;
    box-shadow: 0 32px 80px -50px rgba(0, 0, 0, 0.8);
}

.gaby-before-after-image {
    display: block;
    width: 100%;
    height: auto;
    max-height: 85vh;
    object-fit: contain;
    background: #0b0a12;
}

.gaby-before-after-before {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gaby-before-after-before img {
    width: auto;
    height: 100%;
    max-height: 100%;
    max-width: 100%;
    object-fit: cover;
    display: block;
}

.gaby-before-after-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(180deg, #fff2bf 0%, #f6d07a 45%, #d9a44d 100%);
    box-shadow: 0 0 0 6px rgba(217, 164, 77, 0.25), 0 0 12px rgba(217, 164, 77, 0.35);
    transform: translateX(-1px);
    pointer-events: none;
}

.gaby-before-after-range {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: col-resize;
}

.gaby-before-after-label {
    position: absolute;
    top: 0.55rem;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    background: rgba(15, 14, 24, 0.7);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.gaby-before-after-label.is-before {
    left: 0.9rem;
}

.gaby-before-after-label.is-after {
    right: 0.9rem;
}

.gaby-lightbox-actions .gallery-media-icon-favorite {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.gaby-lightbox-actions .gallery-media-icon-favorite svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 1.8;
    fill: none;
    filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.9));
}

.gaby-lightbox-actions .gallery-media-icon-favorite.is-active {
    background: rgba(16, 185, 129, 0.92);
    border-color: rgba(16, 185, 129, 0.92);
    color: #052e1a;
}

.gaby-lightbox-actions .gallery-media-icon-favorite.is-active svg {
    fill: currentColor;
}

.gaby-lightbox-actions .gallery-media-icon-star {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.gaby-lightbox-actions .gallery-media-icon-star svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 1.8;
    fill: none;
    filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.9));
}

.gaby-lightbox-actions .gallery-media-icon-star.is-active {
    background: rgba(245, 158, 11, 0.92);
    border-color: rgba(245, 158, 11, 0.92);
    color: #3b2600;
}

.gaby-lightbox-actions .gallery-media-icon-star.is-active svg {
    fill: currentColor;
}

.gallery-client-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: #475569;
    font-size: 1.1rem;
}

@media (max-width: 991px) {
    .gallery-client-main-hero-inner {
        padding: 2.25rem 1.25rem 1.75rem;
    }
}

@media (max-width: 575px) {
    .gallery-client-grid {
        gap: 1.25rem;
    }
}

.gaby-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1060;
    display: none;
}

.gaby-lightbox.is-active {
    display: block;
}

.gaby-lightbox[data-gaby-lightbox][hidden] {
    display: none !important;
}

.gaby-lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 5, 12, 0.85);
}

.gaby-lightbox-dialog {
    position: absolute;
    inset: 0;
    transform: none;
    max-width: none;
    max-height: none;
    width: 100%;
    height: 100%;
    background: rgba(8, 6, 14, 0.95);
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.gaby-lightbox-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: none;
    background: rgba(15, 14, 24, 0.7);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
}

.gaby-lightbox-close svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
}

.gaby-lightbox-stage {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: clamp(1rem, 4vw, 3rem);
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
    cursor: default;
}

.gaby-lightbox-stage.is-zoomed {
    cursor: default;
}

.gaby-lightbox-stage img {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 1.25rem;
    box-shadow: 0 25px 70px -50px rgba(0, 0, 0, 0.9);
    transition: transform 0.25s ease;
    will-change: transform;
    z-index: 1;
}

.gaby-lightbox-stage img.is-portrait-fill {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gaby-lightbox-stage video {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    border-radius: 1.25rem;
    box-shadow: 0 25px 70px -50px rgba(0, 0, 0, 0.9);
    z-index: 1;
    background: #0f1117;
}

.gaby-lightbox.is-loading .gaby-lightbox-stage img {
    opacity: 0;
}

.gaby-lightbox-stage::after {
    content: "";
    position: absolute;
    inset: clamp(1rem, 4vw, 3rem);
    background-image: var(--gallery-selection-overlay, none);
    background-repeat: repeat;
    background-position: center;
    background-size: var(--gallery-selection-overlay-size-large, 360px);
    opacity: var(--gallery-selection-overlay-opacity, 0);
    pointer-events: none;
    -webkit-mask-image: var(--gallery-selection-mask, none);
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-image: var(--gallery-selection-mask, none);
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    z-index: 2;
}

.gaby-lightbox-loader {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
    z-index: 4;
}

.gaby-lightbox-spinner {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    border: 3px solid rgba(255, 255, 255, 0.25);
    border-top-color: #ffffff;
    animation: gaby-spin 0.9s linear infinite;
}

.gaby-lightbox.is-loading .gaby-lightbox-loader {
    opacity: 1;
}

.gaby-lightbox-nav {
    position: absolute;
    top: 56%;
    transform: translateY(-50%);
    border: none;
    background: rgba(15, 14, 24, 0.7);
    color: #fff;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    z-index: 6;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.gaby-lightbox-nav:hover,
.gaby-lightbox-nav:focus-visible {
    background: rgba(15, 14, 24, 0.9);
}

.gaby-lightbox-nav:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.85);
    outline-offset: 2px;
}

.gaby-lightbox-nav svg {
    width: 1.35rem;
    height: 1.35rem;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
}

.gaby-lightbox-nav-prev {
    left: 1rem;
}

.gaby-lightbox-nav-next {
    right: 1rem;
}

.gaby-lightbox-nav[hidden] {
    display: none;
}

.gaby-lightbox-stage.is-zoomed img {
    cursor: grab;
}

.gaby-lightbox-stage.is-zoomed img.is-dragging {
    cursor: grabbing;
}

.gaby-lightbox-actions {
    position: absolute;
    right: calc(clamp(1rem, 4vw, 3rem) + 3rem);
    top: clamp(1rem, 4vw, 3rem);
    bottom: auto;
    display: flex;
    gap: 0.35rem;
    z-index: 5;
}

.gaby-lightbox-actions .gallery-media-icon,
.gaby-lightbox-actions .gallery-media-icon button {
    margin: 0;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    width: 40px;
    height: 40px;
}

.gaby-lightbox-actions form {
    margin: 0;
}

.gaby-lightbox-actions .gallery-media-icon-cover.is-active {
    background: rgba(91, 227, 154, 0.95);
    border-color: rgba(91, 227, 154, 0.95);
    color: #0e2a1b;
}

.gaby-lightbox-actions .gallery-media-icon-app.is-active {
    background: rgba(102, 181, 255, 0.95);
    border-color: rgba(102, 181, 255, 0.95);
    color: #0f2234;
}

@keyframes gaby-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.gallery-album-card {
    background: #fff;
    border-radius: 1.25rem;
    box-shadow: 0 24px 50px -32px rgba(24, 22, 33, 0.35);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.gallery-album-thumb {
    position: relative;
    padding-top: 56%;
    background: #f4f3f8;
}

.gallery-album-thumb img,
.gallery-album-thumb-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-album-thumb-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    font-weight: 600;
    color: #b9b5c6;
    background: linear-gradient(135deg, #f6f3ff, #ebe8f4);
}

.gallery-album-thumb-actions {
    position: absolute;
    inset: auto 1rem 1rem 1rem;
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
}

.gallery-album-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-grow: 1;
}

.gallery-album-title {
    font-weight: 600;
    font-size: 1rem;
}

.gallery-album-toolbar {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.gallery-album-toggle {
    border: 1px solid rgba(24, 22, 33, 0.15);
    border-radius: 999px;
    padding: 0.35rem 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #faf9fd;
    font-size: 0.85rem;
    font-weight: 600;
    color: #4f4a63;
    transition: all 0.2s ease;
}

.gallery-album-toggle span[aria-hidden="true"] {
    font-size: 1rem;
}

.gallery-album-toggle.is-active {
    background: #0fce7c;
    border-color: #0fce7c;
    color: #fff;
}

.gallery-album-toggle:hover,
.gallery-album-toggle:focus {
    border-color: rgba(24, 22, 33, 0.45);
    color: #1d1930;
}

.gallery-album-toggle.is-active:hover,
.gallery-album-toggle.is-active:focus {
    border-color: #0da969;
    background: #0da969;
}

.gallery-album-share {
    border-top: 1px solid rgba(24, 22, 33, 0.08);
    padding-top: 1rem;
}

.gallery-album-share-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
}

.gallery-album-share-url {
    font-family: var(--bs-font-monospace, "JetBrains Mono", monospace);
    font-size: 0.85rem;
    color: #4f4a63;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gallery-album-share .gallery-link-icons {
    justify-content: flex-start;
    gap: 0.35rem;
}

.gallery-detail-hero {
    border-radius: 1.25rem;
    background: #fff;
    border: none;
    box-shadow: 0 20px 60px -32px rgba(24, 22, 33, 0.35);
}

.gallery-detail-hero-body {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

.gallery-detail-cover {
    width: 96px;
    height: 96px;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(var(--gaby-primary-rgb), 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gallery-detail-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-detail-meta {
    min-width: 200px;
    flex: 1 1 auto;
}

.gallery-detail-counts {
    font-weight: 600;
    margin-top: 0.35rem;
}

.gallery-detail-link {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.gallery-detail-link-text {
    background: #f5f2fb;
    border-radius: 999px;
    padding: 0.35rem 0.85rem;
    font-family: 'JetBrains Mono', Consolas, monospace;
    font-size: 0.85rem;
    color: #5b5175;
}

.gallery-link-icons {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.gallery-link-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #4f4a63;
    box-shadow: 0 10px 24px -18px rgba(24, 22, 33, 0.6);
    transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.gallery-link-icon svg {
    width: 16px;
    height: 16px;
}

.gallery-link-icon:hover,
.gallery-link-icon:focus {
    transform: translateY(-1px);
    background: #0fce7c;
    color: #fff;
}

.gallery-link-inline-form {
    margin: 0;
    display: inline;
}

.gallery-copy-button.is-success {
    background: #0fce7c;
    color: #fff;
    border-color: #0fce7c;
}

.gallery-copy-feedback {
    font-size: 0.8rem;
    color: #0fce7c;
}

.gallery-copy-feedback.is-error {
    color: #d9534f;
}

.gallery-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 0.75rem;
}

.form-label-info {
    font-size: 0.65rem;
    font-weight: 700;
    color: rgba(var(--gaby-primary-rgb), 0.55);
    margin-left: 0.35rem;
    cursor: help;
    vertical-align: super;
}

@media (max-width: 576px) {
    .foto-upload-modal {
        right: 1rem;
        left: 1rem;
        width: auto;
    }
}

.gaby-blog-card {
    background: #fff;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 20px 48px -28px rgba(24, 22, 33, 0.35);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gaby-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 56px -28px rgba(24, 22, 33, 0.4);
}

.gaby-blog-card-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
}

.gaby-blog-card h2 {
    margin: 0;
}

.gaby-blog-card p {
    margin-bottom: 0;
}

.gaby-blog-card .btn-gaby-outline:hover {
    color: #fff;
    background: var(--gaby-primary);
}

@media (max-width: 767.98px) {
    .foto-upload-wrapper {
        padding: 1.75rem;
    }
    .foto-upload-droparea {
        padding: 2.25rem 1.75rem;
    }
}

.backend-card {
    background: #fff;
    border-radius: 1.25rem;
    padding: 1.75rem;
    box-shadow: 0 18px 50px -32px rgba(24, 22, 33, 0.4);
}

.backend-card textarea.form-control {
    resize: vertical;
}

.backend-ai-output {
    background: #f4f1eb;
    border-radius: 0.75rem;
    padding: 1rem;
    font-size: 0.95rem;
    min-height: 120px;
    white-space: pre-wrap;
}

.gallery-description-text {
    font-size: 0.95rem;
    line-height: 1.6;
}

.gaby-testimonials-section {
    position: relative;
}

.gaby-testimonials-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.gaby-testimonials-controls {
    display: flex;
    gap: 0.75rem;
}

.gaby-testimonials-arrow {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    background: #fff;
    color: #1f2937;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 28px -18px rgba(15, 23, 42, 0.5);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.gaby-testimonials-arrow:hover {
    transform: translateY(-2px);
    border-color: rgba(var(--gaby-primary-rgb), 0.6);
    box-shadow: 0 18px 36px -20px rgba(15, 23, 42, 0.5);
}

.gaby-testimonials-arrow svg {
    width: 20px;
    height: 20px;
}

.gaby-testimonials {
    position: relative;
}

.gaby-testimonials-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    scrollbar-width: none;
}

.gaby-testimonials-track::-webkit-scrollbar {
    display: none;
}

.gaby-testimonial-card {
    flex: 0 0 100%;
    padding: 1.6rem;
    scroll-snap-align: start;
    box-shadow: 0 20px 46px -30px rgba(24, 22, 33, 0.55);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    height: 100%;
}

.gaby-testimonial-stars {
    color: #d4a017;
    font-size: 1.05rem;
    letter-spacing: 2px;
}

.gaby-testimonial-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.gaby-testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    color: #fff;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 24px -16px rgba(15, 23, 42, 0.6);
}

.gaby-testimonial-name {
    font-weight: 700;
}

.gaby-testimonial-category {
    font-size: 0.9rem;
    color: #6b7280;
}

.gaby-testimonial-core {
    font-weight: 600;
    margin-bottom: 0;
    max-height: 120px;
    overflow: hidden;
    transition: max-height 1.5s ease, opacity 1.5s ease;
}

.gaby-testimonial-full {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin: 0;
    color: #4b5563;
    transition: max-height 1.5s ease, opacity 1.5s ease, margin-top 1.5s ease;
}

.gaby-testimonial-card.is-expanded .gaby-testimonial-core {
    max-height: 0;
    opacity: 0;
}

.gaby-testimonial-card.is-expanded .gaby-testimonial-full {
    opacity: 1;
    margin-top: 0.5rem;
}

.gaby-testimonial-toggle {
    margin-top: auto;
    border: none;
    background: none;
    padding: 0;
    font-weight: 600;
    color: var(--gaby-primary);
    text-decoration: none;
    transition: color 0.2s ease;
    align-self: flex-start;
}

.gaby-testimonial-toggle:hover {
    color: var(--gaby-primary-dark);
}

.gaby-testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
}

.gaby-testimonials-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    background: transparent;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.gaby-testimonials-dot.is-active {
    background: var(--gaby-primary);
    border-color: var(--gaby-primary);
    transform: scale(1.2);
}

@media (min-width: 768px) {
    .gaby-testimonial-card {
        flex-basis: calc(50% - 0.75rem);
    }
}

@media (min-width: 1200px) {
    .gaby-testimonial-card {
        flex-basis: calc(33.333% - 1rem);
    }
}

@media (prefers-reduced-motion: reduce) {
    .gaby-testimonials-track {
        scroll-behavior: auto;
    }
}

.gaby-faq-accordion {
    display: grid;
    gap: 1rem;
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
}

.gaby-faq-accordion .accordion-item {
    border: 1px solid rgba(var(--gaby-primary-rgb), 0.08);
    border-radius: 1.5rem;
    overflow: hidden;
    background: #fff;
    box-shadow: inset 0 18px 28px -30px rgba(15, 23, 42, 0.45);
}

.gaby-faq-accordion .accordion-button {
    background: #f7f5f1;
    color: var(--gaby-primary);
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    border-radius: 1.5rem;
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.gaby-faq-accordion .accordion-button.collapsed {
    box-shadow: inset 0 0 0 1px rgba(var(--gaby-primary-rgb), 0.06);
}

.gaby-faq-accordion .accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(var(--gaby-primary-rgb), 0.15);
}

.gaby-faq-accordion .accordion-button:not(.collapsed) {
    background: #fff;
    box-shadow: inset 0 -1px 0 rgba(148, 163, 184, 0.25);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.gaby-faq-accordion .accordion-button::after {
    transition: transform 0.2s ease;
}

.gaby-faq-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.gaby-faq-accordion .accordion-collapse {
    transition: height 0.3s ease;
}

.gaby-faq-accordion .accordion-body {
    padding: 1.25rem 1.5rem 1.6rem;
    color: #4b5563;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.gaby-faq-accordion .accordion-collapse.show .accordion-body {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 576px) {
    .gaby-faq-accordion {
        padding-inline: 0.75rem;
    }
}

.gaby-contact-card {
    background: #fff;
    border-radius: 2rem;
    padding: 2rem;
    box-shadow: 0 28px 70px -50px rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.gaby-contact-progress {
    margin-bottom: 2rem;
}

.gaby-contact-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0.75rem;
}

.gaby-contact-progress-status {
    font-weight: 600;
    color: var(--gaby-primary);
}

.gaby-contact-progress-bar {
    height: 6px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.2);
    overflow: hidden;
}

.gaby-contact-progress-fill {
    display: block;
    height: 100%;
    width: 0;
    border-radius: 999px;
    background: var(--gaby-primary-gradient);
    transition: width 0.3s ease;
}

.gaby-contact-step {
    display: none;
    animation: gabyContactFade 0.35s ease;
}

.gaby-contact-step.is-active {
    display: block;
}

.gaby-contact-options {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.gaby-contact-option {
    width: 100%;
    text-align: left;
    border: 1px solid rgba(148, 163, 184, 0.3);
    border-radius: 1.5rem;
    padding: 1rem 1.25rem;
    background: #f8fafc;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.gaby-contact-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px -28px rgba(15, 23, 42, 0.5);
}

.gaby-contact-option.is-selected {
    border-color: rgba(var(--gaby-primary-rgb), 0.35);
    background: rgba(var(--gaby-primary-rgb), 0.08);
    box-shadow: 0 18px 45px -30px rgba(var(--gaby-primary-rgb), 0.5);
}

.gaby-contact-option-title {
    display: block;
    font-weight: 600;
    color: var(--gaby-primary);
}

.gaby-contact-option-text {
    display: block;
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

.gaby-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.gaby-contact-actions .btn {
    flex: 1 1 150px;
}

.gaby-contact-summary-card {
    background: #f7f5f1;
    border-radius: 1.5rem;
    padding: 1.25rem 1.5rem;
    color: #4b5563;
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.gaby-contact-summary-text {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

@keyframes gabyContactFade {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 767.98px) {
    .gaby-contact-card {
        padding: 1.5rem;
        border-radius: 1.5rem;
    }
    .gaby-contact-progress-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
    }
    .gaby-contact-actions {
        flex-direction: row;
        gap: 0.5rem;
    }
    .gaby-contact-actions .btn {
        padding: 0.7rem 1rem;
        font-size: 0.95rem;
        flex: 1 1 0;
    }
}

@media (max-width: 767.98px) {
    .gallery-client-footer-hero {
        width: min(92vw, 360px);
    }
    .gallery-client-footer-hero-media {
        height: auto;
    }
    .gallery-client-footer-hero-image {
        height: auto;
        width: 100%;
        object-fit: contain;
        border-radius: 1.25rem;
    }
    .gallery-client-footer-logo {
        width: 210px;
        height: 110px;
        bottom: -45px;
        padding-top: 0.75rem;
    }
    .gallery-client-footer-logo img {
        width: 160px;
        height: 60px;
    }
    .gallery-client-footer-body {
        padding: 4.5rem 0 6rem;
    }
}
