/* ========================================
   PERFORMANCE MIX STORE - STYLES
   ======================================== */

:root {
    --pms-blue: #0066CC;
    --pms-red: #E63946;
    --pms-yellow: #FFD700;
    --pms-dark: #0a0e27;
    --pms-darker: #050817;
    --pms-green: #10B981;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--pms-darker);
    color: white;
    line-height: 1.6;
}

.font-display { font-family: 'Orbitron', sans-serif; }

.gradient-text {
    background: linear-gradient(135deg, var(--pms-yellow) 0%, var(--pms-red) 50%, var(--pms-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Top Bar */
.top-bar {
    background: linear-gradient(90deg, var(--pms-blue), var(--pms-red), var(--pms-yellow), var(--pms-blue));
    background-size: 300% 100%;
    animation: gradient-shift 5s ease infinite;
    color: white;
    padding: 8px 0;
    font-size: 12px;
    font-weight: 600;
    overflow: hidden;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.marquee-container { overflow: hidden; white-space: nowrap; }
.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Header */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(5, 8, 23, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-box {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--pms-blue), var(--pms-red));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.group:hover .logo-box { transform: rotate(12deg); }

.logo-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 16px;
    height: 16px;
    background: var(--pms-yellow);
    border-radius: 50%;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 10px var(--pms-yellow); }
    50% { box-shadow: 0 0 20px var(--pms-yellow), 0 0 30px var(--pms-yellow); }
}

/* Search */
.search-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    padding: 12px 24px 12px 48px;
    color: white;
    outline: none;
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: var(--pms-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.2);
}

.search-input::placeholder { color: #9CA3AF; }

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #9CA3AF;
}

/* Cart Badge */
.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--pms-red);
    color: white;
    font-size: 10px;
    font-weight: bold;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Navigation */
.nav-link {
    color: #D1D5DB;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.nav-link:hover { color: var(--pms-yellow); }

.nav-link-hot {
    color: var(--pms-red);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Mobile Menu */
.mobile-menu {
    background: var(--pms-darker);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-search {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 12px 16px;
    color: white;
}

.mobile-link {
    display: block;
    color: #D1D5DB;
    padding: 12px 0;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-link-hot {
    display: block;
    color: var(--pms-red);
    font-weight: bold;
    padding: 12px 0;
    text-decoration: none;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--pms-blue), #0052a3);
    color: white;
    padding: 16px 32px;
    border-radius: 9999px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--pms-yellow), #ffed4e);
    color: var(--pms-dark);
    padding: 16px 32px;
    border-radius: 9999px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.btn-large { padding: 20px 40px; font-size: 1.1rem; }
.btn-full { width: 100%; justify-content: center; }

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.95) 0%, rgba(5, 8, 23, 0.98) 100%);
}

.hero-effects { position: absolute; inset: 0; opacity: 0.3; }

.effect-blue {
    position: absolute;
    top: 80px;
    left: 40px;
    width: 288px;
    height: 288px;
    background: var(--pms-blue);
    border-radius: 50%;
    filter: blur(100px);
    animation: float 6s ease-in-out infinite;
}

.effect-red {
    position: absolute;
    bottom: 80px;
    right: 40px;
    width: 384px;
    height: 384px;
    background: var(--pms-red);
    border-radius: 50%;
    filter: blur(120px);
    animation: float 6s ease-in-out infinite 2s;
}

.effect-yellow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 256px;
    height: 256px;
    background: var(--pms-yellow);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

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

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 9999px;
    padding: 8px 16px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--pms-yellow);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
}

.hero-description {
    color: #D1D5DB;
    font-size: 1.125rem;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #9CA3AF;
}

/* Hero Products Grid */
.hero-products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.product-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-col-offset { margin-top: 32px; }

.hero-product-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-product-card:hover { transform: scale(1.05); }

.hero-product-card.blue { border-color: rgba(0, 102, 204, 0.3); }
.hero-product-card.red { border-color: rgba(230, 57, 70, 0.3); }
.hero-product-card.yellow { border-color: rgba(255, 215, 0, 0.3); }

.hero-product-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 12px;
}

.hero-product-card h3 {
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.hero-product-card .price {
    color: var(--pms-yellow);
    font-weight: 700;
}

.hero-badge {
    position: absolute;
    bottom: -16px;
    left: -16px;
    background: var(--pms-red);
    color: white;
    padding: 12px 24px;
    border-radius: 9999px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.5);
    animation: pulse-glow 2s infinite;
}

