:root {
    --pb-green-900: #01411c;
    --pb-green-800: #01632a;
    --pb-green-700: #0a7a39;
    --pb-green-600: #138c49;
    --pb-green-500: #2ea35f;
    --pb-soft-bg: #f4fff8;
    --pb-soft-bg-2: #e7f7ee;
    --pb-dark: #102218;
    --pb-white: #ffffff;
    --pb-border: rgba(1, 65, 28, 0.12);
    --pb-shadow: 0 20px 45px rgba(1, 65, 28, 0.08);
}

.pb-aug-page {
    background:
        radial-gradient(circle at top left, rgba(46, 163, 95, 0.08), transparent 28%),
        radial-gradient(circle at right 15% top 12%, rgba(1, 65, 28, 0.14), transparent 20%),
        linear-gradient(180deg, #fbfffc 0%, #f6fff9 40%, #f1fcf6 100%);
    color: var(--pb-dark);
}

.pb-aug-page .site-main {
    padding-bottom: 40px;
}

.pb-aug-hero {
    position: relative;
    overflow: hidden;
    max-width: 1360px;
    margin: 22px auto 28px;
    padding: 52px 42px;
    border-radius: 32px;
    background:
        linear-gradient(115deg, rgba(255,255,255,0.98) 0%, rgba(240,252,245,0.96) 38%, rgba(6,88,37,0.96) 100%);
    box-shadow: var(--pb-shadow);
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: 30px;
    align-items: center;
}

.pb-aug-hero::before,
.pb-aug-hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.pb-aug-hero::before {
    width: 220px;
    height: 220px;
    right: -40px;
    top: -50px;
    background: rgba(255,255,255,0.16);
}

.pb-aug-hero::after {
    width: 160px;
    height: 160px;
    left: -50px;
    bottom: -50px;
    background: rgba(1,65,28,0.06);
}

.pb-aug-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.pb-aug-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(1, 65, 28, 0.08);
    border: 1px solid rgba(1, 65, 28, 0.08);
    color: var(--pb-green-900);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pb-aug-hero h1 {
    margin: 18px 0 12px;
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.05;
    color: var(--pb-green-900);
    font-weight: 800;
}

.pb-aug-years {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--pb-green-700);
}

.pb-aug-lead {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.8;
    color: rgba(16, 34, 24, 0.86);
    max-width: 640px;
}

.pb-aug-actions {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.pb-aug-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.pb-aug-btn:hover {
    transform: translateY(-2px);
}

.pb-aug-btn-primary {
    background: linear-gradient(135deg, var(--pb-green-900) 0%, var(--pb-green-700) 100%);
    color: var(--pb-white);
    box-shadow: 0 16px 28px rgba(1, 65, 28, 0.22);
}

.pb-aug-btn-primary:hover,
.pb-aug-btn-primary:focus {
    color: var(--pb-white);
}

.pb-aug-btn-secondary {
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(1,65,28,0.14);
    color: var(--pb-green-900);
}

.pb-aug-btn-secondary:hover,
.pb-aug-btn-secondary:focus {
    color: var(--pb-green-900);
    background: var(--pb-white);
}

.pb-aug-hero-graphic {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pb-aug-crescent {
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    box-shadow: 0 0 0 18px rgba(255, 255, 255, 0.12);
}

.pb-aug-crescent::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(1, 65, 28, 0.96);
    top: 25px;
    left: 72px;
}

.pb-aug-star {
    position: absolute;
    top: 52px;
    right: 85px;
    color: var(--pb-white);
    font-size: 72px;
    line-height: 1;
    text-shadow: 0 10px 24px rgba(0,0,0,0.16);
}

.pb-aug-silhouette {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 280px;
    height: 135px;
    background: linear-gradient(180deg, rgba(255,255,255,0.2), rgba(255,255,255,0.55));
    clip-path: polygon(0 100%, 8% 98%, 14% 78%, 20% 72%, 28% 40%, 34% 12%, 45% 0, 55% 0, 66% 12%, 72% 40%, 80% 72%, 86% 78%, 92% 98%, 100% 100%);
    opacity: 0.82;
}

.pb-aug-message-strip {
    max-width: 1320px;
    margin: 0 auto 28px;
    padding: 0 6px;
}

.pb-aug-message-wrap {
    background: linear-gradient(135deg, var(--pb-green-900) 0%, var(--pb-green-700) 100%);
    color: var(--pb-white);
    padding: 28px 32px;
    border-radius: 26px;
    box-shadow: 0 18px 32px rgba(1, 65, 28, 0.18);
    text-align: center;
}

.pb-aug-strip-kicker {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.76);
}

.pb-aug-message-wrap h2 {
    margin: 0 0 8px;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--pb-white);
}

.pb-aug-message-wrap p {
    margin: 0 auto;
    max-width: 820px;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
}

.pb-aug-products {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 8px 10px;
}

.pb-aug-page .section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 34px 0 18px;
    padding: 0 8px;
}

.pb-aug-page .section-title {
    margin: 0;
    color: var(--pb-green-900);
    font-size: clamp(1.4rem, 2vw, 2rem);
    font-weight: 800;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.pb-aug-page .new-badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(19, 140, 73, 0.12);
    color: var(--pb-green-700);
    font-size: 0.8rem;
    font-weight: 700;
}

