/* ==========================================================================
   MAGAZINE STYLES - REFACTORED & ORGANIZED
   BEM METHODOLOGY & BOOTSTRAP 5 TOKENS
   ========================================================================== */

/* ==========================================================================
   1. CSS VARIABLES & CUSTOM PROPERTIES
   ========================================================================== */
:root {
    /* Bootstrap 5 Custom Tokens */
    --bs-primary: #1c0608;
    --bs-secondary: #6c757d;
    --bs-dark: #1c0608;
    --bs-light: #f8f9fa;
    --bs-white: #ffffff;
    --bs-gray-100: #f8f9fa;
    --bs-gray-200: #e9ecef;
    --bs-gray-900: #212529;
    --bs-btn-active-bg: var(--bs-primary);

    /* Custom Brand Tokens */
    --penthouse-black: #1c0608;
    --penthouse-white: #ffffff;
    --penthouse-gray: #999999;
    --penthouse-shadow: rgba(0, 0, 0, 0.15);
    --penthouse-complementary: #fed59d;

    /* Typography Tokens */
    --font-serif: 'Prata', serif;
    --font-display: 'Playfair Display', serif;

    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-display: 'Playfair Display', serif;
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;


    /* Border Radius Override - Remove all radius */
    --bs-border-radius: 0;
    --bs-border-radius-sm: 0;
    --bs-border-radius-lg: 0;
    --bs-border-radius-xl: 0;

}

/* ==========================================================================
   2. GLOBAL STYLES & RESETS
   ========================================================================== */

html {
    scroll-behavior: smooth;
}

/* Global Font Family */
* {
    font-family: var(--font-primary);
}

/* Body Base Styles */
body {
    font-size: 16px;
    color: var(--penthouse-black);
    scroll-behavior: smooth;
    background-color: var(--penthouse-white);
}

/* Text Selection Styling */
::selection {
    background-color: var(--penthouse-black);
    color: white;
}

::-moz-selection {
    background-color: var(--penthouse-black);
    color: white;
}

.card {
    background-color: transparent;
}

/* Remove Border Radius from Bootstrap Components */
.btn,
.card,
.dropdown-menu,
.form-control,
.nav-tabs .nav-link,
.tab-pane,
.modal-content,
.alert {
    border-radius: 0 !important;
}

/* Utility Classes */
.bg-gray {
    background-color: var(--bs-gray-100);
}

.bg-dark {
    background-color: rgba(var(--penthouse-black), var(--bs-bg-opacity)) !important;
}

.bg-complementary {
    background: var(--gold-classic) !important;
}

.bg-gold-divider {
    background-color: rgb(232 181 70 / 10%);
}

.Playfair {
    font-family: var(--font-display);
}

.display-7 {
    font-size: 2.1rem;
}

h1 {
    font-size: 2em;
    /* or whatever size you prefer */
}

/* Or be more specific if needed */
article h1,
aside h1,
nav h1,
section h1 {
    font-size: 2em;
}



section,
footer {
    position: relative;
    z-index: 1;
}

p {
    color: var(--penthouse-black);

}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--penthouse-black);

}

