/* 
   =========================================
   FUTURISTIC ADVANCED UI DESIGN
   Designed for bio template
   ========================================= 
*/

:root {
    --bg-dark: #030408;
    --text-main: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.5);
    --glass-border: rgba(255, 255, 255, 0.08);
    --accent-secondary: #09fbd3;
    --accent-tertiary: #fe53bb; /* Neon Pink */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-body), sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.6;
}

/* --- BACKGROUND LAYERS --- */
.bg-layer {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
}

.base-bg {
    z-index: -3;
}

.image-layer {
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.aurora-mesh {
    background: linear-gradient(-45deg, var(--aurora-1, #ff0055), var(--aurora-2, #0050ff), var(--aurora-3, #00ffaa), var(--aurora-4, #ff5500));
    background-size: 400% 400%;
    animation: gradientMesh 15s ease infinite;
    z-index: -2;
}

@keyframes gradientMesh {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.gradient-layer {
    background: radial-gradient(circle at 50% -10%, rgba(8, 247, 254, 0.15) 0%, rgba(254, 83, 187, 0.05) 30%, var(--bg-dark) 80%);
    z-index: -2;
}

.glass-layer {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* --- APP WRAPPER --- */
.app-wrapper {
    width: 100%;
    max-width: 600px;
    padding: 3rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-header, 3.5rem);
}

/* --- PROFILE --- */
.profile-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    position: relative;
}

.avatar-ring {
    width: 104px;
    height: 104px;
    border-radius: 50%;
    position: relative;
    padding: 3px;
    background: transparent;
    border: 2px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
}

.avatar-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: none;
    transition: var(--transition-smooth);
}

@keyframes rotateGlow {
    0% { background-position: 0% 50%; filter: hue-rotate(0deg); }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; filter: hue-rotate(360deg); }
}

.profile-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.2rem;
    letter-spacing: -0.02em;
    color: var(--color-title);
}

.profile-subtitle {
    font-size: 1rem;
    color: var(--color-bio);
    font-weight: 500;
    text-align: center;
    max-width: 90%;
}

/* --- SOCIAL LINKS --- */
.social-links-area {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    transition: var(--transition-smooth);
}

html[style*="--social-style: 'brand'"] .social-btn {
    color: var(--accent);
}
html[style*="--social-style: 'monochrome'"] .social-btn {
    color: #fff;
}
html[style*="--social-style: 'color'"] .instagram-btn { color: #E1306C; }
html[style*="--social-style: 'color'"] .tiktok-btn { color: #fff; }
html[style*="--social-style: 'color'"] .telegram-btn { color: #0088cc; }
html[style*="--social-style: 'color'"] .youtube-btn { color: #FF0000; }
html[style*="--social-style: 'color'"] .email-btn { color: #FFA500; }

.social-btn:hover {
    border-color: var(--accent);
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
html[style*="--social-style: 'brand'"] .social-btn:hover {
    box-shadow: 0 0 15px var(--accent);
}

/* --- ACCESS GROUP BUTTON --- */
.btn-access-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition-smooth);
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
    animation: greenGlow 2s infinite alternate;
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-access-group:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.7);
    filter: brightness(1.1);
}

.btn-access-group i, .btn-access-group svg {
    font-size: 1.4rem;
    filter: drop-shadow(0 0 5px rgba(255,255,255,0.5));
}

@keyframes greenGlow {
    0% { box-shadow: 0 0 10px rgba(37, 211, 102, 0.3); }
    100% { box-shadow: 0 0 25px rgba(37, 211, 102, 0.8); }
}

/* --- CATALOG --- */
.catalog-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* --- SEARCH BAR --- */
.search-section {
    width: 100%;
    margin-bottom: 0.5rem;
    position: sticky;
    top: 1rem;
    z-index: 100;
}

.search-container {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 0.4rem 0.75rem;
    display: flex;
    align-items: center;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition-smooth);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.search-container:focus-within {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(8, 247, 254, 0.25), 0 8px 32px 0 rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.search-icon {
    color: var(--accent);
    margin-left: 0.5rem;
    font-size: 1.5rem;
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.search-container:focus-within .search-icon {
    opacity: 1;
    filter: drop-shadow(0 0 5px var(--accent));
}

#product-search {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-main);
    padding: 0.8rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    outline: none;
    width: 100%;
}

#product-search::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
}

.clear-btn {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.clear-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    transform: rotate(90deg);
}

.clear-btn.visible {
    display: flex;
}

.category-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
}
.category-box:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
}

.most-wanted-section {
    width: 100%;
    max-width: 600px;
    background: transparent;
    border: none;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    margin-bottom: var(--spacing-floating-bottom, 1rem);
}


.category-header-floating {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.25rem 1.25rem var(--spacing-floating-title, 1.5rem) 1.25rem;
}
.most-wanted-section .products-layout-1,
.most-wanted-section .products-layout-3 {
    gap: var(--spacing-floating-products, 0.5rem);
    padding-left: 0;
    padding-right: 0;
}

.category-toggle-input {
    display: none;
}

.category-header-label {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.25rem;
    cursor: pointer;
    background: transparent;
    transition: background 0.3s ease;
    position: relative;
}
.category-header-label:hover {
    background: rgba(255, 255, 255, 0.02);
}

.category-name-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    text-shadow: 0 0 10px rgba(8, 247, 254, 0.4);
    text-align: center;
}