.floating { animation: floating 3s ease-in-out infinite; }

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

/* Stats Section */
.stats-section {
    padding: 48px 0;
    background: linear-gradient(90deg, rgba(0, 102, 204, 0.2), var(--pms-dark), rgba(230, 57, 70, 0.2));
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    text-align: center;
}

@media (min-width: 768px) {
    .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 8px;
}

.stat-item:nth-child(1) .stat-number { color: var(--pms-yellow); }
.stat-item:nth-child(2) .stat-number { color: var(--pms-blue); }
.stat-item:nth-child(3) .stat-number { color: var(--pms-red); }
.stat-item:nth-child(4) .stat-number { color: white; }

.stat-label {
    color: #9CA3AF;
    font-size: 0.875rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header-row {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 48px;
    gap: 16px;
}

@media (min-width: 768px) {
    .section-header-row {
        flex-direction: row;
        align-items: flex-end;
    }
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.25rem;
    font-weight: 900;
    margin-bottom: 16px;
}

.section-subtitle {
    color: #9CA3AF;
    max-width: 600px;
}

.section-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.section-tag span:first-child {
    width: 48px;
    height: 4px;
    border-radius: 2px;
}

.section-tag.blue span:first-child { background: var(--pms-blue); }
.section-tag.blue span:last-child { color: var(--pms-blue); font-weight: 600; }
.section-tag.red span:first-child { background: var(--pms-red); }
.section-tag.red span:last-child { color: var(--pms-red); font-weight: 600; }

.view-all {
    color: #9CA3AF;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.view-all:hover { color: var(--pms-yellow); }

/* Categories Section */
.categories-section { padding: 80px 0; }

.categories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .categories-grid { grid-template-columns: repeat(3, 1fr); }
}

.category-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 32px;
    text-align: center;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.category-icon {
    width: 96px;
    height: 96px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2.5rem;
    transition: transform 0.3s ease;
}

.category-card:hover .category-icon { transform: scale(1.1) rotate(6deg); }

.category-icon.blue { background: linear-gradient(135deg, var(--pms-blue), #0052a3); }
.category-icon.red { background: linear-gradient(135deg, var(--pms-red), #c1121f); }
.category-icon.yellow {
    background: linear-gradient(135deg, var(--pms-yellow), #ffed4e);
    color: var(--pms-dark);
}

.category-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.category-card:hover h3 { color: var(--pms-yellow); }

.category-card p {
    color: #9CA3AF;
    margin-bottom: 16px;
}

.category-link {
    color: var(--pms-yellow);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.category-link i { transition: transform 0.3s ease; }
.category-card:hover .category-link i { transform: translateX(4px); }

/* Products Section */
.products-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, var(--pms-dark), var(--pms-darker));
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 640px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .products-grid { grid-template-columns: repeat(4, 1fr); }
}

.product-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 102, 204, 0.2);
}

.product-image { position: relative; overflow: hidden; }

.product-image img {
    width: 100%;
    height: 256px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img { transform: scale(1.1); }

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, var(--pms-red), #ff6b6b);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 9999px;
}

.quick-view-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    background: white;
    color: var(--pms-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.product-card:hover .quick-view-btn { opacity: 1; }
.quick-view-btn:hover { background: var(--pms-yellow); }

.product-info { padding: 20px; }

.product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--pms-yellow);
    font-size: 0.75rem;
    margin-bottom: 8px;
}

.product-rating span {
    color: #6B7280;
    margin-left: 4px;
}

.product-name {
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.price-current {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pms-yellow);
}

.price-old {
    font-size: 0.875rem;
    color: #6B7280;
    text-decoration: line-through;
}

/* Camisas Section */
.camisas-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.camisas-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.1), var(--pms-dark), rgba(0, 102, 204, 0.1));
}

.filter-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 16px;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.filter-btn:hover { background: rgba(255, 255, 255, 0.2); }
.filter-btn.active { background: var(--pms-red); color: white; }

/* Ofertas Section */
.ofertas-section {
    padding: 80px 0;
    background: linear-gradient(90deg, rgba(230, 57, 70, 0.2), var(--pms-dark), rgba(255, 215, 0, 0.2));
}

.oferta-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 24px;
    padding: 48px;
}

.oferta-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 768px) {
    .oferta-grid { grid-template-columns: 1fr 1fr; }
}

.oferta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--pms-red);
    color: white;
    padding: 8px 16px;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 24px;
    animation: pulse 2s infinite;
}

.oferta-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 16px;
}