.bg-gradient-gold {
    background-image: linear-gradient(178deg, #3f1f13, rgb(20, 14, 8)) !important;

}

.color-gradient-gold {
    color: transparent;
    background: linear-gradient(178deg, #3f1f13, rgb(20, 14, 8));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.scene-page {
    background-color: var(--penthouse-white);
}

/* ==========================================================================
   3. HEADER COMPONENT
   ========================================================================== */

/* Block: header */
.header {
    background: var(--penthouse-black);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 5px;
    position: sticky;
    top: 0;
    z-index: 100;
    padding-top: 10px;
    padding-bottom: 10px;
}

/* Element: header__section */
.header__section {
    display: flex;
    align-items: center;
    flex: 1;
}

.header__section--left {
    gap: var(--spacing-md);
}

.header__section--center {
    justify-content: left;
}

.header__section--right {
    gap: var(--spacing-lg);
    justify-content: flex-end;
}


/* Element: header__icon */
.header__icon {
    height: 30px;
    width: auto;
}

/* Element: header__logo */
.header__logo {
    color: var(--penthouse-white);
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 6px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    width: 312px;
}

.header__logo:hover {
    color: var(--penthouse-white);
}

.header__logo img {
    width: auto;
}

/* ==========================================================================
   4. BUTTON COMPONENTS
   ========================================================================== */

/* Block: btn-custom - Base Styles */
.btn-custom {
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
}

/* Element & Modifier: btn-custom--icon */
.btn-custom--icon {
    background: none;
    color: var(--penthouse-white);
    font-size: 1.125rem;
    padding: var(--spacing-sm);
}

.btn-custom--icon:hover {
    opacity: 1;
}

/* Element & Modifier: btn-custom--search */
.btn-custom--search {
    color: var(--penthouse-white);
    font-size: 1.25rem;
}

.btn-custom--search:hover {
    opacity: 1;
    color: #fff;
}

/* Element & Modifier: btn-custom--signup */
.btn-custom--signup {
    background-color: var(--penthouse-white);
    color: var(--penthouse-black);
    border: 1px solid var(--penthouse-white);
    font-size: 0.875rem;
    padding: var(--spacing-sm) var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    white-space: nowrap;
    transition: all 0.2s ease;
    outline: solid 1px transparent;
    outline-offset: 1px;
}

.btn-custom--signup:hover {
    background-color: var(--bs-gray-100);
    color: var(--penthouse-black);
    outline: solid 1px white;
    outline-offset: 1px;
}

/* Element & Modifier: btn-custom--login */
.btn-custom--login {
    background-color: transparent;
    color: var(--penthouse-white);
    border: 1px solid transparent;
    gap: var(--spacing-sm);
    font-size: 0.875rem;
    padding: var(--spacing-sm) var(--spacing-lg);
    white-space: nowrap;
}

.btn-custom--login:hover {
    background-color: #333;
    border: 1px solid #333;
}

/* Element & Modifier: btn-custom--mobile-menu */
.btn-custom--mobile-menu {
    display: none;
    background: none;
    border: none;
    color: var(--penthouse-white);
    font-size: 1.5rem;
    padding: var(--spacing-xs);
    width: 30px;
}

/* Bootstrap Button Overrides */
.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
    background-color: #000000;
    border-color: #000000;
    color: #ffffff;
}

.penthouse-pets-section .row>* {
    margin-top: 0;
}

.header-close {
    height: auto;
    text-align: right;
    width: 100%;
    padding: 5px;
    padding-right: 35px;
}

/* ==========================================================================
   5. LOGIN DROPDOWN COMPONENT
   ========================================================================== */

/* Block: login-dropdown */
.login-dropdown {
    position: relative;
    display: inline-block;
}

/* Element: login-dropdown__menu */
.login-dropdown__menu {
    position: absolute;
    top: 70px;
    right: 0;
    background-color: var(--penthouse-black);
    width: 300px;
    padding: var(--spacing-lg);
    box-shadow: 0 4px 20px var(--penthouse-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border-radius: 0;
}

/* Element: login-dropdown__title */
.login-dropdown__title {
    color: var(--penthouse-white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    letter-spacing: 2px;
    text-align: center;
    border-bottom: solid 2px var(--penthouse-white);
    padding-bottom: var(--spacing-md);
    text-transform: uppercase;
}

/* Element: login-dropdown__form */
.login-dropdown__form input {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    margin-bottom: var(--spacing-md);
    border: none;
    background-color: var(--penthouse-white);
    font-size: 0.875rem;
    outline: none;
    box-sizing: border-box;
    border-radius: 0;
}

.login-dropdown__form input::placeholder {
    color: var(--penthouse-gray);
    font-size: 0.75rem;
}

/* Element: login-dropdown__password-field */
.login-dropdown__password-field {
    position: relative;
}

.login-dropdown__password-field input {
    padding-right: 40px;
}

/* Element: login-dropdown__password-toggle */
.login-dropdown__password-toggle {
    position: absolute;
    right: var(--spacing-sm) var(--spacing-md);
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    margin-top: calc(-1 * var(--spacing-sm));
}

/* Element: login-dropdown__submit */
.login-dropdown__submit {
    width: 100%;
    background-color: transparent;
    color: var(--penthouse-white);
    border: 1px solid var(--penthouse-white);
    padding: var(--spacing-sm) var(--spacing-md);
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    margin-bottom: var(--spacing-md);
    transition: all 0.3s ease;
    border-radius: 0;
}

.login-dropdown__submit:hover {
    background-color: var(--penthouse-white);
    color: var(--penthouse-black);
}

/* Element: login-dropdown__links */
.login-dropdown__links {
    display: flex;
    justify-content: space-between;
    font-size: 0.6875rem;
}

.login-dropdown__links a {
    color: var(--penthouse-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.login-dropdown__links a:hover {
    color: var(--penthouse-white);
}

/* Password Toggle Icons */
.fa-eye {
    position: absolute;
    left: -25px;
    top: -7px;
}

.fa-eye-slash {
    position: absolute;
    left: -26px;
    top: -7px;
}

/* ==========================================================================
   6. MOBILE MENU COMPONENT
   ========================================================================== */

/* Block: mobile-menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--penthouse-black);
    border-top: 1px solid var(--bs-secondary);
    z-index: 1000;
}

/* Modifier: mobile-menu--active */
.mobile-menu--active {
    display: block;
}

/* Element: mobile-menu__content */
.mobile-menu__content {
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

/* Element: mobile-menu__search */
.mobile-menu__search {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    border: none;
    background-color: var(--penthouse-white);
    font-size: 0.875rem;
    outline: none;
    border-radius: 0;
}

/* Element: mobile-menu__buttons */
.mobile-menu__buttons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.mobile-menu__buttons .btn-custom--signup,
.mobile-menu__buttons .btn-custom--login {
    width: 100%;
    justify-content: center;
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 0.75rem;
}

/* Element: mobile-menu__login-section */
.mobile-menu__login-section .login-dropdown__title {
    margin-top: var(--spacing-lg);
    text-transform: uppercase;
}

/* ==========================================================================
   7. MAGAZINE TABS COMPONENT
   ========================================================================== */

/* Block: magazine-tabs */
.magazine-tabs {
    border: 0;
}

/* Element: magazine-tabs__item */
.magazine-tabs__item {
    padding: 0;
    border: none;
    border-radius: 0;
}

/* Element: magazine-tabs__link */
.magazine-tabs__link {
    width: 100%;
    height: 100%;
    padding: 0;
    border: none;
    border-radius: 0;
}

/* Element: magazine-tabs__card */
.magazine-tabs__card {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* Element: magazine-tabs__footer */
.magazine-tabs__footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: solid 1px var(--penthouse-black);
}

/* Modifier: magazine-tabs__footer--penthouse (inactive state) */
.magazine-tabs__footer--penthouse {
    background: rgba(255, 255, 255, 0.95);
    color: var(--penthouse-black);
}

.magazine-tabs__footer--penthouse img {
    transition: filter 0.3s ease;
    filter: invert(1);
    /* Default inverted */
}

/* Modifier: magazine-tabs__footer--letters (inactive state) */
.magazine-tabs__footer--letters {
    background: rgba(255, 255, 255, 0.95);
    color: var(--penthouse-black);
}

.magazine-tabs__footer--letters img {
    transition: filter 0.3s ease;
    filter: none;
    /* Default no filter */
}

/* Active States - Tab activa = fondo negro + filtro invert */
.magazine-tabs__link.active .magazine-tabs__footer--penthouse {
    background: var(--penthouse-black);
    color: var(--penthouse-white);
}

.magazine-tabs__link.active .magazine-tabs__footer--penthouse img {
    filter: invert(0);
    /* Remove invert when active */
}

.magazine-tabs__link.active .magazine-tabs__footer--letters {
    background: var(--penthouse-black);
    color: var(--penthouse-white);
}

.magazine-tabs__link.active .magazine-tabs__footer--letters img {
    filter: invert(1);
    /* Add invert when active */
}

/* ==========================================================================
   8. CONTENT SECTIONS
   ========================================================================== */



/* Block: magazine-content */
.magazine-content {
    padding: var(--spacing-xxl) 0;
    min-height: 600px;
}

/* Element: magazine-content__header */
.magazine-content__header {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
}

/* Element: magazine-content__title */
.magazine-content__title {
    font-family: var(--font-display);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: var(--spacing-lg);
}

/* Element: magazine-content__description */
.magazine-content__description {
    margin: 0 auto;
}

/* Pet Slider Section */
.pet-slider {
    background-size: 420px;
    background-position: right top;
    background-repeat: no-repeat;
    height: auto;
    padding: 4rem 0;
    color: var(--penthouse-black);
}



/* ==========================================================================
   9. FILTERS COMPONENT
   ========================================================================== */

/* Block: filters */
.filters {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xxl);
}

/* Element: filters__group */
.filters__group {
    display: flex;
    align-items: center;
}

.filters__group--right {
    margin-left: auto;
}

/* Element: filters__label */
.filters__label {
    color: var(--bs-secondary);
    text-transform: uppercase;
    font-weight: 500;
    align-self: center;
    margin-right: var(--spacing-md);
}

/* Element: filters__dropdown */
.filters__dropdown .btn {
    color: var(--penthouse-black);
    border: 2px solid var(--penthouse-black);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 1px;
    min-width: 120px;
    border-radius: 0;
    background-color: transparent;
}

.filters__dropdown .btn:hover {
    border: 2px solid var(--penthouse-black);
    background-color: transparent;
}

/* Element: filters__radio */
.filters__radio .btn {
    color: var(--penthouse-black);
    border: 2px solid var(--penthouse-black);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 1px;
    border-radius: 0;
}

.filters__radio .btn:hover {
    background-color: var(--penthouse-black);
    color: var(--penthouse-white);
}

.filters__radio .btn.active {
    background-color: var(--penthouse-black);
    border-color: var(--penthouse-black);
    color: var(--penthouse-white);
}

/* ==========================================================================
   10. MAGAZINE GRID COMPONENT
   ========================================================================== */

/* Block: magazine-grid */
.magazine-grid .card {
    border: 0;
    border-radius: 0;
    margin: 0;
    min-height: 300px;
    background-color: var(--bs-gray-200);
    transition: all 0.3s ease;
    cursor: pointer;
    border: solid 1px transparent;
}

.magazine-grid .card:hover {
    transform: scale(1.06);
    border: solid 1px var(--penthouse-black);
}

.magazine-grid .card:active {
    transform: scale(0.95);
}

/* Element: magazine-grid__image-container */
.magazine-grid__image-container {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.magazine-grid__image-container img {
    border-radius: 0;
    transition: all 0.3s ease;
}

/* Element: magazine-grid__overlay */
.magazine-grid__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: calc(100% - 50px);
    background: var(--penthouse-black);
    color: var(--penthouse-white);
    padding: var(--spacing-md);
    text-align: center;
    text-transform: uppercase;
    opacity: 1;
    transition: all 0.2s ease-in;
}

.magazine-grid .card:hover .magazine-grid__overlay {
    top: calc(100% - 50px);
    opacity: 1;
    transition: all 0.2s ease-out;
}


/* Element: magazine-grid__overlay */
.video-card .magazine-grid__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: white !important;
    color: var(--penthouse-white);
    padding: 5px;
    text-align: center;
    text-transform: uppercase;
    opacity: 0;
    top: 100%;
    transition: all 0.2s ease-in;
}

.video-card:hover .magazine-grid__overlay {
    top: calc(100% - 48px);
    opacity: 1;
    transition: all 0.2s ease-out;
}



/* Element: magazine-grid__title */
.magazine-grid__title {
    margin-bottom: 0;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: white;
}

/* Element: magazine-grid__date */
.magazine-grid__date {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

/* Special styling for carousel items */
#petPlayoffCarousel .magazine-grid__overlay {
    position: relative;
    opacity: 1;
    top: 0;
}

/* ==========================================================================
   11. CAROUSEL COMPONENT
   ========================================================================== */

.carousel-item {
    position: relative;
}

.carousel-control-prev {
    left: -50px;
}

.carousel-control-next {
    right: -50px;
}

.carousel-indicators {
    top: 108%;
}

/* ==========================================================================
   12. SWIPER COMPONENT
   ========================================================================== */

/* Swiper Container */
.pet-slider .swiper {
    width: 100%;
    height: auto;
    padding-bottom: 80px;
}

.swiper-slide {
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    opacity: 1;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 1);
    margin: 0px 5px;
}

/* Magazine Item Styles for Swiper */
.magazine-item {
    position: relative;
    width: 100%;
    cursor: pointer;
    overflow: hidden;
}

.magazine-item img {
    width: 100%;
    height: auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: block;
}

.magazine-item:hover .magazine-grid__overlay {
    top: calc(100% - 80px);
    opacity: 1;
    transition: all 0.2s ease-out;
}




/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: var(--penthouse-white);
    background: var(--penthouse-black);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-top: -100px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--penthouse-black);
}

/* Swiper Pagination */
.swiper-pagination {
    bottom: 20px;
}


.swiper-pagination-bullet-active {
    background: var(--penthouse-white);
}

/* ==========================================================================
   13. FOOTER COMPONENT
   ========================================================================== */

/* Block: footer */
.footer {
    padding: var(--spacing-xxl) 0 var(--spacing-xl) 0;
}

/* Newsletter Section */
.footer__newsletter-title {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.125rem;
    text-transform: uppercase;
    color: var(--penthouse-black);
    margin-bottom: var(--spacing-sm);
}

.footer__newsletter-description {
    font-size: 0.875rem;
    line-height: 1.4;
}

.footer__newsletter-form {
    display: flex;
    gap: 0;
    margin: 0 auto;
}

.footer__newsletter-input {
    flex: 1;
    padding: var(--spacing-sm) var(--spacing-md);
    border: 2px solid var(--penthouse-black) !important;
    border-right: none;
    border-radius: 0;
    font-size: 0.875rem;
    outline: none;
    background-color: var(--penthouse-white);
}

.footer__newsletter-input:focus {
    box-shadow: none;
    border-color: var(--penthouse-black);
}

.footer__newsletter-button {
    background-color: var(--penthouse-black);
    color: var(--penthouse-white);
    border: 2px solid var(--penthouse-black);
    padding: var(--spacing-sm) var(--spacing-lg);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    white-space: nowrap;
}

.footer__newsletter-button:hover {
    background-color: var(--penthouse-white);
    color: var(--penthouse-black);
}

.footer__disclaimer {
    font-size: 0.625rem;
    color: var(--penthouse-gray);
    margin-top: var(--spacing-sm);
    line-height: 1.3;
}

.footer__disclaimer input[type="checkbox"] {
    margin-right: var(--spacing-xs);
}

/* Magazine Covers */
.footer__magazine-covers {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.footer__magazine-covers img {
    width: 180px;
    height: auto;
    border: solid 2px #000000;
    transition: transform 0.3s ease;
    position: absolute;
}

.footer__magazine-covers img:last-child {
    margin-left: 80px;
    margin-top: 80px;
}

.footer__magazine-covers img:hover {
    transform: scale(1.05);
}

/* Footer Buttons */
.footer__button {
    background-color: transparent;
    color: var(--penthouse-black);
    border: 2px solid var(--penthouse-black);
    padding: var(--spacing-sm) var(--spacing-md);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    text-decoration: none;
    display: block;
    text-align: center;
    margin-bottom: var(--spacing-sm);
}

.footer__button:hover {
    background-color: var(--penthouse-black);
    color: var(--penthouse-white);
}

/* Footer Navigation */
.footer__section-title {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.125rem;
    text-transform: uppercase;
    color: var(--penthouse-black);
    margin-bottom: var(--spacing-lg);
}

.footer__nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__nav-list li {
    margin-bottom: var(--spacing-sm);
}

.footer__nav-list a {
    color: var(--penthouse-black);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.footer__nav-list a:hover {
    color: var(--penthouse-gray);
}

.footer__nav-list i {
    font-size: 1.125rem;
    width: 20px;
}

/* Sites Dropdown */
.footer__sites-dropdown .btn {
    background-color: transparent;
    color: var(--penthouse-black);
    border: 2px solid var(--penthouse-black);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 0;
    padding: var(--spacing-sm) var(--spacing-md);
    width: 100%;
}

.footer__sites-dropdown .btn:hover,
.footer__sites-dropdown .btn:focus {
    background-color: var(--penthouse-black);
    color: var(--penthouse-white);
    border-color: var(--penthouse-black);
    box-shadow: none;
}

.footer__sites-dropdown .dropdown-menu {
    border-radius: 0;
    border: 2px solid var(--penthouse-black);
    margin-top: -2px;
    width: 100%;
}

.footer__sites-dropdown .dropdown-item {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
}

.footer__sites-dropdown .dropdown-item:hover {
    background-color: var(--penthouse-black);
    color: var(--penthouse-white);
}

/* Copyright */
.footer__copyright {
    text-align: center;
    font-size: 0.625rem;
    color: var(--penthouse-gray);
    padding-top: var(--spacing-lg);
    border-top: solid 2px #000;
    margin-top: var(--spacing-xl);
}




/* ==========================================================================
   14. BREADCRUMB COMPONENT
   ========================================================================== */

.breadcrumb {
    font-size: 12px;
}

.breadcrumb a {
    font-size: 12px;
    color: var(--penthouse-black);
    text-decoration: none;
}

/* ==========================================================================
   15. RESPONSIVE DESIGN - MOBILE FIRST APPROACH
   ========================================================================== */

/* ==========================================================================
   EXTRA LARGE SCREENS (≤1400px)
   ========================================================================== */
@media (max-width: 1400px) {
    .pet-slider {
        background-image: none;
        background-size: auto;
        background-position: right bottom;
    }
}

/* ==========================================================================
   LARGE SCREENS (≤1199.98px)
   ========================================================================== */
@media (max-width: 1199.98px) {

    /* Header Adjustments */
    .header {
        padding: var(--spacing-md) var(--spacing-lg);
    }

    .header__logo {
        font-size: 1.75rem;
        letter-spacing: 4px;
    }

    .header__section--right {
        gap: var(--spacing-md);
    }

    /* Button Adjustments */
    .btn-custom--signup {
        font-size: 0.75rem;
        padding: 6px var(--spacing-md);
    }

    .btn-custom--login {
        font-size: 0.625rem;
        padding: var(--spacing-sm) var(--spacing-md);
    }

    /* Login Dropdown */
    .login-dropdown__menu {
        width: 280px;
        padding: var(--spacing-lg);
    }

    /* Carousel Controls */
    .carousel-item .row {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
    }

    .carousel-control-prev {
        left: 0px;
    }

    .carousel-control-next {
        right: 0px;
    }

    /* Swiper Navigation */
    .swiper-button-next {
        right: 10px;
    }

    .swiper-button-prev {
        left: 10px;
    }

    /* Pet Slider */
    .pet-slider {
        height: auto;
        max-height: auto !important;
    }
}

/* ==========================================================================
   FOOTER RESPONSIVE (≤1180px)
   ========================================================================== */
@media (max-width: 1180px) {
    .footer__magazine-covers img {
        position: relative;
        width: 100%;
    }

    .footer__magazine-covers img:last-child {
        margin-left: 0;
        margin-top: 0;
    }

    .scroll-indicator {
        left: 50% !important;
    }

}


.txtLoadingProgress,
.loading-progress .caption {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* ==========================================================================
   MEDIUM SCREENS (≤991.98px)
   ========================================================================== */
@media (max-width: 991.98px) {


    /* Header Mobile */
    .header {
        padding: var(--spacing-md);
        flex-wrap: wrap;
    }

    .header__icon {
        height: 25px;
    }

    .header__logo {
        font-size: 1.5rem;
        letter-spacing: 3px;
    }

    .header__logo img {
        height: 35px;
    }

    /* Hide Desktop Elements & Show Mobile */
    .btn-custom--signup,
    .login-dropdown {
        display: none;
    }

    .btn-custom--mobile-menu {
        display: block;
    }

    /* Login Dropdown Adjustments */
    .login-dropdown__menu {
        width: 260px;
        padding: var(--spacing-md);
        right: -10px;
    }

    .login-dropdown__title {
        font-size: 1.25rem;
    }

    /* Magazine Tabs */
    .magazine-tabs__card {
        height: 250px;
    }

    .magazine-tabs__footer {
        font-size: 1rem;
        height: 50px;
    }

    /* Footer */
    .footer {
        padding: var(--spacing-xl) 0;
    }

    .nav-tabs .nav-link {
        border: 0;
    }

    .footer__newsletter-form {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .footer__newsletter-button {
        width: 100%;
    }

    .footer__magazine-covers {
        justify-content: center;
        margin-bottom: var(--spacing-md);
    }
}

/* ==========================================================================
   SMALL TABLETS (≤768px)
   ========================================================================== */
@media (max-width: 768px) {

    /* Footer Magazine Covers */
    .footer__magazine-covers {
        display: flex;
        align-content: stretch;
        flex-direction: row !important;
        justify-content: space-between;
    }

    .footer .container-fluid {
        padding: 0 !important;
    }

    .footer__magazine-covers img {
        position: relative;
        width: 48%;
    }

    .footer__magazine-covers img:last-child {
        margin-left: 0;
        margin-top: 0;
    }


}

/* ==========================================================================
   SMALL SCREENS (≤767.98px)
   ========================================================================== */
@media (max-width: 767.98px) {

    /* Header */
    .header {
        padding: var(--spacing-sm);
    }

    .header__section--left {
        gap: var(--spacing-md);
    }

    .header__icon {
        height: 20px;
    }

    .header__logo {
        font-size: 1.25rem;
        letter-spacing: 2px;
    }

    .header__logo img {
        height: 30px;
    }

    .header__section--right {
        gap: var(--spacing-md);
    }

    /* Mobile Menu */
    .mobile-menu__content {
        padding: var(--spacing-md);
    }

    /* Login Dropdown */
    .login-dropdown__menu {
        width: 240px;
        right: -20px;
    }

    /* Magazine Tabs */
    .magazine-tabs__card {
        height: 200px;
    }

    /* Magazine Grid Overlay - Always show on mobile */
    .magazine-grid .card:hover .magazine-grid__overlay {
        top: calc(100% - 70px);
        opacity: 1;
        transition: all 0.2s ease-out;

    }

    /* Filters */
    .filters {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .filters__group--right {
        margin-left: 0;
    }



    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 14px;
    }

    .pet-slider {
        padding: 2rem 0 8rem;
    }
}

/* ==========================================================================
   EXTRA SMALL SCREENS (≤575.98px)
   ========================================================================== */
@media (max-width: 575.98px) {

    /* Header */
    .header__logo {
        font-size: 1.125rem;
        letter-spacing: 1px;
    }

    .header__logo img {
        height: 35px;
    }

    /* Login Dropdown */
    .login-dropdown__menu {
        width: 220px;
        right: -30px;
    }

    /* Filter Radio Buttons */
    .filters__radio .btn {
        font-size: 0.625rem;
        padding: var(--spacing-xs) var(--spacing-sm);
    }
}

/* ==========================================================================
   16. DROPDOWN COMPONENT
   ========================================================================== */

/* Dropdown Menu Container */
.header .dropdown-menu {
    position: absolute;
    z-index: 1000;
    display: none;
    min-width: 10rem;
    padding: 0;
    margin: 0;
    font-size: 0.875rem;
    color: var(--penthouse-black);
    text-align: left;
    list-style: none;
    background-color: rgba(255, 255, 255, 1);
    background-clip: padding-box;
    border: 2px solid var(--penthouse-black);
    border-radius: 0;
    box-shadow: 0 4px 20px var(--penthouse-shadow);
}

/* Dropdown Menu Show State */
.header .dropdown-menu.show {
    display: block;
}

/* Dropdown Menu List Items */
.header .dropdown-menu li {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Dropdown Menu Items */
.header .dropdown-item {
    display: block;
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    clear: both;
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--penthouse-black);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    border-radius: 0;
    transition: all 0.3s ease;
}

/* Dropdown Item States */
.header .dropdown-item:hover,
.header .dropdown-item:focus {
    color: var(--penthouse-white);
    background-color: var(--penthouse-black);
    text-decoration: none;
    outline: none;
    box-shadow: inset 0 0 0 2px var(--penthouse-black);
}

.header .dropdown-item.active,
.header .dropdown-item:active {
    color: var(--penthouse-white);
    background-color: var(--penthouse-black);
    text-decoration: none;
}

.header .dropdown-item.disabled,
.header .dropdown-item:disabled {
    color: var(--bs-gray-400);
    pointer-events: none;
    background-color: transparent;
}

/* Dropdown Divider & Header */
.header .dropdown-divider {
    height: 0;
    margin: var(--spacing-xs) 0;
    overflow: hidden;
    border-top: 1px solid var(--bs-gray-200);
}

.header .dropdown-header {
    display: block;
    padding: var(--spacing-sm) var(--spacing-md);
    margin-bottom: 0;
    font-size: 0.95rem;
    color: var(--bs-gray-600);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    padding-top: 0;
}

.language-selector .dropdown-menu {
    min-width: auto;
}

.language-selector button.show {
    color: var(--gold-rich) !important;
    background-color: #0f0505;

}

/* ==========================================================================
   17. SWIPER COMPONENTS
   ========================================================================== */

/* Pet Playoff Swiper */
.petPlayoffSwiper {
    visibility: hidden;
    opacity: 0;
    height: 500px;
}

.petPlayoffSwiper .swiper-button-next:after,
.petPlayoffSwiper .swiper-button-prev:after {
    display: none;
}

.petPlayoffSwiper .swiper-button-next:before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f061";
    /* chevron-right */
}

.petPlayoffSwiper .swiper-button-prev:before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f060";
    /* chevron-left */
}

/* Magazine Swiper */
.magazine-swiper {
    background: transparent;
    padding: 0;
    visibility: hidden;
    opacity: 0;
}

.magazine-swiper .swiper-slide {
    height: auto;
    background: transparent;
}

/* Hide Swiper Controls */
.magazine-swiper .swiper-pagination,
.magazine-swiper .swiper-button-next,
.magazine-swiper .swiper-button-prev,
.magazine-swiper .swiper-scrollbar {
    display: none !important;
}

/* Swiper Wrapper Cards */
.swiper-wrapper .card {
    min-height: 300px;
    background-color: transparent;
    border: solid 1px var(--penthouse-black);
    cursor: pointer;
}

.swiper-wrapper .card .magazine-grid__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--penthouse-black);
    color: var(--penthouse-white);
    padding: var(--spacing-md);
    text-align: center;
    text-transform: uppercase;
    opacity: 0;
    top: 100%;
    transition: all 0.2s ease-in;
}

.swiper-wrapper .card:hover {
    border: solid 1px var(--penthouse-black);
}

.swiper-wrapper .card:hover .magazine-grid__overlay {
    top: calc(100% - 70px);
    opacity: 1;
    transition: all 0.2s ease-out;
}

/* ==========================================================================
   18. LAYOUT COMPONENTS
   ========================================================================== */

/* Magazine Layout */
.magazine-layout {
    min-height: calc(100vh - 60px);
}

/* Images Column with Custom Scrollbar */
.images-column {
    padding: 0;
    overflow: auto;
    height: 100vh;
    max-height: calc(100vh - 88px);
}

/* Custom Scrollbar Styles */
.images-column::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.images-column::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 0;
}

