/* assets/css/pages/shopify-radical.css - Ultra Modern, Completely Custom Layout */

:root {
    --sr-dark: #0a0a0a;
    --sr-darker: #050505;
    --sr-light: #ffffff;
    --sr-gray: #f2f2f2;
    --sr-gray-text: #737373;
    --sr-shopify: #008060;
    --sr-accent: #95BF47;
    --sr-card-bg: rgba(255, 255, 255, 0.03);
    --sr-card-border: rgba(255, 255, 255, 0.08);
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body.shopify-radical {
    font-family: var(--font-sans);
    background-color: var(--sr-light);
    color: var(--sr-dark);
    -webkit-font-smoothing: antialiased;
}

/* ----------------------------------
   HERO: Ultra Minimal, Bold
---------------------------------- */
.sr-hero {
    position: relative;
    padding: 200px 0 140px;
    background: var(--sr-darker);
    color: var(--sr-light);
    text-align: center;
    overflow: hidden;
}

/* Floating Glow Effect */
.sr-hero::before,
.sr-hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(140px);
    z-index: 0;
    opacity: 0.15;
    animation: sr-float 20s infinite alternate;
}

.sr-hero::before {
    background: var(--sr-shopify);
    top: -200px;
    left: -100px;
}

.sr-hero::after {
    background: var(--sr-accent);
    bottom: -200px;
    right: -100px;
    animation-delay: -10s;
}

@keyframes sr-float {
    0% {
        transform: translateY(0) scale(1);
    }

    100% {
        transform: translateY(50px) scale(1.1);
    }
}

.sr-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.sr-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    color: var(--sr-light);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.sr-pill i {
    color: var(--sr-shopify);
    font-size: 1.2rem;
}

.sr-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 30px;
}

.sr-title span {
    background: linear-gradient(to right, #008060, #95BF47);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sr-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: #a3a3a3;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.sr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 100px;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.sr-btn-primary {
    background: var(--sr-light);
    color: var(--sr-dark);
}

.sr-btn-primary:hover {
    background: #e5e5e5;
    transform: translateY(-2px);
}

.sr-btn-outline {
    background: transparent;
    color: var(--sr-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.sr-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ----------------------------------
   BENTO GRID (Radical Layout)
---------------------------------- */
.sr-bento-section {
    padding: 120px 0;
    background: var(--sr-light);
}

.sr-bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(300px, auto);
    gap: 24px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.sr-bento-card {
    background: var(--sr-gray);
    border-radius: 32px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.sr-bento-card:hover {
    transform: translateY(-5px);
}

.sr-bento-card.dark {
    background: var(--sr-darker);
    color: var(--sr-light);
}

/* Grid Cell Sizes */
.sr-bento-huge {
    grid-column: span 8;
    grid-row: span 2;
}

.sr-bento-large {
    grid-column: span 8;
}

.sr-bento-tall {
    grid-column: span 4;
    grid-row: span 2;
}

.sr-bento-square {
    grid-column: span 4;
}

.sr-bento-icon {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 4rem;
    color: var(--sr-shopify);
    opacity: 0.1;
    transition: all 0.5s ease;
}

.sr-bento-card:hover .sr-bento-icon {
    transform: scale(1.2) rotate(-5deg);
    opacity: 0.3;
}

.sr-bento-card.dark .sr-bento-icon {
    color: var(--sr-accent);
}

.sr-bento-content h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.sr-bento-content p {
    font-size: 1.1rem;
    color: var(--sr-gray-text);
    line-height: 1.5;
    margin: 0;
}

.sr-bento-card.dark .sr-bento-content p {
    color: #a3a3a3;
}

.sr-bento-link {
    display: inline-flex;
    margin-top: 25px;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--sr-shopify);
    text-decoration: none !important;
}

.sr-bento-card.dark .sr-bento-link {
    color: var(--sr-accent);
}

.sr-bento-link:hover {
    gap: 12px;
}

/* ----------------------------------
   MODERN PRICING CARDS
---------------------------------- */
.sr-pricing-section {
    padding: 120px 0;
    background: var(--sr-darker);
    color: var(--sr-light);
}

.sr-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.sr-price-card {
    background: var(--sr-card-bg);
    border: 1px solid var(--sr-card-border);
    border-radius: 32px;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    backdrop-filter: blur(20px);
}

.sr-price-card.featured {
    background: linear-gradient(180deg, rgba(0, 128, 96, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(0, 128, 96, 0.5);
    transform: translateY(-15px);
}

.sr-price-tag {
    position: absolute;
    top: 25px;
    right: 30px;
    background: var(--sr-shopify);
    color: #fff;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.sr-price-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--sr-light);
    margin-bottom: 10px;
}

.sr-price-desc {
    font-size: 1rem;
    color: #a3a3a3;
    margin-bottom: 30px;
    line-height: 1.5;
}

.sr-price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 40px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.sr-price-amount span {
    font-size: 1.2rem;
    color: #737373;
    font-weight: 500;
}

.sr-price-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    flex: 1;
}

.sr-price-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1.05rem;
    color: #d4d4d4;
    margin-bottom: 20px;
    line-height: 1.5;
}

.sr-price-list li i {
    color: var(--sr-shopify);
    margin-top: 4px;
    font-size: 1.2rem;
}

.sr-price-list li.highlight {
    color: #fff;
    font-weight: 600;
}

.sr-price-btn {
    width: 100%;
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-radius: 100px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none !important;
    transition: all 0.3s;
}

.sr-price-card.featured .sr-price-btn {
    background: var(--sr-shopify);
    border-color: var(--sr-shopify);
}

.sr-price-btn:hover {
    background: #fff;
    color: var(--sr-dark);
}

/* ----------------------------------
   MINIMAL TEXT / SEO SECTIONS
---------------------------------- */
.sr-text-section {
    padding: 100px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.sr-text-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.sr-text-section p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--sr-gray-text);
    margin-bottom: 20px;
}

/* ----------------------------------
   RADICAL FAQ
---------------------------------- */
.sr-faq-section {
    padding: 120px 0;
    background: var(--sr-darker);
    color: #fff;
}

.sr-faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.sr-faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sr-faq-q {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 30px 0;
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sr-faq-item .sr-faq-a {
    display: none;
    padding: 0 0 30px;
    font-size: 1.1rem;
    color: #a3a3a3;
    line-height: 1.6;
}

/* ----------------------------------
   RESPONSIVE DESIGN
---------------------------------- */
@media (max-width: 1024px) {
    .sr-bento-huge {
        grid-column: span 12;
    }

    .sr-bento-large {
        grid-column: span 12;
    }

    .sr-bento-tall {
        grid-column: span 6;
    }

    .sr-bento-square {
        grid-column: span 6;
    }

    .sr-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sr-price-card.featured {
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .sr-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .sr-title span {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .sr-hero {
        padding: 160px 0 100px;
    }

    .sr-bento-tall,
    .sr-bento-square {
        grid-column: span 12;
        grid-row: auto;
    }

    .sr-bento-card {
        padding: 30px;
    }

    .sr-pricing-grid {
        grid-template-columns: 1fr;
    }

    .sr-price-amount {
        font-size: 3rem;
    }
}