/* ==========================================================================
   3DMyPhoto Shop Styles
   Combined styles for Shop Landing and Templates pages
   Premium UX/UI Design - Round 2 Polish
   ========================================================================== */

/* Import Premium Animations */
@import url('./shop/animations.css');

/* ==========================================================================
   CSS Variables (use site defaults or define shop-specific)
   ========================================================================== */
:root {
    --shop-bg-primary: var(--bg-primary, #0C0D10);
    --shop-bg-secondary: var(--bg-secondary, #14161C);
    --shop-bg-tertiary: #1a1d24;
    --shop-text-primary: var(--text-primary, #E9EEF7);
    --shop-text-secondary: var(--text-secondary, #97A3B8);
    --shop-text-muted: #6b7280;
    --shop-accent-primary: var(--accent-primary, #A3FF12);
    --shop-accent-secondary: var(--accent-secondary, #2AE8CE);
    --shop-accent-glow: rgba(163, 255, 18, 0.4);
    --shop-border-color: var(--border-color, rgba(255,255,255,0.08));
    --shop-border-hover: rgba(255, 255, 255, 0.15);
    --shop-radius-sm: var(--radius-sm, 6px);
    --shop-radius-md: var(--radius-md, 8px);
    --shop-radius-lg: var(--radius-lg, 12px);
    --shop-radius-xl: 16px;
    --shop-radius-2xl: 24px;
    
    /* Premium Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 40px var(--shop-accent-glow);
    
    /* Spacing Scale */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
}

/* ==========================================================================
   Base Styles & Page Entrance
   ========================================================================== */
.shop-landing,
.templates-page,
.customize-page,
.generating-page,
.review-page {
    min-height: 100vh;
    background: var(--shop-bg-primary);
}

/* Page content entrance animation */
.page-content,
.hero__content,
.templates-main,
.customize-content,
.review-content {
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   Shop Header
   ========================================================================== */
.shop-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(12, 13, 16, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--shop-border-color);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.shop-header.scrolled {
    background: rgba(12, 13, 16, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.shop-header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    gap: 1.5rem;
}

.shop-header__brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}

.shop-header__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--shop-accent-primary), #7BC700);
    border-radius: 10px;
    color: var(--shop-bg-primary);
    font-size: 1.25rem;
}

.shop-header__title {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.shop-header__name {
    font-weight: 700;
    color: var(--shop-text-primary);
    font-size: 1rem;
}

.shop-header__tagline {
    font-size: 0.75rem;
    color: var(--shop-accent-primary);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.shop-header__nav {
    display: none;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .shop-header__nav {
        display: flex;
    }
}

.shop-header__link {
    padding: 0.5rem 1rem;
    color: var(--shop-text-secondary);
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--shop-radius-md);
    transition: all 0.2s ease;
}

.shop-header__link:hover {
    color: var(--shop-text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.shop-header__link.active {
    color: var(--shop-accent-primary);
    background: rgba(163, 255, 18, 0.1);
}

.shop-header__actions {
    display: none;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .shop-header__actions {
        display: flex;
    }
}

.shop-header__cart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--shop-bg-secondary);
    border: 1px solid var(--shop-border-color);
    border-radius: var(--shop-radius-md);
    color: var(--shop-text-primary);
    text-decoration: none;
    transition: all 0.2s ease;
}

.shop-header__cart:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.shop-header__cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    background: var(--shop-accent-primary);
    color: var(--shop-bg-primary);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Profile Dropdown */
.shop-header__profile {
    position: relative;
}

.shop-header__profile-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--shop-bg-secondary);
    border: 1px solid var(--shop-border-color);
    border-radius: var(--shop-radius-md);
    color: var(--shop-text-primary);
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1.25rem;
}

.shop-header__profile-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--shop-accent-primary);
}

.shop-header__profile-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 200px;
    background: var(--shop-bg-secondary);
    border: 1px solid var(--shop-border-color);
    border-radius: var(--shop-radius-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    z-index: 1000;
}

.shop-header__profile-dropdown.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.shop-header__dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--shop-text-secondary);
    text-decoration: none;
    border-radius: var(--shop-radius-md);
    transition: all 0.15s ease;
    font-weight: 500;
}

.shop-header__dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--shop-text-primary);
}

.shop-header__dropdown-item i {
    font-size: 1rem;
    width: 20px;
    text-align: center;
    color: var(--shop-accent-primary);
}

.shop-header__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: var(--shop-accent-primary);
    color: var(--shop-bg-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: var(--shop-radius-md);
    transition: all 0.2s ease;
}

.shop-header__cta:hover {
    background: #baff4d;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(163, 255, 18, 0.3);
}

.shop-header__menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--shop-border-color);
    border-radius: var(--shop-radius-md);
    color: var(--shop-text-primary);
    cursor: pointer;
    transition: all 0.2s ease;
}

@media (min-width: 768px) {
    .shop-header__menu-toggle {
        display: none;
    }
}

.shop-header__menu-toggle:hover {
    background: rgba(255, 255, 255, 0.05);
}

.shop-header__mobile-menu {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    border-top: 1px solid var(--shop-border-color);
}

@media (min-width: 768px) {
    .shop-header__mobile-menu {
        display: none !important;
    }
}

.shop-header__mobile-link {
    padding: 0.75rem 1rem;
    color: var(--shop-text-primary);
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--shop-radius-md);
}

.shop-header__mobile-link:hover {
    background: rgba(255, 255, 255, 0.05);
}

.shop-header__mobile-cta {
    margin-top: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--shop-accent-primary);
    color: var(--shop-bg-primary);
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    border-radius: var(--shop-radius-md);
}

.shop-header__mobile-divider {
    height: 1px;
    background: var(--shop-border-color);
    margin: 0.5rem 0;
}

.shop-header__mobile-link i {
    width: 20px;
    margin-right: 0.5rem;
    color: var(--shop-accent-primary);
}

/* ==========================================================================
   Shop Landing Page
   ========================================================================== */
.shop-landing {
    min-height: 100vh;
    background: var(--shop-bg-primary);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 5rem 1.5rem 7rem;
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(163, 255, 18, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(42, 232, 206, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, rgba(163, 255, 18, 0.03) 0%, transparent 50%);
    overflow: hidden;
}

/* Animated background particles */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(163, 255, 18, 0.03) 0%, transparent 8%),
        radial-gradient(circle at 80% 70%, rgba(42, 232, 206, 0.03) 0%, transparent 8%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 5%);
    animation: heroParticles 20s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes heroParticles {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-20px) scale(1.05); }
}

.hero__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr 1fr;
    }
}

.hero__content {
    text-align: center;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@media (min-width: 1024px) {
    .hero__content {
        text-align: left;
    }
}

.hero__title {
    font-size: clamp(2.25rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.05;
    margin: 0 0 1.5rem;
    color: var(--shop-text-primary);
    letter-spacing: -0.02em;
}

.hero__accent {
    display: block;
    background: linear-gradient(135deg, var(--shop-accent-primary) 0%, #7BC700 50%, var(--shop-accent-secondary) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientText 4s ease-in-out infinite;
}

@keyframes gradientText {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.hero__subtitle {
    font-size: 1.25rem;
    color: var(--shop-text-secondary);
    line-height: 1.7;
    margin: 0 0 2.5rem;
    max-width: 540px;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
    opacity: 0;
}

@media (min-width: 1024px) {
    .hero__subtitle {
        margin-left: 0;
    }
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
    opacity: 0;
}

@media (min-width: 1024px) {
    .hero__actions {
        justify-content: flex-start;
    }
}

.hero__visual {
    display: flex;
    justify-content: center;
    animation: fadeInScale 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
    opacity: 0;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero__3d-preview {
    position: relative;
    width: 100%;
    max-width: 450px;
    aspect-ratio: 1;
}

/* Glow effect behind hero image */
.hero__3d-preview::before {
    content: '';
    position: absolute;
    inset: 10%;
    background: radial-gradient(circle, var(--shop-accent-glow) 0%, transparent 70%);
    filter: blur(40px);
    opacity: 0.6;
    animation: glowPulse 4s ease-in-out infinite;
    z-index: -1;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
    animation: heroFloat 5s ease-in-out infinite;
    will-change: transform;
}

@keyframes heroFloat {
    0%, 100% { 
        transform: translateY(0) rotate(-1deg); 
    }
    50% { 
        transform: translateY(-15px) rotate(1deg); 
    }
}

/* Section Common Styles */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--shop-text-primary);
    margin: 0;
}

.section-title.centered {
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--shop-text-secondary);
    font-size: 1.125rem;
    margin: 0.5rem 0 2.5rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.section-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--shop-accent-primary);
    text-decoration: none;
    font-weight: 500;
    transition: gap 0.2s ease;
}

.section-link:hover {
    gap: 0.75rem;
}

/* Featured Section */
.featured-section {
    padding: 4rem 0;
    background: var(--shop-bg-secondary);
}

.template-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.loading-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

/* Categories Section */
.categories-section {
    padding: 5rem 0;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.category-card {
    display: flex;
    flex-direction: column;
    background: var(--shop-bg-secondary);
    border: 1px solid var(--shop-border-color);
    border-radius: var(--shop-radius-xl);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: 
        transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.3s ease;
    will-change: transform, box-shadow;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(42, 232, 206, 0.2);
    border-color: rgba(42, 232, 206, 0.3);
}

.category-card__image {
    position: relative;
    aspect-ratio: 16 / 9;
    background: var(--shop-bg-primary);
    overflow: hidden;
}

/* Category card gradient overlay */
.category-card__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 40%,
        rgba(12, 13, 16, 0.6) 100%
    );
    pointer-events: none;
}