.category-icon {
    color: rgba(255,255,255,0.3);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s;
    font-size: 1.6rem;
    position: absolute;
    right: 1.25rem;
}
.category-header-label:hover .category-icon {
    color: rgba(255,255,255,0.8);
}

.category-content-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-content-inner {
    overflow: hidden;
    padding: 0 1rem;
    transition: padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-toggle-input:checked ~ .category-content-wrapper {
    grid-template-rows: 1fr;
}

.category-toggle-input:checked ~ .category-content-wrapper .category-content-inner {
    padding: 1.5rem 1rem;
}

.category-toggle-input:checked ~ .category-header-label .category-icon {
    transform: rotate(180deg);
}

/* Original category-name is retained as utility although obsolete */
.category-name {
    display: none;
}

.brands-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-checkbox, .reveal-stores-checkbox, .product-checkbox-l1 {
    display: none !important;
}

.products-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-checkbox:checked ~ .products-wrapper {
    grid-template-rows: 1fr;
}

.products-wrapper-inner {
    overflow: hidden;
}

.accordion-checkbox:checked ~ .brand-header .expand-icon {
    transform: rotate(180deg);
    color: var(--accent);
    text-shadow: 0 0 10px var(--accent);
}

.brand-item {
    border-radius: 12px;
    background: var(--brand-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255,255,255,0.05);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.brand-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.6), 0 0 20px rgba(8, 247, 254, 0.1);
    transform: translateY(-2px);
}

.brand-header {
    padding: 1.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.02), transparent);
}

.brand-info {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.brand-logo-icon {
    height: 20px;
    width: auto;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
    transition: var(--transition-smooth);
}

.brand-color-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    box-shadow: 0 0 8px currentColor, 0 0 16px currentColor; 
    border: 1px solid rgba(255,255,255,0.6);
    animation: pulseDot 2s infinite alternate;
}

@keyframes pulseDot {
    0% { transform: scale(0.9); opacity: 0.8; }
    100% { transform: scale(1.1); opacity: 1; }
}

.brand-name {
    font-family: var(--brand-font);
    font-weight: var(--brand-weight);
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    color: var(--brand-color);
    text-transform: var(--brand-transform);
    text-shadow: var(--brand-shadow);
}

.expand-icon {
    position: absolute;
    right: 1.25rem;
    font-size: 1.2rem;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

/* --- PRODUCT CARD (LAYOUT 2) --- */
.products-grid {
    padding: 0 1rem 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.25rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: transparent;
    transition: var(--transition-smooth);
}

.product-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(4px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.4);
}

.product-card:hover::before {
    background: var(--accent);
    box-shadow: 0 0 15px var(--accent);
}

.product-image-wrapper {
    width: 90px;
    height: 90px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: visible;
    background: transparent;
    border: none;
    box-shadow: var(--image-box-shadow, none);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Inner glow for images */


.product-image-grid {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition-smooth);
    filter: var(--image-filter, none);
}
.product-card:hover .product-image-grid {
    transform: scale(1.05);
}

