.mc-slider-wrap {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin: 20px 0;
}

.mc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.mc-title {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

/* Navigation Buttons */
.mc-nav {
    display: flex;
    gap: 10px;
}

.mc-nav button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #e2e2e2;
    background: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.2s ease;
    color: #111; /* Arrow color */
    padding:7px;
}

.mc-nav button:hover {
    border-color: #111;
    background: #f9f9f9;
}

/* Force SVG Visibility */
.mc-nav button svg {
    width: 20px;
    height: 20px;
    display: block;
    stroke: currentColor; /* Inherits color from button */
    fill: none;
}

/* Disabled state */
.mc-nav button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.mc-track {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    padding-bottom: 10px;
}

.mc-track::-webkit-scrollbar { display: none; }

.mc-card {
    flex: 0 0 320px;
    background: #f6f6f6;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.mc-thumb img {
    width: 80px;
    height: auto;
    border-radius: 8px;
}

.mc-info {
    flex: 1;
    position: relative;
}

.mc-meta {
    margin-bottom: 5px;
    display:flex;
    align-items: center;
}

.mc-name {
    font-weight: 600;
    font-size: 12px;
    color: #111;
}

.mc-attr {
    color: #777;
    font-size: 10px;
}

.mc-pricing {
    display: flex;
    align-items: center;
    gap: 8px;
    
}


.mc-current-price {
    font-weight: 600;
    font-size: 10px;
        display: flex;
    flex-direction: column;
}

.mc-current-price .amount:nth-child(3){
    display:none !important;
}


.mc-current-price span:nth-child(2) {
    display: none !important;
}


.mc-label {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
}

.mc-add-btn {
    position: absolute;
    right: 0;
    bottom: -5px;
    background: #5d5651;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}