/* =========================================================================
   MISSING HOMEPAGE CSS (Categorias, Minitienda, Animalitos)
   ========================================================================= */

/* --- 4. COLECCIONES SWIPER --- */
.pandora-colecciones {
    padding: 6rem 2rem;
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
}

.categorias-swiper {
    padding-bottom: 4rem !important;
    overflow: hidden;
}

.pandora-col-card {
    position: relative;
    display: block;
    text-decoration: none;
    height: 480px;
    border-radius: 4px;
    overflow: hidden;
    background: #111;
    transition: transform 0.5s ease;
}

.pandora-col-card__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(0.85);
}

.pandora-col-card:hover .pandora-col-card__bg {
    transform: scale(1.06);
    filter: brightness(0.7);
}

.pandora-col-card__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    z-index: 1;
}

.pandora-col-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pandora-col-card__name {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 500;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

.pandora-col-card__cta {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.35s ease, transform 0.35s ease, color 0.35s ease;
}

.pandora-col-card:hover .pandora-col-card__cta {
    opacity: 1;
    transform: translateY(0);
    color: #fff;
}

.swiper-button-prev-cat,
.swiper-button-next-cat {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #222;
    z-index: 10;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: background 0.3s;
}

.swiper-button-prev-cat:hover,
.swiper-button-next-cat:hover {
    background: #222;
    color: #fff;
}

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

.swiper-button-next-cat {
    right: 10px;
}

@media (max-width: 768px) {
    .pandora-col-card {
        height: 380px;
    }

    .pandora-col-card__name {
        font-size: 1.5rem;
    }
}

/* --- MINITIENDA NOVEDADES --- */
.pandora-minitienda-wrapper {
    margin-top: 6rem;
    text-align: center;
}

.pandora-minitienda-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    letter-spacing: 4px;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.pandora-minitienda-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    list-style: none;
    margin-bottom: 3rem;
    padding: 0;
}

.pandora-minitienda-tabs li {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--text-secondary);
    cursor: pointer;
    padding-bottom: 4px;
    position: relative;
    transition: color 0.3s ease;
}

.pandora-minitienda-tabs li.active,
.pandora-minitienda-tabs li:hover {
    color: var(--text-primary);
}

.pandora-minitienda-tabs li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--text-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.pandora-minitienda-tabs li.active::after {
    transform: scaleX(1);
}

.pandora-minitienda-slider-container {
    position: relative;
    padding: 0 2rem;
    margin-bottom: 3rem;
}

.minitienda-swiper {
    padding-bottom: 3rem !important;
}

