.sw-cc-wrapper {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.03);
    direction: rtl;
    font-family: inherit;
    width: 100%;
}
.sw-cc-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}
.sw-cc-img-box {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    border: 1px solid #eaeaea;
    overflow: hidden;
    flex-shrink: 0;
}
.sw-cc-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.sw-cc-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.sw-cc-title {
    font-size: 16px;
    font-weight: 800;
    color: #333333;
    margin: 0;
}
.sw-cc-terms {
    font-size: 13px;
    font-weight: 500;
    color: #888888;
}
.sw-cc-middle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}
.sw-cc-stock-text {
    font-size: 13px;
    font-weight: 700;
    color: #444444;
}
.sw-cc-price-block {
    display: flex;
    align-items: center;
    gap: 12px;
}
.sw-cc-discount {
    position: relative;
    background: #ff5252;
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 800;
    transition: all 0.3s ease;
}
.sw-cc-discount::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px 5px 0;
    border-style: solid;
    border-color: #ff5252 transparent transparent transparent;
}
.sw-cc-price-col {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.sw-cc-old-price {
    font-size: 14px;
    font-weight: 600;
    color: #b0b0b0;
    text-decoration: line-through;
    text-decoration-color: #b0b0b0;
    line-height: 1;
    margin-bottom: 4px;
    transition: all 0.3s ease;
}
.sw-cc-new-price-row {
    display: flex;
    align-items: center;
    gap: 6px;
}
.sw-cc-currency-vert {
    display: flex;
    flex-direction: column;
    font-size: 11px;
    font-weight: 500;
    color: #888888;
    line-height: 1.2;
}
.sw-cc-new-price {
    font-size: 24px;
    font-weight: 900;
    color: #333333;
    line-height: 1;
}
.sw-cc-form {
    margin: 0;
}
.sw-cc-footer {
    display: flex;
    align-items: center;
    gap: 12px;
}
.sw-cc-qty-box {
    display: flex;
    align-items: center;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    height: 48px;
    background: #ffffff;
}
.sw-cc-qty-btn {
    width: 38px;
    height: 100%;
    background: transparent !important;
    border: none !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #333333 !important;
    cursor: pointer !important;
    transition: background 0.2s !important;
    padding: 0 !important;
}
.sw-cc-qty-btn.plus {
    border-radius: 0 12px 12px 0;
}
.sw-cc-qty-btn.minus {
    border-radius: 12px 0 0 12px;
}
.sw-cc-qty-btn:hover {
    background: #f9f9f9;
}
.sw-cc-qty-input {
    width: 44px;
    height: 100%;
    border: none !important;
    border-left: 1px solid #eaeaea !important;
    border-right: 1px solid #eaeaea !important;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: #333333;
    -moz-appearance: textfield;
}
.sw-cc-qty-input::-webkit-outer-spin-button,
.sw-cc-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.sw-cc-like {
    display: none !important;
}
.sw-cc-add-cart {
    flex: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px;
    background: #2aa37e !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 12px !important;
    height: 48px;
    font-size: 0px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}
.sw-cc-add-cart:hover {
    background: #238b6b;
}
.sw-cc-add-cart.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}
.sw-cc-add-cart.is-loading {
    opacity: 0.8;
    pointer-events: none;
}

@media (max-width: 768px) {
    .sw-cc-wrapper {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 9999 !important;
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;
        border-radius: 24px 24px 0 0 !important;
        padding: 16px 20px 24px 20px !important;
        box-shadow: 0 -10px 40px rgba(0,0,0,0.08) !important;
        border: none !important;
        border-top: 1px solid rgba(0,0,0,0.05) !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 16px !important;
        margin: 0 !important;
    }
    .sw-cc-header {
        display: none !important;
    }
    .sw-cc-middle {
        margin: 0 !important;
    }
    .sw-cc-new-price {
        font-size: 22px !important;
    }
    .sw-cc-discount {
        font-size: 13px !important;
        padding: 2px 6px !important;
    }
    .sw-cc-stock-text {
        font-size: 12px !important;
    }
    .sw-cc-footer {
        flex-wrap: nowrap !important;
        width: 100% !important;
        gap: 8px !important;
    }
    .sw-cc-qty-box {
        height: 46px !important;
        width: 110px !important;
        flex-shrink: 0 !important;
    }
    .sw-cc-qty-btn {
        width: 32px !important;
    }
    .sw-cc-qty-input {
        width: 46px !important;
    }
    .sw-cc-add-cart {
        height: 46px !important;
        order: 0 !important;
        min-width: auto !important;
    }
}