/* =========================================
   THE PLUG AUDIO - OPTIMIZED CSS
   Clean, Modern, Multi-Genre Design
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --black: #0A0A0A;
    --black-soft: #141414;
    --black-card: #1A1A1A;
    --white: #FFFFFF;
    --white-soft: #F5F5F5;
    --accent: #E07A5F;
    --accent-soft: rgba(224, 122, 95, 0.15);
    --accent-hover: #C96A50;
    --gray-300: #B0B0B0;
    --gray-400: #808080;
    --gray-500: #606060;
    --gray-600: #404040;
    --gray-700: #2A2A2A;
    --text-primary: var(--white);
    --text-secondary: var(--gray-300);
    --text-muted: var(--gray-400);
    --border-light: rgba(255, 255, 255, 0.08);
    --border-medium: rgba(255, 255, 255, 0.12);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 50px;
    --transition: all 0.25s ease;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--black);
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--white);
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-weight: 800;
    font-size: 1.1rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    color: var(--white);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--white);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-login,
.filter-btn {
    background: transparent;
    border: 1.5px solid var(--gray-600);
    color: var(--white);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-login:hover,
.filter-btn:hover {
    border-color: var(--white);
    color: var(--white);
}

.btn-login:hover {
    background: var(--white);
    color: var(--black);
}

.filter-btn {
    color: var(--text-secondary);
    padding: 10px 20px;
    font-weight: 500;
}

.filter-btn.active {
    background: var(--white);
    border-color: var(--white);
    color: var(--black);
}

.menu-toggle {
    display: none;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
}

.hero-text-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-headline {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.hero-description {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 32px;
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-full);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(224, 122, 95, 0.3);
}

.btn-full {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
}

/* Cards - Shared */
.deal-card,
.kit-card {
    background: var(--black-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.deal-card:hover,
.kit-card:hover {
    border-color: var(--border-medium);
}

.deal-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.kit-card:hover {
    background: var(--gray-700);
}

/* Product Cards */
.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.deal-card {
    overflow: hidden;
}

.deal-image {
    height: 180px;
    background: var(--black-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.deal-cover {
    font-size: 3.5rem;
    opacity: 0.9;
    transition: var(--transition);
}

.deal-card:hover .deal-cover {
    transform: scale(1.08);
    opacity: 1;
}

.deal-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--accent);
    color: var(--white);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
}

.deal-info {
    padding: 20px;
}

.deal-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.deal-pricing {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 16px;
}

.price-old {
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: 0.9rem;
}

.price-new,
.kit-price {
    color: var(--accent);
    font-weight: 700;
}

.price-new {
    font-size: 1.1rem;
}

/* Audio Player */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: var(--black);
    border: 2px solid var(--white);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    z-index: 10;
}

.play-btn svg {
    width: 24px;
    height: 24px;
    color: var(--white);
    margin-left: 2px;
}

.deal-card:hover .play-btn,
.deal-card.playing .play-btn {
    opacity: 1;
}

.play-btn:hover {
    background: var(--white);
    transform: translate(-50%, -50%) scale(1.08);
}

.play-btn:hover svg {
    color: var(--black);
}

.deal-card.playing .play-btn {
    background: var(--accent);
    border-color: var(--accent);
}

.deal-card.playing .play-btn svg {
    color: var(--white);
    margin-left: 0;
}

.deal-card.playing .icon-play {
    display: none;
}

.deal-card.playing .icon-pause {
    display: block !important;
}

.audio-player {
    padding: 10px 16px 14px;
    background: rgba(0, 0, 0, 0.4);
}

.audio-progress {
    width: 100%;
    height: 4px;
    background: var(--gray-700);
    border-radius: 2px;
    cursor: pointer;
    margin-bottom: 8px;
    overflow: hidden;
}

.audio-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--accent);
    border-radius: 2px;
    transition: width 0.1s linear;
}

.audio-time {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.time-current {
    color: var(--accent);
    font-weight: 600;
}

/* Cart Button */
.btn-cart {
    width: 100%;
    background: transparent;
    border: 1.5px solid var(--gray-600);
    color: var(--white);
    padding: 12px;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cart:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--black);
}