.images-column::-webkit-scrollbar-thumb {
    background: #000000;
    border-radius: 0;
    border: none;
}

.images-column::-webkit-scrollbar-thumb:hover {
    background: #333333;
}

.images-column::-webkit-scrollbar-thumb:active {
    background: #000000;
}

.images-column::-webkit-scrollbar-corner {
    background: transparent;
}

/* Firefox Scrollbar */
.images-column {
    scrollbar-width: thin;
    scrollbar-color: #000000 transparent;
}


/* Content Column */
.content-column {
    position: inherit;
    top: 88px;
    height: auto;
    display: inline;
    padding: 3rem;
    padding-top: 3rem;
    background-color: #ffffff;
}

.content-column-breadcrum {
    padding-top: 30px;
    text-align: center;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-right: auto;
    margin-left: auto;
}

/* Image Items */
.image-item {
    position: relative;
    overflow: hidden;
    height: 100vh;
    width: auto;
    height: 100%;
    width: 100%;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-item img {
    width: 90%;
    object-fit: scale-down;
    height: 90%;
    padding: 0px;



}

.container-btn-float-img {
    position: absolute;
    bottom: 10vh;
    left: 50%;
    margin-left: -103px !important;
    text-align: center;
    margin: auto;
}

/* ==========================================================================
   19. HERO SECTION
   ========================================================================== */

.hero-section {
    background: linear-gradient(90deg, var(--bs-gray-100) 50%, #ffffff 50%);
    height: calc(100vh - 87px);
    min-height: calc(100vh - 87px);
    overflow: hidden;
    width: 100%;
}

.hero-flex {
    height: calc(100vh - 87px);
    display: flex;
    align-items: center;
}

.hero-section__content {
    padding-right: var(--spacing-xl);
    padding-left: var(--spacing-xl);
    position: relative;
    text-align: center;
}

.hero-section__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--penthouse-black);
    margin-bottom: var(--spacing-lg);
}

.hero-section__description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--penthouse-gray);
    margin-bottom: var(--spacing-xxl);
    max-width: 500px;
}

.hero-section .action-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    margin: auto;
    align-items: center;
    justify-content: center;
}

/* Hero Stats */
.hero-section__stats {
    margin-top: var(--spacing-xxl);
}


.hero-section__stat-link {
    text-decoration: none;
    color: var(--penthouse-black);
    padding: 10px;
    aspect-ratio: 1;
    border: solid 1px var(--penthouse-black);
    text-transform: uppercase;
    width: 100%;
    background-color: var(--penthouse-white);
    transition: all 0.2s ease;
}

.hero-section__stat-link:hover {
    color: var(--penthouse-black);
    border: solid 1px var(--penthouse-black);
    background-color: var(--penthouse-white);
    transform: scale(1.04);
    transition: all 0.2s ease;
}

.hero-section__stat-number {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 3rem;
    color: var(--penthouse-black);
    margin-bottom: var(--spacing-xs);
    line-height: 1;
    text-align: center;
    display: none;
}

.hero-section__stat-label {
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    position: relative;
    background-color: #fff;
    margin: auto;
    width: max-content;
    padding-top: 10px;
    transition: all 0.2s ease;
    display: none;
}

.hero-section a:active {
    background-color: transparent !important;
    transform: scale(0.98);
    transition: all 0.2s ease;
    color: var(--penthouse-black) !important;
}

.hero-section__magazines {
    padding: var(--spacing-lg);
}

/* ==========================================================================
   20. MAGAZINE DETAILS COMPONENTS
   ========================================================================== */

/* Magazine Info */
.magazine-info {
    max-width: 100%;
}

.magazine-subtitle {
    margin-bottom: 0.5rem;
}

.magazine-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--penthouse-black);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.cover-info {
    margin-bottom: 1.5rem;
}

.cover-label {
    font-size: 1rem;
    color: #000000;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cover-name {
    font-size: 2rem;
    font-weight: 900;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.pet-info {
    font-size: 1.125rem;
    color: #000000;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.magazine-description {
    margin-bottom: 2rem;
    font-size: 20px;
    max-width: 800px;
}

/* Categories & Action Buttons */
.categories {
    margin-bottom: 2rem;
}

.categories a {
    text-decoration: none;
    margin-right: 10px;
    font-weight: 600;
    font-size: 0.875rem;
    color: #000000;
    padding: 2px 4px;
    transition: all 0.2s ease;
}

.categories a:hover {
    background-color: #000000;
    color: #ffffff;
    transition: all 0.2s ease;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}


/* Penthouse Buttons */
.btn-penthouse {
    padding: 12px 24px;
    font-weight: 700;
    font-size: 1.3rem;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.5rem 3.5rem;
}


/* Penthouse Buttons */
.btn-preview {
    background-color: var(--bs-gray-200);
    outline: solid 1px transparent;
    outline-offset: 1px;
}


/* Penthouse Buttons */
.btn-preview:hover {
    background-color: var(--bs-gray-400);
    outline: solid 1px var(--bs-gray-400);
    outline-offset: 1px;

}

.btn-penthouse--primary {
    background-color: var(--gold-classic);
    padding: 0.5rem 3.5rem;
    outline: solid 1px transparent;
    outline-offset: 1px;
    transition: all 0.2s ease;
    border: 2px solid var(--gold-classic);
    color: var(--penthouse-black);
}

.btn-penthouse--primary i {
    left: 0px;
    position: relative;
    transition: all 0.2s ease;
}

.btn-penthouse--primary:hover i {
    left: 5px;
    transition: all 0.2s ease;
}

.btn-penthouse--primary:hover {
    background-color: var(--gold-classic);
    color: var(--penthouse-black);
    outline: solid 1px var(--gold-classic);
    outline-offset: 1px;
    transition: all 0.2s ease;
}

.btn-penthouse--secondary {
    background-color: white;
    color: var(--penthouse-black);
    ;
    border: 2px solid var(--penthouse-black);
    ;
    outline: solid 1px transparent;
    outline-offset: 1px;
}

.btn-penthouse--secondary:hover {
    background-color: var(--penthouse-black);
    color: #ffffff;
    outline: solid 1px var(--penthouse-black);
    ;
    outline-offset: 1px;
}

.btn-big-penthouse {
    padding: 15px 35px !important;
    font-size: 1.1em !important;

}

/* ==========================================================================
   21. SCROLL INDICATORS
   ========================================================================== */

.scroll-indicator {
  position: fixed;
  bottom: 80px;
  left: 20%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: bounce 2s infinite;
  cursor: pointer;
  z-index: 10;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-10px);
  }

  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

