/**
 * PREMIUM SINGLE CAMGIRL PAGE STYLES
 */

.single-cam-page,
.pornostar-profile {
    background: #f8fafc;
    padding-bottom: 0;
}

/* BREADCRUMBS */
.cam-breadcrumbs {
    padding: 15px 0;
    font-size: 13px;
    font-weight: 500;
    color: #64748b;
}

.cam-breadcrumbs a {
    color: #64748b;
    text-decoration: none;
    transition: 0.3s;
}

.cam-breadcrumbs a:hover {
    color: var(--brand-pink);
}

.cam-breadcrumbs .sep {
    margin: 0 8px;
    font-size: 10px;
    opacity: 0.5;
}

.cam-breadcrumbs .current {
    color: #0f172a;
    font-weight: 700;
}

/* HERO WITH BANNER */
.cam-profile-hero {
    position: relative;
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Fix iOS sotto */
    color: white;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 1) 0%, rgba(15, 23, 42, 0.4) 100%);
    z-index: 1;
}

/* FAKE VIDEO BLOCK (AFTER BIO) */
.cam-video-block {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9; /* Formato Video Cinematico */
    background-size: cover;
    background-position: center;
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.cam-video-block .hero-overlay {
    background: linear-gradient(to top, rgba(15, 23, 42, 0.7) 0%, transparent 100%);
}

/* FAKE VIDEO PLAYER UI - ABSOLUTE INSIDE BLOCK */
.cam-video-fake-ui {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 2;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
}

.video-top-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.video-controls-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    opacity: 0.7;
    font-size: 12px;
}

.video-play-btn-wrap {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.play-btn-large {
    width: 100px; height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.play-btn-large:hover {
    transform: scale(1.1);
}

.video-custom-icon {
    width: 80px; /* Ingrandita dato che non c'è più il cerchio */
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5));
}

/* DETTAGLI VIDEO PLAYER */
.live-pulse-badge {
    background: rgba(239, 68, 68, 0.9);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse-red 1.5s infinite;
}

@keyframes pulse-red {
    0% { transform: scale(0.95); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.5; }
    100% { transform: scale(0.95); opacity: 1; }
}

.viewer-count-fake {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(5px);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
}

.v-left, .v-right {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
}

.v-center-progress {
    flex: 1;
    margin: 0 20px;
}

.progress-bar-fake {
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    position: relative;
}

.progress-bar-fake::after {
    content: '';
    position: absolute;
    left: 0; top: 0;
    width: 30%; height: 100%;
    background: var(--brand-pink);
    border-radius: 2px;
}

.v-hd {
    font-weight: 900;
    font-size: 10px;
    border: 1px solid white;
    padding: 1px 4px;
    border-radius: 3px;
}

.cam-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 50px; /* Ridotto per matchare Pornostar */
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* AVATAR BOX */
.cam-avatar-box {
    position: relative;
    flex-shrink: 0;
}