/* Staff Pick */
.staff-pick-section {
    padding: 60px 0;
    background: var(--black-soft);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.staff-pick-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.staff-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
}

.staff-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.staff-description {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 24px;
    line-height: 1.7;
}

.highlight {
    color: var(--accent);
}

.featured-product {
    width: 100%;
    height: 280px;
    background: var(--black-card);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 1px solid var(--border-light);
}

.product-glow {
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--accent);
    filter: blur(60px);
    opacity: 0.3;
}

.product-box {
    font-size: 5rem;
    position: relative;
    z-index: 2;
}

/* Drum Kits */
.filters {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.drumkits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}

.kit-card {
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.kit-image {
    width: 60px;
    /* Increased slightly */
    height: 60px;
    background: transparent;
    /* Removed black background */
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    overflow: hidden;
    /* Ensure image doesn't overflow */
    padding: 0;
    /* Ensure no padding */
}

.kit-cover {
    width: 100%;
    height: 100%;
    display: flex;
}

.kit-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kit-info {
    flex: 1;
    min-width: 0;
}

.kit-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.kit-price {
    font-size: 0.9rem;
}

.btn-add {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--gray-600);
    background: transparent;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.btn-add:hover {
    background: var(--accent);
    border-color: var(--accent);
}

/* Footer */
.footer {
    background: var(--black);
    border-top: 1px solid var(--border-light);
}

.guarantee-bar {
    background: var(--black-soft);
    padding: 24px 0;
    border-bottom: 1px solid var(--border-light);
}

.guarantees {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
}

.guarantee-item svg {
    color: var(--accent);
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand .logo-text {
    font-size: 1rem;
    margin-bottom: 12px;
    display: block;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-column h4 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.footer-column a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--gray-700);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    border-top: 1px solid var(--border-light);
}

/* Modals - Unified */
.cart-modal,
.login-modal {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.cart-modal {
    right: 0;
}

.login-modal {
    left: 0;
    align-items: center;
    justify-content: center;
}

.cart-modal.open,
.cart-modal.active,
.login-modal.active {
    display: flex;
    opacity: 1;
    pointer-events: all;
}

.cart-overlay,
.modal-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.cart-content {
    position: absolute;
    right: 0;
    top: 0;
    width: 400px;
    height: 100%;
    background: var(--black-card);
    border-left: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.cart-modal.open .cart-content,
.cart-modal.active .cart-content {
    transform: translateX(0);
}

.cart-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
}

.cart-close,
.modal-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
}

.cart-close:hover,
.modal-close:hover {
    color: var(--white);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 1.5rem;
    z-index: 10;
}

.cart-items {
    flex: 1;
    padding: 20px 24px;
    overflow-y: auto;
}

.cart-empty {
    text-align: center;
    color: var(--text-muted);
    margin-top: 60px;
    font-size: 0.95rem;
}

.cart-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--border-light);
    background: var(--black);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: 1.1rem;
    font-weight: 700;
}

/* Modal Content */
.modal-content {
    position: relative;
    background: var(--black-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    max-width: 420px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-content {
    padding: 40px 32px;
}

.login-header {
    text-align: center;
    margin-bottom: 32px;
}

.login-header h2 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.login-header p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.login-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid var(--border-medium);
    background: var(--black);
    color: var(--white);
}

.btn-social:hover {
    background: var(--gray-700);
}

.btn-google:hover {
    border-color: #4285F4;
}

.btn-facebook:hover {
    border-color: #1877F2;
}

.login-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0;
}

.login-divider::before,
.login-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-medium);
}

.login-divider span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.login-form .form-group {
    margin-bottom: 0;
}

.login-footer {
    margin-top: 24px;
    text-align: center;
}

.login-footer .forgot-password {
    display: block;
    color: var(--accent);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.login-footer .forgot-password:hover,
.login-footer .create-account:hover {
    text-decoration: underline;
}

.login-footer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.login-footer .create-account {
    color: var(--accent);
    text-decoration: none;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--white);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--black);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-500);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23808080' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Cart Icon & Contact */
