/* ============================================
   MOKOBARA-STYLE HOMEPAGE DESIGN SYSTEM
   ChicCuero Luxury E-commerce
   ============================================ */

/* MOKOBARA HERO SECTION */
.mokobara-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mokobara-hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.mokobara-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.mokobara-hero-slide.active {
    opacity: 1;
}

.mokobara-hero-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 8s ease-out;
}

.mokobara-hero-slide.active .mokobara-hero-slide-image {
    transform: scale(1);
}

.mokobara-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.4) 100%);
}

.mokobara-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 40px;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.mokobara-hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: white;
    margin-bottom: 24px;
}

.mokobara-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 400;
    line-height: 1.1;
    color: white;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.mokobara-hero-subtitle {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    letter-spacing: 0.5px;
    line-height: 1.6;
}

.mokobara-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: white;
    color: #000000;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mokobara-hero-cta:hover {
    background: #000000;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.mokobara-hero-cta svg {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mokobara-hero-cta:hover svg {
    transform: translateX(5px);
}

/* Hero Navigation */
.mokobara-hero-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 12px;
}

.mokobara-hero-dot {
    width: 40px;
    height: 3px;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    border-radius: 2px;
}

.mokobara-hero-dot.active {
    background: white;
    width: 60px;
}

/* MOKOBARA COLLECTION GRID */
.mokobara-collections {
    padding: 100px 40px;
    max-width: 1800px;
    margin: 0 auto;
}

.mokobara-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.mokobara-section-eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 16px;
    display: block;
}

.mokobara-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 400;
    color: #000;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.mokobara-section-description {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.mokobara-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.mokobara-collection-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 3/4;
    background: #f5f5f5;
}

.mokobara-collection-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.mokobara-collection-card:hover .mokobara-collection-card-image {
    transform: scale(1.08);
}

.mokobara-collection-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    transition: all 0.4s ease;
}

.mokobara-collection-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 400;
    color: white;
    margin-bottom: 8px;
}

.mokobara-collection-card-count {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.mokobara-collection-card-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: white;
    color: #000;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mokobara-collection-card:hover .mokobara-collection-card-button {
    opacity: 1;
    transform: translateY(0);
}

/* MOKOBARA PRODUCT SHOWCASE */
.mokobara-product-section {
    padding: 100px 40px;
    background: #fafafa;
}

.mokobara-product-section:nth-child(even) {
    background: white;
}

.mokobara-product-container {
    max-width: 1800px;
    margin: 0 auto;
}

.mokobara-product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e0e0e0;
}

.mokobara-product-header-left {
    flex: 1;
}

.mokobara-product-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 400;
    color: #000;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.mokobara-product-subtitle {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    max-width: 500px;
}

.mokobara-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border: 1px solid #000;
    color: #000;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mokobara-view-all:hover {
    background: #000;
    color: white;
}

.mokobara-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* MOKOBARA PRODUCT CARD */
.mokobara-product-card {
    position: relative;
    background: white;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mokobara-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.mokobara-product-image-wrapper {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #f5f5f5;
}

.mokobara-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.mokobara-product-card:hover .mokobara-product-image {
    transform: scale(1.08);
}

.mokobara-product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    background: #000;
    color: white;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
    z-index: 5;
}

.mokobara-product-badge.sale {
    background: #16a34a;
}

.mokobara-product-wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mokobara-product-card:hover .mokobara-product-wishlist {
    opacity: 1;
    transform: translateY(0);
}

.mokobara-product-wishlist:hover {
    background: #000;
    color: white;
}

.mokobara-product-quick-add {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    border: none;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 5;
}

.mokobara-product-card:hover .mokobara-product-quick-add {
    transform: translateY(0);
}

.mokobara-product-info {
    padding: 16px;
}

.mokobara-product-name {
    font-size: 14px;
    font-weight: 500;
    color: #000;
    margin-bottom: 8px;
    line-height: 1.4;
}

