.product-detail-top {
    max-width: 75rem;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.product-detail-top > div {
    padding-right: .9375rem;
    padding-left: .9375rem;
}
.product-title-logo img {
    max-width: 150px;
}
.product-top-add-to-cart form {
    margin-top: 0px !important;
}
.product-top-add-to-cart form input[type="number"] {
    width: 70px;
}
@media (max-width:550px) {
    .product-top-add-to-cart form {
        width: 100%;
    }
}
.single-product-right a {
    display: block;
}
.product-includes-section h3 {
    margin-bottom: 15px;
}

.product-includes-section ul, .product-includes-section ol {
    list-style-type: unset;
    padding-left: 15px;
}
.product-includes-section li {
    margin-bottom: 15px;
}
#product-details-tabs img {
    width: 30px;
    outline: none !important;
    border: none !important;
    margin-left: 10px;
}
#product-details-tabs li.is-active a img, #product-details-tabs li a:hover img {
    filter: brightness(0) saturate(100%);
}

/* Scrollable Product Thumbnails */
.product-thumbs-container {
    position: relative;
    height: 272px; /* Height for exactly 3 thumbnails */
    width: 80px !important;
    margin-bottom: 30px;
}

.product-thumbs-container .product-thumbs-wrapper {
    height: 272px;
    overflow-y: hidden;
    position: relative;
    width: 80px !important;
}

.product-thumbs-container .product-thumbs-wrapper #product-thumbs {
    margin: 0;
    padding: 0;
    list-style: none;
}

.product-thumbs-container .product-thumbs-wrapper #product-thumbs .product-thumb {
    margin-bottom: 0;
}

.product-thumbs-container .product-thumbs-wrapper #product-thumbs .product-thumb img {
    display: block;
}

.product-thumbs-container .scroll-up-btn,
.product-thumbs-container .scroll-down-btn {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.product-thumbs-container .scroll-up-btn:hover,
.product-thumbs-container .scroll-down-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateX(-50%) scale(1.1);
}

.product-thumbs-container .scroll-up-btn img,
.product-thumbs-container .scroll-down-btn img {
    width: 16px;
    height: 16px;
    opacity: 0.7;
    border: none !important;
}

.product-thumbs-container .scroll-up-btn {
    top: -20px;
    border: 0 !important;
    width:100%;
    background-color: #fff;
}

.product-thumbs-container .scroll-down-btn {
    bottom: -20px;
    width:100%;
    background-color: #fff;
}
#product-detail-content #product-thumbs {
    width: 80px !important;
}
#product-detail-content #product-thumbs li {
    width: 100% !important;
}
#product-detail-content #product-thumbs li img {
    width: 80px !important;
    height: 80px !important;
    object-fit: cover;
    object-position: center;
}

/* Cart Menu Close Button */
.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background-color: #ffd200;
}

.cart-header h6 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.cart-close-btn {
    background: none;
    border: none;
    font-size: 24px;
    font-weight: bold;
    color: #000;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cart-close-btn:hover {
   
    color: #000;
   
}
section.menu.drop-cart {
    position: fixed;
    right:0px;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 99999;
    background: #000000ab;
    display: flex;
    justify-content: flex-end;
    padding: 0;
 
    
display: none;
}

div#cart-menu {
    background: #fff;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    margin-right: -400px;
}
section.menu.drop-cart.open {
    right: 0;
    display: flex;
}
section.menu.drop-cart.open div#cart-menu {
    margin-right: 0;
}

/* Quantity Controls Styling */
.quantity-controls {
    display: flex;
    align-items: center;
    margin-top: 8px;
    gap: 5px;
}

.qty-btn {
    width: 25px;
    height: 25px;
    border: 1px solid #ddd;
    background: #fff;
    color: #666;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    transition: all 0.2s ease;
}

.qty-btn:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

.qty-btn:active {
    background: #e0e0e0;
}

.qty-input {
    width: 40px;
    height: 25px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 14px;
}

.qty-input:focus {
    outline: none;
    border-color: #ffd200;
    box-shadow: 0 0 0 2px rgba(255, 210, 0, 0.2);
}

.remove-item {
    background: none;
    border: none;
    color: #999;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    padding: 0;
    margin-left: 10px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.remove-item:hover {
    background: #ff4444;
    color: #fff;
}

/* Loading state */
.quantity-controls.loading {
    opacity: 0.6;
    pointer-events: none;
}

.quantity-controls.loading .qty-input {
    background: #f9f9f9;
}

/* Cart Messages */
.cart-message {
    padding: 10px 15px;
    margin: 10px 0;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
    animation: slideInDown 0.3s ease;
}

.cart-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.cart-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@keyframes slideInDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}