/* Product Description Toggle Styles */
.product-description-wrapper {
    position: relative;
    margin: 15px 0;
}

.product-description {
    line-height: 1.6;
    color: #333;
    transition: max-height 0.3s ease;
}

.product-description.collapsed {
    max-height: 120px;
    overflow: hidden;
    position: relative;
}

.product-description.collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 40px;
    width: 100%;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1));
    pointer-events: none;
}

.toggle-btn {
    background: #ff6a00;
    border: none;
    color: #ffffff;
    cursor: pointer;
    font-weight: 500;
    /* padding: 8px 0; */
    /* text-decoration: underline; */
    font-size: 14px;
    margin-top: 5px;
    transition: color 0.3s ease;
    display: inline-block;
}

.toggle-btn:hover {
    color: #0d5aa7;
    text-decoration: none;
}

.toggle-btn:focus {
    outline: 2px solid #1979c3;
    outline-offset: 2px;
}

/* Icons for expand/collapse */
.toggle-btn::after {
    content: ' ▼';
    font-size: 12px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.toggle-btn.expanded::after {
    transform: rotate(180deg);
}

/* Hide toggle button by default - will be shown by JS if needed */
.toggle-btn {
    display: none;
}

.toggle-btn.show {
    display: inline-block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-description.collapsed {
        max-height: 100px;
    }
    
    .toggle-btn {
        font-size: 13px;
    }
}


.product-view-style-03 .product-info-main .box-tocart {
    display: flex;
}


.product-view-style-03 .product-info-main .box-tocart .actions button {
    width: 100% !important;
}