.product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.6rem;
}

.product-title {
    font-family: var(--product-font);
    font-size: 1.05rem;
    font-weight: var(--product-weight);
    color: var(--product-color);
    margin: 0;
    text-transform: var(--product-transform);
    text-shadow: var(--product-shadow);
}

.product-actions {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.btn-comprar {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0));
    color: var(--text-main);
    
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: var(--transition-smooth);
    width: 100%;
    display: flex; align-items: center; justify-content: center; height: 42px; padding: 0;
}

.btn-comprar:hover {
    background: rgba(8, 247, 254, 0.1);
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(8, 247, 254, 0.2), inset 0 0 10px rgba(8, 247, 254, 0.1);
    color: #fff;
    text-shadow: 0 0 8px var(--accent);
}

.btn-video {
    background: transparent;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    color: var(--text-muted);
    padding: 0.5rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
}

.btn-video:hover {
    border: 1px solid var(--accent-tertiary);
    background: rgba(254, 83, 187, 0.05);
    color: var(--text-main);
    box-shadow: 0 0 15px rgba(254, 83, 187, 0.2);
    text-shadow: 0 0 5px var(--accent-tertiary);
}
.btn-video:hover .material-symbols-rounded {
    color: var(--accent-tertiary);
    filter: drop-shadow(0 0 4px var(--accent-tertiary));
}

.stores-container {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1), opacity 0.3s;
    opacity: 0;
}

.reveal-stores-checkbox:checked ~ .stores-container {
    max-height: 1000px;
    opacity: 1;
}

.product-links-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 0.5rem;
}

.store-link {
    background: var(--link-bg);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 0.8rem 1rem;
    border-radius: var(--link-shape);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--link-text);
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

