/* ===== AGNUS - MODERN MINIMAL STYLE ===== */
:root {
    --primary: #1D1D1B;
    --primary-light: #333333;
    --accent: #000000;
    --bg-white: #FFFFFF;
    --bg-light: #F8F8F8;
    --bg-card: #FAFAFA;
    --text-dark: #1D1D1B;
    --text-muted: #666666;
    --text-light: #999999;
    --border: #E5E5E5;
    --border-dark: #CCCCCC;
    --success: #22C55E;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
    --radius: 4px;
    --radius-lg: 8px;
    --transition: all 0.3s ease;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ===== RESET ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--primary);
    color: var(--bg-white);
    padding: 10px 0;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    overflow: hidden;
}

.top-bar-content {
    display: flex;
    gap: 60px;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.top-bar span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ===== HEADER ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.logo-cross {
    margin-right: 4px;
}

.nav {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--text-dark);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-btn {
    position: relative;
    color: var(--text-dark);
    padding: 8px;
    transition: var(--transition);
}

.cart-btn:hover {
    opacity: 0.6;
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    font-size: 10px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--text-dark);
}

/* ===== HERO ===== */
.hero {
    padding: 80px 0;
    background: var(--bg-light);
    text-align: center;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 8px 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 32px;
}

.hero-title {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
}

.btn-primary {
    background: var(--text-dark);
    color: var(--bg-white);
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--text-dark);
}

.btn-secondary:hover {
    background: var(--text-dark);
    color: var(--bg-white);
}

.btn-success {
    background: var(--success);
    color: white;
}

.btn-full {
    width: 100%;
}

/* ===== FEATURES ===== */
.features {
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.feature-card {
    padding: 20px;
}

.feature-icon {
    font-size: 24px;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 13px;
    color: var(--text-muted);
}

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-badge {
    display: inline-block;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 6px 16px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===== PRODUCTS ===== */
.products {
    padding: 80px 0;
}

.products-filter {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
}

.filter-btn {
    padding: 10px 24px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--text-dark);
    color: var(--bg-white);
    border-color: var(--text-dark);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--bg-white);
    transition: var(--transition);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-4px);
}

