/*Majahfit CSS */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --gold: #D4AF37;
    --gold-light: #E5C158;
    --gold-dark: #B8962E;
    --gold-glow: rgba(212, 175, 55, 0.3);
    
    --black: #000000;
    --dark-950: #080808;
    --dark-900: #0C0C0C;
    --dark-800: #121212;
    --dark-700: #1A1A1A;
    --dark-600: #222222;
    --dark-500: #2A2A2A;
    --dark-400: #333333;
    --dark-border: rgba(255, 255, 255, 0.08);
    
    --white: #FFFFFF;
    --gray-100: #F5F5F5;
    --gray-200: #E0E0E0;
    --gray-300: #BDBDBD;
    --gray-400: #9E9E9E;
    --gray-500: #757575;
    --gray-600: #616161;
    
    --font: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.25);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font);
    background-color: var(--dark-900);
    color: var(--white);
    line-height: 1.6;
    font-weight: 400;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.nav-open {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.text-gold { color: var(--gold); }
.text-muted { color: var(--gray-400); }

/* Promo Popup */

.promo-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 1.5rem;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.promo-popup {
    background: var(--dark-800);
    border: 1px solid var(--gold);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    max-width: 420px;
    width: 100%;
    text-align: center;
    position: relative;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.promo-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--dark-600);
    border: none;
    color: var(--gray-400);
    font-size: 1.25rem;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-popup-close:hover {
    background: var(--gold);
    color: var(--black);
}

.promo-popup h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--gold);
}

.promo-popup p {
    color: var(--gray-400);
    margin-bottom: 1.5rem;
}

.promo-code {
    background: var(--dark-700);
    border: 2px dashed var(--gold);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
}

.promo-code span {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.promo-code strong {
    font-size: 1.75rem;
    color: var(--gold);
    letter-spacing: 4px;
    font-weight: 700;
}

.promo-discount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

/* Nav */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(12, 12, 12, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--dark-border);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--gray-300);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

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

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1002;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
    background: var(--gold);
}

.nav-toggle.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
    background: var(--gold);
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 998;
}

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

@media (max-width: 1024px) {
    .nav-container {
        padding: 0 1.5rem;
    }

    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--dark-800);
        flex-direction: column;
        justify-content: flex-start;
        padding: 100px 2rem 2rem;
        z-index: 999;
        transition: right 0.3s ease;
        border-left: 1px solid var(--dark-border);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 1rem 0;
        font-size: 1rem;
        border-bottom: 1px solid var(--dark-border);
        color: var(--white);
    }

    .nav-actions {
        flex-direction: column;
        width: 100%;
        margin-top: 2rem;
        gap: 0.75rem;
    }

    .nav-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* button*/

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
}

.btn-ghost {
    background: var(--dark-700);
    border: 1px solid var(--dark-border);
    color: var(--white);
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-dark {
    background: var(--dark-700);
    color: var(--white);
    border: 1px solid var(--dark-border);
}

.btn-dark:hover {
    background: var(--dark-600);
    border-color: var(--gold);
}

.btn-icon {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: var(--radius-full);
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1rem;
}

/* Hero*/
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 60px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(12, 12, 12, 0.95) 0%,
        rgba(12, 12, 12, 0.7) 50%,
        rgba(12, 12, 12, 0.9) 100%
    );
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    animation: fadeInUp 0.8s ease both;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-stats-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.hero-avatars {
    display: flex;
}

.hero-avatars span {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: var(--gold);
    border: 3px solid var(--dark-900);
    margin-left: -12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--black);
}

.hero-avatars span:first-child {
    margin-left: 0;
}

.hero-mini-stat {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--dark-border);
}

.hero-mini-stat strong {
    color: var(--gold);
    font-size: 1.25rem;
    font-weight: 700;
}

.hero-mini-stat span {
    color: var(--gray-400);
    font-size: 0.8rem;
    margin-left: 0.25rem;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -0.03em;
}

.hero h1 .text-stroke {
    -webkit-text-stroke: 2px var(--gold);
    color: transparent;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--gray-400);
    margin-bottom: 2rem;
    max-width: 500px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-bottom-stats {
    display: flex;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-border);
}

.hero-stat {
    text-align: left;
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
}