.scroll-hint {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: var(--spacing-md) var(--spacing-xl);
  border-radius: 8px;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.8;
  }

  50% {
    opacity: 1;
  }
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--bs-gray-200);
  z-index: 999;
}

.scroll-progress__bar {
  height: 100%;
  background: var(--penthouse-black);
  width: 0%;
  transition: width 0.1s ease;
}

/* ==========================================================================
   22. TOOLTIPS COMPONENT
   ========================================================================== */

.tooltip {
    --bs-tooltip-max-width: 200px;
    --bs-tooltip-opacity: 1;
}

.tooltip .tooltip-inner {
    background-color: var(--penthouse-black);
    color: var(--penthouse-white);
    border: 2px solid var(--penthouse-black);
    border-radius: 0;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    max-width: none;
    width: auto;
}

.tooltip-opacity img {
    opacity: 1 !important;
}

.tooltip .tooltip-inner img {
    width: 180px;
    height: auto;
    min-height: 200px;
    display: block;
    border-radius: 0;
    opacity: 1 !important;
}

/* Tooltip Arrows */
.tooltip.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: var(--penthouse-black);
}

.tooltip.bs-tooltip-bottom .tooltip-arrow::before {
    border-bottom-color: var(--penthouse-black);
}

.tooltip.bs-tooltip-start .tooltip-arrow::before {
    border-left-color: var(--penthouse-black);
}

.tooltip.bs-tooltip-end .tooltip-arrow::before {
    border-right-color: var(--penthouse-black);
}

/* White Tooltip Variant */
.tooltip-white .tooltip-inner {
    background-color: var(--penthouse-white);
    color: var(--penthouse-black);
    border: 2px solid var(--penthouse-white);
}

.tooltip-white.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: var(--penthouse-white);
}

.tooltip-white.bs-tooltip-bottom .tooltip-arrow::before {
    border-bottom-color: var(--penthouse-white);
}

.tooltip-white.bs-tooltip-start .tooltip-arrow::before {
    border-left-color: var(--penthouse-white);
}

.tooltip-white.bs-tooltip-end .tooltip-arrow::before {
    border-right-color: var(--penthouse-white);
}

/* ==========================================================================
   23. LEGACY SECTION
   ========================================================================== */

.legacy-section {
    min-height: 100vh;
}

.legacy-section__header {
    margin-bottom: var(--spacing-xxl);
}

.legacy-section__main-title {
    font-family: var(--font-display);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: var(--spacing-lg);
    color: rgb(0, 0, 0);
}

.legacy-section__subtitle {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.5rem;
    color: var(--penthouse-black);
    margin-bottom: 0;
}

.legacy-section__item {
    margin-bottom: var(--spacing-xxl);
    border-bottom: 2px solid var(--penthouse-black);
    padding-bottom: var(--spacing-lg);
}

.legacy-section__item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.legacy-section__item-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--penthouse-black);
    margin-bottom: var(--spacing-md);
    text-transform: none;
}

.legacy-section__item-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--penthouse-black);
    margin-bottom: 0;
    max-width: 90%;
}

.legacy-section__image-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xl);
}

.legacy-section__device {
    position: relative;
}

.legacy-section__device--tablet {
    z-index: 2;
}

.legacy-section__device--phone {
    position: absolute;
    right: -20px;
    top: 50px;
    z-index: 3;
    width: 60%;
}

.legacy-section__device img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.legacy-section .order-1 {
    z-index: 10;
}

.legacy-section .order-2 video {
    position: relative;
    left: -50px;
}

/* ==========================================================================
   24. COLLECTIONS GRID
   ========================================================================== */

.collections-grid__item {
    text-decoration: none;
    color: inherit;
    display: block;
}

.collections-grid__item:hover {
    color: inherit;
    text-decoration: none;
}

.collections-grid__magazine {
    position: relative;
    margin-bottom: var(--spacing-lg);
    border: solid 1px white;
    transition: all 0.3s ease;
}

.collections-grid__magazine:hover {
    transform: scale(1.04);
    transition: all 0.3s ease;
    border: solid 1px var(--penthouse-black);
}

.collections-grid__magazine img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
}

.collections-grid__label {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--penthouse-white);
    color: var(--penthouse-black);
    border: 2px solid var(--penthouse-black);
    padding: var(--spacing-sm) var(--spacing-lg);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    text-align: center;
    min-width: 120px;
    margin-bottom: 0;
}

/* ==========================================================================
   25. FOOTER STYLES - ALTERNATIVE FOOTER
   ========================================================================== */

.hero-title-fix {
    color: var(--gold-classic);
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.footer-A {
    padding: 40px 0 40px;
    padding-bottom: 0px;
    line-height: 12px;
    background-color: var(--penthouse-black);
}

/* Gold Colors */
.gold-classic {
    color: var(--gold-classic);
}

.gold-glow {
    color: var(--gold-glow);
}

.gold-light {
    color: var(--gold-light);
}

.bg-gold-classic {
    background-color: var(--gold-classic);
}

.bg-gold-glow {
    background-color: var(--gold-glow);
}

.bg-gold-light {
    background-color: var(--gold-light);
}

/* Footer Columns */
.footer-column h6 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-left: -5px;
    position: relative;
    left: -5px;
    transition: all 0.3s ease;
}

.footer-column ul li:active {
    transform: scale(0.98);
    transition: all 0.3s ease;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 400;
    transition: all 0.3s ease;
    display: block;
    padding: 8px;
    border: solid 1px transparent;
}

.footer-column ul li a:hover {
    background-color: rgba(232, 181, 70, 0.1);
    transition: all 0.3s ease;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 1rem;
}

.footer-logo {
    font-weight: 400;
    font-size: 0.95rem;
    color: white;
    margin-bottom: 40px;
}

.copyright {
    color: #c4c4c4;
    font-size: 0.775rem;
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 50px;
}

.copyright a {
    border-right: 1px solid #c4c4c4;
    padding-right: 0.5rem;
    color: #c4c4c4;
}

.copyright a:last-child {
    border-right: 0px solid #6b7280;
    padding-right: 0.5rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #c4c4c4;
    border-radius: 50%;
    text-decoration: none;
    margin-left: 0.75rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #c4c4c4;
    color: #374151;
}

.authorized {
    font-size: 0.675rem;
    color: #c4c4c4;
    margin: 0;
    max-width: 800px;
    margin: 0 auto;
}

.gdpr-label {
    font-size: 0.675rem;
}

.form-nl {
    max-width: 500px;
    margin: 0 auto;
}


#flipbook-completion-modal {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* ==========================================================================
   26. SEARCH MODAL
   ========================================================================== */

.search-modal {
    border-radius: 0;
}

.search-modal .modal-dialog {
    max-width: 100%;
    width: 100%;
    height: 100vh;
    margin: 0;
}

.search-modal .modal-content {
    background-color: var(--bs-gray-100);
    border: none;
    border-radius: 0;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    box-shadow: none;
    position: relative;
}

.search-modal__header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 1);
    z-index: 10;
    padding: var(--spacing-xxl);
    text-align: center;
    padding-bottom: 10px;
    padding: 10px;
}

.search-modal__close {
    position: fixed;
    top: 0px;
    right: 10px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--penthouse-black);
    cursor: pointer;
    padding: var(--spacing-sm);
    transition: all 0.3s ease;
    z-index: 1050;
}

.search-modal__close:hover {
    opacity: 0.7;
}

.search-modal__title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 2.5rem;
    text-transform: uppercase;
    color: var(--penthouse-black);
    margin-bottom: var(--spacing-lg);
}

.search-modal__subtitle {
    margin-bottom: var(--spacing-xl);
}

.search-modal__input-container {
    position: relative;
    margin: 0 auto var(--spacing-xl);
    max-width: 1000px;
}

.search-modal__input {
    width: 100%;
    padding: var(--spacing-lg) var(--spacing-xl);
    border: 2px solid var(--penthouse-black);
    background-color: var(--penthouse-white);
    font-size: 1.125rem;
    outline: none;
    border-radius: 0;
    padding-right: 60px;
}

.search-modal__input:focus {
    box-shadow: none;
    border-color: var(--penthouse-black);
}

.search-modal__input::placeholder {
    color: var(--penthouse-gray);
    font-style: italic;
}

.search-modal__search-icon {
    position: absolute;
    right: var(--spacing-lg);
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
    color: var(--penthouse-black);
}

.search-modal__content {
    padding: 0;
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: var(--spacing-xxl);
    padding-top: 30px;
}

.search-modal__content .card {
    min-height: 260px;
    width: auto;
    min-width: 220px;
}

.search-modal__section {
    margin-bottom: var(--spacing-xxl);
    padding: 10px;
}

.search-modal__section:last-child {
    margin-bottom: 0;
}

.search-modal__section-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    text-transform: uppercase;
    color: var(--penthouse-black);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-sm);
}

.main-content .magazine-grid .card {
    min-height: 380px;
    background-color: var(--bs-gray-200);
    transition: all 0.3s ease;
    cursor: pointer;
    border: solid 1px transparent;
}

/* ==========================================================================
   27. FLOATING SIGNUP BUTTON
   ========================================================================== */
.floating-signup {
    position: fixed;
    bottom: var(--spacing-xl);
    right: var(--spacing-xl);
    z-index: 1000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.floating-signup--visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.floating-signup__button {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-classic) 100%);
    color: var(--furner-black);
    font-weight: 600;
    font-size: 1.3rem;
    padding: var(--spacing-sm) var(--spacing-lg);
    border: none;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-gold);
    cursor: pointer;
    display: inline-block;
    /* ← AÑADE ESTO */
    border-radius: 24px;
}

.floating-signup__button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    /* Empieza completamente fuera a la izquierda */
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
    /* ← REMUEVE opacity: 0; */
}

.floating-signup__button:hover {
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.floating-signup__button:hover::before {
    left: 100%;
    /* Termina completamente fuera a la derecha */
    /* ← REMUEVE opacity: 1; */
}

.floating-signup__button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.08);
}

.floating-signup__text {
    position: relative;
    z-index: 2;
}

.floating-signup__icon {
    position: relative;
    z-index: 2;
    font-size: 1rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-signup__button:hover .floating-signup__icon {
    transform: translateX(2px) translateY(-2px);
}

/* ==========================================================================
   28. PAGINATION COMPONENT
   ========================================================================== */

.pagination-magazine {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin: var(--spacing-xl) 0;
    padding: 0;
}

.pagination-magazine__item {
    margin: 0;
    list-style: none;
}

.pagination-magazine__link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    min-height: 48px;
    padding: var(--spacing-sm) var(--spacing-md);
    background-color: var(--penthouse-white);
    color: var(--penthouse-black);
    border: 2px solid var(--penthouse-black);
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-right: none;
}

.pagination-magazine__item:last-child .pagination-magazine__link {
    border-right: 2px solid var(--penthouse-black);
}

.pagination-magazine__link:hover {
    background-color: var(--penthouse-black);
    color: var(--penthouse-white);
    text-decoration: none;
    box-shadow: 0 4px 8px var(--penthouse-shadow);
    z-index: 2;
    position: relative;
}

.pagination-magazine__link--active {
    background-color: var(--penthouse-black);
    color: var(--penthouse-white);
    border-color: var(--penthouse-black);
}

.pagination-magazine__link--disabled {
    background-color: #f8f9fa;
    color: var(--penthouse-gray);
    border-color: #dee2e6;
    cursor: not-allowed;
    pointer-events: none;
}

.pagination-magazine__icon {
    font-size: 0.875rem;
}

/* Pagination Modifiers */
.pagination-magazine--centered {
    justify-content: center;
}

.pagination-magazine--left {
    justify-content: flex-start;
}

.pagination-magazine--right {
    justify-content: flex-end;
}

.pagination-magazine--large .pagination-magazine__link {
    min-width: 56px;
    min-height: 56px;
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: 1rem;
}

.pagination-magazine--small .pagination-magazine__link {
    min-width: 40px;
    min-height: 40px;
    padding: var(--spacing-xs) var(--spacing-sm);
    font-size: 0.75rem;
}

/* ==========================================================================
   29. SUBSCRIPTION SECTION
   ========================================================================== */

.subscription-section {
    height: calc(100vh - 120px);
    padding: var(--spacing-lg) 0;
    padding-bottom: 0;
    padding-top: 0;
    position: relative;
    overflow: hidden;
}

