/* ============================================
   BRAVO DELUCE - COMPLETE CSS STYLESHEET
   Premium Fashion Brand - Mobile-First
   Version: 2.0
   ============================================ */

/* CSS Variables */
:root {
    --bg: #0a0a0a;
    --bg-alt: #0c0c0c;
    --panel: #111111;
    --panel-hover: #161616;
    --text: #ffffff;
    --text-alt: #e8e8e8;
    --muted: #999999;
    --accent: #c9a84c;
    --accent-hover: #d4b85c;
    --accent-glow: rgba(201, 168, 76, 0.2);
    --accent-gradient: linear-gradient(135deg, #c9a84c, #e0c878);
    --gold: #c9a84c;
    --gold-gradient: linear-gradient(135deg, #c9a84c, #e0c878, #c9a84c);
    --line: #1a1a1a;
    --line-light: #222222;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 8px 30px rgba(201, 168, 76, 0.1);
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --radius-sm: 4px;
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
}

/* Reset & Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Montserrat', 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.wrap {
    width: min(1200px, 94vw);
    margin: 0 auto;
}

/* ============================================
   HEADER / TOPBAR
   ============================================ */

.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.topbar .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    gap: 20px;
}

.topbar .brand {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.topbar .brand img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.topbar .brand::after {
    content: 'BRAVO DELUCE';
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
}

.topbar .main-nav {
    display: flex;
    gap: 24px;
    align-items: center;
}

.topbar .main-nav a {
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    padding: 4px 0;
}

.topbar .main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.topbar .main-nav a:hover::after,
.topbar .main-nav a.active::after {
    width: 100%;
}

.topbar .main-nav a:hover,
.topbar .main-nav a.active {
    color: var(--gold);
}

.cart-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.cart-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 50%;
    background: var(--gold);
    color: #000;
    font-size: 0.62rem;
    font-weight: 800;
    line-height: 1;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 8px;
    position: relative;
    z-index: 55;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text);
    margin: 4px 0;
    transition: 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav Backdrop */
.mobile-nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 40;
}

body.nav-open {
    overflow: hidden;
}

/* ============================================
   HERO SECTION - Clean & Classy
   ============================================ */

.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 100vh;
    min-height: 100dvh;
    background: var(--bg);
    overflow: hidden;
}

/* Subtle gradient overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(201, 168, 76, 0.03) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

/* Hero Layout */
.hero-shell {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 32px;
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px 0;
}

/* Hero Visual */
.hero-visual {
    width: 100%;
    max-width: 320px;
    animation: subtleFloat 4s ease-in-out infinite;
}

@keyframes subtleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hero-visual-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-main-image {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    filter: brightness(0.95);
}

/* Floating badges */
.hero-floating-badge {
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(201, 168, 76, 0.3);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-alt);
}

.hero-floating-badge.top-right {
    top: 12px;
    right: 12px;
}

.hero-floating-badge.bottom-left {
    bottom: 12px;
    left: 12px;
}

.floating-icon {
    font-size: 0.9rem;
}

/* Hero Copy */
.hero-copy {
    max-width: 400px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 20px;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(201, 168, 76, 0); }
}

.badge-dot {
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    animation: dotGlow 1.5s ease-in-out infinite;
}

@keyframes dotGlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Title */
.hero h1 {
    font-size: 2.2rem;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.title-line {
    display: block;
}

.title-line.accent {
    -webkit-text-stroke: 1.5px var(--gold);
    color: transparent;
    margin-top: -2px;
}

.hero-description {
    font-size: 0.88rem;
    color: var(--muted);
    margin-bottom: 24px;
    line-height: 1.6;
    padding: 0 10px;
}

/* Actions */
.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    border-radius: var(--radius-sm);
    width: 100%;
    max-width: 280px;
    font-family: inherit;
}

.button.primary {
    background: var(--gold);
    color: #000;
}

.button.primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.3);
}

.button.primary:active {
    transform: scale(0.98);
}

.button.outline {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: var(--text);
}

.button.outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text);
    transform: translateY(-2px);
}

.button.outline:active {
    transform: scale(0.98);
}

