@charset "utf-8";
/* CSS Document */


.florist-products {
    --fp-green: #536b5b;
    --fp-green-dark: #34483c;
    --fp-green-light: #eef3ef;
    --fp-cream: #faf8f4;
    --fp-gold: #b8955a;
    --fp-text: #3d403d;
    --fp-muted: #6d716d;
    --fp-border: #e5e5df;
    --fp-white: #ffffff;

    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
    padding: 30px 24px 70px;
    box-sizing: border-box;

    color: var(--fp-text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.7;
}

.florist-products *,
.florist-products *::before,
.florist-products *::after {
    box-sizing: border-box;
}


.florist-products-header {
    max-width: 850px;
    margin: 0 auto 50px;
    text-align: center;
}

.florist-products-eyebrow {
    display: inline-block;
    margin-bottom: 10px;

    color: var(--fp-gold);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.florist-products h1 {
    margin: 0 0 18px;

    color: var(--fp-green-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 400;
    line-height: 1.15;
}

.florist-products-intro {
    max-width: 760px;
    margin: 0 auto;

    color: var(--fp-muted);
    font-size: 1.05rem;
}


.product-control {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    align-items: center;
    gap: 50px;

    margin-bottom: 50px;
    padding: 45px;

    background: var(--fp-cream);
    border: 1px solid #ebe7df;
    border-radius: 10px;
}

.product-control-content h2 {
    position: relative;

    margin: 0 0 20px;
    padding-bottom: 16px;

    color: var(--fp-green-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.3;
}

.product-control-content h2::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 45px;
    height: 2px;

    background: var(--fp-gold);
	display:none;
}

.product-control-content p {
    margin: 0 0 17px;
}

.product-control-content p:last-child {
    margin-bottom: 0;
}


.product-control-image {
    text-align: center;
}

.product-control-image img {
    display: block;

    width: 100%;
    max-width: 500px;
    height: auto;

    margin: 0 auto;

    border-radius: 7px;

    box-shadow: 0 15px 35px rgba(35, 45, 38, 0.13);
}


.product-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;

    margin-bottom: 50px;
}

.product-benefit {
    padding: 30px 25px;

    background: var(--fp-white);
    border: 1px solid var(--fp-border);
    border-radius: 8px;

    box-shadow: 0 7px 22px rgba(35, 45, 38, 0.05);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.product-benefit:hover {
    transform: translateY(-4px);
    box-shadow: 0 13px 30px rgba(35, 45, 38, 0.09);
}

.product-benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;
    margin-bottom: 18px;

    border-radius: 50%;

    background: var(--fp-green-light);
    color: var(--fp-green);

    font-size: 0.75rem;

    font-weight: 700;
	display:none;
}

.product-benefit h3 {
    margin: 0 0 10px;

    color: var(--fp-green-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
    font-weight: 400;
}

.product-benefit p {
    margin: 0;

    color: var(--fp-muted);
    font-size: 0.95rem;
}


.sell-own-products {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 24px;

    margin-bottom: 24px;
}

.product-section-card {
    padding: 35px;

    background: var(--fp-white);
    border: 1px solid var(--fp-border);
    border-radius: 8px;

    box-shadow: 0 7px 22px rgba(35, 45, 38, 0.05);
}

.product-section-card h2 {
    position: relative;

    margin: 0 0 18px;
    padding-bottom: 15px;

    color: var(--fp-green-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.75rem;
    font-weight: 400;
}

.product-section-card h2::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 40px;
    height: 2px;

    background: var(--fp-gold);
	display:none;
}

.product-section-card p {
    margin: 0 0 16px;
}

.product-section-card p:last-child {
    margin-bottom: 0;
}


.product-heading-link {
    color: inherit;
    text-decoration: none;
}

.product-heading-link:hover h2 {
    color: var(--fp-green);
}


.product-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;

    margin-top: 25px;
	display:none;
}

.product-option {
    padding: 16px;

    background: var(--fp-green-light);
    border-radius: 5px;

    color: var(--fp-green-dark);
    font-size: 0.9rem;
    font-weight: 600;
}

.product-option strong {
    display: block;
    margin-bottom: 3px;

    color: var(--fp-green);
}


.products-cta {
    margin-top: 50px;
    padding: 45px 30px;

    text-align: center;

    background: var(--fp-green-dark);
    border-radius: 8px;

    color: #ffffff;
}

.products-cta h2 {
    margin: 0 0 14px;

    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
    font-weight: 400;
}

.products-cta p {
    max-width: 720px;
    margin: 0 auto;

    color: rgba(255,255,255,0.84);
}


@media (max-width: 850px) {

    .florist-products {
        padding: 25px 18px 55px;
    }

    .product-control {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 35px;
    }

    .product-control-image {
        order: -1;
    }

    .product-control-image img {
        max-width: 600px;
    }

    .product-benefits {
        grid-template-columns: 1fr;
    }

    .sell-own-products {
        grid-template-columns: 1fr;
    }

    .product-options {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 600px) {

    .florist-products {
        padding: 20px 15px 45px;
    }

    .florist-products-header {
        margin-bottom: 35px;
    }

    .florist-products h1 {
        font-size: 2.1rem;
    }

    .florist-products-intro {
        font-size: 0.98rem;
    }

    .product-control {
        gap: 25px;
        margin-bottom: 35px;
        padding: 25px 20px;
    }

    .product-control-content h2 {
        font-size: 1.65rem;
    }

    .product-benefits {
        gap: 16px;
        margin-bottom: 35px;
    }

    .product-benefit {
        padding: 25px 22px;
    }

    .product-section-card {
        padding: 28px 22px;
    }

    .product-section-card h2 {
        font-size: 1.55rem;
    }

    .products-cta {
        margin-top: 35px;
        padding: 35px 22px;
    }

    .products-cta h2 {
        font-size: 1.7rem;
    }
}