.subscription-section .form-control {
    padding: 1rem;
}

.subscription-section__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.subscription-section__image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: auto;
    height: 100vh;
    object-fit: initial;
    object-position: right 100px;
    opacity: 1;
    z-index: 1;
}

.subscription-section__content {
    position: relative;
    z-index: 2;
}

.subscription-section__header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.subscription-section__title {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--penthouse-black);
    margin-bottom: var(--spacing-md);
    text-transform: none;
    letter-spacing: -1px;
}

.subscription-section__form-row {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
    max-width: 600px;
    margin: auto;
    flex-direction: row;
    flex-wrap: nowrap;
}

.subscription-section__input {
    background: #000;
    border: none;
    padding: var(--spacing-md) var(--spacing-xl);
    color: var(--penthouse-white);
    font-size: 1rem;
    min-width: 280px;
    outline: none;
    transition: all 0.3s ease;
}

.subscription-section__input::placeholder {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.subscription-section__input:focus {
    background: rgba(108, 117, 125, 0.9);
}

.subscription-section__plans-title {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--penthouse-black);
    text-align: center;
    margin-bottom: var(--spacing-md);
    text-transform: none;
    letter-spacing: -1px;
}

.subscription-section__plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Subscription Plan Component */
.subscription-plan {
    background: var(--penthouse-white);
    border: 2px solid #dee2e6;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.subscription-plan:hover {
    border-color: var(--penthouse-black);
}

.subscription-plan--selected {
    border-color: var(--penthouse-black);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.subscription-plan__selector {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    width: 24px;
    height: 24px;
    border: 2px solid #dee2e6;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.subscription-plan--selected .subscription-plan__selector {
    border-color: #28a745;
    background: #28a745;
    color: white;
}

.subscription-plan__header {
    padding: var(--spacing-md) var(--spacing-sm) var(--spacing-sm);
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    margin-top: 20px;
}

.subscription-plan__price {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 2rem;
    color: var(--penthouse-black);
    margin-bottom: var(--spacing-xs);
    line-height: 1;
}

.subscription-plan__period {
    color: var(--penthouse-gray);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-sm);
}

.subscription-plan__title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--penthouse-black);
    margin-bottom: 0;
    text-transform: none;
}

.subscription-plan__features {
    padding: var(--spacing-sm);
    min-height: 120px;
}

.subscription-plan__feature {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-sm);
    font-size: 0.85rem;
}

.subscription-plan__feature:last-child {
    margin-bottom: 0;
}

.subscription-plan__feature-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.subscription-plan__feature-icon--active {
    background: transparent;
}

.subscription-plan__feature-icon--inactive {
    background: #dee2e6;
}

.subscription-plan__feature-icon i {
    font-size: 0.75rem;
    color: #28a745;
}

.saved {
    color: #28a745;
}

.subscription-plan__feature-text {
    flex: 1;
    color: var(--penthouse-black);
    font-weight: 500;
}

.subscription-plan__feature-text--inactive {
    color: var(--penthouse-gray);
}

.subscription-plan__savings {
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -36px;
    margin-top: -30px;
    padding: var(--spacing-xs) var(--spacing-sm);
    font-size: 0.7rem;
    font-weight: 400;
    text-transform: uppercase;
    z-index: 99;
}

.subscription-plan__info {
    background: transparent;
    color: var(--penthouse-gray);
    border: none;
    padding: var(--spacing-md) var(--spacing-xl);
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    margin: 0;
    text-align: center;
    border-top: 1px solid #f0f0f0;
}

.subscription-section__payment-title {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--penthouse-black);
    text-align: center;
    margin-bottom: var(--spacing-md);
    text-transform: none;
    letter-spacing: -1px;
}

.subscription-section__payment-methods {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-md);
}

/* Payment Method Component */
.payment-method {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    background: var(--penthouse-white);
    border: 2px solid #dee2e6;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 180px;
    justify-content: flex-start;
    position: relative;
}

.payment-method:hover {
    border-color: var(--penthouse-black);
}

.payment-method--selected {
    border-color: var(--penthouse-black);
    background: #f8f9fa;
}

.payment-method__selector {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    width: 20px;
    height: 20px;
    border: 2px solid #dee2e6;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.payment-method--selected .payment-method__selector {
    border-color: #28a745;
    background: #28a745;
    color: white;
}

.payment-method__icon {
    font-size: 1.5rem;
    color: var(--penthouse-black);
}

.payment-method__text {
    font-weight: 600;
    color: var(--penthouse-black);
    font-size: 0.95rem;
}

.subscription-section__payment-methods .payment-method {
    aspect-ratio: initial;
}

.subscription-section__final-button {
    display: block;
    margin: 0 auto;
    background: #28a745;
    color: var(--penthouse-white);
    border: 2px solid #28a745;
    padding: var(--spacing-md) 4rem;
    font-weight: 700;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    outline: solid 1px transparent;
    outline-offset: 1px;
}

.subscription-section__final-button:hover {
    background: #28a745;
    color: var(--penthouse-white);
    outline: solid 1px #28a745;
    outline-offset: 1px;
    transition: all 0.2s ease;
}

/* ==========================================================================
   30. FORM CONTROLS
   ========================================================================== */

.form-control {
    border: 2px solid #dee2e6;
    border-radius: 0;
    padding: 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--penthouse-white);
}

.form-control:focus {
    border-color: var(--penthouse-black);
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.1);
    background-color: var(--penthouse-white);
}

/* ==========================================================================
   31. LOGIN COMPONENTS
   ========================================================================== */

.magazines-grid {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.magazine-item img {
    width: 100%;
    height: auto;
    opacity: 1;
}

.login-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2;
}

.login-container {
    position: relative;
    z-index: 3;
    min-height: 100vh;
}

.login-card {
    max-width: 540px;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .4);
    top: -15%;
    background: white;
    margin: 0 auto;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    color: #6c757d;
}

.form-control-icon {
    padding-left: 45px;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6c757d;
    z-index: 5;
}

.flipHtml {
    position: relative;
    padding-top: max(60%, 324px);
    width: 100%;
    height: 100%;
}

/* ==========================================================================
   32. RESPONSIVE DESIGN - ADDITIONAL BREAKPOINTS
   ========================================================================== */

@media (min-width: 992px) {
    .floating-signup {
        display: none;
    }
}

@media (max-width: 1440px) {
    .hero-section__stat-label {
        display: none;
    }

    .action-buttons {
        display: flex;
        gap: 1rem;
        margin-bottom: 1.5rem;
        flex-wrap: nowrap;
        justify-content: space-evenly;
        align-items: center;
        flex-direction: column;
    }

    .magazine-info .btn-penthouse--primary {
        padding: 0.5rem 3.5rem;
        outline: solid 1px transparent;
        outline-offset: 1px;
        transition: all 0.2s ease;
        width: 100%;
        display: block;
        text-align: center;
    }

    .magazine-info .btn-penthouse {

        width: 100%;
        display: block;
        text-align: center;
    }
}

@media (max-width: 1024px) {
    .hero-section__title {
        font-size: 3.5rem;
    }

    .flipHtml {
        position: relative;
        width: auto;
        height: auto;
        min-height: auto;
    }

    .hero-section,
    .hero-flex {
        height: auto !important;
        min-height: auto !important;
    }

    .hero-section__stat-label {
        display: none;
    }

    .images-column {
        order: 2;
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        padding-left: 10px;
        padding-right: 10px;
        height: auto;
    }
}

