/* ============================================
   ENZO - Ultra Modern Dog Lifestyle Website CSS
   Version: 2.0 - Premium Design
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    /* Primary Palette - Warm & Inviting */
    --primary: #FF6B6B;
    --primary-light: #FF8E8E;
    --primary-dark: #E85555;
    --primary-glow: rgba(255, 107, 107, 0.4);

    /* Secondary - Golden Accent */
    --secondary: #FFD93D;
    --secondary-light: #FFE066;
    --secondary-dark: #F0C800;
    --secondary-glow: rgba(255, 217, 61, 0.4);

    /* Neutrals */
    --dark: #0F0F0F;
    --dark-soft: #1A1A2E;
    --dark-card: #16213E;
    --gray-900: #1A1A2E;
    --gray-800: #2D2D44;
    --gray-700: #3D3D5C;
    --gray-600: #5A5A7A;
    --gray-500: #7A7A9A;
    --gray-400: #9A9ABA;
    --gray-300: #BFBFDB;
    --gray-200: #DCDCF0;
    --gray-100: #F0F0F8;
    --light: #FAFAFE;
    --white: #FFFFFF;

    /* Semantic */
    --success: #10B981;
    --success-light: #34D399;
    --danger: #EF4444;
    --danger-light: #F87171;
    --warning: #F59E0B;
    --warning-light: #FBBF24;
    --info: #3B82F6;
    --info-light: #60A5FA;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    --gradient-secondary: linear-gradient(135deg, #FFD93D 0%, #FF6B6B 100%);
    --gradient-hero: linear-gradient(135deg, #17211D 0%, #2F8F7B 100%);
    --gradient-dark: linear-gradient(135deg, #0F0F0F 0%, #1A1A2E 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    --gradient-card: linear-gradient(145deg, #FFFFFF 0%, #F8F8FF 100%);
    --gradient-warm: linear-gradient(135deg, #FF6B6B 0%, #FFD93D 50%, #FF6B6B 100%);

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 40px rgba(255, 107, 107, 0.3);
    --shadow-glow-secondary: 0 0 40px rgba(255, 217, 61, 0.3);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-card-hover: 0 12px 40px rgba(0, 0, 0, 0.15);

    /* Borders */
    --border: 1px solid rgba(0, 0, 0, 0.06);
    --border-light: 1px solid rgba(255, 255, 255, 0.1);
    --border-radius: 16px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;

    /* Z-index */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-modal: 300;
    --z-tooltip: 400;
}

/* ============ Reset & Base ============ */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    background: var(--light);
    color: var(--dark);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ============ Typography ============ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark);
    letter-spacing: 0;
}

h1 {
    font-size: 4rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 3rem;
    font-weight: 700;
}

h3 {
    font-size: 2rem;
    font-weight: 600;
}

h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.1rem; }

p {
    margin-bottom: 1rem;
    color: var(--gray-600);
    font-size: 1.05rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition-base);
    position: relative;
}

a:hover {
    color: var(--primary-dark);
}

/* Selection */
::selection {
    background: var(--primary);
    color: var(--white);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ============ Layout ============ */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 3rem);
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.flex {
    display: flex;
    gap: 1rem;
}

.flex-between {
    justify-content: space-between;
}

.flex-center {
    justify-content: center;
    align-items: center;
}

.flex-wrap { flex-wrap: wrap; }
.flex-col { flex-direction: column; }

/* ============ Header/Navigation ============ */

header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
    transition: var(--transition-base);
}

header.scrolled {
    box-shadow: var(--shadow-lg);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: var(--transition-base);
}

.logo:hover {
    transform: scale(1.02);
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-glow);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 107, 107, 0.4); }
    50% { box-shadow: 0 0 30px rgba(255, 107, 107, 0.6); }
}

nav ul {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
}

nav a {
    color: var(--gray-700);
    font-weight: 500;
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-full);
    transition: var(--transition-base);
    position: relative;
    font-size: 0.95rem;
}

nav a:hover,
nav a.active {
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-base);
    transform: translateX(-50%);
}

nav a:hover::after {
    width: 60%;
}