.btn-cart-icon {
    background: transparent;
    border: none;
    color: var(--white);
    cursor: pointer;
    position: relative;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-cart-icon:hover {
    color: var(--accent);
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-section {
    padding: 80px 0;
    background: var(--black-soft);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.contact-info>p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
}

.contact-item svg {
    color: var(--accent);
    flex-shrink: 0;
}

.contact-form {
    background: var(--black-card);
    padding: 32px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
}

/* Responsive */
@media (max-width: 992px) {

    .hero-text-grid,
    .staff-pick-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-headline {
        font-size: 2.2rem;
    }

    .staff-pick-image {
        order: -1;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
    }

    .menu-toggle span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--white);
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-headline {
        font-size: 1.8rem;
    }

    .section {
        padding: 60px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .cart-content {
        width: 100%;
    }

    .guarantees {
        gap: 20px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .login-content {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .deals-grid,
    .drumkits-grid {
        grid-template-columns: 1fr;
    }
}

/* License Selection Modal */
.license-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.license-option {
    background: var(--black);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-md);
    padding: 20px;
    position: relative;
    transition: var(--transition);
}

.license-option:hover {
    border-color: var(--accent);
}

.license-option.featured {
    border-color: var(--accent);
    background: var(--accent-soft);
}

.license-popular {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    letter-spacing: 0.5px;
}

.license-option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.license-option-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
}

.license-option-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--accent);
}

.license-option-features {
    list-style: none;
    margin-bottom: 16px;
}

.license-option-features li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 4px 0;
}

.license-option .btn {
    width: 100%;
    padding: 10px;
    font-size: 0.8rem;
}

.price-label {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-right: 8px;
}

/* =========================================
   UI IMPROVEMENTS - Beat Cards & Social
   ========================================= */

/* Beat Cards - Suporte a Thumbnails */
.deal-image {
    height: 200px;
    background: var(--black-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.deal-image .beat-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.deal-card:hover .beat-thumbnail {
    transform: scale(1.05);
}

.deal-cover {
    font-size: 4rem;
    opacity: 0.8;
    transition: var(--transition);
}

/* Social Icons - Defined in SOCIAL LINKS section below */

/* CTA Buttons Consistency - Primary Always Orange */
.btn-primary {
    background: var(--accent);
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(224, 122, 95, 0.4);
}

/* Section Title Accent */
.section-title {
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin: 16px auto 0;
    border-radius: 2px;
}

/* Deal Card Hover Enhancement */
.deal-card {
    position: relative;
    overflow: hidden;
}

.deal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), transparent);
    opacity: 0;
    transition: var(--transition);
}

.deal-card:hover::before {
    opacity: 1;
}

/* =========================================
   OUTLET SECTION - Beats em Promoção
   ========================================= */
.outlet-section {
    background: linear-gradient(180deg, rgba(255, 87, 51, 0.05) 0%, var(--black) 100%);
}

.outlet-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FF5733 0%, #FF8C00 100%);
    color: var(--white);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-top: 8px;
}

.outlet-link {
    color: #FF5733 !important;
    font-weight: 600;
}

/* Outlet Card - Preço com Desconto */
.outlet-card .deal-pricing {
    display: flex;
    align-items: center;
    gap: 12px;
}

.outlet-card .price-old {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.outlet-card .price-new {
    color: #FF5733;
    font-weight: 800;
}

.outlet-card .discount-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #FF5733 0%, #FF8C00 100%);
    color: var(--white);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 5;
}

/* =========================================
   CAROUSEL - Navegação Horizontal
   ========================================= */
.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.carousel-wrapper {
    overflow: hidden;
    flex: 1;
}

.carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.4s ease;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-track .deal-card {
    flex: 0 0 300px;
    min-width: 300px;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent);
    border: none;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--accent-hover);
    transform: scale(1.1);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }

    .carousel-track .deal-card {
        flex: 0 0 280px;
        min-width: 280px;
    }
}

/* Beat Meta - BPM & Key */
.beat-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
}

.beat-bpm,
.beat-key {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    background: var(--gray-700);
    color: var(--text-secondary);
}

