/* ==========================================
   EDEN CLOTHING — SHOP PAGE
   Separate styling to protect homepage CSS
========================================== */

.shop-hero,
.shop-hero *,
.shop-section,
.shop-section *,
.shop-statement,
.shop-statement *,
.shop-sustainability,
.shop-sustainability *,
.shop-final-cta,
.shop-final-cta * {
    box-sizing: border-box;
}

.shop-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 620px;
    background: #f2f0e9;
    overflow: hidden;
}

.shop-hero-content {
    padding: 85px 7vw 35px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.shop-hero-content .eyebrow,
.shop-section .eyebrow,
.shop-statement .eyebrow,
.shop-sustainability .eyebrow,
.shop-final-cta .eyebrow {
    font-family: "DM Sans", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.6;
    color: #68685e;
    margin: 0 0 22px;
}

.shop-hero h1 {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(58px, 7vw, 105px);
    font-weight: 700;
    letter-spacing: -6px;
    line-height: 0.91;
    color: #151515;
    margin: 0;
}

.shop-hero h1 span,
.shop-section-heading h2 span,
.shop-statement h2 span,
.shop-sustainability h2 span,
.shop-final-cta h2 span {
    color: #829d42;
}

.shop-hero-description {
    max-width: 390px;
    margin: 28px 0;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #56564f;
}

.shop-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 17px 22px;
    background: #171717;
    color: #fff;
    text-decoration: none;
    font-family: "DM Sans", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    border: 1px solid #171717;
    transition: background 0.2s ease, color 0.2s ease;
}

.shop-button:hover {
    background: #829d42;
    border-color: #829d42;
    color: #fff;
}

.shop-button span {
    font-size: 18px;
}

.shop-hero-bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: auto;
    padding-top: 65px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.3px;
    color: #77776d;
}

.shop-hero-image {
    position: relative;
    min-height: 620px;
    overflow: hidden;
}

.shop-hero-image > img {
    width: 100%;
    height: 100%;
    min-height: 620px;
    object-fit: cover;
    display: block;
}

.shop-image-caption {
    position: absolute;
    bottom: 22px;
    left: 24px;
    right: 24px;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    color: white;
    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-shadow: 0 1px 8px #333;
}

.shop-round-label {
    position: absolute;
    top: 35px;
    right: 35px;
    width: 112px;
    height: 112px;
    border-radius: 50%;
    background: #c6d99b;
    color: #171717;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: "Space Grotesk", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    transform: rotate(9deg);
}

.shop-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
    padding: 21px 5%;
    background: #171717;
    color: #fff;
    font-family: "Space Grotesk", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.shop-strip span:nth-child(even) {
    color: #a8c76c;
}

.shop-section {
    max-width: 1500px;
    margin: auto;
    padding: 100px 6%;
}

.shop-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 35px;
    margin-bottom: 45px;
}

.shop-section-heading h2 {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(43px, 6vw, 76px);
    font-weight: 700;
    letter-spacing: -3px;
    line-height: 0.98;
    margin: 0;
    color: #171717;
}

.shop-section-heading > p {
    max-width: 340px;
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin: 0 0 5px;
}

.shop-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 35px;
}

.filter-button {
    padding: 12px 19px;
    border: 1px solid #d8d7cf;
    background: transparent;
    color: #333;
    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-button:hover,
.filter-button.active {
    background: #171717;
    border-color: #171717;
    color: #fff;
}

.shop-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 45px 22px;
}

.shop-product-card {
    min-width: 0;
}

.shop-product-image {
    position: relative;
    display: block;
    height: 410px;
    overflow: hidden;
    background: #f0eee8;
    text-decoration: none;
}

.shop-product-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.shop-product-image:hover img {
    transform: scale(1.045);
}

.shop-product-label {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 9px 11px;
    background: #f7f6f0;
    color: #222;
    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
}

.shop-product-number {
    position: absolute;
    bottom: 15px;
    right: 15px;
    color: white;
    font-family: "Space Grotesk", sans-serif;
    font-size: 22px;
    font-weight: 700;
    text-shadow: 0 1px 7px #222;
}

.shop-product-details {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    padding-top: 19px;
}

.shop-product-category {
    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.4px;
    color: #818174;
    margin: 0 0 8px;
}

.shop-product-details h3 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 7px;
    color: #171717;
}

.shop-product-description {
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    line-height: 1.6;
    color: #777;
    margin: 0;
}

.shop-product-price {
    flex-shrink: 0;
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #171717;
    padding-top: 20px;
}

.shop-price-note {
    margin-top: 45px;
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    line-height: 1.7;
    color: #777;
}

.shop-statement {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #171717;
    color: white;
}

.shop-statement-image {
    min-height: 520px;
}

.shop-statement-image img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    display: block;
    object-fit: cover;
}

