
     .product-title {
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .product-price {
            font-size: 1.25rem;
            font-weight: 600;
            color: #dc3545;
        }
        .oldprice{
            font-size: 1rem;
            margin: 5px 0px;
            color: gray;
        }
        }
        .product-description {
            margin: 1.5rem 0;
            color: #6c757d;
            line-height: 1.6;
        }
        
        .product-rating i {
            color: #ffc107;
        }
        
        .product-rating span {
            margin-left: 0.5rem;
            color: #6c757d;
        }
        
        .color-option {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: inline-block;
            margin-right: 10px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .color-option:hover {
            transform: scale(1.1);
        }
        
        .color-option.selected {
            box-shadow: 0 0 0 2px #fff, 0 0 0 4px #000;
        }
        
        .color-black {
            background-color: #000;
        }
        
        .color-blue {
            background-color: #0d6efd;
        }
        
        .color-red {
            background-color: #dc3545;
        }
        
        .quantity-selector {
            max-width: 130px;
        }
        
        .thumbnail {
            cursor: pointer;
            border: 2px solid transparent;
            transition: all 0.3s;
        }
        
        .thumbnail:hover, .thumbnail.active {
            border-color: #0d6efd;
        }
        
        .main-image {
            height: 400px;
            object-fit: contain;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 2rem;
            font-weight: 600;
            padding-bottom: 10px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: 0;
            width: 60px;
            height: 3px;
            background-color: #0d6efd;
        }
        
        .card {
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s;
            margin-bottom: 1rem;
        }
        
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .cart-btn {
            font-weight: 600;
            padding: 10px 25px;
        }
        
        .spec-list {
            padding-left: 0;
            list-style-type: none;
        }
        
        .spec-list li {
            margin-bottom: 0.5rem;
            display: flex;
        }
        
        .spec-list .spec-label {
            font-weight: 600;
            min-width: 120px;
            color: #6c757d;
        }
        
        .nav-tabs .nav-link {
            color: #6c757d;
            border: none;
            font-weight: 500;
        }
        
        .nav-tabs .nav-link.active {
            color: #0d6efd;
            background: none;
            border-bottom: 2px solid #0d6efd;
        }
        
        .owl-nav button {
            background: #fff !important;
            width: 40px;
            height: 40px;
            border-radius: 50% !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .owl-prev, .owl-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
        }
        
        .owl-prev {
            left: -20px;
        }
        
        .owl-next {
            right: -20px;
        }
        .img-holder-200{position: relative;height:200px;width:200px;}
        .img-holder-200 img{
            position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 98%;
    max-height: 98%;
        }
        .img-holder-400-300{
            position: relative;height:300px;
        }
        .img-holder-400-300 img{
            position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 98%;
    max-height: 98%;
        }
        .cimg{
            position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 98%;
    max-height: 98%;
        }
        .owl-carousel .owl-item img{width:initial}
        .card-img{width:initial;}
        @media (max-width: 768px) {
            .thumbnail-container {
                display: none;
                flex-wrap: nowrap;
                overflow-x: auto;
                margin: 0 -5px;
            }
            
            .thumbnail {
                flex: 0 0 70px;
                margin: 0 5px;
            }
            
            .owl-prev {
                left: -10px;
            }
            
            .owl-next {
                right: -10px;
            }
            .section-title::after{
                left:50%;
            }
        }

        .qty-control {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            border: 1px solid #ccc;
            border-radius: 50px;
            overflow: hidden;
            background: #fff;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
          }
          
          .qty-control button {
            flex: 1;
            max-width: 60px;
            border: none;
            background: #f8f9fa;
            font-weight: bold;
            font-size: 20px;
            transition: background 0.2s;
            padding: 8px 0;
          }
          
          .qty-control button:hover {
            background: #e2e6ea;
          }
          
          .qty-control input {
            flex: 1;
            text-align: center;
            border: none;
            outline: none;
            background: transparent;
            font-size: 18px;
            font-weight: 500;
          }
          .sales-badge{
            position: absolute;
    left: 5px;
    top: 0px;
    z-index: 99;
    background: red;
}
          