html[style*="--link-style-type: 'outline'"] .store-link {
    background: transparent;
    border: 1px solid var(--link-bg);
    color: var(--link-text);
}
html[style*="--link-style-type: 'transparent'"] .store-link {
    background: transparent;
    border: none;
}
html[style*="--link-style-type: 'glass'"] .store-link {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

html[style*="--link-shadow: 'soft'"] .store-link { box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
html[style*="--link-shadow: 'hard'"] .store-link { box-shadow: 4px 4px 0px rgba(0,0,0,1); border: 1px solid rgba(255,255,255,0.2) !important; }
html[style*="--link-shadow: 'neon'"] .store-link { box-shadow: 0 0 10px var(--accent); border-color: var(--accent) !important; }

.store-link::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.store-link:hover {
    background: var(--link-hover-bg) !important;
    color: var(--link-hover-text) !important;
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}
html[style*="--link-shadow: 'hard'"] .store-link:hover { box-shadow: 2px 2px 0px rgba(0,0,0,1); transform: translate(2px, 2px); }

.store-link:hover::after {
    opacity: 1;
}

.store-color-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 8px currentColor;
}
.store-link.amazon .store-color-dot { background-color: #00a8e1; color: #00a8e1; }
.store-link.mercado .store-color-dot { background-color: #ffe600; color: #ffe600; }
.store-link.shopee .store-color-dot { background-color: #ee4d2d; color: #ee4d2d; }
.products-layout-1 {
    padding: 0 1rem 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.product-item-l1 {
    background: rgba(15, 15, 20, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
}
.product-item-l1:hover {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(8, 247, 254, 0.1);
}
.product-header-l1 {
    display: flex;
    justify-content: center; /* Name centralized */
    align-items: center;
    padding: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
}
.product-header-l1 h3 {
    margin: 0;
    font-family: var(--product-font);
    font-size: 0.95rem;
    font-weight: var(--product-weight);
    color: var(--product-color);
    text-align: center;
    text-transform: var(--product-transform);
    text-shadow: var(--product-shadow);
}
.product-icon-l1 {
    font-size: 1.2rem;
    color: var(--text-muted);
    transition: var(--transition-smooth);
    position: absolute;
    right: 1.25rem;
}
.stores-wrapper-l1 {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.product-checkbox-l1:checked ~ .stores-wrapper-l1 {
    max-height: 1000px;
}
.product-checkbox-l1:checked ~ .product-header-l1 .product-icon-l1 {
    transform: rotate(180deg);
}
.stores-container-l1 {
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.product-details-row-l1 {
    display: flex;
    flex-direction: row;
    gap: 1.25rem;
    align-items: center;
    width: 100%;
}
.product-image-wrapper-l1 {
    width: 90px;
    height: 90px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: visible;
    background: transparent;
    border: none;
    box-shadow: var(--image-box-shadow, none);
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-image-l1 {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: var(--image-filter, none);
}
.product-info-col-l1 {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.product-links-grid-l1 {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
}
.btn-video-youtube-l1 {
    background: transparent;
    border: 1px dashed rgba(255, 100, 100, 0.4);
    color: var(--text-main);
    padding: 0.5rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: var(--transition-smooth);
    width: 100%;
    white-space: nowrap;
}
.btn-video-youtube-l1:hover {
    background: rgba(255, 0, 0, 0.1);
    border-color: #ff0000;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
    text-shadow: 0 0 5px rgba(255,100,100,0.8);
}

.products-layout-3 {
    padding: 0 1rem 0 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.product-poster-card {
    position: relative;
    min-height: 350px;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}
.product-poster-card:hover {
    box-shadow: 0 0 30px rgba(8, 247, 254, 0.2);
    border-color: var(--accent);
}
.poster-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(3,4,8,0.95) 0%, rgba(3,4,8,0.6) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem;
}
.poster-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.poster-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.btn-video-poster {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    backdrop-filter: blur(5px);
}
.product-links-grid-l3 {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

/* --- FOOTER --- */
.footer {
    padding: 2rem 1rem 4rem 1rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    font-weight: 600;
    text-align: center;
}

@media (max-width: 480px) {
    .app-wrapper {
        padding: 2rem 1rem;
    }
    .product-card {
        padding: 0.85rem;
        gap: 1rem;
    }
    .product-image-wrapper {
        width: 75px;
        height: 75px;
    }
    .product-title {
        font-size: 0.95rem;
    }
    
    /* Otimização Layout 1 e Botões para Mobile */
    .product-details-row-l1 {
        gap: 0.85rem;
    }
    .product-image-wrapper-l1 {
        width: 75px;
        height: 75px;
    }
    .stores-container-l1 {
        padding: 0.85rem;
    }
    .store-link {
        padding: 0.6rem 0.8rem;
        font-size: 0.75rem;
    }
    .btn-video-youtube-l1 {
        padding: 0.5rem;
        font-size: 0.7rem;
    }
    .btn-comprar {
        padding: 0.5rem;
        font-size: 0.75rem;
    }
}

/* --- Fire Icon Animations --- */
.fire-icon {
    color: #ff4500;
    font-size: 1.5rem;
    animation: pulse-fire 1.5s infinite alternate;
    filter: drop-shadow(0 0 8px rgba(255, 69, 0, 0.8));
    margin: 0 10px;
}
@keyframes pulse-fire {
    0% { transform: scale(1); filter: drop-shadow(0 0 5px rgba(255, 69, 0, 0.6)); }
    100% { transform: scale(1.2); filter: drop-shadow(0 0 15px rgba(255, 69, 0, 1)); }
}

/* --- Small Video Button --- */
.btn-video-small {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 8px;
    color: #ff0000;
    text-decoration: none;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}
.btn-video-small:hover {
    background: rgba(255, 0, 0, 0.2);
    border-color: rgba(255, 0, 0, 0.6);
}
.btn-video-poster-small {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    backdrop-filter: blur(4px);
}
.btn-video-poster-small:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: #fff;
}
.most-wanted-section .products-layout-3 { grid-template-columns: 1fr; }
.most-wanted-section .products-layout-3 { grid-template-columns: 1fr !important; }

.store-logo-img {
    height: 20px;
    width: 20px;
    object-fit: contain;
    display: inline-block;
}


.store-logo-img {
    height: 20px;
    width: 20px;
    object-fit: contain;
    display: inline-block;
}