.oferta-description {
    color: #D1D5DB;
    font-size: 1.125rem;
    margin-bottom: 32px;
}

.countdown {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.countdown-item { text-align: center; }

.countdown-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px;
    min-width: 60px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pms-yellow);
}

.countdown-label {
    font-size: 0.75rem;
    color: #9CA3AF;
    margin-top: 4px;
}

.countdown-sep {
    color: var(--pms-yellow);
    font-size: 1.5rem;
    font-weight: 700;
}

.oferta-price {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.oferta-price .current {
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.oferta-price .old {
    font-size: 1.25rem;
    color: #6B7280;
    text-decoration: line-through;
}

.oferta-price .discount {
    background: var(--pms-red);
    color: white;
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
}

.oferta-image { position: relative; }

.oferta-image-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255, 215, 0, 0.2), rgba(230, 57, 70, 0.2));
    border-radius: 50%;
    filter: blur(60px);
}

.oferta-image img {
    position: relative;
    z-index: 10;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    width: 100%;
}

/* Fornecedores Section */
.fornecedores-section { padding: 80px 0; }

.fornecedores-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

@media (min-width: 768px) {
    .fornecedores-grid { grid-template-columns: repeat(4, 1fr); }
}

.fornecedor-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.fornecedor-card:hover { border-color: rgba(255, 255, 255, 0.3); }

.fornecedor-card i {
    font-size: 2.5rem;
    margin-bottom: 12px;
    display: block;
}

.fornecedor-card:nth-child(1) i { color: var(--pms-blue); }
.fornecedor-card:nth-child(2) i { color: var(--pms-red); }
.fornecedor-card:nth-child(3) i { color: var(--pms-yellow); }
.fornecedor-card:nth-child(4) i { color: white; }

.fornecedor-card h4 {
    font-weight: 700;
    margin-bottom: 4px;
}

.fornecedor-card p {
    font-size: 0.75rem;
    color: #9CA3AF;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .features-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-card { display: flex; gap: 16px; }

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon.blue { background: rgba(0, 102, 204, 0.2); color: var(--pms-blue); }
.feature-icon.red { background: rgba(230, 57, 70, 0.2); color: var(--pms-red); }
.feature-icon.yellow { background: rgba(255, 215, 0, 0.2); color: var(--pms-yellow); }

.feature-card h4 {
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.feature-card p {
    color: #9CA3AF;
    font-size: 0.875rem;
}

/* Depoimentos Section */
.depoimentos-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, var(--pms-darker), var(--pms-dark));
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .depoimentos-grid { grid-template-columns: repeat(3, 1fr); }
}

.depoimento-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
}

.stars {
    color: var(--pms-yellow);
    margin-bottom: 16px;
}

.depoimento-card > p {
    color: #D1D5DB;
    margin-bottom: 24px;
    line-height: 1.6;
}

.depoimento-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.author-avatar.blue { background: var(--pms-blue); }
.author-avatar.red { background: var(--pms-red); }
.author-avatar.yellow { background: var(--pms-yellow); color: var(--pms-dark); }

.author-name { font-weight: 600; }
.author-location {
    font-size: 0.75rem;
    color: #6B7280;
}

/* Newsletter Section */
.newsletter-section { padding: 80px 0; }

.newsletter-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 102, 204, 0.3);
    border-radius: 24px;
    padding: 64px 48px;
    overflow: hidden;
    text-align: center;
}

.newsletter-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 102, 204, 0.1), rgba(230, 57, 70, 0.1));
}

.newsletter-content { position: relative; z-index: 10; }

.newsletter-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 16px;
}

.newsletter-content h2 span { color: var(--pms-yellow); }

.newsletter-content > p {
    color: #9CA3AF;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 500px;
    margin: 0 auto 16px;
}

@media (min-width: 640px) {
    .newsletter-form { flex-direction: row; }
}

.newsletter-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    padding: 16px 24px;
    color: white;
    outline: none;
}

.newsletter-form input:focus { border-color: var(--pms-yellow); }
.newsletter-form input::placeholder { color: #9CA3AF; }

.newsletter-note {
    font-size: 0.75rem;
    color: #6B7280;
}

/* Footer */
.footer {
    background: var(--pms-darker);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.logo-box-small {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--pms-blue), var(--pms-red));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    color: white;
}

.footer-logo h3 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
}

.footer-logo p {
    color: var(--pms-yellow);
    font-size: 0.75rem;
    font-weight: 700;
}