@media (max-width: 860px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .footer-column ul li {
        position: relative;
        margin-left: 0px;
        left: 0px;
    }

    .footer-column ul li a {
        padding: 12px;
    }

    .footer {
        padding: 60px 0 30px;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom .row>div {
        margin-bottom: 1.5rem;
    }

    .footer-column {
        box-shadow: 0px 0px 5px rgba(0, 0, 0, .1);
        padding: 20px;
        border-radius: 10px;
        border: solid 1px rgb(232 181 70 / 10%);
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .floating-signup {
        bottom: var(--spacing-lg);
        right: var(--spacing-lg);
    }

    .magazine-content__title-fix {
        font-size: 1.3rem;
    }

    .floating-signup__button {
        padding: var(--spacing-sm) var(--spacing-lg);
        font-size: 1.2rem;
        min-height: 48px;
        border-radius: 24px;
    }

    .subscription-section {
        height: auto;
        min-height: 100vh;
        padding: var(--spacing-md) 0;
    }

    .subscription-section__image {
        display: none;
    }

    .subscription-section__container {
        padding: 0 var(--spacing-md);
    }

    .subscription-plan__price {
        font-size: 1.5rem;
    }

    .subscription-section__form-row {
        flex-direction: column;
        align-items: center;
    }

    .subscription-section__input {
        min-width: 100%;
        max-width: 400px;
    }

    .subscription-section__plans-grid {
        grid-template-columns: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }

    .subscription-section__payment-methods {
        flex-direction: column;
        align-items: center;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

    .payment-method {
        width: 100%;
        justify-content: center;
    }

    .subscription-section__final-button {
        padding: var(--spacing-md) 2rem;
        font-size: 0.8rem;
        width: 100%;
    }

    /* Mobile Optimizations */
    .magazine-grid .card:active {
        transform: none !important;
    }

    .magazine-grid .card {
        transform: none !important;
    }

    .magazine-grid__image-container {
        overflow: hidden;
        will-change: transform;
        contain: paint;
    }

    .magazine-grid__image-container img {
        display: block;
        width: 100%;
        height: auto;
        transition: transform .3s ease;
    }

    .magazine-grid__overlay {
        transform: translateZ(0);
        will-change: opacity, transform;
    }


    .magazine-grid a {
        -webkit-tap-highlight-color: transparent;
    }

    .content-column {
        padding: 10px;
    }

    .breadcrumb {
        margin-bottom: 0;
    }

    .pagination-magazine {
        gap: 0;
        overflow-x: auto;
        justify-content: center;
        padding-bottom: var(--spacing-sm);
    }

    .pagination-magazine__link {
        padding: var(--spacing-xs) var(--spacing-sm);
        font-size: 0.75rem;
        white-space: nowrap;
    }

    .pagination-magazine__item.d-none.d-md-block {
        display: none !important;
    }

    p.lead {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .licensing-container p.lead {
        display: initial;
        -webkit-line-clamp: initial;
        -webkit-box-orient: initial;
        overflow: initial;
        text-overflow: initial;
    }

    .hero-section__stats {
        margin-top: 20px !important;
    }
}

@media (max-width: 575.98px) {
    .floating-signup {
        bottom: var(--spacing-md);
        right: var(--spacing-md);
    }

    .floating-signup__button {
        padding: var(--spacing-sm) var(--spacing-md);
        gap: var(--spacing-xs);
    }

    .pagination-magazine__link {
        padding: var(--spacing-xs);
        font-size: 0.625rem;
    }

    .btn {
        width: 100%;
        text-align: center;
        margin: auto;
    }
}

@media screen and (max-width: 768px) {
    .copyright {
        color: #6b7280;
        font-size: 0.775rem;
        margin: 0;
        display: block;
        gap: 0.5rem;
        height: auto;
        justify-content: center;
        flex-direction: column;
        flex-wrap: nowrap;
        margin-top: 2.5rem;
    }

    .copyright a {
        border-right: 0;
        padding-right: 0;
        margin-bottom: 1rem;
        display: block;
    }

    .hero-section__content {
        padding: 0;
    }

    .btn-penthouse--primary {
        width: 100%;
        text-align: center;
        display: inline;
    }

    .btn-penthouse--secondary {
        width: 100%;
        text-align: center;
        display: inline-block;
    }

    .btn-custom--search {
        margin: 0;
        width: auto;
        text-align: right;
    }

    .header__section--right {
        gap: 0px;
    }
}

/* Additional Responsive Adjustments */
@media (max-width: 991.98px) {
    .legacy-section .order-2 video {
        width: 100%;
        margin: auto;
        text-align: center;
        left: initial;
    }

    .hero-section__stats {
        display: none;
    }

    .hero-section__magazines {
        padding: 0 !important;
    }

    .slider-category {
        padding-bottom: 0px;
    }

    .search-modal__content .card {
        min-height: auto;
        width: auto;
        min-width: auto;
    }

    .pagination-magazine__link {
        min-width: 44px;
        min-height: 44px;
        padding: var(--spacing-sm);
        font-size: 0.75rem;
    }
}

/* Demo Section */
.demo-section {
    margin-bottom: var(--spacing-xxl);
    padding: var(--spacing-xl);
    background: white;
    border: 2px solid var(--penthouse-black);
}

.demo-title {
    font-weight: 700;
    font-size: 1.25rem;
    text-transform: uppercase;
    color: var(--penthouse-black);
    margin-bottom: var(--spacing-lg);
    letter-spacing: 1px;
}

.magazine-grid__overlay {
    background-color: var(--penthouse-black) !important;
}

@media (max-width: 380px) {

    .btn-custom--login {
        width: 100%;
        text-align: center;
        display: none;
    }
}

/* ==========================================================================
   END OF REFACTORED STYLESHEET
   ========================================================================== */


/* Blog Section Styles */
.blog-section {
    position: relative;
}

/* Header Icon */
.header__icon {
    width: 40px;
    height: auto;
    opacity: 0.8;
}

/* Featured Post */
.featured-post {
    margin-bottom: 2rem;
}

.featured-post__image-container {
    position: relative;
    overflow: hidden;
    height: 400px;
}



/* Blog Grid */
.blog-grid__image-container {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.blog-grid__image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-grid__overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
}

/* Card Hover Effects */
.blog-grid .card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.blog-grid .card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.blog-grid .card:hover .blog-grid__image-container img {
    transform: scale(1.05);
}

/* Blog Meta */
.blog-meta {
    font-size: 0.875rem;
}

.blog-meta time {
    font-weight: 500;
}

/* Blog Author */
.blog-author img {
    object-fit: cover;
}

/* Newsletter Form */
.newsletter-form .form-control {
    border: 2px solid var(--penthouse-black);
    transition: border-color 0.3s ease;
    padding: 0.76rem;
    height: 52px;
}

.newsletter-form .btn-furner-primary {
    height: 52px;
}

.newsletter-form small {
    font-size: 10px;
}

.newsletter-form .form-control:focus {
    border-color: rgb(232 181 70);
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.1);

}

/* Category Links */
.btn-outline-dark {
    border-color: #6c757d;
    color: #6c757d;
    transition: all 0.3s ease;
}

.btn-outline-dark:hover {
    background-color: #6c757d;
    border-color: #6c757d;
    color: white;
}


.article-featured-image img {
    max-height: 450px;
    object-fit: cover;


}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .featured-post__image-container {
        height: 250px;
    }

    .blog-grid__image-container {
        height: 200px;
    }

    .featured-post .card-body {
        padding: 1.5rem !important;
    }
}

@media (max-width: 576px) {
    .magazine-content__title {
        font-size: 2rem;
    }

    .featured-post__image-container {
        height: 200px;
    }

    .blog-grid__image-container {
        height: 180px;
    }

    .article-header {
        margin-bottom: 10px !important;
    }


    .article-featured-image img {
        max-height: 280px;
        object-fit: cover;

    }
}

/* Badge Styles */
.badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.5em 0.8em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Card Title Link Hover */
.card-title a {
    transition: color 0.3s ease;
}

.card-title a:hover {
    color: var(--penthouse-primary, #000) !important;
}



/* Loading Animation for Images */
.blog-grid__image-container img,
.featured-post__image-container img {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}




/* ==========================================================================
   FURNER LUXURY THEME - BOOTSTRAP 5
   ========================================================================== */

/* ==========================================================================
   1. CSS VARIABLES & CUSTOM PROPERTIES
   ========================================================================== */
:root {
    /* Luxury Color Palette - AA Compliant */
    --furner-gold: #C9A227;
    --furner-gold-light: #D4B03A;
    --furner-gold-dark: #9E7A1A;
    --furner-black: #0A0A0A;
    --furner-dark: #1A1A1A;
    --furner-cream: #F5F0E8;
    --furner-white: #FFFFFF;
    --furner-gray: #5F5F5F;
    --furner-gray-light: #E5E7EB;
    --bg-primary: #0b0000;
    --bg-secondary: #fed59d;

    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-display: 'Playfair Display', serif;

    /* Border Radius */
    --bs-border-radius: 0;
    --bs-border-radius-sm: 0;
    --bs-border-radius-lg: 0;
    --bs-border-radius-xl: 0;
}


* {
    font-family: 'Roboto', sans-serif;
}

:root {
    /* Paleta oro */
    --gold-light: rgb(232 181 70);
    --gold-classic: rgb(232 181 70);
    --gold-dark: #B59410;
    --gold-rich: #C5A900;
    --gold-glow: #E6C200;
}

body {
    background: #f8f9fa;
    margin: 0;
    padding: 0;
    color: #1c0608;
}

.gallery-image img {
    max-width: 100%;
    height: auto;
    aspect-ratio: 3/4;
}

.fa-eye {
    position: initial;
    left: auto;
    top: auto;
}

.gold-classic {
    color: var(--gold-classic);
}

/* Minimal custom CSS - only for megamenu positioning */
.dropdown-menu-xl {
    width: 700px;
}

.dropdown-item {
    padding-left: 0px;
}

/* Contenedor del video para el degradado */
.video-wrapper {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
}

/* Degradado radial negro por encima del video */
.video-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center,
            transparent 20%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
    pointer-events: none;
}

.dropdown-header {
    padding-left: 0;
    background: transparent;
    color: #1c0608;
}

.nav-link {
    color: #fff;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: var(--gold-light);
}

.nav-link:focus,
.nav-link:hover {
    color: var(--gold-light);

}



.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Gallery vertical images */
.gallery-image {
    height: auto;
    background: transparent;
}

/* Discover magazine images */
.magazine-image {
    height: auto;
    margin-bottom: 10px;
}

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

img {
    max-width: 100%;
    height: auto;
    height: 100%;
    object-fit: cover;
}


.pl-0 {
    padding-left: 0px !important;
}


.ultra-hd-logo {
    width: 145px;
    height: auto;
    position: absolute;
    right: 20px;
    top: -35px;
    border-radius: 0px;
    z-index: 1;
}

@media screen and (max-width: 768px) {

    /* Minimal custom CSS - only for megamenu positioning */
    .dropdown-menu-xl {
        width: auto;
    }

    .ultra-hd-logo {
        width: 100px;
        height: auto;
        position: absolute;
        right: 20px;
        top: 30px;
        border-radius: 0px;
        display: none !important;

    }

    .btn {
        width: 100%;
    }


}

/**
 * Dropdown Centerer Styles
 * Required styles for the DropdownCenterer module
 */

/* ========================================================================== */
/* BASE STYLES */
/* ========================================================================== */

.navbar-nav {
    position: static !important;
}

.navbar-nav .dropdown {
    position: static !important;
}

.navbar-nav .dropdown-menu {
    position: fixed !important;
    margin-top: 0;
    z-index: 1050;
    max-width: 95vw;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.dropdown-menu.show {
    display: block;
}

/* ========================================================================== */
/* DROPDOWN SIZES */
/* ========================================================================== */

.dropdown-menu-xl {
    width: 700px;
}

.dropdown-menu-lg {
    width: 500px;
}

.dropdown-menu-md {
    width: 350px;
}

/* ========================================================================== */
/* CUSTOM SCROLLBAR FOR DROPDOWNS */
/* ========================================================================== */

.dropdown-menu::-webkit-scrollbar {
    width: 8px;
}

.dropdown-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 0;
}

.dropdown-menu::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 0;
}

.dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Firefox */
.dropdown-menu {
    scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1;
}

/* ========================================================================== */
/* RESPONSIVE */
/* ========================================================================== */

@media (max-width: 991px) {

    .navbar-nav .dropdown-menu,
    .dropdown-menu-xl,
    .dropdown-menu-lg,
    .dropdown-menu-md {
        width: 95vw !important;
        max-width: 95vw !important;
    }
}

@media (max-width: 768px) {

    .navbar-nav .dropdown-menu,
    .dropdown-menu-xl,
    .dropdown-menu-lg,
    .dropdown-menu-md {
        width: 100vw !important;
        max-width: 100vw !important;
        left: 0 !important;
        right: 0 !important;
    }
}

/* ========================================================================== */
/* ANIMATIONS */
/* ========================================================================== */

.dropdown-menu {
    animation: fadeInDown 0.2s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

.btn-furner-primary {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-classic) 100%);
    color: var(--furner-black);
    font-weight: 600;
    font-size: 0.9rem;
    padding: var(--spacing-sm) var(--spacing-lg);
    border: none;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-gold);
    display: inline-block;
    /* ← AÑADIR ESTO - Es esencial para que overflow funcione en <a> */
}

.btn-furner-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
}

.btn-furner-primary:hover::before {
    left: 100%;
}

