/**
 * OG Hemp Single Product CRO Enhancements
 * Scoped strictly to .single-product container
 */

/* Single Product Trust Badges */
.single-product .oghemp-trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 24px 0;
    padding: 16px 18px;
    background: #fbfdfb;
    border: 1px solid #d1e7dd;
    border-radius: 10px;
}

.single-product .oghemp-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.single-product .oghemp-trust-icon {
    font-size: 20px;
    line-height: 1.2;
    flex-shrink: 0;
}

.single-product .oghemp-trust-text strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #14532d;
    margin-bottom: 2px;
}

.single-product .oghemp-trust-text p {
    font-size: 11.5px;
    color: #4b5563;
    line-height: 1.35;
    margin: 0;
}

/* Mobile Sticky Action Bar */
.oghemp-mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #ffffff;
    padding: 12px 16px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.oghemp-mobile-sticky-btn {
    width: 100%;
    max-width: 480px;
    background: #2d5a27;
    color: #ffffff;
    border: none;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(45, 90, 39, 0.25);
    transition: background-color 0.2s ease;
}

.oghemp-mobile-sticky-btn:hover {
    background: #1b3d17;
}

/* Subtle & Clean Variation Swatch Buttons (Native WooCommerce) */
.single-product.postid-8191 .variations td.label {
    padding-top: 10px;
    font-weight: 700;
    color: #1b3d17;
}

.single-product.postid-8191 .woo-variation-raw-select,
.single-product.postid-8191 .variations select {
    border: 1.5px solid #2d5a27;
    border-radius: 6px;
    padding: 8px 12px;
    background-color: #fcfdfc;
    font-size: 14px;
    color: #1e293b;
    font-weight: 600;
}

.single-product.postid-8191 .woo-variation-swatches .variable-item {
    border-radius: 6px !important;
    border: 1.5px solid #cbd5e1 !important;
    padding: 6px 14px !important;
    font-weight: 600 !important;
    transition: all 0.2s ease !important;
}

.single-product.postid-8191 .woo-variation-swatches .variable-item:hover {
    border-color: #2d5a27 !important;
    background: #f0f7ef !important;
}

.single-product.postid-8191 .woo-variation-swatches .variable-item.selected {
    border-color: #2d5a27 !important;
    background: #e8f5e9 !important;
    box-shadow: 0 0 0 1px #2d5a27 inset !important;
}

@media (max-width: 600px) {
    .single-product .oghemp-trust-badges-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}