.profile-avatar {
    width: 220px;
    height: 220px;
    border-radius: 30px; /* Ripristinato stile originale */
    object-fit: cover;
    border: 6px solid white;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.cam-avatar-link {
    text-decoration: none;
    display: block;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cam-avatar-link:hover {
    transform: scale(1.03);
}

.cam-platform-badge {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 8px 18px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border: 2px solid #f1f5f9;
}

.cam-platform-badge img {
    height: 22px;
    width: auto;
    display: block;
}

.live-indicator {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ef4444;
    color: white;
    padding: 5px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(239, 68, 68, 0.4);
}

/* HERO TEXT */
.cam-hero-text {
    flex: 0 1 auto; /* Permette al blocco di centrarsi correttamente */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cam-main-title {
    font-size: 56px;
    font-weight: 900;
    margin: 0 0 20px;
    line-height: 1.1;
}

.cam-hero-badges {
    display: flex;
    gap: 12px;
    margin-bottom: 35px;
}

.h-badge {
    background: rgba(255,255,255,1);
    color: #0f172a;
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.h-badge.platform {
    background: var(--brand-pink);
    color: white;
}

.cam-skills-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.skill-badge {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
}

.btn-main-cta {
    background: var(--brand-pink);
    color: white;
    padding: 20px 45px;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 900;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(255, 77, 109, 0.4);
}

.btn-main-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 77, 109, 0.6);
}

/* CONTENT AREA */
.cam-content-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
    margin-top: 50px;
}

.info-card {
    background: white;
    padding: 40px;
    border-radius: 25px;
    border: 1px solid #e2e8f0;
    margin-bottom: 40px;
}

.info-card h2 { font-size: 28px; font-weight: 900; margin-bottom: 25px; }

/* GALLERY */
.cam-gallery-strip {
    margin: 40px 0 60px;
}

.gallery-title {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 30px;
    color: #0f172a;
}

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

.gallery-item {
    aspect-ratio: 16/9; /* Rettangolare Cinema */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    background: #0f172a; /* Sfondo scuro per evitare flash bianchi */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Forza l'adattamento senza distorsione */
    display: block;
    transition: transform 0.5s ease;
}

.cam-lightbox-link, .locked-overlay-link {
    display: block;
    width: 100%;
    height: 100%;
}

.gallery-item.is-locked {
    position: relative;
    background: #000;
}

.img-blurred {
    filter: blur(15px);
    opacity: 0.6;
    transform: scale(1.1); /* Evita bordi bianchi del blur */
}

.locked-overlay-link {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.lock-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    width: 100%;
    padding: 20px;
}

.lock-content i {
    font-size: 40px;
    color: white;
    margin-bottom: 15px;
    display: block;
}

.unlock-btn {
    background: var(--brand-pink);
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(255, 77, 109, 0.3);
    display: inline-block;
    transition: 0.3s;
}

.unlock-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 77, 109, 0.5);
}

.gallery-item:hover .img-blurred {
    opacity: 0.8;
    transform: scale(1.15);
}

/* SIDEBAR INFO BOX */
.sidebar-info-box {
    background: white;
    padding: 30px;
    border-radius: 25px;
    border: 1px solid #e2e8f0;
    position: sticky;
    top: 20px;
}

.editorial-seo-title {
    font-size: 28px;
    font-weight: 900;
    text-transform: uppercase;
    color: #0f172a;
    margin: 0 0 10px;
    letter-spacing: -1px;
}

.editorial-seo-title .accent-name,
.side-title .accent-name {
    color: var(--brand-pink);
}

.title-separator {
    width: 60px;
    height: 5px;
    background: var(--brand-pink);
    margin-bottom: 35px;
    border-radius: 10px;
}

/* SIDEBAR TITLES */
.side-title {
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: #0f172a;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 15px;
    letter-spacing: 1px;
}

.tech-info-list {
    margin-bottom: 20px;
}

.tech-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 14px;
}

.tech-item .label {
    color: #64748b;
    font-weight: 700;
}

.tech-item .val {
    color: #0f172a;
    font-weight: 800;
}

.tech-item .val.viewers { color: var(--brand-pink); }

.side-sub-title {
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    margin: 20px 0 15px;
    color: #64748b;
}

.skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.s-tag {
    background: #f1f5f9;
    color: #475569;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.s-tag.phys {
    background: #e0f2fe;
    color: #0369a1;
}

.s-tag.t-tag {
    background: #f1f5f9;
    color: #475569;
}

.s-tag.spec {
    background: var(--brand-pink);
    color: white;
}

/* RELATED CAMS BELOW CONTENT */
.related-cams-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #f1f5f9;
}

.related-cams-section h3 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 30px;
}

.related-cams-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

@media (max-width: 1024px) {
    .cam-hero-grid { grid-template-columns: 1fr; }
    .cam-content-layout { grid-template-columns: 1fr; }
    .cam-photo-grid { grid-template-columns: repeat(2, 1fr); }
    .related-cams-grid { grid-template-columns: repeat(2, 1fr); }
}

