.off-canvas-cart-wrapper-988835 {
    position: relative;
    font-family: sans-serif;
    display: inline-block;
}

.occ-icon-btn {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    cursor: pointer;
    position: relative;
    padding: 10px;
    font-size: 24px;
    color: #000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    outline: none;
}
.occ-icon-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.occ-cart-count-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #e3342f;
    color: #fff;
    font-size: 0.7rem;
    font-weight: bold;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.occ-panel {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    max-width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 999999;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
}

.occ-panel.open {
    right: 0;
}

.occ-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 999998;
    display: none;
}

.occ-overlay.open {
    display: block;
}

.occ-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
    background: #fff;
}

.occ-header h2 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: bold;
}

.occ-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
}

.occ-body-scrollable {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    padding-bottom: 40px;
}

/* Cart Items */
.occ-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.occ-item-image img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    background: #f5f5f5;
    border-radius: 4px;
}

.occ-item-details {
    flex: 1;
}

.occ-item-details h4 {
    margin: 0 0 5px;
    font-size: 0.95rem;
    font-weight: normal;
    color: #333;
}

.occ-item-details .variation {
    font-size: 0.85rem;
    color: #888;
    margin: 0 0 8px 0;
}
.occ-item-details .variation dt {
    display: inline;
    font-weight: normal;
}
.occ-item-details .variation dd {
    display: inline;
    margin: 0;
}
.occ-item-details .variation p {
    display: inline;
    margin: 0;
}

.occ-item-price {
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 8px;
    color: #000;
}

.occ-item-stock-notice {
    background: #d4e3e6;
    color: #003040;
    padding: 4px 8px;
    font-size: 0.8rem;
    display: inline-block;
    border-radius: 4px;
    margin-bottom: 12px;
    font-weight: 500;
}

.occ-item-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.85rem;
}

.occ-item-actions a {
    color: #000;
    text-decoration: underline;
    font-weight: 500;
}
.occ-item-actions a:hover {
    color: #555;
}

.occ-qty {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 15px;
    background: #fff;
    overflow: hidden;
    height: 30px;
}

.occ-qty-btn {
    background: #f9f9f9;
    border: none;
    padding: 0 10px;
    cursor: pointer;
    font-size: 1rem;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.occ-qty-btn:hover {
    background: #eaeaea;
}

.occ-qty input {
    width: 35px;
    text-align: center;
    border: none;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    -moz-appearance: textfield;
    font-size: 0.95rem;
    color: #000;
    pointer-events: none;
    height: 100%;
    padding: 0;
    margin: 0;
    background: #fff;
}
.occ-qty input::-webkit-outer-spin-button,
.occ-qty input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Trust Badges */
.occ-trust-badges {
    display: flex;
    background: #f5f5f5;
    padding: 15px;
    margin: 20px 0 30px;
    justify-content: space-around;
    font-size: 0.85rem;
    color: #555;
}

.occ-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}
.occ-badge-icon {
    color: #999;
}

/* Featured */
.occ-featured h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.occ-featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.occ-featured-item {
    background: #f9f9f9;
    padding: 12px;
    text-align: left;
    border-radius: 4px;
    transition: background 0.3s;
}
.occ-featured-item:hover {
    background: #f0f0f0;
}

.occ-featured-item img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    border-radius: 4px;
}

.occ-featured-item h5 {
    margin: 0 0 8px;
    font-size: 0.9rem;
    font-weight: normal;
    color: #333;
}

.occ-feat-price {
    font-size: 0.9rem;
}
.occ-feat-price del {
    color: #999;
    font-size: 0.8rem;
    margin-right: 5px;
}
.occ-feat-price ins {
    color: #003040;
    font-weight: bold;
    text-decoration: none;
}

/* Fixed Footer */
.occ-footer-fixed {
    padding: 20px;
    background: #f5f5f5;
    border-top: 1px solid #eaeaea;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}

.occ-totals {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #333;
}
.occ-totals strong {
    font-size: 1.3rem;
    color: #000;
}

.occ-checkout-btn {
    display: block;
    width: 100%;
    padding: 16px;
    background: #003040;
    color: #fff !important;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s;
}
.occ-checkout-btn:hover {
    background: #001f2b;
    color: #fff !important;
}

.occ-loading {
    opacity: 0.5;
    pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .occ-panel {
        width: 100%;
        right: -100%;
    }
    
    /* Keep image on left, details on right */
    .occ-item {
        flex-direction: row;
        align-items: flex-start;
        gap: 10px;
    }
    .occ-item-image img {
        width: 70px;
        height: 70px;
    }
    
    /* Ensure actions stay in row */
    .occ-item-actions {
        flex-direction: row;
        align-items: center;
        gap: 8px;
    }
    .occ-qty {
        margin-left: auto;
    }
    
    /* Keep trust badges and featured grid as 2 columns */
    .occ-trust-badges {
        flex-direction: row;
        justify-content: space-around;
        gap: 10px;
    }
    .occ-featured-grid {
        grid-template-columns: 1fr 1fr;
    }
}