.shop-statement-content {
    padding: 80px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.shop-statement .eyebrow {
    color: #b9c5a0;
}

.shop-statement h2 {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 700;
    letter-spacing: -3px;
    line-height: 1;
    margin: 0;
    color: #fff;
}

.shop-statement-content > p:not(.eyebrow) {
    max-width: 430px;
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    line-height: 1.9;
    color: #c8c8c1;
    margin: 28px 0;
}

.shop-button-light {
    background: #f5f3ed;
    color: #171717;
    border-color: #f5f3ed;
}

.shop-button-light:hover {
    color: #fff;
}

.shop-sustainability {
    padding: 110px 6%;
    background: #dfe8ce;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.shop-sustainability-symbol {
    font-size: 48px;
    color: #718c3e;
    margin-bottom: 20px;
}

.shop-sustainability h2 {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(39px, 6vw, 76px);
    font-weight: 700;
    letter-spacing: -3px;
    line-height: 1;
    margin: 0;
    color: #171717;
}

.shop-sustainability > p:not(.eyebrow) {
    max-width: 570px;
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    line-height: 1.9;
    color: #55594c;
    margin: 25px 0 30px;
}

.shop-final-cta {
    padding: 110px 6%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f5f3ed;
}

.shop-final-cta h2 {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(43px, 7vw, 88px);
    font-weight: 700;
    letter-spacing: -4px;
    line-height: 0.98;
    margin: 0;
    color: #171717;
}

.shop-final-cta > p:not(.eyebrow) {
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    color: #666;
    margin: 25px 0;
}


/* RESPONSIVE LAYOUT */

@media (max-width: 1000px) {

    .shop-hero {
        grid-template-columns: 1fr 1fr;
    }

    .shop-hero-content {
        padding: 65px 7%;
    }

    .shop-hero h1 {
        font-size: clamp(52px, 7vw, 75px);
        letter-spacing: -4px;
    }

    .shop-hero-image,
    .shop-hero-image > img {
        min-height: 540px;
    }

    .shop-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .shop-product-image {
        height: 390px;
    }

}

@media (max-width: 650px) {

    .shop-hero {
        grid-template-columns: 1fr;
    }

    .shop-hero-content {
        padding: 65px 7% 35px;
    }

    .shop-hero h1 {
        font-size: clamp(58px, 15vw, 85px);
        letter-spacing: -4px;
    }

    .shop-hero-image,
    .shop-hero-image > img {
        min-height: 430px;
        height: 430px;
    }

    .shop-hero-bottom {
        padding-top: 45px;
        font-size: 8px;
    }

    .shop-round-label {
        width: 90px;
        height: 90px;
        font-size: 12px;
    }

    .shop-strip {
        gap: 12px;
        font-size: 10px;
        letter-spacing: 1px;
        padding: 18px 4%;
    }

    .shop-section {
        padding: 70px 6%;
    }

    .shop-section-heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .shop-section-heading h2 {
        font-size: clamp(43px, 12vw, 65px);
        letter-spacing: -2px;
    }

    .shop-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px 12px;
    }

    .shop-product-image {
        height: clamp(190px, 60vw, 320px);
    }

    .shop-product-label {
        top: 9px;
        left: 8px;
        padding: 7px;
        font-size: 7px;
        letter-spacing: 0.5px;
    }

    .shop-product-details {
        flex-direction: column;
        gap: 8px;
        padding-top: 13px;
    }

    .shop-product-details h3 {
        font-size: 15px;
    }

    .shop-product-description {
        font-size: 11px;
    }

    .shop-product-price {
        padding-top: 0;
        font-size: 14px;
    }

    .shop-statement {
        grid-template-columns: 1fr;
    }

    .shop-statement-image,
    .shop-statement-image img {
        min-height: 330px;
        height: 330px;
    }

    .shop-statement-content {
        padding: 65px 7%;
    }

    .shop-statement h2 {
        font-size: clamp(42px, 12vw, 60px);
        letter-spacing: -2px;
    }

    .shop-sustainability,
    .shop-final-cta {
        padding: 80px 7%;
    }

    .shop-sustainability h2,
    .shop-final-cta h2 {
        font-size: clamp(37px, 10vw, 60px);
        letter-spacing: -2px;
    }

}

@media (max-width: 380px) {

    .shop-product-grid {
        grid-template-columns: 1fr;
    }

    .shop-product-image {
        height: 380px;
    }

    .shop-product-details {
        flex-direction: row;
    }

}

/* CART NAVIGATION */

.nav-actions {
    display: flex;
    align-items: center;
    gap: 22px;
}

.cart-link {
    color: #171717;
    text-decoration: none;
    font-family: "DM Sans", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.cart-link:hover,
.cart-link.active {
    color: #829d42;
}

.add-to-cart-btn {
    width: 100%;
    margin-top: 18px;
    padding: 15px;
    border: 1px solid #171717;
    background: #171717;
    color: #fff;
    font-family: "DM Sans", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.add-to-cart-btn:hover {
    background: #829d42;
    border-color: #829d42;
}

@media (max-width: 650px) {
    .nav-actions {
        gap: 12px;
    }

    .cart-link {
        font-size: 10px;
    }
}