.hero-stat-number span {
    color: var(--gold);
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Hero Image */
.hero-image-box {
    position: relative;
    animation: fadeInUp 0.8s 0.2s ease both;
}

.hero-image-box img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

/*.hero-image-badge {
    position: absolute;
    bottom: 2rem;
    right: -1rem;
    background: var(--gold);
    color: var(--black);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow-gold);
}*/

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        padding: 0 1.5rem;
    }

    .hero-stats-row {
        justify-content: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-bottom-stats {
        justify-content: center;
    }

    .hero-image-box {
        max-width: 400px;
        margin: 0 auto;
        order: -1;
    }
}

/* Banner */

.marquee-banner {
    background: var(--gold);
    padding: 1rem 0;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    animation: marquee 30s linear infinite;
}

.marquee-content span {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 0 1.5rem;
    color: var(--black);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.marquee-content span::before {
    content: '★';
    font-size: 0.75rem;
}

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

/* Sections*/

section {
    padding: 6rem 0;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .section-container {
        padding: 0 1.5rem;
    }
    
    section {
        padding: 4rem 0;
    }
}

.section-header {
    margin-bottom: 3rem;
}

.section-header.center {
    text-align: center;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.section-tag::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: var(--radius-full);
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--gray-400);
    font-size: 1.05rem;
    max-width: 550px;
}

.section-header.center p {
    margin: 0 auto;
}

/* Page Hero */
.page-hero {
    padding: 160px 0 60px;
    background: linear-gradient(180deg, var(--dark-800) 0%, var(--dark-900) 100%);
}

/*Features */

.features-section {
    background: var(--dark-800);
}

.features-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.features-nav {
    display: flex;
    gap: 0.75rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: var(--dark-700);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--dark-600);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--gold);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--gray-400);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* how it works */

.how-it-works {
    background: var(--dark-900);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    opacity: 0.3;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-full);
    background: var(--dark-700);
    border: 2px solid var(--gold);
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    transition: var(--transition);
}

.step-card:hover .step-number {
    background: var(--gold);
    color: var(--black);
}

.step-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-card p {
    font-size: 0.85rem;
    color: var(--gray-500);
}

@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 400px;
        margin: 0 auto;
    }

    .steps-grid::before {
        display: none;
    }

    .step-card {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 1.25rem;
        background: var(--dark-800);
        padding: 1.25rem 1.5rem;
        border-radius: var(--radius-lg);
        border: 1px solid var(--dark-border);
    }

    .step-number {
        margin: 0;
        flex-shrink: 0;
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .step-content {
        flex: 1;
    }
}

/* programs */

.programs-section {
    background: var(--dark-800);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

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

.program-card {
    background: var(--dark-700);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.program-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.program-card:hover::before {
    transform: scaleX(1);
}

.program-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.program-icon {
    width: 56px;
    height: 56px;
    background: var(--dark-600);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    transition: var(--transition);
}

.program-card:hover .program-icon {
    background: var(--gold);
}

.program-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

.program-description {
    color: var(--gray-400);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.program-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--dark-border);
    margin-bottom: 1.5rem;
}

.program-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
}

.program-price span {
    font-size: 0.875rem;
    color: var(--gray-500);
    font-weight: 400;
}

.program-duration {
    color: var(--gray-400);
    font-size: 0.9rem;
    background: var(--dark-600);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
}

/* Programs List */
.programs-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.program-card-large {
    background: var(--dark-700);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    display: grid;
    grid-template-columns: 100px 1fr 200px;
    gap: 2rem;
    align-items: start;
    transition: var(--transition);
}

.program-card-large:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

.program-card-icon {
    font-size: 3rem;
    width: 100px;
    height: 100px;
    background: var(--dark-600);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
}

.program-card-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.program-card-description {
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.program-features {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.program-features li {
    background: var(--dark-600);
    color: var(--gray-300);
    padding: 0.4rem 0.85rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
}

.program-card-pricing {
    text-align: center;
}

.price-tag .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
}

.price-tag .period {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.program-card-pricing .duration {
    color: var(--gray-400);
    font-size: 0.875rem;
    margin: 0.5rem 0 1.5rem;
}

.price-note {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: 0.75rem;
}

@media (max-width: 1024px) {
    .program-card-large {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem;
    }

    .program-card-icon {
        margin: 0 auto;
    }

    .program-features {
        justify-content: center;
    }
}

/* merch */

.merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.merch-card {
    background: var(--dark-700);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition);
}

.merch-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.merch-image {
    width: 100%;
    height: 280px;
    background: var(--dark-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--gray-500);
}

.merch-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.merch-content {
    padding: 1.5rem;
}

.merch-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.merch-content p {
    color: var(--gray-400);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.merch-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1rem;
}

/* Success*/

.reviews-section {
    background: var(--dark-900);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.5rem;
}

.review-card {
    background: var(--dark-800);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: var(--transition);
}

.review-card:hover {
    border-color: rgba(212, 175, 55, 0.2);
}

.review-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gold);
    color: var(--black);
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.review-text {
    color: var(--gray-300);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.review-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--dark-border);
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--black);
}