.mokobara-product-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mokobara-product-current-price {
    font-size: 16px;
    font-weight: 600;
    color: #000;
}

.mokobara-product-original-price {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
}

/* MOKOBARA STORYTELLING SECTION */
.mokobara-storytelling {
    padding: 120px 40px;
    background: #000;
    color: white;
    text-align: center;
}

.mokobara-story-container {
    max-width: 1200px;
    margin: 0 auto;
}

.mokobara-story-eyebrow {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
}

.mokobara-story-title {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.mokobara-story-description {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto 40px;
}

.mokobara-story-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    border: 1px solid white;
    color: white;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mokobara-story-cta:hover {
    background: white;
    color: #000;
}

/* MOKOBARA FEATURES SECTION */
.mokobara-features {
    padding: 100px 40px;
    background: white;
}

.mokobara-features-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.mokobara-feature-card {
    text-align: center;
    padding: 40px 20px;
}

.mokobara-feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 24px;
    color: #000;
}

.mokobara-feature-title {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.mokobara-feature-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* MOKOBARA INSTAGRAM FEED */
.mokobara-instagram {
    padding: 100px 0;
    background: #fafafa;
}

.mokobara-instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 4px;
}

.mokobara-instagram-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
}

.mokobara-instagram-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.mokobara-instagram-item:hover .mokobara-instagram-image {
    transform: scale(1.1);
}

.mokobara-instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mokobara-instagram-item:hover .mokobara-instagram-overlay {
    opacity: 1;
}

/* MOKOBARA NEWSLETTER */
.mokobara-newsletter {
    padding: 120px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.mokobara-newsletter-container {
    max-width: 700px;
    margin: 0 auto;
}

.mokobara-newsletter-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 16px;
}

