        .gallery {
            max-width: 453px;
            margin: 0 auto;
            padding: 2px;
			text-align:center;
        }
        .main-image {
            width: 453px;
            height: 340px;
            object-fit: contain;
            margin-bottom: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            transition: opacity 0.3s;
        }
        .thumbnails {
            display: flex;
            gap: 10px;
            overflow-x: auto;
            padding: 3px;
			text-align:center;
			width:453px;
        }
        .thumbnail {
            width: 100px;
            height: 75px;
            cursor: pointer;
            border-radius: 4px;
            border: 2px solid transparent;
            transition: all 0.3s;
			text-align:center;
        }
        .thumbnail:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .thumbnail.active {
            border-color: #4a90e2;
        }
		
		.alsobuyitem{
			width:300px; 
			float:left; 
			text-align:center; 
			padding:5px; 
			margin:15px;
			box-shadow: 0 4px 12px rgba(0,0,0,0.1);
		}				
        .alsobuy {
            width: 200px;
            height: 150px;
            cursor: pointer;
            border-radius: 4px;
            border: 2px solid transparent;
            transition: all 0.3s;
			text-align:center;
        }
        .alsobuy:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 8px rgba(0,1,0,0.5);
			border-radius: 4px;
        }
        .alsobuy.active {
            border-color: #4a90e2;
        }