.category-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.category-card:hover .category-card__image img {
    transform: scale(1.1);
}

.category-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--shop-text-secondary);
    background: linear-gradient(135deg, var(--shop-bg-primary), var(--shop-bg-secondary));
}

.category-card__content {
    padding: 1.25rem;
}

.category-card__title {
    margin: 0 0 0.375rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--shop-text-primary);
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.category-card:hover .category-card__title {
    color: var(--shop-accent-secondary);
}

.category-card__count {
    font-size: 0.85rem;
    color: var(--shop-text-secondary);
    font-weight: 500;
}

/* How It Works Section */
.how-section {
    padding: 6rem 0;
    background: 
        radial-gradient(ellipse 100% 50% at 50% 100%, rgba(163, 255, 18, 0.05) 0%, transparent 50%),
        var(--shop-bg-secondary);
    position: relative;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .steps-grid {
        flex-direction: row;
        align-items: flex-start;
        justify-content: center;
        gap: 1rem;
    }
}

.step {
    flex: 1;
    max-width: 320px;
    text-align: center;
    margin: 0 auto;
    padding: 1.5rem;
    border-radius: var(--shop-radius-xl);
    transition: 
        transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        background 0.3s ease;
}

.step:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.02);
}

.step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--shop-accent-primary), #7BC700);
    color: var(--shop-bg-primary);
    font-weight: 800;
    font-size: 0.9rem;
    border-radius: 50%;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 16px rgba(163, 255, 18, 0.3);
}

.step__icon {
    width: 96px;
    height: 96px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        135deg,
        rgba(163, 255, 18, 0.15) 0%,
        rgba(163, 255, 18, 0.05) 100%
    );
    border: 1px solid rgba(163, 255, 18, 0.2);
    border-radius: 50%;
    font-size: 2.25rem;
    color: var(--shop-accent-primary);
    transition: 
        transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.3s ease;
}

.step:hover .step__icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 30px rgba(163, 255, 18, 0.25);
}

.step__title {
    margin: 0 0 0.625rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--shop-text-primary);
    letter-spacing: -0.01em;
}

.step__description {
    margin: 0;
    font-size: 0.95rem;
    color: var(--shop-text-secondary);
    line-height: 1.6;
}

.step-arrow {
    display: none;
    color: var(--shop-accent-primary);
    font-size: 1.5rem;
    padding-top: 5rem;
    opacity: 0.5;
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% { transform: translateX(0); opacity: 0.5; }
    50% { transform: translateX(6px); opacity: 1; }
}

@media (min-width: 768px) {
    .step-arrow {
        display: block;
    }
}

.steps-cta {
    text-align: center;
    margin-top: 3.5rem;
}

/* Trust Section */
.trust-section {
    padding: 6rem 0;
    background: 
        radial-gradient(ellipse 80% 40% at 20% 80%, rgba(42, 232, 206, 0.04) 0%, transparent 50%),
        var(--shop-bg-primary);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.trust-item {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: var(--shop-radius-xl);
    transition: 
        transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        background 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.02);
}

.trust-item__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        135deg,
        rgba(42, 232, 206, 0.12) 0%,
        rgba(42, 232, 206, 0.05) 100%
    );
    border: 1px solid rgba(42, 232, 206, 0.2);
    border-radius: 50%;
    font-size: 1.75rem;
    color: var(--shop-accent-secondary);
    transition: 
        transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.3s ease;
}

.trust-item:hover .trust-item__icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(42, 232, 206, 0.2);
}

.trust-item__title {
    margin: 0 0 0.625rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--shop-text-primary);
    letter-spacing: -0.01em;
}

.trust-item__description {
    margin: 0;
    font-size: 0.9rem;
    color: var(--shop-text-secondary);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 7rem 0;
    text-align: center;
    overflow: hidden;
}

/* Animated gradient background */
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(163, 255, 18, 0.1) 0%,
        rgba(42, 232, 206, 0.05) 50%,
        rgba(163, 255, 18, 0.08) 100%
    );
    background-size: 200% 200%;
    animation: ctaGradient 10s ease infinite;
}

@keyframes ctaGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Decorative orbs */
.cta-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--shop-accent-glow) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(80px);
    opacity: 0.4;
    pointer-events: none;
}

.cta-section > * {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--shop-text-primary);
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--shop-text-secondary);
    margin: 0 0 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   Templates Browser Page
   ========================================================================== */
.templates-page {
    min-height: 100vh;
    background: var(--shop-bg-primary);
}

.templates-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .templates-container {
        grid-template-columns: 260px 1fr;
    }
}

/* Sidebar */
.templates-sidebar {
    display: none;
}

@media (min-width: 1024px) {
    .templates-sidebar {
        display: block;
        position: sticky;
        top: 80px;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
    }
}

.sidebar-header {
    margin-bottom: 1rem;
}

.sidebar-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--shop-text-primary);
    margin: 0;
}

/* Mobile Categories */
.mobile-categories {
    display: block;
    margin-bottom: 1.5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

@media (min-width: 1024px) {
    .mobile-categories {
        display: none;
    }
}

/* Main Content */
.templates-main {
    min-width: 0;
}

/* Header */
.templates-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .templates-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.templates-header__info {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
}

.templates-header__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--shop-text-primary);
    margin: 0;
}

.templates-header__count {
    font-size: 0.875rem;
    color: var(--shop-text-secondary);
}

.templates-header__controls {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Search Box */
.search-box {
    position: relative;
    flex: 1;
    min-width: 200px;
    max-width: 320px;
}

.search-box i:first-child {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--shop-text-secondary);
    pointer-events: none;
    transition: color 0.3s ease;
}

.search-box:focus-within i:first-child {
    color: var(--shop-accent-primary);
}

.search-box input {
    width: 100%;
    padding: 0.75rem 2.75rem 0.75rem 2.75rem;
    background: var(--shop-bg-secondary);
    border: 1px solid var(--shop-border-color);
    border-radius: var(--shop-radius-lg);
    color: var(--shop-text-primary);
    font-size: 0.9rem;
    transition: 
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: var(--shop-accent-primary);
    box-shadow: 
        0 0 0 3px rgba(163, 255, 18, 0.1),
        0 4px 20px rgba(0, 0, 0, 0.2);
    background: var(--shop-bg-tertiary);
}

.search-box input::placeholder {
    color: var(--shop-text-secondary);
    transition: opacity 0.3s ease;
}

.search-box input:focus::placeholder {
    opacity: 0.5;
}

.search-clear {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--shop-text-secondary);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
}

.search-clear:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--shop-text-primary);
    transform: translateY(-50%) scale(1.1);
}

/* Sort Dropdown */
.sort-dropdown {
    position: relative;
}