.cart-icon {
    position: relative;
    font-size: 1.4rem;
    cursor: pointer;
    padding: 0.6rem;
    border-radius: var(--radius-full);
    transition: var(--transition-base);
}

.cart-icon:hover {
    background: var(--gray-100);
}

.cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    animation: bounce-in 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes bounce-in {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* ============ Buttons ============ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.8rem;
    border: none;
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
    text-align: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: var(--transition-smooth);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.45);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: var(--dark);
    box-shadow: 0 4px 15px rgba(255, 217, 61, 0.35);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 217, 61, 0.45);
}

.btn-dark {
    background: var(--gradient-dark);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(15, 15, 15, 0.35);
}

.btn-dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(15, 15, 15, 0.45);
}

.btn-success {
    background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.35);
}

.btn-success:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.45);
}

.btn-danger {
    background: linear-gradient(135deg, var(--danger) 0%, #DC2626 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.35);
}

.btn-danger:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.45);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-ghost {
    background: transparent;
    color: var(--gray-700);
}

.btn-ghost:hover {
    background: var(--gray-100);
    color: var(--dark);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 1.1rem 2.4rem;
    font-size: 1.1rem;
}

.btn-icon {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: var(--radius-full);
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* ============ Forms ============ */

form {
    margin: 1.5rem 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}

input,
textarea,
select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-base);
    background: var(--white);
    color: var(--dark);
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.1);
    background: var(--white);
}

input::placeholder,
textarea::placeholder {
    color: var(--gray-400);
}

textarea {
    resize: vertical;
    min-height: 140px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.error {
    color: var(--danger);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.success-message,
.error-message,
.info-message {
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: slide-down 0.3s ease;
}

@keyframes slide-down {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.success-message {
    background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%);
    color: #065F46;
    border: 1px solid #6EE7B7;
}

.error-message {
    background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 100%);
    color: #991B1B;
    border: 1px solid #FCA5A5;
}

.info-message {
    background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
    color: #1E40AF;
    border: 1px solid #93C5FD;
}

/* ============ Cards ============ */

.card {
    background: var(--white);
    border: none;
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-card);
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-base);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
}

.card:hover::before {
    opacity: 1;
}

.card-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.card:hover .card-image {
    transform: scale(1.05);
}

.card-image-wrapper {
    overflow: hidden;
    position: relative;
}

.card-body {
    padding: 1.75rem;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--dark);
    transition: var(--transition-base);
}

.card:hover .card-title {
    color: var(--primary);
}

.card-text {
    color: var(--gray-600);
    font-size: 1rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.card-price {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

/* ============ Hero Section ============ */

.hero {
    background: var(--gradient-primary);
    color: var(--white);
    padding: clamp(80px, 12vw, 150px) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 217, 61, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 107, 107, 0.4) 0%, transparent 50%);
    animation: hero-gradient 10s ease infinite;
    background-size: 200% 200%;
}

@keyframes hero-gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    -webkit-text-fill-color: white;
    background: none;
    letter-spacing: 0;
    line-height: 1.1;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    color: white;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero .btn {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
}

.hero .btn-secondary {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hero .btn-secondary:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* Floating shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float-shapes 8s ease-in-out infinite;
}

.hero-shape-1 {
    width: 300px;
    height: 300px;
    background: var(--white);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.hero-shape-2 {
    width: 200px;
    height: 200px;
    background: var(--secondary);
    bottom: -50px;
    right: 10%;
    animation-delay: 2s;
}

.hero-shape-3 {
    width: 150px;
    height: 150px;
    background: var(--white);
    top: 30%;
    right: -50px;
    animation-delay: 4s;
}

@keyframes float-shapes {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* ============ Product Grid ============ */

.product-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
}

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gradient-secondary);
    color: var(--dark);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 10;
    box-shadow: var(--shadow-md);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.5rem;
    gap: 1rem;
    opacity: 0;
    transition: var(--transition-smooth);
    transform: translateY(20px);
}

.product-card:hover .product-overlay {
    opacity: 1;
    transform: translateY(0);
}

.product-overlay .btn {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    color: var(--dark);
}

