  .product-resim {
            max-width: 100%;
            height: auto;
            border: 1px solid #ddd;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        .product-resim:hover {
            transform: scale(1.02);
        }
        .price-tag {
            font-size: 2.2rem;
            color: #ff003c;
            font-weight: bold;
            margin: 15px 0;
        }
        .product-info-card {
            border-left: 4px solid #ff003c;
            background: #f9f9f9;
            border-radius: 8px;
            padding: 25px !important;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        .stock-badge {
            font-size: 0.9rem;
            padding: 8px 12px;
        }
        .breadcrumb {
            background-color: #f8f9fa;
            border-radius: 5px;
            padding: 10px 15px;
        }
        
        /* Boşluk sorunu çözümü */
        .urun-detay-container {
            margin-top: 20px !important;
            padding-top: 10px;
        }
        
    
        .product-description {
            line-height: 1.7;
            font-size: 1.05rem;
            color: #444;
        }
        .description-card {
            border: none;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        .description-card .card-header {
            background: linear-gradient(135deg, #f8f8f8, #e7e7e7);
            color: white;
            border-radius: 8px 8px 0 0 !important;
            font-weight: 600;
            padding: 15px 20px;
        }
        
        
        .similar-products-card {
            border: none;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        .similar-products-card .card-header {
            background: linear-gradient(135deg, #f8f8f8, #e7e7e7);
            color: white;
            border-radius: 8px 8px 0 0 !important;
            font-weight: 600;
            padding: 15px 20px;
        }
        .similar-product-card {
            transition: all 0.3s ease;
            border-radius: 8px;
            overflow: hidden;
            height: 100%;
            border: 1px solid #eaeaea;
        }
        .similar-product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        }
        .similar-product-card img {
            height: 180px;
            object-fit: contain;
            padding: 15px;
        }
        .similar-product-card .card-body {
            display: flex;
            flex-direction: column;
            padding: 15px;
        }
        .similar-product-card .card-title {
            font-size: 0.95rem;
            height: 40px;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }
        .similar-product-card .card-text {
            margin-top: auto;
            font-weight: bold;
            font-size: 1.1rem;
        }
        
       
        .btn-primary {
            background: linear-gradient(135deg, #ff003c, #ff6b95);
            border: none;
            border-radius: 5px;
            padding: 12px 25px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(255, 0, 60, 0.3);
        }
        .btn-outline-secondary {
            border-radius: 5px;
            padding: 12px 25px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-outline-secondary:hover {
            background-color: #6c757d;
            color: white;
            transform: translateY(-2px);
        }
        
        
        .feature-list {
            list-style-type: none;
            padding-left: 0;
        }
        .feature-list li {
            padding: 8px 0;
            border-bottom: 1px dashed #eee;
            display: flex;
            justify-content: space-between;
        }
        .feature-list li:last-child {
            border-bottom: none;
        }
        .feature-name {
            font-weight: 600;
            color: #555;
        }
        .feature-value {
            color: #333;
        }
		
		.banner_bg_main{height:300px !important; }
		.list-group{   position: absolute; z-index: 1001;}
        
        
        @media (max-width: 768px) {
            .product-info-card {
                margin-top: 20px;
                border-left: none;
                border-top: 4px solid #ff003c;
            }
            .price-tag {
                font-size: 1.8rem;
            }
        }