.review-info strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.review-stars {
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.review-date {
    color: var(--gray-500);
    font-size: 0.75rem;
    margin-top: 1rem;
}

/* Rating Summary */
.rating-summary {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--dark-800);
    border-radius: var(--radius-xl);
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.rating-big {
    font-size: 4rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.rating-stars {
    font-size: 1.25rem;
    color: var(--gold);
    letter-spacing: 3px;
    margin: 0.5rem 0;
}

.rating-summary p {
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* About */

.about-hero {
    padding: 140px 0 80px;
}

.about-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: start;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -16px;
    left: -16px;
    right: 16px;
    bottom: 16px;
    border: 2px solid var(--gold);
    border-radius: var(--radius-xl);
    opacity: 0.3;
    z-index: -1;
}

.about-text .section-tag {
    margin-bottom: 0.75rem;
}

.about-text h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.about-title {
    color: var(--gold);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.about-bio {
    color: var(--gray-300);
    font-size: 1rem;
    line-height: 1.85;
}

.about-bio p {
    margin-bottom: 1.25rem;
}

.about-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-border);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .about-image {
        max-width: 350px;
        margin: 0 auto;
    }

    .about-stats {
        justify-content: center;
    }
}

/* Philosophy */
.philosophy-section {
    background: var(--dark-800);
}

.philosophy-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.philosophy-content blockquote {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.philosophy-content p {
    color: var(--gray-400);
    font-size: 1rem;
    line-height: 1.8;
}

/* Services */
.services-section {
    background: var(--dark-900);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--dark-800);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-4px);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--dark-700);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gold);
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--gray-400);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background: var(--dark-800);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--gray-400);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* ============================================
   EMPTY STATE
   ============================================ */

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--dark-800);
    border-radius: var(--radius-xl);
    border: 1px solid var(--dark-border);
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.empty-state h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.empty-state p {
    color: var(--gray-400);
    margin-bottom: 1.5rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Info */

.info-card {
    background: var(--dark-800);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-xl);
    padding: 2rem;
}

.info-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.getting-started-steps {
    color: var(--gray-400);
    padding-left: 1.5rem;
    line-height: 1.8;
}

.getting-started-steps li {
    margin-bottom: 0.75rem;
}

.getting-started-steps strong {
    color: var(--white);
}

/* Consultation */

.consultation-section {
    padding-top: 140px;
}

.consultation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.consultation-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.consultation-info > p {
    color: var(--gray-400);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.consultation-features {
    list-style: none;
}

.consultation-features li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1.25rem;
    background: var(--dark-800);
    border-radius: var(--radius-lg);
    border: 1px solid var(--dark-border);
    transition: var(--transition);
}

.consultation-features li:hover {
    border-color: rgba(212, 175, 55, 0.2);
}

.consultation-features .feature-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--dark-700);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
    margin-bottom: 0;
}

.feature-text h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.feature-text p {
    color: var(--gray-400);
    font-size: 0.875rem;
}

.consultation-form-card {
    background: var(--dark-800);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
}

.price-display {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--dark-border);
}

.price-display .price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--gold);
}

.price-display span {
    display: block;
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

@media (max-width: 1024px) {
    .consultation-grid {
        grid-template-columns: 1fr;
    }
}

/* Form */

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--gray-300);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    background: var(--dark-700);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-md);
    color: var(--white);
    font-family: var(--font);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-500);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* Auth*/

.auth-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    padding-top: 100px;
}

.auth-card {
    background: var(--dark-800);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-xl);
    padding: 3rem;
    width: 100%;
    max-width: 420px;
}

.auth-card h1 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.auth-card > p {
    text-align: center;
    color: var(--gray-400);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.auth-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-border);
    color: var(--gray-500);
    font-size: 0.9rem;
}

.auth-footer a {
    color: var(--gold);
    font-weight: 500;
}

/* Dashboard*/

.dashboard-section {
    padding-top: 140px;
    min-height: 100vh;
}

.dashboard-header {
    margin-bottom: 3rem;
}

.dashboard-header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.dashboard-header p {
    color: var(--gray-400);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.5rem;
}