.sort-dropdown select {
    appearance: none;
    padding: 0.625rem 2.5rem 0.625rem 1rem;
    background: var(--shop-bg-secondary);
    border: 1px solid var(--shop-border-color);
    border-radius: var(--shop-radius-md);
    color: var(--shop-text-primary);
    font-size: 0.875rem;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.sort-dropdown select:focus {
    outline: none;
    border-color: var(--shop-accent-primary);
}

.sort-dropdown i {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--shop-text-secondary);
    pointer-events: none;
    font-size: 0.75rem;
}

/* Template Grid */
.templates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .templates-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    }
}

/* ==========================================================================
   Template Card
   ========================================================================== */
.template-card {
    position: relative;
    background: var(--shop-bg-secondary);
    border: 1px solid var(--shop-border-color);
    border-radius: var(--shop-radius-xl);
    overflow: hidden;
    transition: 
        transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.3s ease;
    will-change: transform, box-shadow;
}

.template-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(163, 255, 18, 0.3),
        0 0 60px rgba(163, 255, 18, 0.1);
    border-color: rgba(163, 255, 18, 0.4);
}

/* Card inner glow on hover */
.template-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(163, 255, 18, 0.05) 0%,
        transparent 50%,
        rgba(42, 232, 206, 0.03) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.template-card:hover::before {
    opacity: 1;
}

.template-card.featured {
    border-color: rgba(163, 255, 18, 0.25);
    background: linear-gradient(
        135deg,
        var(--shop-bg-secondary) 0%,
        rgba(163, 255, 18, 0.03) 100%
    );
}

.template-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.template-card__image-container {
    position: relative;
    aspect-ratio: 4 / 3;
    background: var(--shop-bg-primary);
    overflow: hidden;
}

/* Gradient overlay for image */
.template-card__image-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 60%,
        rgba(12, 13, 16, 0.4) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.template-card:hover .template-card__image-container::after {
    opacity: 1;
}

.template-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.template-card:hover .template-card__image {
    transform: scale(1.1);
}

.template-card__badge {
    position: absolute;
    top: 0.875rem;
    right: 0.875rem;
    padding: 0.375rem 0.875rem;
    background: linear-gradient(135deg, var(--shop-accent-primary), #7BC700);
    color: var(--shop-bg-primary);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(163, 255, 18, 0.3);
    z-index: 2;
}

.template-card__content {
    position: relative;
    padding: 1.25rem;
    z-index: 2;
}

.template-card__category {
    font-size: 0.7rem;
    color: var(--shop-accent-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.375rem;
    font-weight: 600;
}

.template-card__title {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--shop-text-primary);
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.template-card__description {
    margin: 0 0 0.875rem;
    font-size: 0.85rem;
    color: var(--shop-text-secondary);
    line-height: 1.5;
}

.template-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: auto;
}

.template-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.125rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--shop-border-color);
    border-radius: var(--shop-radius-md);
    color: var(--shop-text-primary);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.template-card:hover .template-card__cta {
    background: var(--shop-accent-primary);
    border-color: var(--shop-accent-primary);
    color: var(--shop-bg-primary);
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(163, 255, 18, 0.3);
}

.template-card__cta i {
    font-size: 0.75rem;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.template-card:hover .template-card__cta i {
    transform: translateX(4px);
}

/* Price Display */
.price-display {
    display: flex;
    align-items: baseline;
    gap: 0.375rem;
}

.price-from {
    font-size: 0.7rem;
    color: var(--shop-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-amount {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--shop-text-primary);
    letter-spacing: -0.02em;
}

/* Price highlight on card hover */
.template-card:hover .price-amount {
    color: var(--shop-accent-primary);
    transition: color 0.3s ease;
}

/* ==========================================================================
   Category Navigation
   ========================================================================== */
.category-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.category-nav.compact {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.category-nav__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--shop-bg-secondary);
    border: 1px solid var(--shop-border-color);
    border-radius: var(--shop-radius-md);
    color: var(--shop-text-primary);
    text-decoration: none;
    transition: all 0.2s ease;
}

.category-nav.compact .category-nav__item {
    padding: 0.5rem 1rem;
}

.category-nav__item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.category-nav__item.active {
    background: rgba(163, 255, 18, 0.1);
    border-color: var(--shop-accent-primary);
    color: var(--shop-accent-primary);
}

.category-nav__thumb {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    object-fit: cover;
}

.category-nav__label {
    flex: 1;
    font-weight: 500;
}

.category-nav__count {
    padding: 0.125rem 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    font-size: 0.75rem;
    color: var(--shop-text-secondary);
}

.category-nav__item.active .category-nav__count {
    background: rgba(163, 255, 18, 0.2);
    color: var(--shop-accent-primary);
}

/* Mobile: horizontal scroll */
@media (max-width: 768px) {
    .category-nav:not(.compact) {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .category-nav:not(.compact)::-webkit-scrollbar {
        display: none;
    }

    .category-nav:not(.compact) .category-nav__item {
        flex-shrink: 0;
    }

    .category-nav:not(.compact) .category-nav__thumb {
        display: none;
    }
}

/* ==========================================================================
   Pagination
   ========================================================================== */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
    padding: 1rem 0;
}

.pagination__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--shop-bg-secondary);
    border: 1px solid var(--shop-border-color);
    border-radius: var(--shop-radius-md);
    color: var(--shop-text-primary);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pagination__btn:hover:not(.disabled) {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.pagination__btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.pagination__pages {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.pagination__page {
    min-width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.5rem;
    background: transparent;
    border: 1px solid transparent;
    border-radius: var(--shop-radius-sm);
    color: var(--shop-text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pagination__page:hover {
    color: var(--shop-text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.pagination__page.active {
    background: var(--shop-accent-primary);
    color: var(--shop-bg-primary);
    font-weight: 600;
}

.pagination__ellipsis {
    padding: 0 0.25rem;
    color: var(--shop-text-secondary);
}

/* ==========================================================================
   Empty State
   ========================================================================== */
.empty-state {
    text-align: center;
    padding: 5rem 2rem;
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.empty-state__icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.02) 100%
    );
    border: 1px solid var(--shop-border-color);
    border-radius: 50%;
    font-size: 2.5rem;
    color: var(--shop-text-secondary);
    animation: emptyIconFloat 4s ease-in-out infinite;
}

@keyframes emptyIconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.empty-state__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--shop-text-primary);
    margin: 0 0 0.75rem;
    letter-spacing: -0.01em;
}

.empty-state__description {
    color: var(--shop-text-secondary);
    margin: 0 0 2rem;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.link-btn {
    background: none;
    border: none;
    color: var(--shop-accent-primary);
    cursor: pointer;
    text-decoration: none;
    padding: 0;
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease;
}

.link-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--shop-accent-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.link-btn:hover {
    color: #baff4d;
}

.link-btn:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* ==========================================================================
   Skeleton Loading
   ========================================================================== */
.template-skeleton,
.category-skeleton {
    position: relative;
    background: var(--shop-bg-secondary);
    border-radius: var(--shop-radius-xl);
    overflow: hidden;
}

.template-skeleton::before,
.category-skeleton::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.04) 20%,
        rgba(255, 255, 255, 0.08) 50%,
        rgba(255, 255, 255, 0.04) 80%,
        transparent 100%
    );
    background-size: 200% 100%;
    animation: shimmer 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.template-skeleton {
    aspect-ratio: 3 / 4;
}

.category-skeleton {
    aspect-ratio: 4 / 3;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Skeleton card with multiple elements */
.skeleton-card {
    background: var(--shop-bg-secondary);
    border-radius: var(--shop-radius-xl);
    overflow: hidden;
    border: 1px solid var(--shop-border-color);
}

.skeleton-card__image {
    aspect-ratio: 4/3;
    background: var(--shop-bg-primary);
    position: relative;
}

.skeleton-card__image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.04) 50%,
        transparent 100%
    );
    background-size: 200% 100%;
    animation: shimmer 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.skeleton-card__content {
    padding: 1.25rem;
}

.skeleton-card__line {
    height: 0.875rem;
    background: var(--shop-bg-primary);
    border-radius: 4px;
    margin-bottom: 0.75rem;
}

