:root {
    --brand-green: #006847;
    --brand-background-grey: #f4f4f4;
    --brand-red: #CE1126;
    --brand-blue: #0066cc;
}

.product-fitment {
    margin: 1.5rem 0;
    padding: 1rem 1.25rem;
    background-color: var(--brand-background-grey);
    border-radius: 6px;
}

.product-fitment h3 {
    margin: 0 0 0.75rem;
    color: var(--brand-green);
    font-size: 1.125rem;
    line-height: 1.3;
}

.product-fitment ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.product-fitment li {
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    color: #222;
    font-size: 0.95rem;
}

.product-fitment li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.product-fitment li strong {
    margin-right: 0.25rem;
}
.description{
    padding: 30px;
    border: 1px solid var(--brand-green);
}

.product-extra-details {
    margin: 1.5rem 0;
    padding: 1rem 1.25rem;
    background-color: #fafafa;
    border-radius: 6px;
    opacity: 0.9;
}

.product-extra-details h3 {
    margin: 0 0 0.75rem;
    color: #555;
    font-size: 1rem;
    line-height: 1.3;
    font-weight: 600;
}

.product-extra-details ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.product-extra-details li {
    padding: 0.35rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: #666;
    font-size: 0.9rem;
}

.product-extra-details li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.product-extra-details li strong {
    margin-right: 0.25rem;
    color: #555;
}

.single_add_to_cart_button {
    background-color: var(--brand-green);
    color: white;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.single_add_to_cart_button:hover {
    background-color: #005236;
}

.woocommerce-tabs {
    margin: 2rem 0;
}

.wc-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--brand-green);
    margin: 0;
    padding: 0;
    list-style: none;
}

.wc-tabs li {
    margin: 0;
    padding: 0;
}

.wc-tabs li a {
    display: block;
    padding: 1rem 1.5rem;
    color: #667;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.wc-tabs li.active a,
.wc-tabs li a:hover {
    color: var(--brand-green);
    border-bottom-color: var(--brand-green);
    margin-bottom: -2px;
}

.woocommerce-Tabs-panel {
    padding: 2rem 0;
}

.woocommerce-Tabs-panel h2 {
    color: var(--brand-green);
    font-size: 1.25rem;
    margin: 0 0 1rem;
}

.shop_attributes {
    width: 100%;
    border-collapse: collapse;
}

.shop_attributes th {
    text-align: left;
    color: var(--brand-green);
    font-weight: 600;
    padding: 0.75rem;
    border-bottom: 1px solid #e0e0e0;
}

.shop_attributes td {
    padding: 0.75rem;
    border-bottom: 1px solid #e0e0e0;
    color: #666;
}

/* Review Form Styling */
#review_form_wrapper {
    margin: 2rem 0;
}

#review_form {
    background-color: var(--brand-background-grey);
    padding: 2rem;
    border-radius: 6px;
}

.comment-respond {
    max-width: 100%;
}

.comment-reply-title {
    color: var(--brand-green);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    display: block;
}

.comment-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.comment-form-rating label {
    display: block;
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.comment-form-rating .stars a {
    color: #d4f1e8;
    margin-right: 0.5rem;
    font-size: 1.5rem;
    text-decoration: none;
    margin-right: 0.25rem;
    transition: color 0.2s ease;
    cursor: pointer;
}

.comment-form-rating .stars a:hover,
.comment-form-rating .stars a.active {
    color: var(--brand-green);
}

.comment-form-comment label {
    display: block;
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.comment-form-comment textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    resize: vertical;
}

.form-submit .submit {
    background-color: var(--brand-green);
    color: white;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-submit .submit:hover {
    background-color: #005236;
}