.product-image {
    aspect-ratio: 3/4;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    position: relative;
    overflow: hidden;
    margin-bottom: 16px;
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 6px 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-info {
    padding: 0 4px;
}

.product-category {
    font-size: 10px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.product-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-description {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.5;
}

/* Product Image - Real Photos */
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

/* Size Selector */
.product-sizes {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.size-btn {
    min-width: 40px;
    height: 36px;
    padding: 0 12px;
    border: 1px solid var(--border);
    background: var(--bg-white);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.size-btn:hover:not(.out-of-stock) {
    border-color: var(--text-dark);
}

.size-btn.selected {
    background: var(--text-dark);
    color: var(--bg-white);
    border-color: var(--text-dark);
}

.size-btn.out-of-stock {
    opacity: 0.4;
    cursor: not-allowed;
    text-decoration: line-through;
}

/* Product Prices */
.product-prices {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.product-footer {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-price-original {
    font-size: 13px;
    color: var(--text-light);
    text-decoration: line-through;
}

.product-price-pix {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

.product-price-pix span {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
}

.add-to-cart {
    margin-top: 12px;
    width: 100%;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 14px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
}

.add-to-cart:hover {
    background: var(--primary-light);
}

/* ===== ABOUT ===== */
.about {
    padding: 100px 0;
    background: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img-wrapper {
    aspect-ratio: 1;
    background: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--text-dark);
}

.cross-icon {
    font-size: 80px;
}

.about-text {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.8;
}

/* ===== CONTACT ===== */
.contact {
    padding: 80px 0;
}

.contact-methods {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 40px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.contact-method:hover {
    border-color: var(--text-dark);
}

.contact-method span:first-child {
    font-size: 20px;
}

.contact-method strong {
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
}

/* ===== FOOTER ===== */
.footer {
    padding: 60px 0 40px;
    background: var(--bg-light);
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.footer-brand {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 4px;
}

.footer p {
    font-size: 12px;
    color: var(--text-muted);
}

/* ===== CART SIDEBAR ===== */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1001;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 420px;
    max-width: 100%;
    background: var(--bg-white);
    z-index: 1002;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: var(--transition);
}

.cart-sidebar.active {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    border-bottom: 1px solid var(--border);
}

.cart-header h3 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cart-close {
    font-size: 24px;
    color: var(--text-muted);
    transition: var(--transition);
}

.cart-close:hover {
    color: var(--text-dark);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 24px 32px;
}

.cart-item {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.cart-item-image {
    width: 80px;
    height: 100px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.cart-item-size {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.cart-item-price {
    font-size: 14px;
    font-weight: 600;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

.cart-item-remove {
    font-size: 11px;
    color: var(--text-light);
    text-decoration: underline;
}

.cart-item-remove:hover {
    color: var(--text-dark);
}

.quantity-control {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
}

.quantity-control button {
    width: 32px;
    height: 32px;
    color: var(--text-dark);
    font-size: 16px;
}

.quantity-control span {
    width: 32px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
}

.cart-empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--text-muted);
}

.cart-empty.hidden {
    display: none;
}

.empty-icon {
    font-size: 48px;
    opacity: 0.3;
}

.cart-footer {
    padding: 24px 32px;
    border-top: 1px solid var(--border);
}

.cart-footer.hidden {
    display: none;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== MODAL ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 2000;
    padding: 24px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--bg-white);
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 40px;
    transform: scale(0.95);
    transition: var(--transition);
}

.modal-overlay.active .modal {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: var(--text-muted);
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--text-dark);
}

.checkout-step h2 {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 32px;
    text-align: center;
}

.checkout-step.hidden {
    display: none;
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.checkout-form input,
.checkout-form select {
    width: 100%;
    padding: 16px 20px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    font-size: 14px;
    transition: var(--transition);
}

.checkout-form input:focus,
.checkout-form select:focus {
    outline: none;
    border-color: var(--text-dark);
}

.checkout-form input::placeholder {
    color: var(--text-light);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    font-size: 16px;
    font-weight: 700;
    border-top: 1px solid var(--border);
    margin: 20px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#summary-items {
    max-height: 200px;
    overflow-y: auto;
}

/* ===== PIX ===== */
.qr-code {
    width: 180px;
    height: 180px;
    margin: 32px auto;
    background: var(--bg-white);
    border: 1px solid var(--border);
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-code canvas {
    width: 100% !important;
    height: 100% !important;
}

.pix-amount {
    text-align: center;
    font-size: 14px;
    margin-bottom: 24px;
}

.pix-amount strong {
    font-size: 24px;
    font-weight: 800;
}

.pix-copy {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.pix-copy input {
    flex: 1;
    padding: 14px;
    border: 1px solid var(--border);
    font-size: 11px;
}

.pix-copy button {
    padding: 14px 24px;
    background: var(--text-dark);
    color: var(--bg-white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== SUCCESS ===== */
#step-success {
    text-align: center;
    padding: 40px 0;
}

.success-icon {
    width: 80px;
    height: 80px;
    border: 2px solid var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 40px;
    color: var(--success);
}

#step-success h2 {
    color: var(--success);
}

#step-success p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* ===== TOAST ===== */
.toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 16px 32px;
    font-size: 13px;
    font-weight: 500;
    transform: translateX(calc(100% + 24px));
    transition: var(--transition);
    z-index: 3000;
}

.toast.active {
    transform: translateX(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 32px;
        gap: 20px;
        border-bottom: 1px solid var(--border);
    }

    .nav.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 32px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .cart-sidebar {
        width: 100%;
    }

    .contact-methods {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}