/* ==========================================================================
   Swifter Super — Product Detail Page
   Extends Minia theme tokens. Palette pulled from the approved mockup:
   green  #7CB342 (brand/action)   blue #2C4A7C (label accents)
   ink    #1F2A1E (headings)       muted #6B7280 (body copy)
   ========================================================================== */

:root {
    --pd-green: #74b449;
    --pd-green-dark: #5c9a35;
    --pd-green-soft: #eaf5e0;
    --pd-blue: #2f5596;
    --pd-ink: #1c2b1a;
    --pd-muted: #6b7580;
    --pd-border: #e7e9ec;
    --pd-radius-lg: 28px;
    --pd-radius-md: 16px;
}

.page-content{
    padding: 0 !important;
}

/* .page-content .pd-hero, */
.page-content .pd-section,
.page-content .pd-meta-section {
    background: #fff;
    padding: 40px 8px;
}


/* ---------- Badges ---------- */
.pd-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 30px;
}

.pd-badge-outline {
    color: var(--pd-green-dark);
    border: 1px solid var(--pd-green);
    background: var(--pd-green-soft);
}

.pd-badge-pill {
    color: var(--pd-blue);
    border: 1px solid #cdd9ec;
    background: #f2f6fc;
}

/* ---------- Hero text ---------- */
.pd-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--pd-ink);
    margin: 0;
}

.pd-subtitle {
    color: var(--pd-muted);
    font-size: 15px;
    margin-bottom: 0;
}

.pd-btn-primary {
    background: var(--pd-green);
    border-color: var(--pd-green);
    color: #fff;
    border-radius: 8px;
    padding: 10px 22px;
    font-weight: 500;
}

.pd-btn-primary:hover {
    background: var(--pd-green-dark);
    border-color: var(--pd-green-dark);
    color: #fff;
}

.pd-btn-outline {
    background: transparent;
    border: 1px solid #d7dbe0;
    color: var(--pd-ink);
    border-radius: 8px;
    padding: 10px 22px;
    font-weight: 500;
}


.pd-hero-image {
    width: 100%;
    object-fit: cover;
    max-height: 420px;
    clip-path: polygon(
        26% 0,
        100% 0,
        100% 100%,
        0 100%,
        0 83%
        );
    border-radius: 0 0 0 55px;
    }

.pd-hero-image img {
    border-radius: 0 0 0 55px;
}

/* ---------- Rating row ---------- */
.pd-rating-row {
    padding-top: 18px;
    position: relative;
}

.pd-stars{
    margin-top: -85px;
}

.pd-stars i {
    color: #f5a623;
    font-size: 16px;
}

.pd-rating-text {
    color: var(--pd-muted);
    font-size: 14px;
    margin-left: 8px;
}

/* ---------- Overview ---------- */
.pd-overview-image img {
    border-radius: 50%;
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.pd-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--pd-green-dark);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 10px;
}

.pd-eyebrow span {
    display: inline-block;
    width: 26px;
    height: 2px;
    background: var(--pd-green);
}

.pd-h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--pd-ink);
    margin-bottom: 14px;
}

.pd-h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--pd-ink);
}

.pd-h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--pd-ink);
    margin-bottom: 6px;
}


.blob-image{
    width:650px;
    max-width:90%;
}

.blob-image svg{
    width:100%;
    height:auto;
    display:block;
}

.pd-body-text {
    color: var(--pd-muted);
    font-size: 15px;
    line-height: 1.7;
}

/* ---------- Spec bar ---------- */
.pd-spec-bar {
    background: var(--pd-green);
    border-radius: var(--pd-radius-md);
    padding: 26px 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.pd-spec-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1 1 150px;
}

.pd-spec-label {
    color: rgba(255, 255, 255, .85);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.pd-spec-value {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.pd-spec-value small {
    font-weight: 500;
    font-size: 13px;
}

/* ---------- Performance matrix ---------- */
.pd-matrix-card {
    background: #f8f9fa;
    border: 1px solid var(--pd-border);
    border-radius: var(--pd-radius-md);
    padding: 30px;
}

.pd-label-small {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--pd-green-dark);
}

.pd-label-blue {
    color: var(--pd-blue);
}

.pd-weed-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pd-tag {
    background: #fff;
    border: 1px solid var(--pd-border);
    border-radius: 30px;
    padding: 6px 14px;
    font-size: 13px;
    color: var(--pd-ink);
}

.pd-dosage-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-left: 1px solid var(--pd-border);
}

.pd-dosage-col:first-child {
    border-left: none;
}

.pd-dosage-label {
    color: var(--pd-muted);
    font-size: 12px;
}

.pd-dosage-value {
    font-size: 22px;
    font-weight: 700;
    color: var(--pd-ink);
}

.pd-dosage-unit {
    color: var(--pd-green-dark);
    font-size: 13px;
    font-weight: 600;
}

/* ---------- Application protocol ---------- */
.pd-divider {
    border-top: 1px solid var(--pd-border);
    margin: 20px 0 26px;
}