.skeleton-card__line:last-child {
    margin-bottom: 0;
    width: 60%;
}

.skeleton-card__title {
    height: 1.25rem;
    width: 80%;
    background: var(--shop-bg-primary);
    border-radius: 4px;
    margin-bottom: 1rem;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 0.875rem 1.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--shop-radius-md);
    text-decoration: none;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: 
        transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease;
    will-change: transform, box-shadow;
}

/* Button ripple effect */
.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.25) 0%, transparent 70%);
    transform: scale(0);
    opacity: 0;
    transition: transform 0.5s, opacity 0.3s;
    pointer-events: none;
}

.btn:active::before {
    transform: scale(3);
    opacity: 1;
    transition: transform 0s, opacity 0s;
}

.btn-primary {
    background: linear-gradient(135deg, var(--shop-accent-primary), #8ae600);
    color: var(--shop-bg-primary);
    box-shadow: 0 2px 8px rgba(163, 255, 18, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #baff4d, var(--shop-accent-primary));
    transform: translateY(-3px);
    box-shadow: 
        0 8px 25px rgba(163, 255, 18, 0.35),
        0 0 40px rgba(163, 255, 18, 0.15);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
    transition-duration: 0.1s;
}

/* Arrow animation on hover */
.btn-primary i,
.btn i.fa-arrow-right {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-primary:hover i,
.btn:hover i.fa-arrow-right {
    transform: translateX(4px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--shop-text-primary);
    border: 1px solid var(--shop-border-color);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--shop-border-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.btn-secondary:active {
    transform: translateY(0) scale(0.98);
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1rem;
    border-radius: var(--shop-radius-lg);
}

.btn-xl {
    padding: 1.25rem 2.75rem;
    font-size: 1.125rem;
    border-radius: var(--shop-radius-lg);
}

/* Loading state for buttons */
.btn.is-loading {
    pointer-events: none;
    opacity: 0.85;
}

.btn.is-loading::after {
    content: '';
    width: 1rem;
    height: 1rem;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    animation: btnSpin 0.8s linear infinite;
    margin-left: 0.5rem;
}

@keyframes btnSpin {
    to { transform: rotate(360deg); }
}

/* ==========================================================================
   Utilities
   ========================================================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==========================================================================
   Round 2 Enhancements - Premium Polish
   ========================================================================== */

/* ==========================================================================
   3D Tilt Effect for Template Cards
   ========================================================================== */
.template-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.template-card.tilt-active {
    transform: perspective(1000px) 
               rotateX(var(--tilt-x, 0deg)) 
               rotateY(var(--tilt-y, 0deg))
               translateY(-10px) 
               scale(1.02);
}

.template-card__content {
    transform: translateZ(20px);
    transition: transform 0.3s var(--ease-out-cubic);
}

.template-card:hover .template-card__content {
    transform: translateZ(30px);
}

/* Shine sweep effect on card hover */
.template-card__image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.15) 50%,
        transparent 100%
    );
    transform: skewX(-25deg);
    transition: left 0.7s var(--ease-out-cubic);
    z-index: 3;
    pointer-events: none;
}

.template-card:hover .template-card__image-container::before {
    left: 150%;
}

/* ==========================================================================
   Logo Animation Enhancement
   ========================================================================== */
.shop-header__logo {
    position: relative;
    transition: transform 0.3s var(--ease-out-back);
    overflow: visible;
}

.shop-header__logo::after {
    content: '';
    position: absolute;
    inset: -6px;
    background: linear-gradient(135deg, var(--shop-accent-primary), var(--shop-accent-secondary));
    border-radius: 14px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s var(--ease-out-cubic);
    filter: blur(12px);
}

.shop-header__brand:hover .shop-header__logo {
    transform: scale(1.08) rotate(5deg);
}

.shop-header__brand:hover .shop-header__logo::after {
    opacity: 0.6;
}

/* ==========================================================================
   Enhanced Step Icons - How It Works
   ========================================================================== */
.step {
    animation: fadeInUp 0.6s var(--ease-out-expo) backwards;
}

.step:nth-child(1) { animation-delay: 0.1s; }
.step:nth-child(3) { animation-delay: 0.2s; }
.step:nth-child(5) { animation-delay: 0.3s; }

.step__icon {
    position: relative;
    transition: transform 0.4s var(--ease-out-back), box-shadow 0.3s ease;
}

.step:hover .step__icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 32px rgba(163, 255, 18, 0.3);
}

.step__icon::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 2px dashed rgba(163, 255, 18, 0.3);
    border-radius: 50%;
    animation: spinSlow 20s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step:hover .step__icon::before {
    opacity: 1;
}

@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ==========================================================================
   Trust Section Icon Animations
   ========================================================================== */
.trust-item {
    transition: transform 0.3s var(--ease-out-cubic);
}

.trust-item:hover {
    transform: translateY(-4px);
}

.trust-item__icon {
    transition: 
        transform 0.4s var(--ease-out-back),
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.trust-item:hover .trust-item__icon {
    transform: scale(1.15) rotate(-5deg);
    background: rgba(42, 232, 206, 0.15);
    box-shadow: 0 8px 24px rgba(42, 232, 206, 0.2);
}

/* ==========================================================================
   Category Card Enhancements
   ========================================================================== */
.category-card {
    position: relative;
    transition: 
        transform 0.4s var(--ease-out-cubic),
        box-shadow 0.4s var(--ease-out-cubic),
        border-color 0.3s ease;
}

.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(163, 255, 18, 0.03) 0%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.category-card:hover::before {
    opacity: 1;
}

.category-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(163, 255, 18, 0.2);
    border-color: rgba(163, 255, 18, 0.3);
}

/* ==========================================================================
   CTA Section Enhancement
   ========================================================================== */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(163, 255, 18, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: ctaPulse 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes ctaPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.cta-title {
    position: relative;
    z-index: 1;
}

.cta-subtitle {
    position: relative;
    z-index: 1;
}

.cta-section .btn {
    position: relative;
    z-index: 1;
    animation: ctaBtnPulse 3s ease-in-out infinite;
}

@keyframes ctaBtnPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(163, 255, 18, 0.4); }
    50% { box-shadow: 0 0 0 12px rgba(163, 255, 18, 0); }
}

/* ==========================================================================
   Generating Page - 3D Printer Animation
   ========================================================================== */
.generating-page {
    --printer-progress: 0;
}

.generating-animation {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 2rem;
}

/* Orb container with 3D effect */
.generating-orb {
    position: relative;
    width: 180px;
    height: 180px;
}

.generating-orb__inner {
    position: absolute;
    inset: 30px;
    background: 
        radial-gradient(ellipse at 30% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, var(--shop-accent-primary) 0%, var(--shop-accent-secondary) 100%);
    border-radius: 50%;
    box-shadow: 
        0 0 80px rgba(163, 255, 18, 0.5),
        inset 0 0 40px rgba(255, 255, 255, 0.2),
        inset 0 -20px 40px rgba(0, 0, 0, 0.3);
    animation: orbPulse 2.5s ease-in-out infinite;
}

@keyframes orbPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 
            0 0 60px rgba(163, 255, 18, 0.4),
            inset 0 0 30px rgba(255, 255, 255, 0.2);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 
            0 0 100px rgba(163, 255, 18, 0.6),
            inset 0 0 40px rgba(255, 255, 255, 0.3);
    }
}

.generating-orb__ring {
    position: absolute;
    inset: 0;
    border: 3px solid transparent;
    border-top-color: var(--shop-accent-primary);
    border-right-color: rgba(163, 255, 18, 0.3);
    border-radius: 50%;
    animation: ringRotate 3s linear infinite;
}

.generating-orb__ring--2 {
    inset: 12px;
    border-top-color: var(--shop-accent-secondary);
    border-right-color: rgba(42, 232, 206, 0.3);
    animation-duration: 4s;
    animation-direction: reverse;
}

@keyframes ringRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.generating-orb__particles {
    position: absolute;
    inset: 0;
}

.generating-orb__particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--shop-accent-primary);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    margin: -3px;
    box-shadow: 0 0 10px var(--shop-accent-primary);
    animation: particleOrbit 4s linear infinite;
    animation-delay: calc(var(--i) * -0.5s);
    opacity: 0.8;
}

