/* 
   G&M T-Shirts | Public Store Design System
   Estética: Cyberpunk / Neon / Modern eCommerce
*/

:root {
    --bg-main: #080808;
    --bg-accent: #111111;
    --neon-pink: #ff2a9d;
    --neon-pink-glow: rgba(255, 42, 157, 0.4);
    --neon-cyan: #00f3ff;
    --neon-cyan-glow: rgba(0, 243, 255, 0.3);
    --text-white: #ffffff;
    --text-muted: #8b949e;
    --glass-bg: rgba(20, 20, 20, 0.8);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    background-color: var(--bg-main);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, .brand {
    font-family: 'Outfit', sans-serif;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-main); }
::-webkit-scrollbar-thumb { background: var(--neon-pink); border-radius: 10px; }

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: white;
}

.logo-container img {
    width: 45px;
    filter: drop-shadow(0 0 10px var(--neon-pink-glow));
}

.logo-container span {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink-glow);
}

/* Hero Section */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    background-image: radial-gradient(circle at 70% 30%, #1a1018 0%, transparent 50%),
                      url('https://images.unsplash.com/photo-1558591710-4b4a1ae0f04d?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, var(--bg-main), transparent);
}

.hero-content {
    max-width: 700px;
    z-index: 2;
}

.hero-tag {
    color: var(--neon-pink);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 4px;
    font-size: 14px;
    margin-bottom: 20px;
    display: block;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    line-height: 1;
    margin-bottom: 25px;
    font-weight: 900;
    -webkit-text-stroke: 0.5px #00f3ff;
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.3);
}

.hero span {
    color: transparent;
    -webkit-text-stroke: 1px var(--neon-pink);
    text-shadow: 0 0 20px var(--neon-pink-glow);
}

.btn-hero {
    display: inline-block;
    padding: 18px 40px;
    background: var(--neon-pink);
    color: white;
    text-decoration: none;
    font-weight: 800;
    border-radius: 5px;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 0 20px var(--neon-pink-glow);
    transition: var(--transition);
}

.btn-hero:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 40px var(--neon-pink);
}

/* Product Grid */
.container {
    padding: 80px 5%;
}

.section-title {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--neon-pink);
    margin: 15px auto 0;
    box-shadow: 0 0 10px var(--neon-pink);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
}

/* Product Card */
.product-card {
    background: var(--bg-accent);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-pink);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 15px rgba(255, 42, 157, 0.2);
}

.product-img-wrapper {
    width: 100%;
    aspect-ratio: 1/1.2;
    overflow: hidden;
    background: #151515;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-info {
    padding: 25px;
}

.product-category {
    font-size: 12px;
    color: var(--neon-pink);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.price-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.price-label {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.price-value {
    font-size: 20px;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
}

.price-fidelizado {
    color: var(--neon-cyan);
    text-shadow: 0 0 5px var(--neon-cyan-glow);
}

.btn-buy {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--neon-pink);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    transition: var(--transition);
}

.btn-buy:hover {
    transform: rotate(15deg);
    box-shadow: 0 0 15px var(--neon-pink);
}

/* Cart Drawer */
.cart-drawer {
    position: fixed;
    top: 0;
    right: -450px;
    width: 100%;
    max-width: 450px;
    height: 100vh;
    background: var(--bg-accent);
    z-index: 2000;
    box-shadow: -10px 0 30px rgba(0,0,0,0.8);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--glass-border);
}

.cart-drawer.active {
    right: 0;
}

.cart-header {
    padding: 30px;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h2 {
    font-size: 24px;
    color: var(--neon-pink);
}

.close-cart {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
}

.close-cart:hover {
    color: var(--neon-pink);
    transform: rotate(90deg);
}

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

.cart-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.cart-item-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
}

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

.cart-item-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
}

.cart-item-price {
    color: var(--neon-pink);
    font-weight: 700;
    font-size: 16px;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #f85149;
    cursor: pointer;
    font-size: 12px;
    margin-top: 5px;
}

.cart-footer {
    padding: 30px;
    background: rgba(0,0,0,0.3);
    border-top: 1px solid var(--glass-border);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
}

.btn-checkout {
    display: block;
    width: 100%;
    padding: 15px;
    background: var(--neon-pink);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 15px var(--neon-pink-glow);
    transition: var(--transition);
}

.btn-checkout:hover {
    box-shadow: 0 0 25px var(--neon-pink);
    transform: translateY(-2px);
}

/* Cart Toggle Button */
.cart-count-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--neon-pink);
    color: white;
    font-size: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: 0 0 10px var(--neon-pink);
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1500;
    display: none;
    backdrop-filter: blur(5px);
}

.cart-overlay.active {
    display: block;
}

/* Footer */
footer {
    background: var(--bg-accent);
    padding: 60px 5%;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    width: 60px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-icon {
    color: var(--text-muted);
    font-size: 24px;
    transition: var(--transition);
}

.social-icon:hover {
    color: var(--neon-pink);
    transform: scale(1.2);
}

.copyright {
    color: var(--text-muted);
    font-size: 14px;
}