.footer-description {
    color: #9CA3AF;
    font-size: 0.875rem;
    margin-bottom: 24px;
}

.social-links { display: flex; gap: 12px; }

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover { background: var(--pms-blue); }

.footer-links h4, .footer-contact h4 {
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-links ul, .footer-contact ul { list-style: none; }
.footer-links li, .footer-contact li { margin-bottom: 12px; }

.footer-links a {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover { color: var(--pms-yellow); }

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9CA3AF;
    font-size: 0.875rem;
}

.payment-methods { margin-top: 24px; }

.payment-methods p {
    font-size: 0.75rem;
    color: #6B7280;
    margin-bottom: 8px;
}

.payment-icons {
    display: flex;
    gap: 12px;
    font-size: 1.5rem;
    color: #6B7280;
}

.payment-icons i:hover { color: white; }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
    color: #6B7280;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: var(--pms-darker);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 50;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.cart-sidebar.active { transform: translateX(0); }

.cart-header {
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.25rem;
}

.cart-header button {
    background: none;
    border: none;
    color: #9CA3AF;
    font-size: 1.25rem;
    cursor: pointer;
}

.cart-header button:hover { color: white; }

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}

.empty-cart {
    text-align: center;
    color: #6B7280;
    padding: 48px 0;
}

.cart-item {
    display: flex;
    gap: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
}

.cart-item-info { flex: 1; }

.cart-item-name {
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 4px;
}

.cart-item-price {
    color: var(--pms-yellow);
    font-weight: 700;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.qty-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover { background: var(--pms-red); }

.remove-item {
    background: none;
    border: none;
    color: #6B7280;
    cursor: pointer;
    align-self: flex-start;
}

.remove-item:hover { color: var(--pms-red); }

.cart-footer {
    padding: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--pms-dark);
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 1.25rem;
    font-weight: 700;
}

#cart-total {
    color: var(--pms-yellow);
    font-size: 1.5rem;
}

.btn-continue {
    width: 100%;
    padding: 12px;
    background: none;
    border: none;
    color: #9CA3AF;
    cursor: pointer;
    margin-top: 8px;
    font-size: 0.875rem;
}

.btn-continue:hover { color: white; }

/* Overlay */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 40;
    display: none;
}

.overlay.active { display: block; }

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.modal.active { display: flex; }

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: var(--pms-darker);
    border-radius: 24px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.modal-small { max-width: 400px; }

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    z-index: 10;
}

.modal-close:hover { background: var(--pms-red); }

.modal-grid { display: grid; grid-template-columns: 1fr; }

@media (min-width: 768px) {
    .modal-grid { grid-template-columns: 1fr 1fr; }
}

.modal-image { position: relative; }

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
}

.modal-info { padding: 32px; }

.modal-badge {
    display: inline-block;
    background: var(--pms-yellow);
    color: var(--pms-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 9999px;
    margin-bottom: 16px;
}

.modal-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.modal-rating {
    color: var(--pms-yellow);
    margin-bottom: 16px;
}

.modal-price {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.modal-price .current {
    font-size: 2rem;
    font-weight: 700;
    color: var(--pms-yellow);
}

.modal-price .old {
    font-size: 1.25rem;
    color: #6B7280;
    text-decoration: line-through;
}

.modal-description {
    color: #D1D5DB;
    margin-bottom: 24px;
    line-height: 1.6;
}

.modal-features { margin-bottom: 24px; }

.modal-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9CA3AF;
    font-size: 0.875rem;
    margin-bottom: 8px;
}

.modal-feature i { color: var(--pms-green); }

/* Login Form */
.login-form { padding: 32px; }

.login-form h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

.login-form form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.login-form input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 16px;
    color: white;
    outline: none;
}

.login-form input:focus { border-color: var(--pms-blue); }

.login-note {
    text-align: center;
    color: #6B7280;
    font-size: 0.875rem;
    margin-bottom: 16px;
}

.social-login { display: flex; gap: 12px; }

.btn-social {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 12px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-google {
    background: white;
    color: #333;
}

.btn-google:hover { background: #f0f0f0; }

.btn-facebook {
    background: #1877F2;
    color: white;
}

.btn-facebook:hover { background: #166fe5; }

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 30;
    transition: transform 0.3s ease;
    animation: pulse-glow 2s infinite;
}

.whatsapp-float:hover { transform: scale(1.1); }

.hidden { display: none !important; }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--pms-darker); }
::-webkit-scrollbar-thumb {
    background: var(--pms-blue);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: #0052a3; }