.button-arrow {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.button.primary:hover .button-arrow {
    transform: translateX(4px);
}

/* Mini Links */
.hero-mini-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.hero-link-chip {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--muted);
    transition: var(--transition);
}

.hero-link-chip:hover {
    background: rgba(201, 168, 76, 0.15);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-1px);
}

.hero-link-chip:active {
    transform: scale(0.95);
}

/* Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--gold);
}

.stat-label {
    font-size: 0.65rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Scroll Indicator */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}

.scroll-dot {
    width: 3px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: dotScroll 1.5s ease-in-out infinite;
}

@keyframes dotScroll {
    0% { top: 6px; opacity: 1; }
    100% { top: 22px; opacity: 0; }
}

.scroll-indicator span {
    font-size: 0.6rem;
    letter-spacing: 2px;
    color: var(--muted);
    font-weight: 600;
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
    padding: 60px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 36px;
}

.section-tag {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.section-header h2 {
    font-size: 1.6rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
    line-height: 1.2;
}

.accent-text {
    color: var(--gold);
}

.section-subtitle {
    color: var(--muted);
    font-size: 0.85rem;
    padding: 0 20px;
}

/* ============================================
   CATEGORY CARDS
   ============================================ */

.cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.category-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    display: block;
}

.category-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: var(--shadow-hover);
}

.category-card:active {
    transform: scale(0.98);
}

.card-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-card:hover .card-image-wrapper img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
    pointer-events: none;
}

.card-number {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 1.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.15);
    font-style: italic;
    pointer-events: none;
}

.card-content {
    padding: 16px;
}

.card-content h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.card-content .muted {
    color: var(--muted);
    font-size: 0.8rem;
    margin-bottom: 12px;
}

.card-link {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.arrow {
    transition: transform 0.3s ease;
}

.category-card:hover .arrow {
    transform: translateX(4px);
}

/* ============================================
   PRODUCT CARDS
   ============================================ */

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.product-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: var(--shadow-hover);
}

.product-card:active {
    transform: scale(0.98);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.05);
}

/* Product Badges */
.product-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 3px 10px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 3px;
    text-transform: uppercase;
    z-index: 2;
    pointer-events: none;
}

.product-badge.new {
    background: #000;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.product-badge.sale {
    background: #c0392b;
    color: #fff;
    left: auto;
    right: 8px;
}

.product-badge.bestseller {
    background: var(--gold);
    color: #000;
}

.product-rank {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 1.8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    font-style: italic;
    z-index: 1;
    pointer-events: none;
}

/* Product Actions */
.product-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 3;
}

.action-btn {
    flex: 1;
    padding: 10px;
    border: none;
    font-weight: 600;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    text-align: center;
    font-family: inherit;
    transition: var(--transition);
}

.quick-view {
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
}

.quick-view:hover {
    background: #000;
}

.add-to-cart {
    background: var(--gold);
    color: #000;
}

.add-to-cart:hover {
    background: var(--accent-hover);
}

/* Product Content */
.product .content {
    padding: 12px;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.product-category {
    font-size: 0.62rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.product-rating {
    font-size: 0.65rem;
    color: var(--gold);
}

.content h3 {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1.3;
}

.content .muted {
    color: var(--muted);
    font-size: 0.7rem;
    line-height: 1.4;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.price {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--gold);
}

.old-price {
    font-size: 0.7rem;
    color: var(--muted);
    text-decoration: line-through;
}

.sold-count {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.65rem;
    color: var(--muted);
}

.fire-icon {
    font-size: 0.7rem;
}

/* ============================================
   FEATURED CARDS
   ============================================ */

.featured-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.featured-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    display: block;
}

.featured-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.featured-card:active {
    transform: scale(0.98);
}

.featured-image {
    position: relative;
    aspect-ratio: 1/1;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.featured-card:hover .featured-image img {
    transform: scale(1.05);
}

.featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 40%);
    display: flex;
    align-items: flex-end;
    padding: 16px;
    pointer-events: none;
}

.featured-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
    padding: 5px 12px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 3px;
}

.featured-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
}

.featured-content h3 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
}

.featured-content .price {
    font-size: 0.85rem;
    color: var(--gold);
}