/* SIDEBAR */
.sidebar-box {
    background: white;
    padding: 30px;
    border-radius: 25px;
    border: 1px solid #e2e8f0;
}

.sidebar-box h3 { font-size: 18px; font-weight: 900; margin-bottom: 20px; }

@media (max-width: 900px) {
    .cam-hero-content { flex-direction: column; align-items: center; text-align: center; }
    .cam-meta-row, .cam-skills-row { justify-content: center; }
    .cam-content-layout { grid-template-columns: 1fr; }
    .cam-photo-grid { grid-template-columns: repeat(2, 1fr); }
}

/* STICKY BOTTOM BANNER */
.sticky-bottom-cta {
    position: fixed;
    bottom: -200px;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.98); /* Più coprente */
    backdrop-filter: blur(15px);
    z-index: 9999;
    padding: 20px 0; /* Più alto */
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -15px 50px rgba(0,0,0,0.6);
    border-top: 1px solid rgba(255,255,255,0.15);
}

.sticky-bottom-cta.active {
    bottom: 0;
}

.bottom-cta-inner {
    max-width: 1000px; /* Più stretto per stare verso il centro */
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center; /* Centra il contenuto */
    gap: 35px; /* Più spazio tra elementi */
}

.bottom-thumb {
    width: 110px; /* Ingrandito ulteriormente */
    height: 110px;
    border-radius: 100%;
    overflow: hidden;
    border: 4px solid white; /* Bordo più spesso per stacco */
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    margin-top: -45px; /* Fa uscire l'avatar dal bordo superiore */
    position: relative;
    z-index: 10000;
}

.bottom-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bottom-content-wrap {
    flex: 0 1 auto; /* Non forzare il riempimento, lascia spazio */
}

.bottom-title-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 6px;
}

.bottom-title {
    color: white;
    font-size: 22px; /* Ingrandito */
    font-weight: 900;
    margin: 0;
    text-transform: uppercase;
}

.live-tag-mini {
    background: #ef4444;
    color: white;
    font-size: 11px;
    font-weight: 900;
    padding: 3px 10px;
    border-radius: 5px;
    animation: pm-pulse 1.5s infinite;
}

.bottom-platform-info {
    color: rgba(255,255,255,0.85);
    font-size: 15px; /* Ingrandito */
}

.bottom-btn {
    background: var(--brand-pink);
    color: white;
    padding: 15px 35px; /* Più grande */
    border-radius: 50px;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px; /* Ingrandito */
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(255, 77, 109, 0.3);
}

.bottom-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 77, 109, 0.4);
}

.banner-close {
    position: absolute;
    top: 5px;
    right: 15px;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    opacity: 0.5;
}

.banner-close:hover { opacity: 1; }

@keyframes pm-pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.banner-link-wrapper {
    text-decoration: none;
    display: block;
}

/* FAQ ACCORDION */
.cam-faq-section {
    margin-top: 60px;
    padding: 40px;
    background: white;
    border-radius: 30px;
    border: 1px solid #e2e8f0;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 1px solid #f1f5f9;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
}

.faq-item.active {
    border-color: var(--brand-pink);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: #f8fafc;
    border: none;
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    text-align: left;
    cursor: pointer;
    transition: 0.3s;
}

.faq-item.active .faq-question {
    background: white;
    color: var(--brand-pink);
}

.faq-question i {
    font-size: 18px;
    transition: 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
}

.faq-item.active .faq-answer {
    max-height: 400px; /* Aumentato per risposte lunghe */
}

.faq-answer p {
    padding: 0 25px 25px;
    margin: 0;
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}

/* PREMIUM CAM CARD */
.cam-card-premium {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    background: #0f172a;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    aspect-ratio: 3 / 4;
}

.cam-card-premium:hover {
    transform: translateY(-10px);
}

.cam-card-thumb {
    position: relative;
    width: 100%;
    height: 100%;
}

.cam-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cam-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
}

.cam-rating-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,215,0,0.4);
    padding: 5px 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #fbbf24;
    font-weight: 800;
    font-size: 14px;
    z-index: 5;
}

