/* Premium WooCommerce Short Description Redesign Container */
.woocommerce-product-details__short-description {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 8px !important;
    padding: 14px 16px !important;
    margin-top: 0 !important;
    /* Clean spacing below description container before color/swatch selector */
    margin-bottom: 16px !important; 
    box-shadow: none !important;
    box-sizing: border-box !important;
    
    /* Animation base state */
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1), transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Ensure no nested or duplicate cards inside the description container */
.woocommerce-product-details__short-description div,
.woocommerce-product-details__short-description section {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Entrance animation state when active */
.woocommerce-product-details__short-description.is-active-dcd3517c {
    opacity: 1;
    transform: translateY(0);
}

/* Target lists */
.woocommerce-product-details__short-description ul {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 0 !important;
}

.woocommerce-product-details__short-description ul li {
    position: relative !important;
    list-style: none !important;
    padding-left: 26px !important;
    margin-bottom: 10px !important;
    color: #2c2c2c !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
    text-align: left !important;
}

.woocommerce-product-details__short-description ul li:last-child {
    margin-bottom: 0 !important;
}

/* Custom Minimalist Purple Check SVG Icon */
.woocommerce-product-details__short-description ul li::before {
    content: "" !important;
    position: absolute !important;
    left: 4px !important;
    top: 4px !important;
    width: 14px !important;
    height: 14px !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238a3ab9' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

/* Respect user's system preferences for reduced motion */
@media (prefers-reduced-motion: reduce) {
    .woocommerce-product-details__short-description {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}