.product-overlay .btn:hover {
    background: var(--primary);
    color: var(--white);
}

/* ============ Table ============ */

.table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 1.5rem 0;
    font-size: 0.95rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.table thead {
    background: var(--gradient-primary);
    color: var(--white);
}

.table th {
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-700);
}

.table tbody tr {
    transition: var(--transition-base);
}

.table tbody tr:hover {
    background: var(--gray-100);
}

.table tbody tr:last-child td {
    border-bottom: none;
}

.table-status {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
}

.table-status.pending {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    color: #92400E;
}

.table-status.processing,
.table-status.active {
    background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
    color: #1E40AF;
}

.table-status.completed,
.table-status.shipped,
.table-status.delivered {
    background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%);
    color: #065F46;
}

.table-status.cancelled {
    background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 100%);
    color: #991B1B;
}

.table-actions {
    display: flex;
    gap: 0.5rem;
}

.table-actions .btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

/* ============ Footer ============ */

footer {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 4rem 0 0;
    margin-top: 0;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

.footer-section p {
    color: var(--gray-400);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: var(--gray-400);
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-base);
}

.footer-social a:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--gray-500);
    font-size: 0.9rem;
}

/* ============ Pagination ============ */

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 2.5rem 0;
}

.pagination a,
.pagination span {
    padding: 0.75rem 1.25rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: var(--transition-base);
    font-weight: 600;
    color: var(--gray-600);
}

.pagination a:hover {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
}

.pagination .active {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
    box-shadow: var(--shadow-glow);
}

/* ============ Admin Panel ============ */

.admin-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: 100vh;
}

.admin-sidebar {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 2rem 1.5rem;
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 280px;
    overflow-y: auto;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-sidebar .logo {
    margin-bottom: 2.5rem;
    font-size: 1.5rem;
    color: var(--white);
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-sidebar ul {
    list-style: none;
}

.admin-sidebar li {
    margin-bottom: 0.5rem;
}

.admin-sidebar a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.25rem;
    color: var(--gray-400);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
    position: relative;
    font-weight: 500;
}

.admin-sidebar a:hover,
.admin-sidebar a.active {
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    box-shadow: var(--shadow-glow);
}

.admin-sidebar .badge {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--danger);
    color: var(--white);
    padding: 0.3rem 0.7rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
}

.admin-main {
    margin-left: 280px;
    padding: 2rem;
    background: var(--gray-100);
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--white);
    padding: 1.75rem;
    border-radius: var(--radius-xl);
    border-left: 4px solid var(--primary);
    box-shadow: var(--shadow-card);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    opacity: 0.05;
    border-radius: 0 0 0 100%;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stat-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--gray-600);
    font-size: 1rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

/* ============ Badge ============ */

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.85rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    margin-left: 0.5rem;
}

/* ============ Section Styling ============ */

.section {
    padding: clamp(4rem, 8vw, 8rem) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--gray-500);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ============ Newsletter Section ============ */

.newsletter-section {
    padding: 5rem 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 217, 61, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
}

.newsletter-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
    -webkit-text-fill-color: white;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1.1rem 1.5rem;
    border: none;
    border-radius: var(--radius-full);
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.newsletter-form .btn {
    background: var(--dark);
    color: var(--white);
    white-space: nowrap;
}

/* ============ About Section ============ */

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-story-card {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    align-items: stretch;
}

.about-story-media {
    min-height: 420px;
    background: var(--surface-soft);
    overflow: hidden;
}

.about-story-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center 35%;
}

.about-story-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-story-copy .hero-kicker {
    align-self: flex-start;
    border-color: var(--line);
    background: var(--surface-soft);
    color: var(--accent-dark);
}

/* ============ Features ============ */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-glow);
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

/* ============ Testimonials ============ */

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: var(--primary);
    opacity: 0.15;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
}

.testimonial-name {
    font-weight: 700;
    color: var(--dark);
    font-size: 1.05rem;
}

.testimonial-role {
    color: var(--gray-500);
    font-size: 0.9rem;
}

