/* Responsive Styles for The Perfect Sweater */
/* All media queries and responsive design rules */

/* Navigation Responsive */
@media (max-width: 768px) {
    .siteContent {
        width: 100%;
        overflow: hidden;
    }
    .menu-btn {
        top: 20px;
    }
    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 40px;
    }
    body {
        width: 100%;
    }
    .section {
        width: 100%;
    }
    .sticker-background {
        width: 100%;
        height: 100%;
    }
    .landing-content {
        width: 100%;
        height: 75vh;
        flex-direction: column;
    }
    .features-grid {
        padding: 100px 25px;
    }
    .feature_image {
        position: static;
    }
    .landing-subtitle {
        margin-bottom: 0;
    }
    .intro-text.large {
        font-size: 3rem;
    }
    .sticky_section_base .section-subtitle {
        font-size: 2rem;
        padding: 0 24px;
    }

    .feature-item {
        padding: 15px;
        flex-direction: column;
        overflow: hidden;
    }
    .feature-top {
        width: 100%;
        max-width: none;
    }
    .feature-title {
        position: absolute;
        bottom: 20%;
    }
    .feature-column {
        width: 100%;
        height: 100%;
        position: static;
    }
    .option-group {
        margin-bottom: 5px;
    }
    .feature-description {
        font-size: 1rem;
    }

    .purchase-grid {
        grid-template-columns: 1fr;
        padding: 40px 24px;
        gap: 40px;
    }
    
    .purchase-left {
        position: relative;
        top: 0;
        max-width: none;
    }
    
    .purchase-image-item {
        height: 60vh;
    }
    
    .purchase-info {
        padding: 40px 24px;
    }
    .footer {
        padding: 60px 0 32px;
    }
    .cart_wrapper {
        bottom: 50px;
    }
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 40px;
    }
    .footer-text {
        font-size: 1.5em;
    }
    .footer-column {
        min-width: 120px;
    }
    .footer-bottom {
        padding-bottom: 10px;
    }
    .footer-sticker-container {
        max-width: 180px;
        bottom: 0px;
        top: auto;
        left: 70px;
    }

    /* Cart Drawer — Mobile: GSAP animates height, so we only set a CSS variable */
    .cart_wrapper {
        --cart-drawer-height: 90vh;
    }

    .cart-drawer-title {
        --title-open-top: 40px;
    }
    .cart-drawer-title {
        font-size: 9em;
    }

    .cart-item-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .cart-items-list {
        padding: 10px 0px;
    }
    .cart-item-details {
        flex-direction: column;
        align-items: flex-start;
    }
    .cart-item-actions {
        grid-column: 1 / -1;
        justify-content: space-between;
    }
    .cart-drawer-close img { 
        max-width: 75px;
    }
    .cart-item-details {
        padding: 10px;
    }
    span.checkout-text {
        margin-left: 0;
    }
    .cart-item-image {
        width: 60px;
        height: 60px;
    }
    .cart-item-name {
      font-size: 4em;
        text-align: left;
        margin-top: 0
    }
    .cart-item-color, .cart-item-size {
        font-size: 3em;
    }
    button.cart-checkout-btn {
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
        padding-bottom: 25px;
    }
    .cart-inner-group {
        gap: 10px;
    }
}