.btn-furner-primary:hover {
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.btn-furner-outline {
    background: transparent;
    color: var(--furner-gold);
    font-weight: 600;
    padding: 1rem 2.5rem;
    border: 2px solid var(--furner-gold);
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-furner-outline:hover {
    background: var(--furner-gold);
    color: var(--furner-black);
    transform: translateY(-2px);
}


.container-hero {
    max-width: 100%;
    min-height: calc(100vh - 90px);
    margin: 0 auto;
    background-color: rgba(11, 0, 0, 0.6);
    overflow: hidden;
    font-family: 'Roboto', sans-serif;
}

.container-hero video {
    width: 100vw;
    height: 91vh;
    object-fit: cover;
    display: block;
}



/* Hero Parallax con Video */
.hero-parallax {
    position: relative;
    height: calc(100vh - 67px);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto', sans-serif;
}

.hero-video-container {
    position: fixed;
    top: 66px;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 1rem;
    max-width: 800px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 8px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
    line-height: 1;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-btn {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.hero-btn-primary {
    background: white;
    color: #000;
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.hero-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.hero-btn-secondary:hover {
    background: white;
    color: #000;
    transform: translateY(-3px);
}

.video-controls {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 3;
}

.mute-btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 16px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mute-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

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

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

/* Contenido principal */
.main-content {
    position: relative;
    background: #f0f2f5;
    z-index: 1;
    padding: 3rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 2rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #718096;
}

/* Video Cards */
.video-card {
    background: white;
    overflow: hidden;
    box-shadow: 0 0px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    border: solid 1px rgba(0, 0, 0, .1);

}

.furner-title {
    font-family: var(--font-display);
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold-classic) 0%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.video-card:hover {
    transform: scale(1.02);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
    border: solid 1px var(--bg-primary);

}


.scene-info .video-thumbnail {
    min-height: 150px;
}

.video-thumbnail {
    position: relative;
    max-width: 100%;
    padding-top: 100%;
    background: #e0e0e0;
    overflow: hidden;
    transition: all 0.2s ease;
    height: 100%;
    max-height: 100%;

}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    padding: 60px 20px 20px;
    color: white;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-icon {
    width: 0;
    height: 0;
    border-left: 18px solid #000;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 4px;
}

.video-title {
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
}

.video-info {
    padding: 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.author-name {
    color: #5f6368;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.video-meta {
    display: flex;
    gap: 1rem;
    color: #5f6368;
    font-size: 0.875rem;
    margin-top: auto;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-btn {
        width: 100%;
    }

    .video-controls {
        bottom: 80px;
        right: 20px;
    }
}

.video-card {
    background: white;
    overflow: hidden;
    height: 100%;
}


.video-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    overflow: hidden;
    min-height: 240px;

}

.video-thumbnail video {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 2px) !important;
    max-width: 100%;
    max-height: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
    margin-left: 1px;

}


.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.play-button:hover {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button i {
    color: #000;
    font-size: 28px;
    margin-left: 5px;
}

.quality-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--gold-classic);
    ;
    padding: 5px 12px;
    font-weight: bold;
    font-size: 12px;
}




.model-name {
    font-size: 1.4rem;
    margin-bottom: 0.1rem;
    font-weight: 500;
    color: var(--penthouse-black);
}

.video-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #718096;
    font-size: 0.875rem;
    margin-top: 0.75rem;
}

.video-meta i {
    margin-right: 0.25rem;
}

.video-description {
    color: #4a5568;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* video*/



/**
 * VideoSection Styles
 * Encapsulated styles to avoid conflicts
 */

/* Video Section Container */
.video-hero-section {
    min-height: cal(100vh - 97px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    overflow: hidden;
}

/* Video Container - Initial State (1:1 aspect ratio) */
.video-hero-container {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto 30px;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

/* Video Container - Expanded State */
.video-hero-container.visible {
    width: 100%;
    height: 450px;
    max-width: 100%;
}

/* Video Wrapper with Rounded Borders */
.video-hero-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: border-radius 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-hero-container.visible .video-hero-wrapper {}

.video-hero-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content - Initial State (hidden) */
.video-hero-content {
    text-align: center;
    opacity: 1;
    transition: all 0.8s ease 0.4s;
}

/* Content - Visible State */
.video-hero-content.visible {
    opacity: 1;
    transform: translateY(0);
}


/* Responsive */
@media (max-width: 768px) {
    .video-hero-container {
        width: 300px;
        height: 300px;
    }

    .video-hero-container.visible {
        height: 400px;
    }

    .video-hero-title {
        font-size: 2rem;
    }

    .video-hero-description {
        font-size: 1rem;
        padding: 0 20px;
    }
}


/* ==========================================================================
   LANGUAGE SELECTOR - Override Bootstrap/Popper positioning
   ========================================================================== */

.language-selector .dropdown-menu {
    position: absolute !important;
    left: auto !important;
    right: 0 !important;
    top: 100% !important;
    transform: translate(0, 0) !important;
    inset: auto !important;
    margin: 0 !important;
    margin-top: 0.125rem !important;
}

/* Ensure language selector is never affected by DropdownAligner */
.language-selector .dropdown-menu[style] {
    position: absolute !important;
    left: auto !important;
    right: 0 !important;
    top: 100% !important;
    transform: translate(0, 0) !important;
    inset: auto !important;
}




/* ==========================================================================
           CSS VARIABLES
           ========================================================================== */
:root {
    --bento-bg-primary: #0a0a0f;
    --bento-bg-secondary: #12121a;
    --bento-bg-card: #1a1a24;
    --bento-border: rgba(255, 255, 255, 0.08);
    --bento-border-hover: rgba(232, 181, 70, 0.3);
    --gold-light: rgb(232, 181, 70);
    --gold-classic: rgb(232, 181, 70);
    --gold-dark: #B59410;
    --gold-glow: rgba(232, 181, 70, 0.15);
    --font-primary: 'Roboto', sans-serif;
    --font-display: 'Playfair Display', serif;
    --bento-gap: 12px;
    --bento-radius: 16px;
    --bento-radius-sm: 12px;
    --bento-shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.6);
}


.bento-hero {
    max-width: 100%;
    margin: 0 auto;
    padding: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
}

/* Container principal: 3 columnas en fila */
.bento-hero__row {
    display: flex;
    gap: var(--bento-gap);
    height: 600px;
}

/* ==========================================================================
           COLUMNAS
           ========================================================================== */
.bento-col {
    display: flex;
    flex-direction: column;
    gap: var(--bento-gap);
}

/* Columna izquierda: ancho fijo */
.bento-col--left {
    width: 220px;
    flex-shrink: 0;
}

/* Columna central: flexible */
.bento-col--center {
    flex: 1;
    min-width: 0;
}

/* Columna derecha: ancho fijo */
.bento-col--right {
    width: 220px;
    flex-shrink: 0;
}

/* ==========================================================================
           CARD BASE
           ========================================================================== */
.bento-card {
    border: 1px solid var(--bento-border);
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--penthouse-black);
}

.bento-card:hover {
    border-color: var(--bento-border-hover);
}

/* ==========================================================================
           COLUMNA IZQUIERDA - 2 BOXES
           ========================================================================== */

/* Box 1: Brand (40% de la altura) */
.bento-card--brand {
    flex: 0 0 45%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
}

.bento-card--brand__logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
}

.bento-card--brand__logo span {
    display: block;
}

.bento-card--brand__dots {
    display: flex;
    gap: 8px;
}

.bento-card--brand__dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.bento-card--brand__dot:hover {
    transform: scale(1.15);
}

.bento-card--brand__dot--gold {
    background: var(--gold-classic);
}

.bento-card--brand__dot--gold-dark {
    background: var(--gold-dark);
}

.bento-card--brand__dot--cream {
    background: #F5F0E8;
}

.bento-card--brand__dot--dark {
    background: #2a2a3a;
}

/* Box 2: Description (60% de la altura) */
.bento-card--description {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bento-card--description__text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
}

.bento-card--description__image {
    width: 100%;
    height: 120px;
    border-radius: var(--bento-radius-sm);
    overflow: hidden;
    position: relative;
}

.bento-card--description__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bento-card--description:hover .bento-card--description__image img {
    transform: scale(1.05);
}

/* ==========================================================================
           COLUMNA CENTRAL - 2 BOXES (Slider arriba, Player abajo)
           ========================================================================== */

/* Box 1: Slider (ocupa la mayor parte) */
.bento-card--slider {
    flex: 1;
    border: none;
    background: transparent;
}

.bento-card--slider:hover {
    box-shadow: none;
}

.bento-slider {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: white;
    box-shadow: 0 0px 4px rgba(0, 0, 0, 0.1);
    border: solid 1px rgba(0, 0, 0, .1);
}

.bento-slider .swiper {
    width: 100%;
    height: 100%;
}

.bento-slider__slide {
    position: relative;
    overflow: hidden;
}

.bento-slider__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.bento-slider__slide:hover .bento-slider__image {}

.bento-slider__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.4) 40%,
            rgba(0, 0, 0, 0.1) 70%,
            transparent 100%);
    pointer-events: none;
}

.bento-slider__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    z-index: 2;
}

.bento-slider__title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 8px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.bento-slider__title span {
    display: block;
    color: var(--gold-classic);
}

.bento-slider__subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.bento-slider__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold-classic);
    color: #000;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 12px 28px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.bento-slider__btn:hover {
    background: #fff;
    color: #000;
    box-shadow: 0 10px 30px rgba(232, 181, 70, 0.3);
}

/* Swiper Navigation */
.bento-slider .swiper-button-next,
.bento-slider .swiper-button-prev {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.bento-slider .swiper-button-next:hover,
.bento-slider .swiper-button-prev:hover {
    background: var(--gold-classic);
}

.bento-slider .swiper-button-next::after,
.bento-slider .swiper-button-prev::after {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.bento-slider .swiper-button-next:hover::after,
.bento-slider .swiper-button-prev:hover::after {
    color: #000;
}

/* Swiper Pagination */
.bento-slider .swiper-pagination {
    bottom: 16px !important;
}

.bento-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    transition: all 0.3s ease;
}

.bento-slider .swiper-pagination-bullet-active {
    background: var(--gold-classic);
    width: 28px;
    border-radius: 5px;
}

/* Box 2: Fila con Preview + Player */
.bento-center-bottom {
    flex: 0 0 100px;
    display: flex;
    gap: var(--bento-gap);
}

/* Preview (card pequeña a la izquierda) */
.bento-card--preview {
    flex: 0 0 100px;
    padding: 8px;
}

.bento-card--preview__inner {
    width: 100%;
    height: 100%;
    border-radius: var(--bento-radius-sm);
    overflow: hidden;
    position: relative;
}

.bento-card--preview__inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bento-card--preview__badge {
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-classic);
    color: #000;
    font-size: 0.55rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}


/* ==========================================================================
           COLUMNA DERECHA - 2 BOXES
           ========================================================================== */

/* Box 1: Featured (70% de la altura) */
.bento-card--featured {
    flex: 1;
    padding: 0;
}

.bento-card--featured__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bento-card--featured:hover .bento-card--featured__image {
    transform: scale(1.05);
}

.bento-card--featured__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
    pointer-events: none;
}

.bento-card--featured__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
}

.bento-card--featured__name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.bento-card--featured__role {
    font-size: 0.8rem;
    color: var(--gold-classic);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Box 2: Stats (30% de la altura) */
.bento-card--stats {
    flex: 0 0 200px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.bento-card--stats__number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-classic) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 2px;
}

.bento-card--stats__label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
}

.bento-card--stats__btn {
    width: 100%;
    background: var(--gold-classic);
    color: #000;
    font-weight: 600;
    font-size: 0.75rem;
    padding: 10px 16px;
    border: none;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    text-align: center;
}

.bento-card--stats__btn:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: var(--gold-glow);
}

/* ==========================================================================
           RESPONSIVE
           ========================================================================== */
@media (max-width: 1024px) {
    .bento-hero__row {
        height: 550px;
    }

    .bento-col--left,
    .bento-col--right {
        width: 200px;
    }

    .bento-slider__title {
        font-size: 2.5rem;
    }

    .bento-card--player__progress {
        display: none;
    }
}

@media (max-width: 900px) {
    .bento-hero__row {
        flex-direction: column;
        height: auto;
    }

    .bento-col--left,
    .bento-col--right {
        width: 100%;
        flex-direction: row;
    }

    .bento-col--left {
        height: 200px;
    }

    .bento-col--center {
        height: 450px;
    }

    .bento-col--right {
        height: 200px;
    }

    .bento-card--brand,
    .bento-card--description {
        flex: 1;
    }

    .bento-card--featured {
        flex: 1;
    }

    .bento-card--stats {
        flex: 0 0 200px;
    }

    .bento-card--player__progress {
        display: flex;
    }
}

@media (max-width: 600px) {

    .bento-col--left,
    .bento-col--right {
        flex-direction: column;
        height: auto;
    }

    .bento-card--brand {
        flex: 0 0 150px;
    }

    .bento-card--description {
        flex: 0 0 200px;
    }

    .bento-col--center {
        height: 400px;
    }

    .bento-center-bottom {
        flex-direction: column;
        flex: 0 0 180px;
    }

    .bento-card--preview {
        flex: 0 0 80px;
    }

    .bento-card--player {
        flex: 1;
    }

    .bento-card--featured {
        flex: 0 0 250px;
    }

    .bento-card--stats {
        flex: 0 0 150px;
    }

    .bento-slider__title {
        font-size: 2rem;
    }

    .bento-slider__content {
        padding: 24px;
    }

    .bento-slider .swiper-button-next,
    .bento-slider .swiper-button-prev {
        display: none;
    }
}


.bento-card--brand {
    animation-delay: 0.1s;
}

.bento-card--description {
    animation-delay: 0.15s;
}

.bento-card--slider {
    animation-delay: 0.1s;
}

.bento-card--preview {
    animation-delay: 0.2s;
}

.bento-card--player {
    animation-delay: 0.2s;
}

.bento-card--featured {
    animation-delay: 0.15s;
}

.bento-card--stats {
    animation-delay: 0.25s;
}


/* ==========================================================================
   BENTO DESCRIPTION SLIDER
   ========================================================================== */
.bento-card--description {
    padding: 0;
    overflow: hidden;
    background: white;
    box-shadow: 0 0px 4px rgba(0, 0, 0, 0.1);
    border: solid 1px rgba(0, 0, 0, .1);
}

.bento-description-swiper {
    width: 100%;
    height: 100%;
}

.bento-description-swiper .swiper-wrapper {
    height: 100%;
}

.bento-description-swiper .swiper-slide {
    position: relative;
    overflow: hidden;
}

.bento-description-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.bento-card--description:hover .swiper-slide-active img {
    transform: scale(1.05);
}

.bento-card--description__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    pointer-events: none;
}

.bento-card--description__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    z-index: 2;
}

.bento-card--description__content .bento-card--description__text {
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* ==========================================================================
   BENTO FEATURED SLIDER
   ========================================================================== */
.bento-card--featured {
    padding: 0;
    overflow: hidden;
    background: white;
    box-shadow: 0 0px 4px rgba(0, 0, 0, 0.1);
    border: solid 1px rgba(0, 0, 0, .1);
}

.bento-featured-swiper {
    width: 100%;
    height: 100%;
}

.bento-featured-swiper .swiper-wrapper {
    height: 100%;
}

.bento-featured-swiper .swiper-slide {
    position: relative;
    overflow: hidden;
}

.bento-featured-swiper .swiper-slide .bento-card--featured__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.bento-card--featured:hover .swiper-slide-active .bento-card--featured__image {
    transform: scale(1.05);
}

/* ==========================================================================
   CATEGORIES SLIDER - VERTICAL MAGAZINE FORMAT
   ========================================================================== */

.categories-swiper {
    width: 100%;
    overflow: hidden;
}

/* Category Card - Vertical Format */
.category-card--vertical {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    text-decoration: none;
}

.category-card--vertical .category-card__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card--vertical:hover .category-card__image {
    transform: scale(1.05);
}

.category-card--vertical .category-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
    pointer-events: none;
}



.category-card--vertical .category-card__name {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.category-card--vertical .category-card__count {
    font-size: 0.9rem;
    color: var(--gold-classic);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .category-card--vertical .category-card__name {
        font-size: 1rem;
    }

    .category-card--vertical .category-card__content {
        padding: 15px;
    }

    .category-card--vertical .category-card__count {
        font-size: 0.7rem;
    }
}


/* ==========================================================================
   SCENES SLIDER - VERTICAL FORMAT WITH VIDEO HOVER
   ========================================================================== */

.scenes-swiper {
    width: 100%;
    overflow: hidden;
}

/* Scene Card - Vertical Format */
.scene-card {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    text-decoration: none;
}

.scene-card__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.scene-card__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.scene-card:hover .scene-card__video {
    opacity: 1;
}

.scene-card:hover .scene-card__image {
    opacity: 0;
}

.scene-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
    pointer-events: none;
    z-index: 3;
}