.generating-orb__particle:nth-child(odd) {
    background: var(--shop-accent-secondary);
    box-shadow: 0 0 10px var(--shop-accent-secondary);
    animation-duration: 3s;
}

@keyframes particleOrbit {
    from { transform: rotate(0deg) translateX(70px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(70px) rotate(-360deg); }
}

/* Progress bar enhancement */
.generating-progress {
    position: relative;
    margin: 1.5rem 0;
}

.generating-progress__bar {
    height: 10px;
    background: var(--shop-bg-secondary);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.generating-progress__fill {
    height: 100%;
    background: linear-gradient(
        90deg,
        var(--shop-accent-primary) 0%,
        var(--shop-accent-secondary) 50%,
        var(--shop-accent-primary) 100%
    );
    background-size: 200% 100%;
    border-radius: 5px;
    transition: width 0.5s var(--ease-out-cubic);
    position: relative;
    animation: progressShimmer 2s linear infinite;
}

@keyframes progressShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.generating-progress__fill::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 100%;
    background: radial-gradient(
        ellipse at right center,
        rgba(255, 255, 255, 0.6) 0%,
        transparent 70%
    );
    animation: progressGlow 1s ease-in-out infinite;
}

@keyframes progressGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Step indicators */
.generating-step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--shop-bg-secondary);
    border-radius: var(--shop-radius-md);
    margin-bottom: 0.5rem;
    transition: all 0.3s var(--ease-out-cubic);
    border: 1px solid transparent;
}

.generating-step.is-active {
    background: rgba(163, 255, 18, 0.1);
    border-color: var(--shop-accent-primary);
}

.generating-step.is-complete {
    background: rgba(22, 163, 74, 0.1);
    border-color: rgba(22, 163, 74, 0.3);
}

.generating-step__icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.75rem;
    transition: all 0.3s var(--ease-out-cubic);
}

.generating-step.is-complete .generating-step__icon {
    background: var(--success);
    color: white;
    animation: checkPop 0.4s var(--ease-out-back);
}

@keyframes checkPop {
    0% { transform: scale(0); }
    70% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.generating-step__spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(163, 255, 18, 0.3);
    border-top-color: var(--shop-accent-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Tip animation */
.generating-tip {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(42, 232, 206, 0.1);
    border: 1px solid rgba(42, 232, 206, 0.2);
    border-radius: var(--shop-radius-md);
    color: var(--shop-text-secondary);
    transition: all 0.5s var(--ease-out-cubic);
}

.generating-tip i {
    color: var(--shop-accent-secondary);
    font-size: 1.25rem;
}

#tipText {
    transition: opacity 0.3s ease;
}

.generating-tip.changing #tipText {
    opacity: 0;
}

/* ETA countdown */
.generating-eta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    color: var(--shop-text-secondary);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.generating-eta i {
    color: var(--shop-accent-primary);
}

/* ==========================================================================
   Review Page Layout
   ========================================================================== */
.review-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .review-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: start;
    }
}

.review-model {
    position: sticky;
    top: 100px;
}

.review-model img,
.review-model .model-preview-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    border-radius: var(--shop-radius-lg);
    background: var(--shop-bg-secondary);
}

.review-model__original {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--shop-bg-secondary);
    border: 1px solid var(--shop-border-color);
    border-radius: var(--shop-radius-md);
}

.review-model__original-label {
    display: block;
    font-size: 0.75rem;
    color: var(--shop-text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.review-model__original img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: var(--shop-radius-sm);
}

.review-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-header h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--shop-text-primary);
    margin: 0 0 0.5rem;
}

.review-subtitle {
    color: var(--shop-text-secondary);
    font-size: 1rem;
    margin: 0;
}

.review-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.25rem;
    background: var(--shop-bg-secondary);
    border: 1px solid var(--shop-border-color);
    border-radius: var(--shop-radius-lg);
}

.review-info__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--shop-border-color);
}

.review-info__item:last-child {
    border-bottom: none;
}

.review-info__item--warning {
    color: #fbbf24;
}

.review-info__label {
    font-size: 0.875rem;
    color: var(--shop-text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.review-info__value {
    font-weight: 600;
    color: var(--shop-text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.review-info__swatch {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.review-price {
    padding: 1.25rem;
    background: var(--shop-bg-secondary);
    border: 1px solid var(--shop-border-color);
    border-radius: var(--shop-radius-lg);
}

.price-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--shop-text-secondary);
    padding: 0.25rem 0;
}

.price-row.price-total {
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--shop-border-color);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--shop-accent-primary);
}

.review-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review-actions .btn--primary {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    justify-content: center;
}

.review-secondary-actions {
    display: flex;
    gap: 0.75rem;
}

.review-secondary-actions .btn {
    flex: 1;
    justify-content: center;
}

/* ==========================================================================
   Model Preview Component
   ========================================================================== */
.model-preview {
    width: 100%;
}

.model-preview__main {
    width: 100%;
    border-radius: var(--shop-radius-lg);
    overflow: hidden;
    background: var(--shop-bg-secondary);
    border: 1px solid var(--shop-border-color);
}

.model-preview__image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    display: block;
}

.model-preview__placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    color: var(--shop-text-muted);
    gap: 0.5rem;
}

.model-preview__placeholder i {
    font-size: 3rem;
    opacity: 0.5;
}

.model-preview__loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    gap: 1rem;
    color: var(--shop-text-secondary);
}

.model-preview__spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--shop-border-color);
    border-top-color: var(--shop-accent-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.model-preview__thumbnails {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    overflow-x: auto;
    padding: 0.25rem;
}

.model-preview__thumb {
    width: 60px;
    height: 60px;
    border: 2px solid var(--shop-border-color);
    border-radius: var(--shop-radius-sm);
    overflow: hidden;
    background: var(--shop-bg-secondary);
    cursor: pointer;
    padding: 0;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.model-preview__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.model-preview__thumb:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.model-preview__thumb.is-active {
    border-color: var(--shop-accent-primary);
}

.model-preview__guide {
    margin-top: 1rem;
}

.model-preview__guide-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid var(--shop-border-color);
    border-radius: var(--shop-radius-md);
    color: var(--shop-text-secondary);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.model-preview__guide-toggle:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--shop-text-primary);
}

.model-preview__guide-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
}

.model-preview__guide-content {
    background: var(--shop-bg-secondary);
    border: 1px solid var(--shop-border-color);
    border-radius: var(--shop-radius-lg);
    padding: 1.5rem;
    max-width: 500px;
    width: 100%;
    position: relative;
}

.model-preview__guide-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: var(--shop-text-secondary);
    cursor: pointer;
    border-radius: var(--shop-radius-sm);
    transition: all 0.2s ease;
}

.model-preview__guide-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--shop-text-primary);
}

.model-preview__guide-content h4 {
    margin: 0 0 1rem;
    color: var(--shop-text-primary);
}

.model-preview__guide-content img {
    width: 100%;
    border-radius: var(--shop-radius-md);
    margin-bottom: 1rem;
}

.model-preview__guide-content p {
    color: var(--shop-text-secondary);
    font-size: 0.875rem;
    margin: 0;
}

/* ==========================================================================
   Review Page Enhancements
   ========================================================================== */
.review-model__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.2), rgba(22, 163, 74, 0.1));
    border: 1px solid rgba(22, 163, 74, 0.3);
    border-radius: var(--shop-radius-md);
    color: var(--success);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    animation: badgePop 0.5s var(--ease-out-back);
}

@keyframes badgePop {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.review-model__badge i {
    animation: checkPop 0.6s var(--ease-out-back) 0.2s backwards;
}

.review-guarantees {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.review-guarantee {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--shop-bg-secondary);
    border: 1px solid var(--shop-border-color);
    border-radius: var(--shop-radius-md);
    transition: all 0.3s var(--ease-out-cubic);
}

.review-guarantee:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(4px);
}

.review-guarantee i {
    color: var(--shop-accent-secondary);
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* ==========================================================================
   Customize Page Layout
   ========================================================================== */
.customize-page {
    min-height: 100vh;
    background: var(--shop-bg-primary);
}

.customize-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .customize-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: start;
    }
}