.pd-protocol-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.pd-protocol-icon {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--pd-green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.pd-protocol-image img {
    border-radius: var(--pd-radius-lg);
    width: 100%;
    object-fit: cover;
    transform: rotate(2deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
}

/* ---------- Safety & Handling ---------- */
.pd-safety-section {
    background: var(--pd-green);
    border-radius: var(--pd-radius-lg);
    padding: 50px 24px;
    margin: 40px 8px;
    position: relative;
    overflow: hidden;
}

.pd-safety-title {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}

.pd-safety-subtitle {
    color: rgba(255, 255, 255, .9);
    font-size: 15px;
}

.pd-accordion-wrap {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.pd-accordion-card {
    background: #fff;
    border-radius: var(--pd-radius-md);
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .06);
}

.pd-accordion-btn {
    width: 100%;
    background: #fff;
    border: 0;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
}

.pd-accordion-icon {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--pd-blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.pd-accordion-body {
    padding: 0 24px 22px 24px;
}

.pd-safety-list {
    margin: 0;
    padding-left: 18px;
    color: var(--pd-muted);
    font-size: 14px;
    line-height: 1.8;
}

.pd-safety-grass {
    position: absolute;
    bottom: 0;
    width: 90px;
    height: 140px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 90 140'%3E%3Cpath d='M10 140 Q5 80 20 0 Q10 80 25 140' fill='%23ffffff' fill-opacity='0.12'/%3E%3Cpath d='M40 140 Q35 60 50 5 Q42 70 55 140' fill='%23ffffff' fill-opacity='0.16'/%3E%3Cpath d='M65 140 Q60 90 75 20 Q68 90 80 140' fill='%23ffffff' fill-opacity='0.12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    opacity: .6;
}

.pd-safety-grass-left {
    left: 0;
}

.pd-safety-grass-right {
    right: 0;
    transform: scaleX(-1);
}

/* ---------- Meta section ---------- */
.pd-meta-section {
    background: #f8f9fa;
    border-radius: var(--pd-radius-lg);
    margin: 0 8px 100px;
    padding: 40px 24px;
}

.pd-meta-card {
    background: #fff;
    border-radius: var(--pd-radius-md);
    border: 1px solid var(--pd-border);
    padding: 30px;
    height: 100%;
}

.pd-pack-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pd-pack-tag {
    border: 1px solid var(--pd-border);
    border-radius: 30px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--pd-ink);
}

.pd-breadcrumb-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--pd-ink);
}

.pd-breadcrumb-row i {
    color: var(--pd-muted);
    font-size: 16px;
}

.pd-breadcrumb-active {
    color: var(--pd-green-dark);
}

/* ---------- Sticky bottom bar ---------- */
.pd-sticky-bar {
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--pd-border);
    padding: 14px 24px;
    z-index: 20;
    box-shadow: 0 -6px 20px rgba(0, 0, 0, .06);
}

.pd-sticky-info strong {
    color: var(--pd-ink);
    font-size: 14px;
    letter-spacing: .03em;
}

.pd-sticky-sep {
    color: var(--pd-blue);
    font-size: 13px;
    margin-left: 10px;
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    .pd-title {
        font-size: 32px;
    }

    .pd-h2 {
        font-size: 24px;
    }

    .pd-dosage-col {
        border-left: none;
        border-top: 1px solid var(--pd-border);
        padding-top: 10px;
    }
}

/* ==========================================================================
   Site Header
   ========================================================================== */
.pd-site-header {
    background: #fff;
    border-bottom: 1px solid var(--pd-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.pd-site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 8px;
}

.pd-site-logo {
    display: inline-flex;
    align-items: center;
}

.pd-site-logo-img {
    height: 34px;
    width: auto;
}

.pd-site-nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pd-site-nav-link {
    color: var(--pd-ink);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: color .15s ease;
}

.pd-site-nav-link:hover,
.pd-site-nav-link:focus {
    color: var(--pd-green-dark);
}

.pd-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 34px;
    height: 34px;
    border: 0;
    background: transparent;
    padding: 0;
}

.pd-nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--pd-ink);
    border-radius: 2px;
}

@media (max-width: 991.98px) {
    .pd-nav-toggle {
        display: flex;
    }

    .pd-site-nav {
        display: none;
        width: 100%;
        order: 3;
    }

    .pd-site-nav.pd-nav-open {
        display: block;
    }

    .pd-site-header-inner {
        flex-wrap: wrap;
    }

    .pd-site-nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 16px 0 4px;
        border-top: 1px solid var(--pd-border);
        margin-top: 12px;
    }
}

/* ==========================================================================
   Site Footer
   ========================================================================== */
.pd-site-footer {
    background: #f8f9fa;
    padding: 56px 8px 24px;
    border-top: 1px solid var(--pd-border);
}

.pd-footer-logo {
    display: inline-block;
    margin-bottom: 14px;
}

.pd-footer-logo-img {
    height: 32px;
    width: auto;
}

.pd-footer-about {
    color: var(--pd-muted);
    font-size: 14px;
    line-height: 1.7;
    max-width: 360px;
}

.pd-footer-heading {
    font-size: 16px;
    font-weight: 700;
    color: var(--pd-ink);
    margin-bottom: 18px;
}

.pd-footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pd-footer-list a {
    color: var(--pd-muted);
    font-size: 14px;
    text-decoration: none;
}

.pd-footer-list a:hover {
    color: var(--pd-green-dark);
}

.pd-footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pd-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--pd-muted);
    font-size: 14px;
}

.pd-footer-contact a {
    color: var(--pd-muted);
    text-decoration: none;
}

.pd-footer-contact a:hover {
    color: var(--pd-green-dark);
}

.pd-footer-contact i {
    color: var(--pd-green-dark);
    font-size: 16px;
    margin-top: 2px;
}

.pd-footer-newsletter-text {
    color: var(--pd-muted);
    font-size: 14px;
    margin-bottom: 14px;
}

.pd-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pd-newsletter-input {
    border: 1px solid var(--pd-border);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
}

.pd-newsletter-btn {
    border-radius: 8px;
}

.pd-footer-copyright {
    border-top: 1px solid var(--pd-border);
    margin-top: 40px;
    padding-top: 20px;
    color: var(--pd-muted);
    font-size: 13px;
}