.featured-content .button.small {
    padding: 8px 16px;
    font-size: 0.65rem;
    letter-spacing: 1px;
    background: var(--gold);
    color: #000;
    border-radius: 4px;
    max-width: 120px;
    width: auto;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.testimonial-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px;
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--text-alt);
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: #000;
    flex-shrink: 0;
}

.author-info h3 {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.author-title {
    font-size: 0.7rem;
    color: var(--gold);
}

.quote-icon {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 2.5rem;
    color: rgba(201, 168, 76, 0.08);
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

/* ============================================
   NEWSLETTER
   ============================================ */

.newsletter-section {
    background: var(--bg-alt);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.newsletter-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
    padding: 40px 0;
}

.newsletter-content h2 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    font-weight: 900;
    text-transform: uppercase;
}

.newsletter-content p {
    color: var(--muted);
    font-size: 0.85rem;
    padding: 0 10px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form input {
    width: 100%;
    padding: 14px 18px;
    background: var(--panel);
    border: 1.5px solid var(--line);
    color: #fff;
    font-size: 0.88rem;
    border-radius: var(--radius-sm);
    font-family: inherit;
    transition: var(--transition);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.newsletter-form input::placeholder {
    color: #666;
}

.newsletter-form .button {
    max-width: 100%;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    padding: 40px 0 20px;
    background: #080808;
    border-top: 1px solid var(--line);
}

.footer .wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer h3 {
    font-size: 0.8rem;
    margin-bottom: 12px;
    color: var(--text);
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer .brand-block {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.footer .brand-block img {
    height: 28px;
    width: auto;
    object-fit: contain;
}

.footer .brand-block .brand-name {
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
}

.footer p,
.footer a {
    color: var(--muted);
    line-height: 1.8;
    font-size: 0.8rem;
    display: block;
}

.footer a:hover {
    color: var(--gold);
}

.footer .small {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--line-light);
    color: var(--muted);
    font-size: 0.75rem;
    text-align: center;
}

/* ============================================
   SCROLLBAR
   ============================================ */

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--line-light);
    border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* ============================================
   SELECTION
   ============================================ */

::selection {
    background: var(--gold);
    color: #000;
}

/* ============================================
   MOBILE RESPONSIVE - PHONE (≤768px)
   ============================================ */

@media (max-width: 768px) {
    /* Header Mobile */
    .topbar .wrap {
        height: 56px;
    }
    
    .topbar .brand img {
        height: 28px;
    }
    
    .topbar .brand::after {
        font-size: 0.62rem;
        letter-spacing: 0.15em;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .topbar .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 75vw;
        max-width: 280px;
        height: 100vh;
        height: 100dvh;
        padding: 70px 20px 20px;
        background: rgba(10, 10, 10, 0.98);
        border-left: 1px solid var(--line);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 45;
        overflow-y: auto;
    }
    
    body.nav-open .topbar .main-nav {
        transform: translateX(0);
    }
    
    body.nav-open .mobile-nav-backdrop {
        display: block;
    }
    
    .topbar .main-nav a {
        font-size: 0.8rem;
        letter-spacing: 1.2px;
        padding: 14px 0;
        width: 100%;
        border-bottom: 1px solid var(--line);
    }
    
    .topbar .main-nav a:last-child {
        border-bottom: none;
    }
    
    /* Hero Mobile */
    .hero {
        min-height: auto;
        padding: 10px 0 80px;
    }
    
    .hero-shell {
        gap: 24px;
    }
    
    .hero-visual {
        max-width: 280px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .title-line.accent {
        -webkit-text-stroke: 1px var(--gold);
    }
    
    .hero-description {
        font-size: 0.82rem;
        padding: 0 5px;
    }
    
    /* Sections Mobile */
    .section {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 28px;
    }
    
    .section-header h2 {
        font-size: 1.4rem;
    }
    
    .section-subtitle {
        font-size: 0.8rem;
    }
    
    /* Cards Mobile */
    .card-image-wrapper {
        aspect-ratio: 16/9;
    }
    
    .product-image-wrapper {
        aspect-ratio: 4/5;
    }
    
    /* Featured Mobile */
    .featured-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    /* Testimonials Mobile */
    .testimonial-card {
        padding: 16px;
    }
    
    .testimonial-text {
        font-size: 0.82rem;
    }
    
    .quote-icon {
        font-size: 2rem;
        top: 8px;
        right: 12px;
    }
    
    /* Newsletter Mobile */
    .newsletter-wrapper {
        padding: 32px 0;
    }
    
    .newsletter-content h2 {
        font-size: 1.2rem;
    }
}

/* ============================================
   MOBILE RESPONSIVE - SMALL PHONE (≤480px)
   ============================================ */

@media (max-width: 480px) {
    .wrap {
        width: 92vw;
    }
    
    .hero-visual {
        max-width: 240px;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 0.78rem;
    }
    
    .hero-badge {
        padding: 5px 12px;
        font-size: 0.62rem;
        letter-spacing: 1.5px;
        gap: 6px;
    }
    
    .badge-dot {
        width: 3px;
        height: 3px;
    }
    
    .button {
        padding: 12px 20px;
        font-size: 0.75rem;
        letter-spacing: 1px;
    }
    
    .hero-stats {
        gap: 16px;
    }
    
    .stat-number {
        font-size: 1rem;
    }
    
    .stat-label {
        font-size: 0.6rem;
    }
    
    .section-header h2 {
        font-size: 1.2rem;
    }
    
    .section-tag {
        font-size: 0.6rem;
        padding: 4px 12px;
        letter-spacing: 1.5px;
    }
    
    .grid {
        gap: 8px;
    }
    
    .product-image-wrapper {
        aspect-ratio: 3/4;
    }
    
    .product-badge {
        font-size: 0.55rem;
        padding: 2px 8px;
        top: 6px;
        left: 6px;
    }
    
    .product-rank {
        font-size: 1.4rem;
        top: 6px;
        right: 6px;
    }
    
    .action-btn {
        padding: 8px;
        font-size: 0.6rem;
    }
    
    .product .content {
        padding: 10px;
    }
    
    .content h3 {
        font-size: 0.78rem;
    }
    
    .price {
        font-size: 0.8rem;
    }
    
    .featured-content h3 {
        font-size: 0.8rem;
    }
    
    .footer .brand-block img {
        height: 24px;
    }
    
    .footer .brand-block .brand-name {
        font-size: 0.7rem;
    }
}

/* ============================================
   TABLET (≥768px)
   ============================================ */

@media (min-width: 768px) {
    .hero-shell {
        flex-direction: row;
        text-align: left;
        gap: 40px;
    }
    
    .hero-visual {
        max-width: 380px;
        flex-shrink: 0;
    }
    
    .hero-copy {
        max-width: 420px;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero-description {
        padding: 0;
    }
    
    .hero-actions {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
    }
    
    .button {
        width: auto;
        max-width: none;
    }
    
    .hero-mini-links {
        justify-content: flex-start;
    }
    
    .hero-stats {
        justify-content: flex-start;
        gap: 32px;
    }
    
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .newsletter-wrapper {
        flex-direction: row;
        text-align: left;
        align-items: center;
        gap: 40px;
    }
    
    .newsletter-form {
        flex-direction: row;
        flex-shrink: 0;
    }
    
    .newsletter-form input {
        width: 280px;
    }
    
    .footer .wrap {
        flex-direction: row;
        gap: 40px;
    }
}

/* ============================================
   DESKTOP (≥1024px)
   ============================================ */

@media (min-width: 1024px) {
    .hero-shell {
        gap: 60px;
    }
    
    .hero-visual {
        max-width: 450px;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .cards {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .section-header {
        margin-bottom: 48px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

/* ============================================
   LANDSCAPE MOBILE
   ============================================ */

@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 80px 0 40px;
    }
    
    .hero-shell {
        gap: 20px;
    }
    
    .hero-visual {
        max-width: 180px;
    }
    
    .hero h1 {
        font-size: 1.4rem;
    }
    
    .scroll-indicator {
        display: none;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .topbar,
    .scroll-indicator,
    .hero-floating-badge,
    .product-actions,
    .newsletter-section,
    .footer {
        display: none;
    }
    
    body {
        background: #fff;
        color: #000;
    }
    
    .hero {
        min-height: auto;
    }
}