.customize-preview {
    position: sticky;
    top: 100px;
}

.customize-preview img,
.customize-preview .model-preview-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    border-radius: var(--shop-radius-lg);
    background: var(--shop-bg-secondary);
}

.customize-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.customize-header h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--shop-text-primary);
    margin: 0 0 0.25rem;
}

.customize-category {
    font-size: 0.875rem;
    color: var(--shop-accent-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

.customize-description {
    color: var(--shop-text-secondary);
    line-height: 1.6;
    margin: 0 0 1rem;
}

.customize-section {
    background: var(--shop-bg-secondary);
    border: 1px solid var(--shop-border-color);
    border-radius: var(--shop-radius-lg);
    padding: 1.5rem;
}

.customize-actions {
    margin-top: 1rem;
}

.customize-actions .btn--primary {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1rem;
}

.customize-submit-error {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: var(--shop-radius-md);
    color: #ef4444;
    font-size: 0.875rem;
}

/* ==========================================================================
   Customize Page Enhancements
   ========================================================================== */
.customize-section h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.customize-section h3 i {
    color: var(--shop-accent-primary);
    transition: transform 0.3s var(--ease-out-back);
}

.customize-section:hover h3 i {
    transform: scale(1.1) rotate(5deg);
}

.customize-section__hint {
    font-size: 0.85rem;
    color: var(--shop-text-secondary);
    margin: -0.5rem 0 1rem 0;
    font-style: italic;
}

/* ==========================================================================
   Customize Page Enhanced Elements
   ========================================================================== */

/* Badges */
.customize-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.customize-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--shop-radius-md);
    animation: badgeFadeIn 0.5s ease forwards;
}

@keyframes badgeFadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.customize-badge--physical {
    background: rgba(163, 255, 18, 0.15);
    border: 1px solid rgba(163, 255, 18, 0.3);
    color: var(--shop-accent-primary);
}

.customize-badge--physical i {
    animation: cubeRotate 3s ease-in-out infinite;
}

@keyframes cubeRotate {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    75% { transform: rotate(-5deg); }
}

.customize-badge--shipping {
    background: rgba(42, 232, 206, 0.15);
    border: 1px solid rgba(42, 232, 206, 0.3);
    color: var(--shop-accent-secondary);
}

.customize-badge--shipping i {
    animation: truckDrive 2s ease-in-out infinite;
}

@keyframes truckDrive {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(3px); }
}

/* Tagline */
.customize-tagline {
    font-size: 1.1rem;
    color: var(--shop-text-secondary);
    margin: 0.5rem 0 0.75rem 0;
    line-height: 1.5;
}

/* Product Info Box */
.customize-product-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--shop-bg-secondary);
    border: 1px solid var(--shop-border-color);
    border-radius: var(--shop-radius-lg);
    margin-bottom: 1.5rem;
}

.customize-product-info__item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    flex: 1;
    min-width: 180px;
}

.customize-product-info__item > i {
    font-size: 1.25rem;
    color: var(--shop-accent-primary);
    width: 24px;
    text-align: center;
}

.customize-product-info__item > div {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.customize-product-info__label {
    font-size: 0.75rem;
    color: var(--shop-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.customize-product-info__value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--shop-text-primary);
}

.customize-product-info__price {
    color: var(--shop-accent-primary);
    font-size: 1.125rem;
}

/* Trust Badges */
.customize-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--shop-border-color);
    border-radius: var(--shop-radius-lg);
    margin-bottom: 1.5rem;
}

.customize-trust > span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--shop-text-secondary);
    transition: color 0.3s ease;
}

.customize-trust > span:hover {
    color: var(--shop-text-primary);
}

.customize-trust > span i {
    color: var(--shop-accent-secondary);
    font-size: 1rem;
}

/* Materials Preview (informational, not selectable) */
.customize-materials-preview {
    margin-top: 0.5rem;
}

.customize-materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.75rem;
}

.customize-material-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
    padding: 1rem 0.75rem;
    background: var(--shop-bg-tertiary);
    border: 1px solid var(--shop-border-color);
    border-radius: var(--shop-radius-md);
    text-align: center;
    transition: all 0.3s ease;
}

.customize-material-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.customize-material-card__name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--shop-text-primary);
}

.customize-material-card__price {
    font-size: 0.8rem;
    color: var(--shop-text-secondary);
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .customize-badges {
        justify-content: center;
    }
    
    .customize-product-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .customize-product-info__item {
        min-width: 100%;
    }
    
    .customize-trust {
        gap: 1rem;
    }
    
    .customize-trust > span {
        font-size: 0.8rem;
    }
}

/* Material selection tactile feel */
.material-option {
    position: relative;
    padding: 1rem;
    background: var(--shop-bg-secondary);
    border: 2px solid var(--shop-border-color);
    border-radius: var(--shop-radius-md);
    cursor: pointer;
    transition: 
        transform 0.2s var(--ease-out-cubic),
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.material-option:hover {
    transform: translateY(-3px) scale(1.01);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.material-option:active {
    transform: translateY(0) scale(0.99);
}

.material-option.selected {
    border-color: var(--shop-accent-primary);
    background: rgba(163, 255, 18, 0.05);
    box-shadow: 
        0 0 0 3px rgba(163, 255, 18, 0.15),
        0 8px 24px rgba(163, 255, 18, 0.1);
    animation: selectPop 0.3s var(--ease-out-back);
}

@keyframes selectPop {
    0% { transform: scale(0.97); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* Photo upload drag feedback */
.photo-uploader {
    border: 2px dashed var(--shop-border-color);
    border-radius: var(--shop-radius-lg);
    padding: 2rem;
    text-align: center;
    transition: 
        border-color 0.3s ease,
        background 0.3s ease,
        transform 0.2s var(--ease-out-cubic);
    cursor: pointer;
}

.photo-uploader:hover {
    border-color: rgba(163, 255, 18, 0.5);
    background: rgba(163, 255, 18, 0.03);
}

.photo-uploader.dragging {
    border-color: var(--shop-accent-primary);
    background: rgba(163, 255, 18, 0.08);
    transform: scale(1.02);
    box-shadow: 
        0 0 0 4px rgba(163, 255, 18, 0.1),
        0 0 40px rgba(163, 255, 18, 0.15);
}

.photo-uploader.dragging::before {
    content: 'Drop your photo here!';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 600;
    color: var(--shop-accent-primary);
    font-size: 1.125rem;
    animation: dragPulse 1s ease-in-out infinite;
}

@keyframes dragPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Price summary animation */
.price-summary {
    background: var(--shop-bg-secondary);
    border: 1px solid var(--shop-border-color);
    border-radius: var(--shop-radius-md);
    padding: 1.25rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    color: var(--shop-text-secondary);
}

.price-row.price-total {
    border-top: 1px solid var(--shop-border-color);
    margin-top: 0.5rem;
    padding-top: 1rem;
    font-weight: 700;
    color: var(--shop-text-primary);
    font-size: 1.125rem;
}

.price-row.price-total span:last-child {
    color: var(--shop-accent-primary);
}

.price-animated {
    position: relative;
    display: inline-block;
    transition: transform 0.3s var(--ease-out-cubic);
}

.price-animated.updating {
    animation: priceUpdate 0.4s var(--ease-out-cubic);
}

@keyframes priceUpdate {
    0% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(-5px); opacity: 0.5; }
    100% { transform: translateY(0); opacity: 1; }
}

.price-animated.highlight::before {
    content: '';
    position: absolute;
    inset: -4px -8px;
    background: rgba(163, 255, 18, 0.2);
    border-radius: 4px;
    animation: priceHighlight 0.5s ease-out forwards;
}

@keyframes priceHighlight {
    0% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(1.1); }
}

/* ==========================================================================
   Achievement Popup
   ========================================================================== */
.achievement-popup {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--shop-bg-secondary);
    border: 1px solid var(--shop-accent-primary);
    border-radius: var(--shop-radius-lg);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(163, 255, 18, 0.15);
    z-index: 1001;
    animation: achievementSlide 0.5s var(--ease-out-back) forwards;
    max-width: 320px;
}

@keyframes achievementSlide {
    from {
        transform: translateX(120%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.achievement-popup.exit {
    animation: achievementExit 0.3s var(--ease-out-cubic) forwards;
}

@keyframes achievementExit {
    to {
        transform: translateX(120%);
        opacity: 0;
    }
}

.achievement-popup__icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--shop-accent-primary), var(--shop-accent-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--shop-bg-primary);
    flex-shrink: 0;
    animation: achievementIcon 0.5s var(--ease-out-back) 0.2s backwards;
}

@keyframes achievementIcon {
    from {
        transform: scale(0) rotate(-180deg);
    }
    to {
        transform: scale(1) rotate(0);
    }
}

.achievement-popup__content {
    flex: 1;
}

.achievement-popup__title {
    font-weight: 700;
    color: var(--shop-accent-primary);
    margin: 0 0 0.25rem;
    font-size: 0.95rem;
}

.achievement-popup__message {
    color: var(--shop-text-secondary);
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.4;
}

/* ==========================================================================
   Mobile Optimizations (Round 2)
   ========================================================================== */
@media (max-width: 640px) {
    /* Reduce animation complexity on mobile */
    .template-card:hover {
        transform: translateY(-4px);
    }
    
    .template-card.tilt-active {
        transform: translateY(-4px);
    }
    
    /* Disable 3D effects on mobile for performance */
    .template-card {
        transform-style: flat;
        perspective: none;
    }
    
    .template-card__content {
        transform: none;
    }
    
    /* Simplify hero animation */
    .hero__image {
        animation: none;
        transform: none;
    }
    
    .hero::before {
        animation: none;
    }
    
    /* Reduce particles */
    .generating-orb__particle:nth-child(n+5) {
        display: none;
    }
    
    /* Achievement popup full width on mobile */
    .achievement-popup {
        left: 20px;
        right: 20px;
        max-width: none;
    }
}

/* ==========================================================================
   Progress Steps (Customize Flow)
   ========================================================================== */
.progress-steps {
    padding: 1.5rem 0;
    background: var(--shop-bg-secondary);
    border-bottom: 1px solid var(--shop-border-color);
    margin-bottom: 2rem;
}

.progress-steps__container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1rem;
}

.progress-step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    transition: all 0.4s var(--ease-out-cubic);
}