/* ============ Animations ============ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scale-in {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-fade-in {
    animation: fadeIn 0.6s ease forwards;
}

.animate-slide-in-left {
    animation: slideInLeft 0.6s ease forwards;
}

.animate-slide-in-right {
    animation: slideInRight 0.6s ease forwards;
}

/* Stagger children */
.stagger-children > *:nth-child(1) { animation-delay: 0.1s; }
.stagger-children > *:nth-child(2) { animation-delay: 0.2s; }
.stagger-children > *:nth-child(3) { animation-delay: 0.3s; }
.stagger-children > *:nth-child(4) { animation-delay: 0.4s; }
.stagger-children > *:nth-child(5) { animation-delay: 0.5s; }
.stagger-children > *:nth-child(6) { animation-delay: 0.6s; }

/* ============ Utility Classes ============ */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }
.p-5 { padding: 3rem; }

.bg-white { background: var(--white); }
.bg-light { background: var(--gray-100); }
.bg-dark { background: var(--dark); }
.bg-primary { background: var(--gradient-primary); }

.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-success { color: var(--success); }
.text-danger { color: var(--danger); }
.text-muted { color: var(--gray-500); }

.rounded { border-radius: var(--radius-lg); }
.rounded-full { border-radius: var(--radius-full); }

.shadow { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }

.w-full { width: 100%; }
.h-full { height: 100%; }

.overflow-hidden { overflow: hidden; }
.relative { position: relative; }

