/* Shop Coming Soon Page Styles */

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

:root {
    /* Scryze Design System Colors */
    --color-primary-bg: rgb(23, 23, 23);
    --color-secondary-bg: rgb(38, 38, 38);
    --color-text-dark: rgb(11, 11, 11);
    --color-text-light: rgba(255, 255, 255, 0.7);
    --color-gradient-start: #1E90FF;
    --color-gradient-end: #40E0D0;
    --color-white: #ffffff;
    --color-border: rgba(0, 0, 0, 0.08);
    --color-shadow: rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--color-text-dark);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}

/* Premium CSS-only background with soft gradients and vignette */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: 
        /* Subtle noise-like texture using repeating gradients */
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.003) 2px,
            rgba(0, 0, 0, 0.003) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.003) 2px,
            rgba(0, 0, 0, 0.003) 4px
        ),
        /* Base soft gradient */
        linear-gradient(135deg, 
            rgba(250, 250, 252, 1) 0%, 
            rgba(248, 249, 251, 1) 50%, 
            rgba(252, 252, 254, 1) 100%
        ),
        /* Subtle radial glow from center */
        radial-gradient(circle at 50% 40%, 
            rgba(30, 144, 255, 0.03) 0%, 
            transparent 50%
        ),
        /* Additional soft gradient overlay */
        linear-gradient(180deg, 
            rgba(255, 255, 255, 0.8) 0%, 
            rgba(248, 250, 252, 0.6) 100%
        );
    background-size: 
        100% 100%,
        100% 100%,
        100% 100%,
        100% 100%,
        100% 100%;
    background-blend-mode: normal, normal, normal, normal, normal;
    opacity: 1;
}

/* Vignette effect - darker at edges */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: radial-gradient(
        ellipse at center,
        transparent 0%,
        transparent 60%,
        rgba(0, 0, 0, 0.02) 100%
    );
    pointer-events: none;
}

.shop-coming-soon {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    min-height: 100vh;
    position: relative;
    z-index: 2;
}

.content-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    max-width: 720px;
    width: 100%;
    padding: 3rem 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.headline {
    margin-bottom: 1.5rem;
}

.headline-main {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.headline-coming-soon {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-dark);
    opacity: 0.7;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.description {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--color-text-dark);
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.social-section {
    margin-bottom: 2.5rem;
}

.social-hint {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--color-text-dark);
    opacity: 0.6;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover,
.social-icon:focus {
    background: var(--color-text-dark);
    color: var(--color-white);
    border-color: var(--color-text-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--color-shadow);
}

.social-icon:focus {
    outline: 2px solid var(--color-gradient-start);
    outline-offset: 2px;
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

/* Primary Button - Matching Scryze Design System */
.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-gradient-start) 0%, var(--color-gradient-end) 100%);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    box-shadow: 0 4px 16px rgba(30, 144, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(30, 144, 255, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-primary:focus {
    outline: 2px solid var(--color-gradient-start);
    outline-offset: 3px;
}

.follow-hint {
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--color-text-dark);
    opacity: 0.5;
    margin-top: 1.25rem;
    letter-spacing: 0.02em;
}

.page-footer {
    text-align: center;
    padding: 1.5rem 1rem;
    margin-top: auto;
    position: relative;
    z-index: 2;
}

.page-footer p {
    font-size: 0.875rem;
    color: var(--color-text-dark);
    opacity: 0.5;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-card {
        padding: 2.5rem 2rem;
        border-radius: 12px;
    }
    
    .headline-main {
        font-size: 2.25rem;
    }
    
    .headline-coming-soon {
        font-size: 1.25rem;
    }
    
    .description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .social-section {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .shop-coming-soon {
        padding: 1.5rem 1rem;
    }
    
    .content-card {
        padding: 2rem 1.5rem;
        border-radius: 12px;
    }
    
    .headline-main {
        font-size: 1.875rem;
    }
    
    .headline-coming-soon {
        font-size: 1rem;
    }
    
    .description {
        font-size: 0.9375rem;
        margin-bottom: 1.75rem;
    }
    
    .social-icons {
        gap: 1rem;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
    
    .social-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .btn-primary {
        padding: 0.875rem 2rem;
        font-size: 0.9375rem;
        width: 100%;
        max-width: 280px;
    }
    
    .page-footer {
        padding: 1rem;
    }
}

/* Landscape orientation for mobile */
@media (max-height: 600px) and (orientation: landscape) {
    .shop-coming-soon {
        padding: 1rem;
    }
    
    .content-card {
        padding: 2rem 2.5rem;
    }
    
    .headline-main {
        font-size: 2rem;
    }
    
    .description {
        margin-bottom: 1.5rem;
    }
    
    .social-section {
        margin-bottom: 1.5rem;
    }
}