.scene-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--gold-classic);
    padding: 4px 10px;
    font-weight: 700;
    font-size: 0.65rem;
    letter-spacing: 0.5px;
    z-index: 4;
}

.scene-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    z-index: 4;
}

.scene-card__name {
    font-family: var(--font-display);
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.scene-card__title {
    color: var(--gold-classic);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    .scene-card__name {
        font-size: 1rem;
    }

    .scene-card__content {
        padding: 15px;
    }

    .scene-card__title {
        font-size: 0.7rem;
    }

    .scene-card__badge {
        font-size: 0.55rem;
        padding: 3px 8px;
    }
}

/* ==========================================================================
   SCENE DETAIL PAGE STYLES
   Layout: Bootstrap container (not fluid), 8+4 columns
   ========================================================================== */



/* ==========================================================================
   2. VIDEO PLAYER
   ========================================================================== */

.scene-player {
    position: relative;

    margin-bottom: 0;
    background: white;
    box-shadow: 0 0px 4px rgba(0, 0, 0, 0.1);
    border: solid 1px rgba(0, 0, 0, .1);
    transition: all 0.2s ease;

    cursor: pointer;
}

.scene-player__wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: white;
    overflow: hidden;
}

.scene-player__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Play Button Center */
.scene-player__play-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
}

.scene-player__play-center i {
    font-size: 2rem;
    color: #000;
    margin-left: 5px;
}

.scene-player__play-center:hover {
    background: #fff;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Video Controls */
.scene-player__controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    z-index: 6;
}

.scene-player__btn {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    padding: 6px;
    transition: color 0.3s ease;
}

.scene-player__btn:hover {
    color: var(--gold-classic);
}

.scene-player__progress {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    border-radius: 2px;
    overflow: hidden;
}

.scene-player__progress-bar {
    height: 100%;
    background: #e74c3c;
    width: 0%;
    transition: width 0.1s linear;
}

.scene-player__time {
    color: #fff;
    font-size: 0.75rem;
    font-weight: 500;
}

.scene-player__speed {
    color: #fff;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 2px 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

/* 4K Badge */
.scene-player__badge {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 12px;
    z-index: 5;
}

.scene-player__badge-icon {
    background: var(--gold-classic);
    color: #000;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 4px 8px;
}

.scene-player__badge-text {
    display: flex;
    flex-direction: column;
}

.scene-player__badge-text small {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.6rem;
    line-height: 1.2;
}

/* Members Overlay */
.scene-player__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
}

.scene-player__overlay.active {
    opacity: 1;
    visibility: visible;
}

.scene-player__overlay-content {
    text-align: center;
    padding: 40px;
    max-width: 480px;
    position: relative;
}

.scene-player__overlay-close {
    position: absolute;
    top: 0;
    right: 0;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.scene-player__overlay-close:hover {
    color: var(--gold-classic);
}

.scene-player__overlay-icon {
    font-size: 2rem;
    color: var(--gold-classic);
    margin-bottom: 16px;
}

.scene-player__overlay-title {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.scene-player__overlay-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.scene-player__overlay-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    text-align: left;
}

.scene-player__overlay-features li {
    color: #fff;
    font-size: 0.85rem;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.scene-player__overlay-features li i {
    color: var(--gold-classic);
}

.scene-player__overlay-btn {
    display: inline-block;
    background: var(--gold-classic);
    color: #000;
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 48px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.scene-player__overlay-btn:hover {
    background: #fff;
    color: #000;
}

.scene-player__overlay-dismiss {
    display: block;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    margin: 12px auto 0;
    cursor: pointer;
}

.scene-player__overlay-dismiss:hover {
    color: #fff;
}

.scene-player__overlay-privacy {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    margin-top: 12px;
}

.scene-player__overlay-privacy i {
    margin-right: 6px;
}

/* ==========================================================================
   3. SCENE INFO
   ========================================================================== */

.scene-info {
    padding-top: 20px;
    padding-bottom: 20px;
    background: #fff;
}

.scene-info__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    gap: 16px;
}

.scene-info__title {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--penthouse-black);
    margin: 0;
    line-height: 1.3;
}

.scene-info__actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.scene-info__action {
    background: transparent;
    border: none;
    color: var(--penthouse-black);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.scene-info__action:hover {
    color: var(--gold-classic);
}

.scene-info__action span {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Description */
.scene-info__description {
    margin-bottom: 16px;
    line-height: 1.7rem;
}

/* Tags */
.scene-info__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    margin-bottom: 24px;
}

.scene-info__tags-label {
    font-weight: 600;
    color: var(--penthouse-black);
    font-size: 0.85rem;
}

.scene-info__tag {
    display: inline-block;
    color: var(--penthouse-black);
    font-size: 0.8rem;
    text-decoration: none;
    transition: color 0.3s ease;
    padding-left: 5px;
    padding-right: 5px;
    transition: all 0.3s ease;
}

.scene-info__tag:hover {
    color: var(--penthouse-black);
    background-color: var(--gold-classic);
    transition: all 0.3s ease;

}

.scene-info__tag::after {
    content: ' -';
    color: #999;
}

.scene-info__tag:last-child::after {
    content: '';
}

/* Featured Section */
.scene-info__featured {
    margin-top: 24px;
}

.scene-info__section-title {
    font-weight: 700;
    color: var(--penthouse-black);
    margin-bottom: 16px;
}

/* Featured Card */
.scene-featured-card {
    display: block;
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    text-decoration: none;
    background: #f0f0f0;
}

.scene-featured-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.scene-featured-card:hover .scene-featured-card__image {
    transform: scale(1.05);
}

.scene-featured-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
    pointer-events: none;
}

.scene-featured-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
}

.scene-featured-card__name {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 2px 0;
    font-family: var(--font-display);
}

.scene-featured-card__role {
    font-size: 0.8rem;
    color: var(--gold-classic);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   4. SIDEBAR
   ========================================================================== */

.scene-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.scene-sidebar__box {
    background: white;
    overflow: hidden;
    box-shadow: 0 0px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;

    cursor: pointer;
    border: solid 1px rgba(0, 0, 0, .1);
    padding: 16px;
}

.scene-sidebar__box--dark {
    background: var(--penthouse-black);
}

.scene-sidebar__box--dark .scene-sidebar__title {
    color: #fff;
}

.scene-sidebar__box--dark .scene-sidebar__text {
    color: rgba(255, 255, 255, 0.7);
}

.scene-sidebar__box--dark .scene-sidebar__list li {
    color: rgba(255, 255, 255, 0.9);
}

.scene-sidebar__box--no-padding {
    padding: 0;
}

.scene-sidebar__title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--penthouse-black);
    margin-bottom: 12px;
}

.scene-sidebar__text {
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 12px;
}

.scene-sidebar__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.scene-sidebar__list li {
    font-size: 0.75rem;
    color: #4a5568;
    padding: 4px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.scene-sidebar__list li i {
    font-size: 0.4rem;
    margin-top: 5px;
    color: var(--gold-classic);
}

/* Download Item */
.scene-sidebar__download {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: white;
    text-decoration: none;
    color: var(--penthouse-black);
    transition: all 0.3s ease;
}

.scene-sidebar__download:hover {
    background: #e5e7eb;
}

.scene-sidebar__download-icon {
    width: 36px;
    height: 36px;
    background: var(--penthouse-black);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.scene-sidebar__download-label {
    font-size: 0.8rem;
    font-weight: 600;
    flex: 1;
}

.scene-sidebar__download-text {
    font-size: 0.7rem;
    color: #6b7280;
}

/* Related Card */
.scene-related-card {
    display: block;
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    text-decoration: none;
    background: #f0f0f0;
}

.scene-related-card--large {
    aspect-ratio: 3/4;
}

.scene-related-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.scene-related-card:hover .scene-related-card__image {
    transform: scale(1.05);
}

.scene-related-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    pointer-events: none;
}

.scene-related-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
}

.scene-related-card__models {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 1);
    margin-bottom: 2px;
}

.scene-related-card__title {
    font-size: 0.8rem;
    color: var(--gold-classic);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==========================================================================
   5. RESPONSIVE
   ========================================================================== */

@media (max-width: 991.98px) {
    .scene-sidebar {
        margin-top: 24px;
    }

    .scene-sidebar__box--no-padding .scene-related-card--large {
        aspect-ratio: 16/9;
    }
}

@media (max-width: 767.98px) {
    .scene-info {
        padding: 16px;
    }

    .scene-info__title {
        font-size: 1.1rem;
    }

    .scene-info__header {
        flex-direction: column;
    }

    .scene-player__badge {
        top: 8px;
        right: 8px;
        padding: 6px 8px;
    }

    .scene-player__badge-icon {
        font-size: 0.75rem;
        padding: 3px 6px;
    }

    .scene-player__badge-text small {
        font-size: 0.5rem;
    }

    .scene-player__play-center {
        width: 60px;
        height: 60px;
    }

    .scene-player__play-center i {
        font-size: 1.5rem;
    }

    .scene-player__controls {
        padding: 8px 12px;
        gap: 8px;
    }

    .scene-player__speed {
        display: none;
    }

    .scene-player__overlay-content {
        padding: 24px;
    }

    .scene-player__overlay-title {
        font-size: 1.1rem;
    }

    .scene-player__overlay-features li {
        font-size: 0.8rem;
    }
}

@media (max-width: 575.98px) {
    .scene-info__actions {
        width: 100%;
        justify-content: flex-start;
    }

    .scene-featured-card {
        aspect-ratio: 1/1;
    }
}


/* ==========================================================================
   UNIFIED SWIPER NAVIGATION STYLES
   Applies to: related-swiper, scenes-swiper, categories-swiper
   ========================================================================== */

/* Base Navigation Buttons - Unified Style */
.swiper-button-next,
.swiper-button-prev {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    transition: all 0.3s ease;
    margin-top: 0;
    top: 50%;
    transform: translateY(-50%);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--gold-classic);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.swiper-button-next:hover::after,
.swiper-button-prev:hover::after {
    color: #000;
}

/* Related Swiper Specific */
.related-swiper {
    position: relative;
    padding-bottom: 0;
}

.related-swiper .swiper-button-next,
.related-swiper .swiper-button-prev {
    width: 36px;
    height: 36px;
}

.related-swiper .swiper-button-next::after,
.related-swiper .swiper-button-prev::after {
    font-size: 0.8rem;
}

.related-swiper .swiper-button-next {
    right: 10px;
}

.related-swiper .swiper-button-prev {
    left: 10px;
}

/* Scenes Swiper */
.scenes-swiper .swiper-button-next,
.scenes-swiper .swiper-button-prev {
    top: 50%;
}

/* Categories Swiper */
.categories-swiper .swiper-button-next,
.categories-swiper .swiper-button-prev {
    top: 50%;
}

/* Dark background variant (for sidebar) */
.scene-sidebar__box--slider .swiper-button-next,
.scene-sidebar__box--slider .swiper-button-prev {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
}

.scene-sidebar__box--slider .swiper-button-next:hover,
.scene-sidebar__box--slider .swiper-button-prev:hover {
    background: var(--gold-classic);
}


/* CSS para los filtros - mismo estilo que language-selector */

.category-filters .dropdown-menu {
    position: absolute !important;
    left: 0 !important;
    right: auto !important;
    top: 100% !important;
    transform: translate(0, 0) !important;
    inset: auto !important;
    margin: 0 !important;
    margin-top: 0.125rem !important;
    min-width: 100%;
    border: 2px solid var(--penthouse-black);
    border-radius: 0;
    padding: 0;
}

.category-filters .dropdown-menu .dropdown-item {
    display: block;
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    clear: both;
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--penthouse-black);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    border-radius: 0;
    transition: all 0.3s ease;
}

.category-filters .dropdown-menu .dropdown-item:hover,
.category-filters .dropdown-menu .dropdown-item:focus {
    color: var(--penthouse-white);
    background-color: var(--penthouse-black);
}

.category-filters .dropdown .btn {
    background: transparent;
    color: var(--penthouse-black);
    border: 2px solid var(--penthouse-black);
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 16px;
    border-radius: 0;
    transition: all 0.3s ease;
}

.category-filters .dropdown .btn:hover,
.category-filters .dropdown .btn:focus {
    background-color: var(--penthouse-black);
    color: var(--penthouse-white);
    border-color: var(--penthouse-black);
}

.category-filters .dropdown .btn.show {
    background-color: var(--penthouse-black);
    color: var(--penthouse-white);
}