.pb-aug-page .view-all {
    color: var(--pb-green-700);
    font-weight: 700;
    text-decoration: none;
}

.pb-aug-page .view-all:hover,
.pb-aug-page .view-all:focus {
    color: var(--pb-green-900);
}

.pb-aug-page .products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.pb-aug-page .pb-product-card {
    background: rgba(255,255,255,0.96);
    border: 1px solid var(--pb-border);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(16, 34, 24, 0.06);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.pb-aug-page .pb-product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(1, 65, 28, 0.2);
    box-shadow: 0 18px 38px rgba(1, 65, 28, 0.12);
}

.pb-aug-page .pb-product-image-wrap {
    display: block;
    background: linear-gradient(180deg, rgba(244, 255, 248, 1) 0%, rgba(232, 249, 239, 1) 100%);
    padding: 16px;
}

.pb-aug-page .pb-product-image-wrap img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.pb-aug-page .pb-sale-badge {
    background: linear-gradient(135deg, var(--pb-green-900), var(--pb-green-700));
    color: var(--pb-white);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    position: absolute;
    z-index: 2;
}

.pb-aug-page .pb-product-content {
    padding: 18px 18px 22px;
}

.pb-aug-page .pb-product-category {
    color: var(--pb-green-700);
    font-size: 0.84rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.pb-aug-page .pb-product-title,
.pb-aug-page .pb-product-title a {
    color: var(--pb-dark);
}

.pb-aug-page .pb-product-title a:hover,
.pb-aug-page .pb-product-title a:focus {
    color: var(--pb-green-700);
}

.pb-aug-page .pb-product-price {
    margin: 12px 0 16px;
    color: var(--pb-green-900);
    font-weight: 800;
}

.pb-aug-page .pb-product-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--pb-green-900), var(--pb-green-700));
    color: var(--pb-white);
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(1, 65, 28, 0.16);
}

.pb-aug-page .pb-product-button:hover,
.pb-aug-page .pb-product-button:focus {
    color: var(--pb-white);
    background: linear-gradient(135deg, var(--pb-green-800), var(--pb-green-600));
}

.pb-aug-why-choose {
    max-width: 1360px;
    margin: 38px auto 0;
    padding: 0 8px;
}

.pb-aug-why-choose .pb-why-choose-container {
    padding: 34px 28px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(240,252,245,0.96) 100%);
    border: 1px solid var(--pb-border);
    box-shadow: var(--pb-shadow);
}

.pb-aug-why-choose .pb-small-label {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--pb-green-700);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.pb-aug-why-choose .pb-section-heading h2 {
    margin: 0 0 10px;
    color: var(--pb-green-900);
}

.pb-aug-why-choose .pb-section-heading p {
    margin: 0;
    color: rgba(16,34,24,0.8);
    line-height: 1.8;
}

.pb-aug-why-choose .pb-why-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-top: 26px;
}

.pb-aug-why-choose .pb-why-card {
    background: var(--pb-white);
    border: 1px solid var(--pb-border);
    border-radius: 20px;
    padding: 24px 20px;
    box-shadow: 0 12px 28px rgba(16, 34, 24, 0.05);
}

.pb-aug-why-choose .pb-why-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.pb-aug-why-choose .pb-why-card h3 {
    color: var(--pb-green-900);
    margin: 0 0 10px;
}

.pb-aug-why-choose .pb-why-card p {
    margin: 0;
    color: rgba(16,34,24,0.78);
    line-height: 1.7;
}

@media (max-width: 1200px) {
    .pb-aug-page .products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .pb-aug-why-choose .pb-why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .pb-aug-hero {
        grid-template-columns: 1fr;
        padding: 36px 24px;
    }

    .pb-aug-hero-graphic {
        min-height: 260px;
        order: -1;
    }

    .pb-aug-star {
        right: 80px;
        top: 26px;
        font-size: 56px;
    }

    .pb-aug-page .products-grid,
    .pb-aug-why-choose .pb-why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .pb-aug-hero {
        margin-top: 16px;
        padding: 24px 16px;
        border-radius: 22px;
    }

    .pb-aug-badge {
        font-size: 11px;
        line-height: 1.4;
    }

    .pb-aug-years {
        font-size: 1rem;
        letter-spacing: 0.08em;
    }

    .pb-aug-lead {
        font-size: 0.98rem;
    }

    .pb-aug-actions {
        flex-direction: column;
    }

    .pb-aug-btn {
        width: 100%;
    }

    .pb-aug-hero-graphic {
        min-height: 210px;
    }

    .pb-aug-crescent {
        width: 160px;
        height: 160px;
    }

    .pb-aug-crescent::after {
        width: 125px;
        height: 125px;
        top: 18px;
        left: 50px;
    }

    .pb-aug-star {
        right: 66px;
        top: 22px;
        font-size: 42px;
    }

    .pb-aug-silhouette {
        width: 210px;
        height: 100px;
    }

    .pb-aug-message-wrap {
        padding: 22px 16px;
        border-radius: 18px;
    }

    .pb-aug-page .section-header {
        flex-direction: column;
        align-items: flex-start;
        margin: 28px 0 14px;
    }

    .pb-aug-page .products-grid,
    .pb-aug-why-choose .pb-why-grid {
        grid-template-columns: 1fr;
    }

    .pb-aug-why-choose .pb-why-choose-container {
        padding: 24px 16px;
        border-radius: 22px;
    }
}