.progress-step__number {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--shop-bg-tertiary);
    border: 2px solid var(--shop-border-color);
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--shop-text-secondary);
    transition: all 0.4s var(--ease-out-back);
}

.progress-step__label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--shop-text-secondary);
    transition: color 0.3s ease;
}

/* Active step */
.progress-step.is-active {
    background: rgba(163, 255, 18, 0.1);
}

.progress-step.is-active .progress-step__number {
    background: var(--shop-accent-primary);
    border-color: var(--shop-accent-primary);
    color: var(--shop-bg-primary);
    box-shadow: 0 0 20px rgba(163, 255, 18, 0.4);
    animation: stepGlow 2s ease-in-out infinite;
}

@keyframes stepGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(163, 255, 18, 0.3); }
    50% { box-shadow: 0 0 25px rgba(163, 255, 18, 0.5); }
}

.progress-step.is-active .progress-step__label {
    color: var(--shop-accent-primary);
}

/* Completed step */
.progress-step.is-complete .progress-step__number {
    background: var(--success, #22c55e);
    border-color: var(--success, #22c55e);
    color: white;
    animation: checkPop 0.4s var(--ease-out-back);
}

.progress-step.is-complete .progress-step__label {
    color: var(--success, #22c55e);
}

/* Connector line */
.progress-step__connector {
    width: 60px;
    height: 3px;
    background: var(--shop-border-color);
    border-radius: 3px;
    transition: background 0.5s ease;
    position: relative;
    overflow: hidden;
}

.progress-step__connector.is-complete {
    background: var(--success, #22c55e);
}

/* Animated fill for active connector */
.progress-step.is-active ~ .progress-step__connector::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--shop-accent-primary), transparent);
    animation: connectorFill 2s ease-out forwards;
}

@keyframes connectorFill {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

/* Mobile responsive */
@media (max-width: 640px) {
    .progress-steps__container {
        gap: 0;
    }
    
    .progress-step {
        padding: 0.5rem 0.75rem;
    }
    
    .progress-step__number {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
    
    .progress-step__label {
        display: none;
    }
    
    .progress-step__connector {
        width: 30px;
    }
}

/* ==========================================================================
   Photo Uploader Premium Styles
   ========================================================================== */
.photo-uploader__dropzone {
    position: relative;
    border: 2px dashed var(--shop-border-color);
    border-radius: var(--shop-radius-xl);
    padding: 3rem 2rem;
    text-align: center;
    transition: 
        border-color 0.3s ease,
        background 0.3s ease,
        transform 0.2s var(--ease-out-cubic);
    cursor: pointer;
    background: var(--shop-bg-secondary);
}

.photo-uploader__dropzone:hover {
    border-color: rgba(163, 255, 18, 0.5);
    background: rgba(163, 255, 18, 0.03);
}

.photo-uploader__dropzone.is-dragover {
    border-color: var(--shop-accent-primary);
    background: rgba(163, 255, 18, 0.08);
    transform: scale(1.02);
    box-shadow: 
        0 0 0 4px rgba(163, 255, 18, 0.1),
        0 0 40px rgba(163, 255, 18, 0.15);
}

.photo-uploader__placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.photo-uploader__placeholder i {
    font-size: 3rem;
    color: var(--shop-accent-primary);
    opacity: 0.8;
    transition: transform 0.3s var(--ease-out-back);
}

.photo-uploader__dropzone:hover .photo-uploader__placeholder i {
    transform: translateY(-5px) scale(1.1);
}

.photo-uploader__placeholder p {
    margin: 0;
    color: var(--shop-text-primary);
    font-weight: 500;
}

.photo-uploader__placeholder span {
    color: var(--shop-text-secondary);
    font-size: 0.9rem;
}

.photo-uploader__hint {
    font-size: 0.8rem !important;
    color: var(--shop-text-secondary) !important;
    opacity: 0.7;
}

.photo-preview {
    position: relative;
    display: inline-block;
}

.photo-preview img {
    max-width: 100%;
    max-height: 300px;
    border-radius: var(--shop-radius-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.photo-preview__clear {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 32px;
    height: 32px;
    background: var(--shop-bg-primary);
    border: 2px solid var(--shop-border-color);
    border-radius: 50%;
    color: var(--shop-text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.photo-preview__clear:hover {
    background: #ef4444;
    border-color: #ef4444;
    color: white;
    transform: scale(1.1);
}

.photo-uploader__loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
}

.photo-uploader__spinner {
    width: 48px;
    height: 48px;
    border: 3px solid var(--shop-border-color);
    border-top-color: var(--shop-accent-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.photo-uploader__error {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: var(--shop-radius-md);
    color: #fca5a5;
    margin-top: 1rem;
}

/* ==========================================================================
   Modal Styles
   ========================================================================== */
.review-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: modalOverlayIn 0.3s ease;
}

@keyframes modalOverlayIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.review-modal {
    background: var(--shop-bg-secondary);
    border: 1px solid var(--shop-border-color);
    border-radius: var(--shop-radius-xl);
    padding: 2rem;
    max-width: 420px;
    width: 90%;
    animation: modalSlideIn 0.4s var(--ease-out-back);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.review-modal h3 {
    margin: 0 0 0.75rem;
    font-size: 1.25rem;
    color: var(--shop-text-primary);
}

.review-modal p {
    margin: 0 0 1.5rem;
    color: var(--shop-text-secondary);
}

.review-modal__actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.btn--danger {
    background: #ef4444;
    color: white;
}

.btn--danger:hover {
    background: #dc2626;
}

.btn--outline {
    background: transparent;
    border: 1px solid var(--shop-border-color);
    color: var(--shop-text-primary);
}

.btn--outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--shop-border-hover);
}

/* ==========================================================================
   Reduced Motion Support
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero__image,
    .generating-orb,
    .generating-orb__ring,
    .generating-orb__particle {
        animation: none !important;
    }
    
    .template-card:hover {
        transform: translateY(-4px);
    }
}

/* ==========================================================================
   Focus States for Accessibility
   ========================================================================== */
.template-card__link:focus-visible,
.category-card:focus-visible,
.btn:focus-visible,
.category-nav__item:focus-visible {
    outline: 2px solid var(--shop-accent-primary);
    outline-offset: 2px;
}

.template-card__link:focus-visible .template-card {
    transform: translateY(-6px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 0 3px var(--shop-accent-primary);
}

/* ==========================================================================
   Easter Egg - Konami Code Activation
   ========================================================================== */
.konami-mode {
    animation: konamiFlash 0.3s ease;
}

@keyframes konamiFlash {
    0%, 100% { filter: hue-rotate(0deg); }
    25% { filter: hue-rotate(90deg); }
    50% { filter: hue-rotate(180deg); }
    75% { filter: hue-rotate(270deg); }
}

.konami-mode .hero__accent {
    animation: rainbowText 2s linear infinite !important;
}

@keyframes rainbowText {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

/* ==========================================================================
   Hero Template Showcase - Animated Preview
   ========================================================================== */
.hero__template-showcase {
    position: relative;
    width: 100%;
    max-width: 450px;
    aspect-ratio: 1;
    perspective: 1000px;
}

/* Glow effect behind showcase */
.hero__template-showcase::before {
    content: '';
    position: absolute;
    inset: 10%;
    background: radial-gradient(circle, var(--shop-accent-glow) 0%, transparent 70%);
    filter: blur(40px);
    opacity: 0.6;
    animation: glowPulse 4s ease-in-out infinite;
    z-index: -1;
}

/* Individual template slide */
.hero__template-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.95) translateY(10px);
    transition: 
        opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

/* Active slide */
.hero__template-slide.is-active {
    opacity: 1;
    transform: scale(1) translateY(0);
    animation: templateFloat 5s ease-in-out infinite;
}

/* Exiting slide */
.hero__template-slide.is-exiting {
    opacity: 0;
    transform: scale(1.05) translateY(-10px);
}

/* Floating animation for active template */
@keyframes templateFloat {
    0%, 100% { 
        transform: translateY(0) rotate(-1deg) scale(1); 
    }
    25% {
        transform: translateY(-8px) rotate(0.5deg) scale(1.01);
    }
    50% { 
        transform: translateY(-15px) rotate(1deg) scale(1.02); 
    }
    75% {
        transform: translateY(-8px) rotate(-0.5deg) scale(1.01);
    }
}

/* Template image */
.hero__template-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
    border-radius: var(--shop-radius-xl);
}

/* Category badge overlay */
.hero__template-badge {
    position: absolute;
    bottom: 12%;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(12, 13, 16, 0.9), rgba(20, 22, 28, 0.95));
    backdrop-filter: blur(12px);
    border: 1px solid rgba(163, 255, 18, 0.3);
    border-radius: 999px;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(163, 255, 18, 0.1);
    opacity: 0;
    transition: opacity 0.5s ease 0.3s;
}

.hero__template-slide.is-active .hero__template-badge {
    opacity: 1;
}

.hero__template-category {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--shop-accent-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Showcase navigation dots (optional) */
.hero__showcase-dots {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 5;
}

.hero__showcase-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: 
        background 0.3s ease,
        transform 0.3s ease;
}

.hero__showcase-dot:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.hero__showcase-dot.is-active {
    background: var(--shop-accent-primary);
    box-shadow: 0 0 8px var(--shop-accent-glow);
}

/* Progress indicator */
.hero__showcase-progress {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
}

.hero__showcase-progress-fill {
    height: 100%;
    background: var(--shop-accent-primary);
    border-radius: 3px;
    width: 0;
    animation: progressFill 4s linear infinite;
}

@keyframes progressFill {
    from { width: 0; }
    to { width: 100%; }
}

/* Fallback static image */
.hero__template-slide--fallback {
    opacity: 1;
    transform: scale(1);
}

.hero__template-slide--fallback .hero__template-image {
    animation: heroFloat 5s ease-in-out infinite;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .hero__template-showcase {
        max-width: 320px;
    }
    
    .hero__template-badge {
        bottom: 8%;
        padding: 0.375rem 1rem;
    }
    
    .hero__template-category {
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .hero__template-showcase {
        max-width: 280px;
    }
    
    /* Simplify animations on very small screens */
    .hero__template-slide.is-active {
        animation: templateFloatSimple 4s ease-in-out infinite;
    }
    
    @keyframes templateFloatSimple {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .hero__template-slide.is-active {
        animation: none;
    }
    
    .hero__showcase-progress-fill {
        animation: none;
        width: 100%;
    }
}

/* ==========================================================================
   Customize Page - Material Rows (Stacked Vertically)
   ========================================================================== */
.customize-materials-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.customize-material-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--shop-bg-tertiary);
    border: 1px solid var(--shop-border-color);
    border-radius: var(--shop-radius-md);
    transition: all 0.3s ease;
}

.customize-material-row:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
}

.customize-material-row__info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.customize-material-row__name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--shop-text-primary);
}

.customize-material-row__desc {
    font-size: 0.85rem;
    color: var(--shop-text-secondary);
    line-height: 1.4;
}

.customize-material-row__price {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--shop-accent-primary);
    white-space: nowrap;
}

/* ==========================================================================
   Generate Button - Green Accent Style
   ========================================================================== */
.btn--generate {
    background: var(--shop-accent-primary) !important;
    color: var(--shop-bg-primary) !important;
    font-weight: 700;
    border: none;
    box-shadow: 
        0 4px 16px rgba(163, 255, 18, 0.3),
        0 0 0 0 rgba(163, 255, 18, 0.4);
    transition: 
        transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.3s ease,
        background-color 0.3s ease;
}

.btn--generate:hover {
    background: #baff4d !important;
    transform: translateY(-3px);
    box-shadow: 
        0 8px 28px rgba(163, 255, 18, 0.45),
        0 0 40px rgba(163, 255, 18, 0.2);
}

.btn--generate:active {
    transform: translateY(-1px) scale(0.98);
}

.btn--generate:disabled {
    background: rgba(163, 255, 18, 0.4) !important;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn--generate i {
    color: var(--shop-bg-primary);
}

/* ==========================================================================
   Customize Actions - Centered Hint
   ========================================================================== */
.customize-actions__hint {
    text-align: center;
    font-size: 0.875rem;
    color: var(--shop-text-secondary);
    margin: 1rem 0 0 0;
    font-style: italic;
}

/* ==========================================================================
   Review Page - Optional 3D Preview Section
   ========================================================================== */
.review-3d-preview {
    background: var(--shop-bg-secondary);
    border: 1px solid var(--shop-border-color);
    border-radius: var(--shop-radius-lg);
    padding: var(--space-lg);
    margin-top: var(--space-xl);
}

.review-3d-preview__header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.review-3d-preview__header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--shop-text-primary);
    margin: 0 0 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.review-3d-preview__header h3 i {
    color: var(--shop-accent-secondary);
}

.review-3d-preview__header p {
    color: var(--shop-text-secondary);
    font-size: 0.875rem;
    margin: 0;
}

.review-3d-preview__content {
    text-align: center;
}

.review-3d-preview__note {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: var(--shop-text-muted);
}

.review-3d-preview__loading {
    padding: var(--space-lg);
}

.review-3d-preview__loading .spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--shop-border-color);
    border-top-color: var(--shop-accent-secondary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto var(--space-md);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.review-3d-preview__loading span {
    display: block;
    color: var(--shop-text-secondary);
    margin-bottom: var(--space-md);
}

.review-3d-preview__progress {
    background: var(--shop-bg-tertiary);
    height: 6px;
    border-radius: 3px;
    overflow: hidden;
    max-width: 300px;
    margin: 0 auto;
}

.review-3d-preview__progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--shop-accent-secondary), var(--shop-accent-primary));
    border-radius: 3px;
    transition: width 0.3s ease;
}

.review-3d-preview__viewer-hint {
    margin-top: var(--space-md);
    font-size: 0.8rem;
    color: var(--shop-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.review-3d-preview__error {
    padding: var(--space-lg);
    color: #ef4444;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.review-3d-preview__error i {
    font-size: 2rem;
}

.btn--small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}