.mokobara-newsletter-description {
    font-size: 16px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.mokobara-newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.mokobara-newsletter-input {
    flex: 1;
    padding: 16px 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 14px;
    border-radius: 0;
}

.mokobara-newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.mokobara-newsletter-input:focus {
    outline: none;
    border-color: white;
    background: rgba(255, 255, 255, 0.2);
}

.mokobara-newsletter-button {
    padding: 16px 32px;
    background: white;
    color: #667eea;
    border: none;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mokobara-newsletter-button:hover {
    background: #000;
    color: white;
}

/* ============================================
   PARALLAX SECTIONS
   ============================================ */

/* ---- Category Parallax Banner (between product sections) ---- */
.parallax-cat-banner {
    position: relative;
    height: 55vh;
    min-height: 400px;
    max-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-cat-banner-bg {
    position: absolute;
    top: -30%;
    left: 0;
    width: 100%;
    height: 160%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    will-change: transform;
    transform: translateZ(0);
}

.parallax-cat-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 1;
}

.parallax-cat-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 700px;
    padding: 0 40px;
}

.parallax-cat-banner-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 12px;
    color: white;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.parallax-cat-banner-desc {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
    letter-spacing: 0.5px;
}

.parallax-cat-banner-cta {
    display: inline-block;
    padding: 14px 36px;
    border: 1px solid white;
    color: white;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.parallax-cat-banner-cta:hover {
    background: white;
    color: #000;
}

/* Category parallax responsive */
@media (max-width: 1024px) {
    .parallax-cat-banner {
        height: 50vh;
        min-height: 350px;
    }

    .parallax-cat-banner-title {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .parallax-cat-banner {
        height: 45vh;
        min-height: 300px;
    }

    .parallax-cat-banner-title {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .parallax-cat-banner-desc {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .parallax-cat-banner-cta {
        padding: 12px 28px;
        font-size: 10px;
    }

    .parallax-cat-banner-content {
        padding: 0 24px;
    }
}

@media (max-width: 480px) {
    .parallax-cat-banner {
        height: 40vh;
        min-height: 260px;
    }

    .parallax-cat-banner-title {
        font-size: 22px;
    }
}

/* Hero Parallax - the bg already has position absolute, add will-change */
.wix-hero[data-parallax] {
    overflow: hidden;
}

.wix-hero-bg[data-parallax-bg] {
    will-change: transform;
    transform: translateZ(0);
}

/* Parallax Divider Section - full-width immersive break */
.parallax-divider {
    position: relative;
    height: 55vh;
    min-height: 380px;
    max-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-divider-bg {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    will-change: transform;
    transform: translateZ(0);
}

.parallax-divider-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.35) 50%,
        rgba(0, 0, 0, 0.55) 100%
    );
    z-index: 1;
}

.parallax-divider-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 40px;
}

.parallax-divider-eyebrow {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.parallax-divider-title {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    color: white;
}

.parallax-divider-description {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    max-width: 650px;
    margin: 0 auto 36px;
}

.parallax-divider-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    border: 1px solid white;
    color: white;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.parallax-divider-cta:hover {
    background: white;
    color: #000;
}

/* Newsletter Section Base */
.newsletter-section {
    padding: 60px 40px;
    text-align: center;
    background: #000;
}

.newsletter-container {
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-content {
    color: white;
}

.newsletter-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 16px;
    color: white;
}

.newsletter-subtitle {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 36px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto 20px;
}

.newsletter-input {
    flex: 1;
    padding: 16px 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    outline: none;
    border-color: white;
    background: rgba(255, 255, 255, 0.2);
}

.newsletter-btn {
    padding: 16px 32px;
    background: white;
    color: #000;
    border: none;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background 0.3s ease;
}

.newsletter-btn:hover {
    background: #e5e5e5;
}

.newsletter-privacy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* Newsletter Parallax Background */
.newsletter-section[data-parallax] {
    position: relative;
    overflow: hidden;
}

.newsletter-parallax-bg {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    will-change: transform;
    transform: translateZ(0);
}

.newsletter-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.newsletter-section[data-parallax] .newsletter-container {
    position: relative;
    z-index: 2;
}

.newsletter-section[data-parallax] .newsletter-content {
    color: white;
}

.newsletter-section[data-parallax] .newsletter-title {
    color: white;
}

.newsletter-section[data-parallax] .newsletter-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.newsletter-section[data-parallax] .newsletter-input {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.newsletter-section[data-parallax] .newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-section[data-parallax] .newsletter-input:focus {
    background: rgba(255, 255, 255, 0.25);
    border-color: white;
}

.newsletter-section[data-parallax] .newsletter-privacy {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-section[data-parallax] .newsletter-btn {
    background: white;
    color: #000;
}

.newsletter-section[data-parallax] .newsletter-btn:hover {
    background: #f0f0f0;
}

/* Parallax responsive */
@media (max-width: 1024px) {
    .parallax-divider {
        height: 45vh;
        min-height: 320px;
    }

    .parallax-divider-title {
        font-size: 44px;
    }
}

@media (max-width: 768px) {
    .parallax-divider {
        height: 40vh;
        min-height: 280px;
    }

    .parallax-divider-title {
        font-size: 36px;
    }

    .parallax-divider-description {
        font-size: 15px;
    }

    .parallax-divider-cta {
        padding: 14px 30px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .parallax-divider {
        height: 35vh;
        min-height: 240px;
    }

    .parallax-divider-title {
        font-size: 28px;
    }

    .parallax-divider-content {
        padding: 0 20px;
    }
}

/* RESPONSIVE DESIGN */

/* ---- Global homepage section gap fix ---- */
.main-content > section,
.main-content > div {
    margin: 0;
}

.main-content > section + section,
.main-content > div + section,
.main-content > section + div {
    margin: 0;
}

@media (max-width: 1024px) {
    .mokobara-hero-title {
        font-size: 56px;
    }
    
    .mokobara-grid-3col {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mokobara-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .mokobara-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mokobara-hero-title {
        font-size: 42px;
    }
    
    .mokobara-section-title {
        font-size: 36px;
    }
    
    .mokobara-product-title {
        font-size: 32px;
    }
    
    .mokobara-grid-3col {
        grid-template-columns: 1fr;
    }
    
    .mokobara-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mokobara-product-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .mokobara-instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .mokobara-newsletter-form {
        flex-direction: column;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-title {
        font-size: 32px;
    }

    .newsletter-section {
        padding: 48px 24px;
    }
}

/* ============================================
   MICRO-ANIMATION SYSTEM
   ChicCuero Homepage
   ============================================ */

/* ---- Keyframes ---- */
@keyframes animFadeUp {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes animFadeDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes animFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes animScaleIn {
    from { opacity: 0; transform: scale(0.92); }
    to   { opacity: 1; transform: scale(1); }
}

@keyframes animSlideLeft {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes animSlideRight {
    from { opacity: 0; transform: translateX(-40px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes animShimmer {
    0%   { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes animFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}

@keyframes animPulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.06); }
}

@keyframes animBadgePop {
    0%   { transform: scale(0); opacity: 0; }
    60%  { transform: scale(1.15); }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes animLineGrow {
    from { width: 0; }
    to   { width: 48px; }
}

@keyframes animRotateIn {
    from { opacity: 0; transform: rotate(-8deg) scale(0.9); }
    to   { opacity: 1; transform: rotate(0deg) scale(1); }
}

/* ---- Base animation class ---- */
.anim-fade-up,
.anim-fade-in,
.anim-scale-in,
.anim-slide-left,
.anim-slide-right,
.anim-fade-down {
    will-change: transform, opacity;
}

.anim-fade-up.is-visible    { animation: animFadeUp   0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) backwards; }
.anim-fade-in.is-visible     { animation: animFadeIn   0.6s ease backwards; }
.anim-scale-in.is-visible    { animation: animScaleIn  0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) backwards; }
.anim-slide-left.is-visible  { animation: animSlideLeft 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) backwards; }
.anim-slide-right.is-visible { animation: animSlideRight 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) backwards; }
.anim-fade-down.is-visible   { animation: animFadeDown 0.6s ease backwards; }

/* Stagger delays for grid children */
.anim-delay-1 { animation-delay: 0.05s !important; }
.anim-delay-2 { animation-delay: 0.12s !important; }
.anim-delay-3 { animation-delay: 0.19s !important; }
.anim-delay-4 { animation-delay: 0.26s !important; }
.anim-delay-5 { animation-delay: 0.33s !important; }
.anim-delay-6 { animation-delay: 0.40s !important; }
.anim-delay-7 { animation-delay: 0.47s !important; }
.anim-delay-8 { animation-delay: 0.54s !important; }

/* ---- Shimmer effect on badges ---- */
.wix-bs-badge.is-visible {
    animation: animBadgePop 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) both;
}

.wix-sale-badge {
    animation: animFloat 3s ease-in-out infinite;
}

/* ---- Section header line animation ---- */
.anim-line {
    display: block;
    height: 2px;
    background: #111;
    margin: 16px auto 0;
    width: 0;
}

.anim-line.is-visible {
    animation: animLineGrow 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
}

/* ---- Trust badge icon bounce ---- */
.trust-badge-item .trust-badge-icon svg {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.trust-badge-item:hover .trust-badge-icon svg {
    transform: translateY(-4px) scale(1.12);
}

.trust-badge-item.is-visible .trust-badge-icon {
    animation: animScaleIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

/* ============================================
   PRODUCT CARD — RICH ANIMATION SYSTEM
   ============================================ */

/* --- Entrance: 3D lift from below --- */
@keyframes cardEnter {
    from {
        opacity: 0;
        transform: translateY(36px) scale(0.94);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.wix-bs-card.anim-scale-in.is-visible {
    animation: cardEnter 0.65s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

/* --- Card container: perspective for tilt effect --- */
.wix-bs-card {
    perspective: 800px;
    transform-style: preserve-3d;
    will-change: transform, box-shadow;
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.wix-bs-card:hover {
    transform: translateY(-10px) scale(1.015);
    box-shadow: 0 24px 60px rgba(0,0,0,0.13), 0 8px 20px rgba(0,0,0,0.07);
}

/* --- Image zoom on hover (smoother + scale bigger) --- */
.wix-bs-image-area {
    overflow: hidden;
}

.wix-bs-image {
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
                filter 0.4s ease;
}

.wix-bs-card:hover .wix-bs-image {
    transform: scale(1.1);
    filter: brightness(1.04);
}

/* --- Quick View overlay on image --- */
.wix-bs-image-area::after {
    content: 'Quick View';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    background: rgba(0,0,0,0);
    transition: background 0.35s ease, opacity 0.35s ease;
    opacity: 0;
    z-index: 4;
    pointer-events: none;
}

.wix-bs-card:hover .wix-bs-image-area::after {
    background: rgba(0,0,0,0.32);
    opacity: 1;
}

/* --- Shine sweep on hover --- */
.wix-bs-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 55%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 30%,
        rgba(255,255,255,0.18) 50%,
        transparent 70%
    );
    transition: left 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
    z-index: 5;
}

.wix-bs-card:hover::after {
    left: 130%;
}

/* --- Name: color shift on hover --- */
.wix-bs-name {
    transition: color 0.25s ease;
}

.wix-bs-card:hover .wix-bs-name {
    color: #c12329;
}

/* --- Price area: sale price slides up --- */
.wix-bs-price {
    overflow: hidden;
    position: relative;
}

.wix-bs-current {
    display: inline-block;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                color 0.25s ease;
}

.wix-bs-card:hover .wix-bs-current {
    transform: translateY(-2px);
    color: #c12329;
}

.wix-bs-original {
    transition: opacity 0.25s ease;
}

.wix-bs-card:hover .wix-bs-original {
    opacity: 0.6;
}

/* --- Arrow button: expand + rotate --- */
.wix-bs-arrow-btn {
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.35s ease,
                background 0.25s ease;
}

.wix-bs-arrow-btn svg {
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.wix-bs-card:hover .wix-bs-arrow-btn {
    transform: scale(1.18) rotate(-5deg);
    box-shadow: 0 6px 20px rgba(193,35,41,0.4);
}

.wix-bs-card:hover .wix-bs-arrow-btn svg {
    transform: translateX(3px);
}

/* --- Badge: continuous pulse loop --- */
@keyframes badgePulseLoop {
    0%, 100% { transform: scale(1);       box-shadow: 0 0 0 0 rgba(30,64,175,0.3); }
    50%      { transform: scale(1.06);    box-shadow: 0 0 0 6px rgba(30,64,175,0); }
}

.wix-bs-badge {
    animation: badgePulseLoop 2.8s ease-in-out infinite;
}

.wix-bs-badge.wix-bs-badge-sale {
    animation: badgePulseLoop 2.8s ease-in-out infinite;
}

/* --- Star rating: light up sequentially on card hover --- */
.wix-bs-stars {
    display: inline-flex;
    gap: 1px;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #f59e0b 0%, #f59e0b 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: filter 0.3s ease;
}

.wix-bs-card:hover .wix-bs-stars {
    filter: drop-shadow(0 0 4px rgba(245,158,11,0.6));
}

/* --- Info section slide up on hover --- */
.wix-bs-info {
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.wix-bs-card:hover .wix-bs-info {
    transform: translateY(-3px);
}

/* --- Description fade in on hover --- */
.wix-bs-desc {
    transition: opacity 0.3s ease, max-height 0.4s ease;
    opacity: 0.7;
}

.wix-bs-card:hover .wix-bs-desc {
    opacity: 1;
}

/* ---- CTA button shimmer ---- */
.parallax-divider-cta,
.parallax-cat-banner-cta,
.mokobara-story-cta {
    position: relative;
    overflow: hidden;
}

.parallax-divider-cta::after,
.parallax-cat-banner-cta::after,
.mokobara-story-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.25),
        transparent
    );
    transition: left 0.7s ease;
}

.parallax-divider-cta:hover::after,
.parallax-cat-banner-cta:hover::after,
.mokobara-story-cta:hover::after {
    left: 140%;
}

/* ---- Parallax content text entrance ---- */
.parallax-divider-content.is-visible .parallax-divider-eyebrow {
    animation: animFadeDown 0.6s ease 0.1s both;
}

.parallax-divider-content.is-visible .parallax-divider-title {
    animation: animFadeUp 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both;
}

.parallax-divider-content.is-visible .parallax-divider-description {
    animation: animFadeUp 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.35s both;
}

.parallax-divider-content.is-visible .parallax-divider-cta {
    animation: animScaleIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both;
}

/* Category parallax banner content entrance */
.parallax-cat-banner-content.is-visible .parallax-cat-banner-title {
    animation: animFadeUp 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s both;
}

.parallax-cat-banner-content.is-visible .parallax-cat-banner-desc {
    animation: animFadeUp 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
}

.parallax-cat-banner-content.is-visible .parallax-cat-banner-cta {
    animation: animScaleIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.45s both;
}

/* ---- Newsletter content entrance ---- */
.newsletter-content.is-visible .newsletter-title {
    animation: animFadeUp 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s both;
}

.newsletter-content.is-visible .newsletter-subtitle {
    animation: animFadeUp 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.25s both;
}

.newsletter-content.is-visible .newsletter-form {
    animation: animScaleIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s both;
}

/* ---- Collection card image zoom entrance ---- */
.wix-collection-card.is-visible {
    animation: animScaleIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

/* ---- Hero product card gentle floating ---- */
@keyframes heroCardFloat {
    0%, 100% { transform: translateY(-50%); }
    50%      { transform: translateY(calc(-50% - 6px)); }
}

.wix-hero-product-card {
    animation: heroCardFloat 4s ease-in-out infinite !important;
}

.wix-hero-product-card:hover {
    animation: none !important;
    transform: translateY(calc(-50% - 8px));
}

/* ---- Section title decorative underline ---- */
.wix-bs-header .wix-bs-title {
    position: relative;
    display: inline-block;
}

.wix-bs-header .wix-bs-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: #111;
    transition: width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.wix-bs-header.is-visible .wix-bs-title::after {
    width: 48px;
}

/* ---- Blog card tilt on hover ---- */
.blog-card {
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease;
}

.blog-card:hover {
    transform: translateY(-6px) rotate(-0.5deg);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.blog-card.is-visible {
    animation: animFadeUp 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

/* ---- Image area loading skeleton ---- */
.wix-bs-image-area {
    position: relative;
    overflow: hidden;
}

.wix-bs-image-area::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: animShimmer 1.5s ease-in-out infinite;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.wix-bs-image-area img.is-loaded + .wix-bs-image-area::before,
.wix-bs-image-area.is-img-loaded::before {
    opacity: 0;
}

/* ---- Back to top button style ---- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #111;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1000;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.back-to-top:hover {
    background: #896d48;
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

/* ---- Respect reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
    .anim-fade-up,
    .anim-fade-in,
    .anim-scale-in,
    .anim-slide-left,
    .anim-slide-right,
    .anim-fade-down {
        opacity: 1;
        animation: none !important;
    }

    .wix-hero-product-card {
        animation: none !important;
        transform: translateY(-50%) !important;
    }

    .wix-sale-badge {
        animation: none !important;
    }

    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
