/* =================================
   #PB-YELLING PILLOW STYLES
   LOUD. AGGRESSIVE. RIDICULOUS.
   ================================= */

/* ROOT VARIABLES - THE FURY PALETTE */
:root {
    --primary-green: #1a5d3a;
    --light-green: #2d8f5e;
    --dark-green: #0f3820;
    --white: #ffffff;
    --black: #000000;
    --accent-gold: #f4c430;
    --dark-gray: #1a1a1a;
    --light-gray: #f5f5f5;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', 'Helvetica Neue', sans-serif;
    background-color: var(--white);
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

/* TYPOGRAPHY - MAKE NOISE */
h1, h2, h3, h4, h5, h6 {
    font-weight: 900;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
}

h2 {
    font-size: clamp(1.8rem, 6vw, 3rem);
}

h3 {
    font-size: clamp(1.3rem, 4vw, 1.8rem);
}

p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* NAVIGATION - ALWAYS PRESENT, ALWAYS AGGRESSIVE */
.navbar {
    background-color: var(--primary-green);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

/* HERO SECTION - THE ENTRY POINT OF RAGE */
.hero {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.title-yell {
    display: block;
    font-size: 1.2em;
    letter-spacing: 0.15em;
    font-weight: 900;
}

.title-pillow {
    display: block;
    font-size: 1.3em;
    letter-spacing: 0.2em;
    font-weight: 900;
}

.hero-tagline {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.hero-image {
    max-width: 100%;
    width: 100%;
    max-width: 450px;
    height: auto;
    margin-bottom: 2rem;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.02);
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-family: inherit;
}

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

.btn-primary:hover {
    background-color: #ffdb58;
    box-shadow: 0 8px 20px rgba(244, 196, 48, 0.4);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-green);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: transparent;
    color: var(--white);
}

.hero-subtext {
    color: var(--white);
    font-size: 0.95rem;
    opacity: 0.95;
    font-weight: 600;
}

/* PAGE HERO - FOR SECONDARY PAGES */
.page-hero {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--primary-green) 100%);
    padding: 3rem 2rem;
    text-align: center;
    color: var(--white);
}

.page-title {
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.1em;
}

/* STATS SECTION */
.stats {
    background-color: var(--light-gray);
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.stat-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--primary-green);
}

.stat-number {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--dark-gray);
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* WHY SECTION */
.why-section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-green);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background-color: var(--accent-gold);
    margin: 1rem auto 0;
}

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

.why-card {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--primary-green);
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

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

.why-card h3 {
    color: var(--primary-green);
    margin-bottom: 0.8rem;
    letter-spacing: 0.05em;
}

.why-card p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* FEATURES SECTION */
.features-section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--primary-green);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(26, 93, 58, 0.02);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.feature-card:hover::before {
    opacity: 1;
}

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

.feature-card h2 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    text-align: left;
    margin: 1.5rem 0 0 0;
}

.feature-list li {
    color: var(--dark-gray);
    padding: 0.5rem 0;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
}

/* SPECS SECTION */
.specs-section {
    background-color: var(--light-gray);
    padding: 4rem 2rem;
}

.specs-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.spec-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--accent-gold);
}

.spec-item h4 {
    color: var(--primary-green);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.spec-item p {
    color: var(--dark-gray);
    font-size: 0.95rem;
}

/* TESTIMONIALS SECTION */
.testimonials-section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--primary-green);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.1rem;
}

.testimonial-info h3 {
    color: var(--primary-green);
    margin: 0 0 0.3rem 0;
    font-size: 1.1rem;
}

.testimonial-info p {
    color: var(--dark-gray);
    font-size: 0.85rem;
    margin: 0;
}

.stars {
    font-size: 0.9rem;
}

.testimonial-text {
    color: var(--dark-gray);
    line-height: 1.8;
    font-size: 0.95rem;
    margin: 0;
}

/* PRICING SECTION */
.pricing-section {
    background-color: var(--light-gray);
    padding: 4rem 2rem;
}

.pricing-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    border: 2px solid var(--primary-green);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border: 3px solid var(--accent-gold);
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(244, 196, 48, 0.3);
}

.price-tier {
    color: var(--primary-green);
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.price-tier.popular {
    color: var(--accent-gold);
}

.price {
    font-size: 2.5rem;
    color: var(--primary-green);
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.price-desc {
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    min-height: 40px;
}

.price-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.price-features li {
    padding: 0.7rem 0;
    color: var(--dark-gray);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.price-features li:last-child {
    border-bottom: none;
}

.add-to-cart {
    width: 100%;
    margin-top: auto;
}

/* CART SECTION */
.cart-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cart-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
    margin-top: 2rem;
}

.cart-items {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
    min-height: 300px;
}

.empty-cart {
    text-align: center;
    color: var(--dark-gray);
    font-size: 1.1rem;
    padding: 3rem 0;
}

.cart-item {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.item-name {
    font-weight: 700;
    color: var(--primary-green);
}

.item-quantity {
    color: var(--dark-gray);
    margin: 0.5rem 0;
}

.item-price {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--primary-green);
}

.remove-item {
    background-color: #ff6b6b;
    color: var(--white);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 700;
}

.cart-summary {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    position: sticky;
    top: 100px;
    height: fit-content;
}

.cart-summary h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.summary-line.total {
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    padding-top: 1rem;
    margin-top: 1rem;
    font-size: 1.2rem;
    font-weight: 900;
}

.checkout-btn {
    width: 100%;
    margin-top: 1.5rem;
    background-color: var(--accent-gold);
    color: var(--black);
}

/* FAQ SECTION */
.faq-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--light-gray);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.faq-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-green);
}

.faq-item h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    margin: 0;
}

/* GUARANTEE SECTION */
.guarantee-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: var(--white);
}

.guarantee-content p {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.03em;
}

.guarantee-emphasis {
    font-size: 1.5rem;
    font-weight: 900;
    margin: 1rem 0;
}

/* FOOTER */
.footer {
    background-color: var(--dark-green);
    color: var(--white);
    text-align: center;
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.footer p {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.parody-notice {
    margin-top: 1rem;
    opacity: 0.9;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
}

/* ANIMATIONS */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-3px); }
    75% { transform: translateX(3px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

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

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

@keyframes flip {
    0% { transform: rotateY(0); }
    100% { transform: rotateY(360deg); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* ANIMATION CLASSES */
.shake {
    animation: shake 0.5s infinite;
}

.pulse {
    animation: pulse 2s infinite;
}

.slide-up {
    animation: slideUp 0.6s ease-out;
}

.fade-in {
    animation: fadeIn 0.8s ease-in;
}

.flip-on-hover {
    cursor: pointer;
    perspective: 1000px;
}

.flip-on-hover:hover {
    animation: flip 0.6s ease-in-out;
}

.bounce-on-hover:hover {
    animation: bounce 0.6s ease-in-out;
}

.expand-on-hover {
    position: relative;
}

.expand-on-hover:hover {
    transform: scale(1.02);
}

.pulse-on-hover:hover {
    animation: pulse 0.6s ease-in-out;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
    }

    .nav-menu a {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }

    .hero {
        padding: 2rem 1rem;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .why-grid,
    .features-section,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .cart-container {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        position: relative;
        top: 0;
    }

    .testimonials-section {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .page-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }

    .logo {
        font-size: 1.3rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    .hero-image {
        max-width: 80%;
    }

    .stat-card,
    .why-card,
    .feature-card {
        padding: 1.5rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .feature-list li {
        font-size: 0.9rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}