.sova-card {
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.sova-card__image {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 4px;
    background: #f9f9f9;
    margin-bottom: 1rem;
}

.sova-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.sova-card:hover .sova-card__image img {
    transform: scale(1.05);
}

.sova-card__badges {
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sova-badge {
    background: #222;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    padding: 4px 8px;
    letter-spacing: 1px;
    border-radius: 2px;
}

.sova-badge--new {
    background: #000;
    color: #fff;
    font-weight: 700;
}

.sova-badge--sale {
    background: #e11d48;
}

.pandora-fav-wrapper {
    top: 10px;
    right: 10px;
    transition: all 0.3s ease;
}

.pandora-minicart-wrapper {
    bottom: 10px;
    right: 10px;
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
}

.sova-card .pandora-minicart-wrapper,
.pa-item .pandora-minicart-wrapper {
    transform: none !important;
    opacity: 1 !important;
}

.pandora-minicart-btn {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #222;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}

.pandora-minicart-btn:hover {
    background: #222;
    color: #fff;
    transform: scale(1.1);
}

.sova-card__info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.sova-card__cat {
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    color: #888;
    letter-spacing: 1px;
}

.sova-card__title h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #222;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sova-card__link-overlay {
    text-decoration: none;
}

.sova-card__price {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: #c29b62;
    font-weight: 500;
}

.minitienda-next {
    position: absolute;
    right: 0;
    top: 40%;
    width: 44px;
    height: 44px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.minitienda-next:hover {
    background: #222;
    color: #fff;
}

.pandora-minitienda-cta {
    margin-top: 1rem;
}

.sova-btn-ghost {
    display: inline-block;
    padding: 1rem 3rem;
    border: 1px solid #222;
    color: #222;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sova-btn-ghost:hover {
    background: #222;
    color: #fff;
}

/* --- ZARCILLOS ANIMALITOS --- */
.pandora-animalitos {
    padding: 5rem 2rem 6rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.pandora-animalitos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    grid-auto-rows: 300px;
}

.pa-item {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    background: #f4f4f4;
}

.pa-item[data-slot="0"] {
    grid-column: span 2;
    grid-row: span 2;
}

.pa-item[data-slot="3"] {
    grid-column: span 2;
}

.pa-image-layer {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.pa-item:hover .pa-image-layer {
    transform: scale(1.03);
}

@media (max-width: 900px) {
    .pandora-animalitos-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
    }

    .pa-item[data-slot="0"] {
        grid-column: span 2;
        grid-row: span 2;
    }

    .pa-item[data-slot="3"] {
        grid-column: span 1;
    }

    .pa-item[data-slot="5"] {
        grid-column: span 2;
    }

    .pa-item[data-slot="7"] {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .pandora-animalitos-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
        gap: 10px;
    }

    .pa-item[data-slot="0"] {
        grid-column: span 2;
        grid-row: span 2;
    }

    .pa-item[data-slot="3"] {
        grid-column: span 2;
    }

    .pa-item[data-slot="5"] {
        grid-column: span 2;
    }

    .pa-item[data-slot="7"] {
        grid-column: span 2;
    }
}

/* --- HERO NOVEDADES CONTRAST --- */
.pandora-carousel__fixed-labels .author {
    color: #ffffff !important;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.6) !important;
    font-weight: 700 !important;
    letter-spacing: 4px !important;
    mix-blend-mode: normal !important;
}
/* =========================================================================
   REGISTRATION PAGE STYLES
   ========================================================================= */

.registration-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1rem;
    background: #fafaf9; /* A very light warm gray */
}

.registration-container {
    width: 100%;
    max-width: 480px;
}

.registration-card {
    background: #ffffff;
    padding: 3rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.03);
}

.registration-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.registration-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.registration-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.registration-form .form-group {
    margin-bottom: 1.5rem;
}

.registration-form label {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.registration-form input {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #fdfdfd;
}

.registration-form input:focus {
    outline: none;
    border-color: #c29b62; /* Theme gold-ish color */
    background: #fff;
    box-shadow: 0 0 0 3px rgba(194, 155, 98, 0.1);
}

.password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.toggle-password {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    transition: color 0.3s;
}

.toggle-password:hover {
    color: #1a1a1a;
}

.toggle-password svg {
    width: 18px;
    height: 18px;
}

.form-footer {
    margin-top: 2rem;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.btn-submit:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-submit .loader {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    margin-left: 10px;
    animation: spin 0.8s linear infinite;
    display: none;
}

.btn-submit.loading .loader {
    display: block;
}

.form-message {
    margin-top: 1rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    text-align: center;
    padding: 0.75rem;
    border-radius: 4px;
    display: none;
}

.form-message.success {
    display: block;
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbfcce;
}

.form-message.error {
    display: block;
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.registration-login-link {
    text-align: center;
    margin-top: 2rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    color: #666;
}

.registration-login-link a {
    color: #c29b62;
    text-decoration: none;
    font-weight: 500;
    margin-left: 4px;
}

.registration-login-link a:hover {
    text-decoration: underline;
}

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

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

.animate-up {
    animation: animateUp 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (max-width: 480px) {
    .registration-card {
        padding: 2.5rem 1.5rem;
    }
    
    .registration-title {
        font-size: 1.8rem;
    }
}
$styles
