.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: 16px;
}

.mc-title {
    font-size: 12px;
    font-weight: 300;
    margin: 0;
}

/* Navigation Buttons */
.mc-nav {
    display: none;
    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 */
    -webkit-overflow-scrolling: touch;
}

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

.mc-card {
    flex: 0 0 100%;
    background: rgba(187, 115, 80, 0.10);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: stretch;
    gap: 15px;
}

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

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

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

.mc-name {
    font-weight: 500;
    font-size: 18px;
}

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

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


.mc-current-price {
    font-weight: 300;
     display: flex;
    flex-direction: column;
	.amount{
		font-weight: 300!important;
		color:#363138;
	}
}

.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;
    top: 0px;
    background: transparent!important;
	border:1px solid #363138;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
	svg{
		padding-top: 1px;
		padding-left: 1px;
	}
}

.mc-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin-top: 16px;
    padding-bottom: 10px;
}

.mc-dot {
    width: 30px !important;
    height: 6px !important;
    background-color: rgba(0, 0, 0, 0.20)!important;
    border-radius: 8px!important;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.3s ease, width 0.3s ease;
    outline: none;
	min-height: 0px !important;
    padding: 0px !important;

}

.mc-dot.active {
    background-color: #363138!important;
}

.mc-dot:hover:not(.active) {
    background-color: rgba(0, 0, 0, 0.35)!important;
}