/* Cards & Content Page - Unique Styles */

/* ================= HERO SECTION ================= */
.cards-hero-unique {
    background: linear-gradient(135deg, #004aad 0%, #003580 50%, #002a66 100%);
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero-bg-animated {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-card-deco {
    position: absolute;
    font-size: 3rem;
    opacity: 0.15;
    animation: float-around 15s ease-in-out infinite;
}

.card-deco-1 { top: 15%; left: 5%; animation-delay: 0s; }
.card-deco-2 { top: 60%; left: 10%; animation-delay: 2s; }
.card-deco-3 { top: 20%; right: 15%; animation-delay: 4s; }
.card-deco-4 { bottom: 25%; right: 8%; animation-delay: 1s; }
.card-deco-5 { bottom: 40%; left: 20%; animation-delay: 3s; }

.hero-content-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    color: white;
}

.hero-badge {
    display: inline-block;
    background: rgba(241, 196, 15, 0.2);
    color: #F1C40F;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(241, 196, 15, 0.3);
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.highlight-yellow {
    color: #F1C40F;
}

.highlight-green {
    color: #27AE60;
}

.hero-text p {
    font-size: 1.15rem;
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-stats-row {
    display: flex;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: #F1C40F;
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Card Stack Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-stack {
    position: relative;
    width: 280px;
    height: 350px;
}

.preview-card-3d {
    position: absolute;
    width: 220px;
    height: 280px;
    border-radius: 20px;
    transition: all 0.4s ease;
}

.card-back {
    background: linear-gradient(135deg, #1a5c99, #0d3d66);
    top: 0;
    left: 0;
    transform: rotate(-8deg);
}

.card-middle {
    background: linear-gradient(135deg, #2270b3, #1a5c99);
    top: 15px;
    left: 15px;
    transform: rotate(-4deg);
}

.card-front {
    background: linear-gradient(135deg, #F1C40F, #d4ac0d);
    top: 30px;
    left: 30px;
    transform: rotate(0deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-stack:hover .card-back { transform: rotate(-15deg) translateX(-20px); }
.card-stack:hover .card-middle { transform: rotate(-8deg) translateX(-10px); }
.card-stack:hover .card-front { transform: rotate(5deg) scale(1.05); }

.card-inner {
    text-align: center;
    color: #1f2937;
}

.card-emoji {
    font-size: 4rem;
    display: block;
    margin-bottom: 0.5rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 800;
    display: block;
    margin-bottom: 1rem;
}

.mini-play-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #004aad;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.mini-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.hero-wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.hero-wave-bottom svg {
    display: block;
    width: 100%;
}

/* ================= FILTER PILLS ================= */
.filter-section {
    padding: 2rem 0;
    background: white;
}

.filter-pills {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    background: white;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    color: #6b7280;
    transition: all 0.3s ease;
}

.filter-pill:hover {
    border-color: #004aad;
    color: #004aad;
}

.filter-pill.active {
    background: #004aad;
    border-color: #004aad;
    color: white;
}

.pill-icon {
    font-size: 1.25rem;
}

/* ================= FEATURED CARD SECTION ================= */
.featured-card-section {
    padding: 3rem 0;
    background: linear-gradient(180deg, white 0%, #f9fafb 100%);
}

.featured-card-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: white;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 2px solid #f3f4f6;
}

.featured-label {
    display: inline-block;
    background: linear-gradient(135deg, #F1C40F, #d4ac0d);
    color: #1f2937;
    padding: 0.375rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.featured-content h2 {
    font-size: 2rem;
    font-weight: 900;
    color: #1f2937;
    margin-bottom: 1rem;
}

.featured-content p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.featured-highlights {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.featured-highlights li {
    font-size: 0.9rem;
    color: #374151;
    font-weight: 600;
}

.featured-price-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.price-info {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.8rem;
    color: #9ca3af;
    text-transform: uppercase;
    font-weight: 700;
}

.price-amount {
    font-size: 1.75rem;
    font-weight: 900;
    color: #004aad;
}

.featured-actions {
    display: flex;
    gap: 1rem;
}

.btn-play-sample {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: white;
    border: 2px solid #004aad;
    border-radius: 50px;
    color: #004aad;
    font-weight: 800;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-play-sample:hover {
    background: #004aad;
    color: white;
}

.btn-add-cart {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: #004aad;
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 800;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-cart:hover {
    background: #003580;
    transform: translateY(-2px);
}

.featured-visual {
    position: relative;
}

.featured-image-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.featured-image-wrap img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 74, 173, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.featured-image-wrap:hover .image-overlay {
    opacity: 1;
}

.big-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 3px solid white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

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

.floating-cards-preview {
    position: absolute;
    bottom: -20px;
    right: -20px;
    display: flex;
    gap: 0.5rem;
}

.mini-card {
    width: 50px;
    height: 60px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    animation: bounce-slow 3s ease-in-out infinite;
}

.mc-1 { animation-delay: 0s; }
.mc-2 { animation-delay: 0.3s; }
.mc-3 { animation-delay: 0.6s; }

/* ================= AUDIO CARDS SHOWCASE ================= */
.audio-cards-showcase {
    padding: 4rem 0;
    background: #f9fafb;
}

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

.section-header h2 {
    font-size: 2rem;
    font-weight: 900;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: #6b7280;
}

.cards-grid-unique {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Common Card Styles */
.audio-card-item {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 2px solid #f3f4f6;
    transition: all 0.4s ease;
}

.audio-card-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: #004aad;
}

.card-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.card-badge.stories { background: #e6eef8; color: #004aad; }
.card-badge.songs { background: #fef9e7; color: #d4ac0d; }
.card-badge.sounds { background: #e9f7ef; color: #27AE60; }
.card-badge.numbers { background: #f3f4f6; color: #374151; }

.card-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: #9ca3af;
    margin-bottom: 1rem;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid #f3f4f6;
}

.price {
    font-size: 1rem;
    font-weight: 900;
    color: #1f2937;
}

.card-actions {
    display: flex;
    gap: 0.5rem;
}

.play-btn-round,
.cart-btn-round {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-btn-round {
    background: #004aad;
    color: white;
}

.play-btn-round:hover {
    background: #003580;
    transform: scale(1.1);
}

.cart-btn-round {
    background: #f3f4f6;
    color: #6b7280;
}

.cart-btn-round:hover {
    background: #27AE60;
    color: white;
}

/* Vinyl Record Style */
.vinyl-style {
    display: flex;
    flex-direction: column;
}

.vinyl-disc {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 2rem auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #1f2937 0%, #374151 50%, #1f2937 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: spin 8s linear infinite;
    animation-play-state: paused;
}

.vinyl-style:hover .vinyl-disc {
    animation-play-state: running;
}

.disc-grooves {
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.disc-grooves::before,
.disc-grooves::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.disc-grooves::before {
    inset: 15px;
}

.disc-grooves::after {
    inset: 30px;
}

.disc-label {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #F1C40F;
    display: flex;
    align-items: center;
    justify-content: center;
}

.disc-emoji {
    font-size: 1.5rem;
}

.card-content-vinyl {
    padding: 1.5rem;
}

.card-content-vinyl h3,
.card-content-book h3,
.card-content-wave h3,
.card-content-block h3,
.card-content-cassette h3,
.card-content-alphabet h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.card-content-vinyl p,
.card-content-book p,
.card-content-wave p,
.card-content-block p,
.card-content-cassette p,
.card-content-alphabet p {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 0.75rem;
}

/* Book Style */
.book-style {
    display: flex;
    flex-direction: column;
}

.book-cover {
    position: relative;
    width: 120px;
    height: 160px;
    margin: 2rem auto;
    perspective: 500px;
}

.book-spine {
    position: absolute;
    left: 0;
    top: 0;
    width: 15px;
    height: 100%;
    background: linear-gradient(90deg, #003580, #004aad);
    border-radius: 3px 0 0 3px;
    transform-origin: left;
}

.book-front {
    position: absolute;
    left: 15px;
    top: 0;
    width: calc(100% - 15px);
    height: 100%;
    background: linear-gradient(135deg, #004aad, #0066cc);
    border-radius: 0 8px 8px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.4s ease;
    transform-origin: left;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}

.book-style:hover .book-front {
    transform: rotateY(-30deg);
}

.book-emoji {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.book-title {
    font-size: 0.7rem;
    font-weight: 800;
    text-align: center;
    padding: 0 0.5rem;
}

.book-pages {
    position: absolute;
    left: 15px;
    top: 5px;
    right: 0;
    height: calc(100% - 10px);
    background: repeating-linear-gradient(
        to right,
        #f9f9f9,
        #f9f9f9 2px,
        #e5e5e5 2px,
        #e5e5e5 3px
    );
    border-radius: 0 5px 5px 0;
}

.card-content-book {
    padding: 1.5rem;
}

/* Sound Wave Style */
.wave-style {
    display: flex;
    flex-direction: column;
}

.sound-visual {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(180deg, #e9f7ef 0%, white 100%);
}

.wave-animation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 60px;
    margin-bottom: 1rem;
}

.wave-animation span {
    width: 6px;
    background: #27AE60;
    border-radius: 3px;
    animation: sound-wave 1s ease-in-out infinite;
}

.wave-animation span:nth-child(1) { height: 20px; animation-delay: 0s; }
.wave-animation span:nth-child(2) { height: 35px; animation-delay: 0.1s; }
.wave-animation span:nth-child(3) { height: 50px; animation-delay: 0.2s; }
.wave-animation span:nth-child(4) { height: 40px; animation-delay: 0.3s; }
.wave-animation span:nth-child(5) { height: 55px; animation-delay: 0.4s; }
.wave-animation span:nth-child(6) { height: 35px; animation-delay: 0.5s; }
.wave-animation span:nth-child(7) { height: 45px; animation-delay: 0.6s; }
.wave-animation span:nth-child(8) { height: 30px; animation-delay: 0.7s; }
.wave-animation span:nth-child(9) { height: 40px; animation-delay: 0.8s; }
.wave-animation span:nth-child(10) { height: 25px; animation-delay: 0.9s; }

.sound-icon {
    font-size: 2.5rem;
}

.card-content-wave {
    padding: 1.5rem;
}

/* Number Block Style */
.block-style {
    display: flex;
    flex-direction: column;
}

.number-blocks {
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    justify-items: center;
    background: linear-gradient(180deg, #f3f4f6 0%, white 100%);
}

.block {
    width: 55px;
    height: 55px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.b1 { color: #004aad; }
.b2 { color: #27AE60; }
.b3 { color: #F1C40F; }
.b4 { color: #374151; background: #F1C40F; }

.block-style:hover .block {
    transform: rotate(5deg) scale(1.05);
}

.block-style:hover .b2 { transform: rotate(-5deg) scale(1.05); }
.block-style:hover .b4 { transform: rotate(-10deg) scale(1.1); }

.card-content-block {
    padding: 1.5rem;
}

/* Cassette Tape Style */
.cassette-style {
    display: flex;
    flex-direction: column;
}

.cassette {
    padding: 2rem;
    display: flex;
    justify-content: center;
    background: linear-gradient(180deg, #fef9e7 0%, white 100%);
}

.cassette-body {
    width: 160px;
    height: 100px;
    background: linear-gradient(180deg, #374151, #1f2937);
    border-radius: 8px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.tape-window {
    width: 100%;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 15px;
}

.tape-reel {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #1f2937;
    border: 3px solid white;
    position: relative;
}

.tape-reel::after {
    content: '';
    position: absolute;
    inset: 8px;
    background: #374151;
    border-radius: 50%;
}

.cassette-style:hover .tape-reel {
    animation: spin 2s linear infinite;
}

.cassette-label {
    font-size: 0.7rem;
    font-weight: 800;
    color: white;
    background: #F1C40F;
    padding: 0.25rem 0.75rem;
    border-radius: 3px;
    color: #1f2937;
}

.card-content-cassette {
    padding: 1.5rem;
}

/* Alphabet Style */
.alphabet-style {
    display: flex;
    flex-direction: column;
}

.alphabet-display {
    padding: 2rem;
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(180deg, #e6eef8 0%, white 100%);
}

.letter {
    width: 55px;
    height: 65px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.letter-a { color: #004aad; border-bottom: 4px solid #004aad; }
.letter-b { color: #27AE60; border-bottom: 4px solid #27AE60; }
.letter-c { color: #F1C40F; border-bottom: 4px solid #F1C40F; }

.alphabet-style:hover .letter {
    transform: translateY(-5px);
}

.alphabet-style:hover .letter-a { animation-delay: 0s; }
.alphabet-style:hover .letter-b { animation-delay: 0.1s; }
.alphabet-style:hover .letter-c { animation-delay: 0.2s; }

.card-content-alphabet {
    padding: 1.5rem;
}

/* ================= AUDIO PLAYER POPUP ================= */
.audio-player-popup {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 500px;
    background: white;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -10px 50px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: bottom 0.4s ease;
    overflow: hidden;
}

.audio-player-popup.active {
    bottom: 0;
}

.player-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
}

.player-visual {
    position: relative;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fff, #fff);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.player-icon {
    font-size: 1.75rem;
    animation: bounce-slow 2s ease-in-out infinite;
}

.sound-bars {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2px;
}

.sound-bars span {
    width: 3px;
    background: white;
    border-radius: 2px;
    animation: sound-wave 0.8s ease-in-out infinite;
}

.sound-bars span:nth-child(1) { height: 6px; animation-delay: 0s; }
.sound-bars span:nth-child(2) { height: 10px; animation-delay: 0.1s; }
.sound-bars span:nth-child(3) { height: 8px; animation-delay: 0.2s; }
.sound-bars span:nth-child(4) { height: 12px; animation-delay: 0.3s; }
.sound-bars span:nth-child(5) { height: 6px; animation-delay: 0.4s; }

.player-info {
    flex: 1;
}

.player-info h4 {
    font-size: 1rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 0.125rem;
}

.player-info p {
    font-size: 0.85rem;
    color: #6b7280;
}

.player-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f3f4f6;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    transition: all 0.3s ease;
}

.player-close:hover {
    background: #e5e7eb;
}

.player-progress {
    height: 4px;
    background: #e5e7eb;
}

.progress-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #004aad, #F1C40F);
    animation: progress 5s linear forwards;
}

@keyframes progress {
    from { width: 0; }
    to { width: 100%; }
}

/* ================= BUNDLE SECTION ================= */
.bundle-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #004aad 0%, #003580 100%);
}

.bundle-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.bundle-info {
    color: white;
}

.bundle-badge {
    display: inline-block;
    background: #F1C40F;
    color: #1f2937;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.bundle-info h2 {
    font-size: 2.25rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.bundle-info p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.bundle-includes {
    list-style: none;
    margin-bottom: 2rem;
}

.bundle-includes li {
    padding: 0.5rem 0;
    font-size: 1rem;
    opacity: 0.95;
}

.bundle-pricing {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.original-price,
.bundle-price {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.original-price .label,
.bundle-price .label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.strikethrough {
    text-decoration: line-through;
    opacity: 0.6;
}

.bundle-price .amount {
    font-size: 1.5rem;
    font-weight: 900;
    color: #F1C40F;
}

.savings-tag {
    display: inline-block;
    background: #27AE60;
    color: white;
    padding: 0.375rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    margin-top: 0.5rem;
}

.btn-bundle {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: #F1C40F;
    border: none;
    border-radius: 50px;
    color: #1f2937;
    font-size: 1.1rem;
    font-weight: 800;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-bundle:hover {
    background: #d4ac0d;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(241, 196, 15, 0.3);
}

.bundle-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bundle-cards-stack {
    position: relative;
    width: 200px;
    height: 250px;
}

.bundle-card-item {
    position: absolute;
    width: 100px;
    height: 130px;
    background: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: float-around 10s ease-in-out infinite;
}

.bc1 { top: 0; left: 0; animation-delay: 0s; }
.bc2 { top: 20px; left: 60px; animation-delay: 1s; }
.bc3 { top: 80px; left: 20px; animation-delay: 2s; }
.bc4 { top: 100px; left: 80px; animation-delay: 3s; }

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .hero-content-cards {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-stats-row {
        justify-content: center;
    }
    
    .hero-visual {
        margin-top: 2rem;
    }
    
    .featured-card-banner {
        grid-template-columns: 1fr;
    }
    
    .cards-grid-unique {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bundle-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .bundle-pricing {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .cards-hero-unique {
        padding: 6rem 0 4rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats-row {
        flex-wrap: wrap;
    }
    
    .filter-pills {
        gap: 0.75rem;
    }
    
    .filter-pill {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .cards-grid-unique {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .featured-card-banner {
        padding: 2rem;
    }
    
    .featured-highlights {
        grid-template-columns: 1fr;
    }
    
    .featured-price-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .featured-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .featured-actions button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .card-stack {
        transform: scale(0.85);
    }
    
    .bundle-info h2 {
        font-size: 1.75rem;
    }
}