.beat-key {
    background: var(--accent-soft);
    color: var(--accent);
}

.beats-filters {
    margin-bottom: 24px;
}

/* =========================================
   SOCIAL LINKS - Redes Sociais com PNG
   ========================================= */
.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    width: 32px;
    height: 32px;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    overflow: visible;
    color: var(--white);
    padding: 0;
    text-decoration: none;
}

.social-link:hover {
    opacity: 0.7;
    transform: scale(1.1);
}

.social-link img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    display: block;
    margin: 0;
}

.social-link svg {
    width: 22px;
    height: 22px;
    fill: var(--white);
    display: block;
    margin: 0;
}

/* =========================================
   CART ITEM STYLES
   ========================================= */
.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 500;
    margin-bottom: 4px;
    color: var(--white);
}

.cart-item-price {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
    margin-left: 12px;
}

.cart-item-remove:hover {
    color: #ff4444;
    background: rgba(255, 68, 68, 0.1);
}

.cart-item-remove svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

/* ===== Scroll Reveal / Fade In Animation ===== */
.fade-in-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger effect for children */
.fade-in-section.visible .deal-card,
.fade-in-section.visible .kit-card {
    animation: fadeInUp 0.5s ease-out forwards;
}

.fade-in-section.visible .deal-card:nth-child(1) {
    animation-delay: 0.1s;
}

.fade-in-section.visible .deal-card:nth-child(2) {
    animation-delay: 0.15s;
}

.fade-in-section.visible .deal-card:nth-child(3) {
    animation-delay: 0.2s;
}

.fade-in-section.visible .deal-card:nth-child(4) {
    animation-delay: 0.25s;
}

.fade-in-section.visible .kit-card:nth-child(1) {
    animation-delay: 0.1s;
}

.fade-in-section.visible .kit-card:nth-child(2) {
    animation-delay: 0.15s;
}

.fade-in-section.visible .kit-card:nth-child(3) {
    animation-delay: 0.2s;
}

.fade-in-section.visible .kit-card:nth-child(4) {
    animation-delay: 0.25s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Easter Egg: The Plug ===== */
.easter-egg-plug {
    position: fixed;
    bottom: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.easter-egg-plug:hover {
    transform: scale(1.1);
}

.easter-egg-plug:hover .plug-cord {
    animation: wiggle 0.5s ease;
}

/* Tomada na parede */
.plug-outlet {
    width: 40px;
    height: 28px;
    background: linear-gradient(145deg, #3a3a3a, #2a2a2a);
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5), 0 2px 8px rgba(0, 0, 0, 0.3);
    border: 1px solid #4a4a4a;
}

.outlet-hole {
    width: 4px;
    height: 12px;
    background: #1a1a1a;
    border-radius: 2px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.8);
}

/* Fio do plug */
.plug-cord {
    width: 3px;
    height: 0px;
    background: linear-gradient(90deg, #2a2a2a, #3a3a3a, #2a2a2a);
    transition: height 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 2px;
}

/* Cabeça do plug (ponta com os pinos) */
.plug-head {
    width: 32px;
    height: 20px;
    background: linear-gradient(145deg, #4a4a4a, #333);
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    padding-top: 2px;
    margin-top: -2px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Pinos metálicos */
.plug-prong {
    width: 3px;
    height: 10px;
    background: linear-gradient(180deg, #c0c0c0, #a0a0a0);
    border-radius: 1px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Estado: Desplugado */
.easter-egg-plug.unplugged .plug-cord {
    height: 30px;
}

.easter-egg-plug.unplugged .plug-head {
    transform: translateY(30px) rotate(-5deg);
}

/* Animação de wiggle */
@keyframes wiggle {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-3deg);
    }

    75% {
        transform: rotate(3deg);
    }
}

/* Estado: Luzes apagadas */
body.lights-off {
    filter: brightness(0.08) saturate(0.3);
    transition: filter 0.5s ease;
}

body.lights-off .easter-egg-plug {
    filter: brightness(12) saturate(3);
}

/* Efeito de brilho quando desligado */
body.lights-off::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
    pointer-events: none;
    z-index: 9998;
}