/* ============ Responsive ============ */

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        justify-content: center;
        gap: 0.5rem;
    }

    nav a {
        padding: 0.5rem 0.8rem;
        font-size: 0.9rem;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }

    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero .btn {
        width: 100%;
        max-width: 300px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form .btn {
        width: 100%;
    }

    .about-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-story-card {
        grid-template-columns: 1fr;
    }

    .about-story-media {
        min-height: 360px;
    }

    .admin-wrapper {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        width: 100%;
        height: auto;
        position: static;
        margin-bottom: 1rem;
    }

    .admin-sidebar ul {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 0.5rem;
    }

    .admin-main {
        margin-left: 0;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .table {
        font-size: 0.85rem;
    }

    .table th,
    .table td {
        padding: 1rem 0.75rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }

    nav ul {
        gap: 0.25rem;
    }

    nav a {
        padding: 0.4rem 0.6rem;
        font-size: 0.85rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    .btn-lg {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .card-body {
        padding: 1.25rem;
    }
}

/* ============ Print Styles ============ */

@media print {
    header,
    footer,
    .btn,
    .newsletter-section {
        display: none;
    }

    body {
        font-size: 12pt;
        color: #000;
    }

    a {
        color: #000;
        text-decoration: underline;
    }
}

/* ============ Dark Mode ============ */

@media (prefers-color-scheme: dark) {
    :root {
        --dark: #FAFAFE;
        --dark-soft: #E8E8F0;
        --gray-900: #FAFAFE;
        --gray-800: #E8E8F0;
        --gray-700: #D0D0E0;
        --gray-600: #B0B0C8;
        --gray-500: #8888A8;
        --gray-400: #6868A0;
        --gray-300: #4A4A78;
        --gray-200: #2A2A50;
        --gray-100: #1A1A36;
        --light: #0F0F24;
        --white: #16162E;
    }

    body {
        background: #0F0F24;
        color: #E8E8F0;
    }

    h1, h2, h3, h4, h5, h6 {
        color: #FAFAFE;
    }

    p {
        color: #B0B0C8;
    }

    header {
        background: rgba(15, 15, 36, 0.9);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    nav a {
        color: #B0B0C8;
    }

    nav a:hover,
    nav a.active {
        color: white;
    }

    .card {
        background: #1A1A36;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .card-body {
        background: #1A1A36;
    }

    .card-title {
        color: #FAFAFE;
    }

    .card-text {
        color: #B0B0C8;
    }

    input,
    textarea,
    select {
        background: #1A1A36;
        border-color: #2A2A50;
        color: #E8E8F0;
    }

    input:focus,
    textarea:focus,
    select:focus {
        background: #16162E;
        border-color: var(--primary);
    }

    .feature-card,
    .testimonial-card,
    .stat-card {
        background: #1A1A36;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .feature-card h3,
    .testimonial-name,
    .stat-label {
        color: #FAFAFE;
    }

    .feature-card p,
    .testimonial-text {
        color: #B0B0C8;
    }

    .testimonial-author {
        border-top: 1px solid #2A2A50;
    }

    .table {
        background: #1A1A36;
    }

    .table tbody tr {
        border-bottom: 1px solid #2A2A50;
    }

    .table tbody tr:hover {
        background: #16162E;
    }

    .table td {
        color: #B0B0C8;
        border-bottom-color: #2A2A50;
    }

    .newsletter-form input {
        background: rgba(26, 26, 54, 0.95);
        color: #E8E8F0;
    }

    .error-link-card {
        background: #1A1A36;
    }

    .error-link-card h3 {
        color: #FAFAFE;
    }

    .error-link-card p {
        color: #8888A8;
    }
}

/* ============ Enzo 2026 Visual System Refresh ============ */

:root {
    --primary: #E85555;
    --primary-light: #FF8E8E;
    --primary-dark: #B93838;
    --primary-glow: rgba(232, 85, 85, 0.24);
    --secondary: #F5C84C;
    --secondary-light: #FFE39A;
    --secondary-dark: #C99618;
    --secondary-glow: rgba(245, 200, 76, 0.28);
    --accent: #2F8F7B;
    --accent-light: #CFECE4;
    --accent-dark: #155E52;
    --ink: #17211D;
    --surface: #FFFDF8;
    --surface-soft: #F5F7F1;
    --line: rgba(23, 33, 29, 0.12);
    --dark: #17211D;
    --dark-soft: #25322D;
    --dark-card: #20352E;
    --gray-900: #17211D;
    --gray-800: #25322D;
    --gray-700: #3D4A44;
    --gray-600: #5E6A63;
    --gray-500: #7B877F;
    --gray-400: #A0AAA4;
    --gray-300: #CDD5CE;
    --gray-200: #E3E8E1;
    --gray-100: #F2F5EF;
    --light: #FFFDF8;
    --white: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, #E85555 0%, #F5C84C 100%);
    --gradient-secondary: linear-gradient(135deg, #F5C84C 0%, #2F8F7B 100%);
    --gradient-hero: linear-gradient(135deg, #17211D 0%, #2F8F7B 100%);
    --gradient-dark: linear-gradient(135deg, #17211D 0%, #25322D 100%);
    --gradient-card: linear-gradient(145deg, #FFFFFF 0%, #FFFDF8 100%);
    --gradient-warm: linear-gradient(135deg, #FFF7DF 0%, #F3FBF7 100%);
    --shadow-card: 0 12px 32px rgba(23, 33, 29, 0.08);
    --shadow-card-hover: 0 20px 54px rgba(23, 33, 29, 0.14);
    --shadow-glow: 0 18px 44px rgba(232, 85, 85, 0.18);
    --border: 1px solid var(--line);
    --radius-sm: 8px;
    --radius-md: 8px;
    --radius-lg: 8px;
    --radius-xl: 8px;
    --radius-2xl: 8px;
}

body {
    background:
        linear-gradient(180deg, rgba(255, 253, 248, 0.96) 0%, rgba(245, 247, 241, 0.98) 100%);
    color: var(--ink);
}

h1,
h2,
h3,
h4,
h5,
h6,
.btn {
    letter-spacing: 0;
}

h1 {
    font-size: 4rem;
}

h2 {
    font-size: 2.6rem;
}

h3 {
    font-size: 1.6rem;
}

.container {
    max-width: 1280px;
}

header {
    background: rgba(255, 253, 248, 0.9);
    border-bottom: 1px solid rgba(23, 33, 29, 0.09);
}

header.scrolled {
    box-shadow: 0 16px 42px rgba(23, 33, 29, 0.08);
}

.header-top {
    padding: 0.85rem 0;
}

.logo {
    color: var(--ink);
    background: none;
    -webkit-text-fill-color: currentColor;
}

.logo-icon {
    background: url('../images/enzo-profile.jpg') center / cover no-repeat;
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(23, 33, 29, 0.16);
    animation: none;
}

nav a {
    border-radius: 8px;
    color: var(--gray-700);
}

nav a:hover,
nav a.active {
    background: var(--ink);
    color: var(--white);
    box-shadow: 0 10px 28px rgba(23, 33, 29, 0.14);
}

nav a::after {
    display: none;
}

.btn {
    border-radius: 8px;
    min-height: 46px;
}

.btn-primary,
.btn-secondary {
    color: var(--ink);
    box-shadow: 0 12px 28px rgba(232, 85, 85, 0.18);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-outline:hover {
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid var(--line);
    color: var(--ink);
    background: rgba(255, 255, 255, 0.72);
}

.btn-outline:hover {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--white);
}

.card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow-card);
}

.card::before {
    display: none;
}

.card:hover {
    transform: translateY(-6px);
}

.card-image-wrapper {
    aspect-ratio: 4 / 3;
    background: var(--surface-soft);
}

.card-image {
    height: 100%;
}

.card-title {
    color: var(--ink);
}

.card:hover .card-title {
    color: var(--accent-dark);
}

.card-price {
    color: var(--primary-dark);
    background: none;
    -webkit-text-fill-color: currentColor;
}

.card-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.card-image-placeholder-product {
    background: linear-gradient(135deg, #FFF7DF 0%, #F2F5EF 100%);
}

.card-image-placeholder-recipe {
    background: linear-gradient(135deg, #FFE6D8 0%, #FFF7DF 100%);
}

.card-image-placeholder-game {
    background: linear-gradient(135deg, #CFECE4 0%, #FFF7DF 100%);
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 0.9rem;
}

.empty-state-grid {
    grid-column: 1 / -1;
    min-height: 180px;
    padding: 2rem;
    border: 1px dashed var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.empty-state-grid strong {
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 1.25rem;
}

.empty-state-grid span {
    margin-top: 0.4rem;
    color: var(--gray-600);
}

.product-overlay {
    background: linear-gradient(180deg, rgba(23, 33, 29, 0) 0%, rgba(23, 33, 29, 0.86) 100%);
}

.product-overlay .btn {
    color: var(--ink);
}

.hero {
    min-height: min(760px, calc(100svh - 130px));
    padding: 5rem 0 4rem;
    color: var(--white);
    text-align: left;
    display: flex;
    align-items: stretch;
    isolation: isolate;
    background: var(--ink);
}

.hero::before {
    content: '';
    position: absolute;
        inset: 0;
        background:
        linear-gradient(90deg, rgba(10, 22, 18, 0.94) 0%, rgba(10, 22, 18, 0.76) 45%, rgba(10, 22, 18, 0.18) 100%),
        url('../images/enzo-profile.jpg') center right / cover no-repeat;
    animation: none;
    transform: none;
    z-index: -2;
}

.hero::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    width: auto;
    height: 36%;
    background: linear-gradient(180deg, rgba(10, 22, 18, 0) 0%, rgba(10, 22, 18, 0.72) 100%);
    border-radius: 0;
    animation: none;
    z-index: -1;
}

.hero-shape {
    display: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.44fr);
    gap: 3rem;
    align-items: end;
    width: 100%;
}

.hero-content {
    max-width: 680px;
    margin: 0;
    min-width: 0;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.35rem;
    padding: 0.5rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    font-size: 0.84rem;
    text-transform: uppercase;
}

.hero h1 {
    color: var(--white);
    font-size: 5rem;
    line-height: 0.98;
    margin-bottom: 1.25rem;
    text-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
    -webkit-text-fill-color: currentColor;
    background: none;
    letter-spacing: 0;
}

.hero p {
    max-width: 640px;
    margin: 0 0 2rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.22rem;
    font-weight: 400;
}

.hero-buttons {
    justify-content: flex-start;
    margin-bottom: 2rem;
}

.hero .btn {
    padding: 1rem 1.55rem;
    font-size: 1rem;
}

.hero .btn-secondary {
    background: var(--secondary);
    color: var(--ink);
}

.hero .btn-ghost {
    border: 1px solid rgba(255, 255, 255, 0.38);
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.hero .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.18);
    color: var(--white);
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.hero-proof span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.58rem 0.72rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.92rem;
}

.hero-proof strong {
    color: var(--secondary-light);
    font-family: var(--font-display);
}

.hero-pathways {
    display: grid;
    gap: 0.75rem;
    align-self: end;
}

.hero-pathway {
    display: block;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    backdrop-filter: blur(14px);
}

.hero-pathway:hover {
    background: rgba(255, 255, 255, 0.18);
    color: var(--white);
    transform: translateY(-2px);
}

.hero-pathway span {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--secondary-light);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-pathway strong {
    display: block;
    color: var(--white);
    font-size: 1rem;
    line-height: 1.35;
}

.impact-strip {
    padding: 1.25rem 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--line);
}

.impact-item {
    min-height: 108px;
    padding: 1.3rem;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.impact-item strong {
    color: var(--accent-dark);
    font-family: var(--font-display);
    font-size: 2.25rem;
    line-height: 1;
}

.impact-item span {
    margin-top: 0.55rem;
    color: var(--gray-600);
    font-weight: 700;
}

.section {
    padding: 5.5rem 0;
}

.section-header {
    margin-bottom: 2.6rem;
}

.section-header h2 {
    color: var(--ink);
}

.section-header p {
    color: var(--gray-600);
}

.section-action {
    margin-top: 3rem;
    text-align: center;
}

.product-showcase,
.play-section {
    background: var(--surface-soft);
}

.trust-section {
    background: var(--white);
}

.features-grid {
    gap: 1.25rem;
}

.feature-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: none;
    text-align: left;
}

.feature-card::before {
    display: none;
}

.feature-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-4px);
}

.feature-icon {
    width: 54px;
    height: 54px;
    margin: 0 0 1.35rem;
    border-radius: 8px;
    background: var(--accent-light);
    box-shadow: none;
}

.testimonial-card {
    border: 1px solid var(--line);
    border-radius: 8px;
}

.testimonial-avatar {
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.35rem;
    font-weight: 800;
}

.avatar-coral {
    background: var(--primary);
}

.avatar-sage {
    background: var(--accent);
}

.avatar-amber {
    background: var(--secondary-dark);
}

.newsletter-section {
    background:
        linear-gradient(135deg, rgba(23, 33, 29, 0.96) 0%, rgba(47, 143, 123, 0.92) 100%);
}

.newsletter-section::before {
    background: linear-gradient(90deg, rgba(245, 200, 76, 0.14), rgba(232, 85, 85, 0.12));
}

.newsletter-form input,
input,
textarea,
select {
    border-radius: 8px;
}

footer {
    background: #111A17;
}

@media (max-width: 1024px) {
    .hero {
        min-height: auto;
        padding: 4.75rem 0 3.5rem;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-pathways {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.9rem;
    }

    h2 {
        font-size: 2.1rem;
    }

    h3 {
        font-size: 1.35rem;
    }

    .header-top {
        align-items: flex-start;
    }

    nav ul {
        justify-content: flex-start;
    }

    .hero {
        padding: 3rem 0 2.2rem;
    }

    .hero::before {
        background:
            linear-gradient(180deg, rgba(10, 22, 18, 0.9) 0%, rgba(10, 22, 18, 0.72) 58%, rgba(10, 22, 18, 0.84) 100%),
            url('../images/enzo-profile.jpg') center center / cover no-repeat;
    }

    .hero h1 {
        font-size: 3.4rem;
    }

    .hero p {
        font-size: 1.08rem;
        max-width: 21rem;
        overflow-wrap: break-word;
    }

    .hero-buttons {
        align-items: stretch;
    }

    .hero .btn,
    .hero .btn-secondary,
    .hero .btn-ghost {
        width: 100%;
        max-width: none;
    }

    .hero-proof {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-pathways {
        display: none;
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-kicker {
        font-size: 0.72rem;
    }

    .impact-grid {
        grid-template-columns: 1fr;
    }

    .impact-item {
        min-height: 92px;
    }
}