.dashboard-card {
    background: var(--dark-800);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
}

.dashboard-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Footer*/

.footer {
    background: var(--black);
    border-top: 1px solid var(--dark-border);
    padding: 4rem 0 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-brand p {
    color: var(--gray-500);
    margin: 1rem 0;
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: var(--dark-800);
    border: 1px solid var(--dark-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.footer-social a svg {
    width: 18px;
    height: 18px;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: var(--gray-500);
    font-size: 0.9rem;
}

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

.footer-contact p {
    color: var(--gray-500);
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.footer-bottom {
    max-width: 1400px;
    margin: 3rem auto 0;
    padding: 2rem 2rem 0;
    border-top: 1px solid var(--dark-border);
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-600);
    font-size: 0.8rem;
}

.footer-bottom .copyright-notice {
    margin-top: 1rem;
    font-size: 0.7rem;
    color: var(--gray-600);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        padding: 0 1.5rem;
    }
    
    .footer-bottom {
        padding: 2rem 1.5rem 0;
    }
}

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact p {
        justify-content: center;
    }
}

/* Legal page*/

.legal-page {
    padding-top: 140px;
    padding-bottom: 4rem;
}

.legal-content {
    max-width: 720px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.legal-content .effective-date {
    color: var(--gray-500);
    margin-bottom: 3rem;
    font-size: 0.9rem;
}

.legal-content h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.legal-content p {
    color: var(--gray-400);
    margin-bottom: 1rem;
    line-height: 1.85;
}

.legal-content ul {
    color: var(--gray-400);
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-content a {
    color: var(--gold);
}

/* ============================================
   MESSAGES
   ============================================ */

.messages {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.message {
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

.message-success {
    background: var(--gold);
    color: var(--black);
}

.message-error {
    background: #ef4444;
    color: white;
}

/* animate */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-slide-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-slide-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ============================================
   CARD BASE
   ============================================ */

.card {
    background: var(--dark-800);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-xl);
    padding: 2rem;
}

/* ============================================
   UTILITIES
   ============================================ */

.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* Merch shop*/

.shop-section {
    padding: 0 0 6rem 0;
}

/* Filters */
.shop-filters {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: var(--dark-700);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-full);
    color: var(--gray-400);
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

/* Product Grid */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

@media (max-width: 768px) {
    .shop-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Product Card */
.product-card {
    background: var(--dark-800);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Product Badge */
.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.badge-new,
.badge-sale {
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-new {
    background: var(--gold);
    color: var(--black);
}

.badge-sale {
    background: #ef4444;
    color: white;
}

/* Product Image */
.product-image {
    position: relative;
    width: 100%;
    height: 320px;
    background: var(--dark-700);
    overflow: hidden;
}

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

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

.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--gray-600);
    background: linear-gradient(135deg, var(--dark-700) 0%, var(--dark-600) 100%);
}

/* Product Overlay */
.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

/* Product Info */
.product-info {
    padding: 1.5rem;
}

.product-category {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.product-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.product-description {
    color: var(--gray-500);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Product Footer */
.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--dark-border);
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price-old {
    font-size: 0.9rem;
    color: var(--gray-500);
    text-decoration: line-through;
}

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

.price-currency {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.stock-status {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-full);
}

.stock-status.in-stock {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.stock-status.out-of-stock {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

/* Shop Empty State */
.shop-empty {
    text-align: center;
    padding: 5rem 2rem;
    background: var(--dark-800);
    border-radius: var(--radius-xl);
    border: 1px solid var(--dark-border);
    max-width: 600px;
    margin: 0 auto;
}

.empty-visual {
    position: relative;
    margin-bottom: 2rem;
}

.empty-icon-wrapper {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--dark-700) 0%, var(--dark-600) 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.empty-icon {
    font-size: 4rem;
}

.empty-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    border: 2px dashed var(--gold);
    border-radius: var(--radius-full);
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.1; }
}

.shop-empty h3 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: var(--gold);
}

.shop-empty > p {
    color: var(--gray-400);
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.empty-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.empty-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-400);
    font-size: 0.875rem;
}

.empty-feature .feature-icon {
    font-size: 1.25rem;
}

/* Shop Features */
.shop-features-section {
    background: var(--dark-800);
    padding: 4rem 0;
}

.shop-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .shop-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .shop-features-grid {
        grid-template-columns: 1fr;
    }
}

.shop-feature {
    text-align: center;
    padding: 1.5rem;
}

.shop-feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.shop-feature h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.shop-feature p {
    color: var(--gray-500);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Size sel */

.product-form {
    margin-top: 1rem;
}

.size-selector {
    margin-bottom: 1rem;
}

.size-selector label {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.size-options {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.size-options input[type="radio"] {
    display: none;
}

.size-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-700);
    border: 2px solid var(--dark-border);
    border-radius: var(--radius-md);
    color: var(--gray-400);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.size-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.size-options input[type="radio"]:checked + .size-btn {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.btn-buy {
    width: 100%;
    margin-top: 0.5rem;
}

.product-price-row {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--dark-border);
}

/* Size guide*/

.size-guide-section {
    padding: 4rem 0;
    background: var(--dark-900);
}

.size-guide-card {
    background: var(--dark-800);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.size-guide-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.size-table-wrapper {
    overflow-x: auto;
}

.size-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.size-table th,
.size-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid var(--dark-border);
}

.size-table th {
    background: var(--dark-700);
    color: var(--gold);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.size-table td {
    color: var(--gray-300);
}

.size-table td strong {
    color: var(--white);
}

.size-table tbody tr:hover {
    background: var(--dark-700);
}

.size-table tbody tr:last-child td {
    border-bottom: none;
}

/* Update product card for better layout */
.product-card .product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.product-card .product-description {
    flex-grow: 1;
}

/* ============================================
   ABOUT PAGE - EXTENDED
   ============================================ */

/* Specializations */
.specializations-section {
    background: var(--dark-800);
    padding: 6rem 0;
}

.specializations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

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

.spec-card {
    background: var(--dark-700);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: var(--transition);
}

.spec-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.spec-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.spec-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.spec-card p {
    color: var(--gray-400);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Process Section */
.process-section {
    background: var(--dark-900);
    padding: 6rem 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

.process-card {
    background: var(--dark-800);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.process-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

.process-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 1rem;
    line-height: 1;
}

.process-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.process-card p {
    color: var(--gray-400);
    font-size: 0.875rem;
    line-height: 1.7;
}

/* For Section */
.for-section {
    background: var(--dark-800);
    padding: 6rem 0;
}

.for-content {
    max-width: 700px;
    margin: 0 auto;
}

.for-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.for-text > p {
    color: var(--gray-400);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.for-list {
    list-style: none;
    margin-bottom: 2rem;
}

.for-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--dark-border);
    color: var(--gray-300);
    font-size: 1rem;
}

.for-list li:last-child {
    border-bottom: none;
}

.check-icon {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.1rem;
}

/* About Bio Enhancement */
.about-bio strong {
    color: var(--gold);
}

/* How it works */

.steps-grid-vertical {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.step-card-horizontal {
    display: flex;
    gap: 1.5rem;
    background: var(--dark-800);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: var(--transition);
}

.step-card-horizontal:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

.step-card-horizontal .step-number {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: var(--radius-full);
    background: var(--dark-700);
    border: 2px solid var(--gold);
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.step-card-horizontal:hover .step-number {
    background: var(--gold);
    color: var(--black);
}

.step-card-horizontal .step-content {
    flex: 1;
}

.step-card-horizontal .step-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.step-card-horizontal .step-content p {
    color: var(--gray-400);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.step-card-horizontal .step-content p:last-child {
    margin-bottom: 0;
}

.step-card-horizontal .step-content strong {
    color: var(--white);
}

.step-price {
    color: var(--gold) !important;
    font-weight: 600;
    font-size: 1rem !important;
}

.step-note {
    color: var(--gray-500) !important;
    font-size: 0.85rem !important;
    font-style: italic;
}

/* Step List */
.step-list {
    list-style: none;
    margin: 1rem 0 0 0;
    padding: 0;
}

.step-list li {
    position: relative;
    padding: 0.75rem 0 0.75rem 2rem;
    color: var(--gray-300);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--dark-border);
}

.step-list li:last-child {
    border-bottom: none;
}

.step-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

.step-list li strong {
    color: var(--white);
}

/* Important Notice */
.important-notice {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 1px solid var(--gold);
    border-radius: var(--radius-xl);
    padding: 2rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.important-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.important-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.important-content p {
    color: var(--gray-300);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.important-content strong {
    color: var(--white);
}

@media (max-width: 768px) {
    .step-card-horizontal {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .step-card-horizontal .step-number {
        margin: 0 auto;
    }

    .step-list li {
        text-align: left;
    }

    .important-notice {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .important-icon {
        margin: 0 auto;
    }
}