.cam-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px; /* Ripristinato padding per il pulsante */
    z-index: 10;
    text-align: center;
}

.cam-card-title {
    color: white;
    font-size: 19px; /* Ingrandito come richiesto */
    font-weight: 900;
    margin: 0 0 2px; /* Avvicinato ulteriormente ai meta */
    text-transform: uppercase;
    line-height: 1.2;
    display: block; /* Cambiato a block per gestire meglio l'overflow */
    width: 100%;
    white-space: nowrap; /* Obbligo singola riga */
    overflow: hidden; /* Nasconde il testo in eccesso */
    text-overflow: ellipsis; /* Aggiunge i puntini se troppo lungo */
    text-align: center;
}

.verified-check {
    display: none; /* Rimosso definitivamente */
}

.cam-card-meta {
    color: rgba(255,255,255,0.8);
    font-size: 12px; /* Ingrandito leggermente */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 6px; /* Spazio uguale verso il pulsante */
    display: flex;
    justify-content: center;
    gap: 6px;
    align-items: center;
}

.cam-card-meta .dot {
    opacity: 0.5;
}

.cam-card-btn {
    background: linear-gradient(90deg, #ff4d6d 0%, #ff758c 100%); /* Colore Brand */
    color: white;
    padding: 10px;
    border-radius: 12px;
    font-weight: 900;
    font-size: 13px;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(255, 77, 109, 0.2);
}

.cam-card-premium:hover .cam-card-btn {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(236, 72, 153, 0.5);
}

.cam-card-link {
    text-decoration: none;
    display: block;
    height: 100%;
}

/* ============================================================
   MOBILE RESPONSIVE CAMGIRL / PORNOSTAR
   ============================================================ */
@media (max-width: 768px) {

    /* Fix iOS parallax */
    .cam-profile-hero {
        background-attachment: scroll;
        padding: 50px 0 40px;
        min-height: auto;
    }

    /* Hero: layout verticale, testo centrato */
    .cam-hero-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 25px;
    }
    .cam-hero-text { align-items: center; }
    .cam-main-title { font-size: 32px; margin-bottom: 12px; }
    .profile-avatar { width: 140px; height: 140px; border-radius: 20px; }
    .cam-hero-badges { justify-content: center; flex-wrap: wrap; }
    .cam-skills-row  { justify-content: center; }

    .btn-main-cta {
        padding: 14px 28px;
        font-size: 16px;
        border-radius: 12px;
        width: 100%;
        text-align: center;
        justify-content: center;
        display: flex;
    }

    /* Content layout: 1 colonna */
    .cam-content-layout {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }
    .info-card { padding: 20px 16px; border-radius: 18px; }

    /* Gallery: 2 colonne su mobile */
    .cam-photo-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

    /* Related: 2 colonne su mobile */
    .related-cams-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }

    /* Sticky bottom banner ottimizzato */
    .bottom-cta-inner {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
        padding: 0 12px;
    }
    .bottom-thumb {
        width: 70px;
        height: 70px;
        margin-top: -25px;
    }
    .bottom-title { font-size: 16px; }
    .bottom-btn {
        padding: 12px 20px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }

    /* FAQ */
    .cam-faq-section { padding: 25px 16px; border-radius: 20px; }
    .faq-question { font-size: 15px; padding: 16px 18px; }
}

@media (max-width: 480px) {
    .cam-main-title { font-size: 26px; }
}

/* GALLERY HOVER OVERLAY & ZOOM */
.screenshot-zoom-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 20;
    opacity: 0;
    transition: 0.3s;
}

.gallery-item:hover .screenshot-zoom-icon {
    opacity: 1;
}

.gallery-hover-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
    z-index: 15;
}

.gallery-item:hover .gallery-hover-overlay {
    opacity: 1;
}

.gallery-btn-visit {
    background: var(--brand-pink);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(255, 77, 109, 0.4);
    transform: translateY(10px);
    transition: 0.3s;
}

.gallery-item:hover .gallery-btn-visit {
    transform: translateY(0);
}

