body {
	font-family: 'Inter', sans-serif;
	background-color: #f8f9fa;
	margin: 0;
	padding: 0;
}

#content-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	gap: 30px;
	padding: 20px;
}

.column {
	width: 600px;
	padding: 10px;
	background: white;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

#featured {
	max-width: 500px;
	max-height: 600px;
	object-fit: cover;
	cursor: pointer;
	border: 2px solid black;
	border-radius: 5px;
	transition: transform 0.3s ease;
}

#featured:hover {
	transform: scale(1.05);
}

.thumbnail {
	object-fit: cover;
	max-width: 180px;
	max-height: 100px;
	cursor: pointer;
	opacity: 0.5;
	margin: 5px;
	border: 2px solid black;
	border-radius: 5px;
	transition: opacity 0.3s ease, border-color 0.3s ease;
}

.thumbnail:hover,
.thumbnail.active {
	opacity: 1;
	border-color: #18b5ce;
}

#slide-wrapper {
	max-width: 500px;
	display: flex;
	min-height: 100px;
	align-items: center;
	margin-top: 10px;
}

#slider {
	width: 440px;
	display: flex;
	flex-wrap: nowrap;
	overflow-x: auto;
	scroll-behavior: smooth;
}

#slider::-webkit-scrollbar {
	width: 8px;
}

#slider::-webkit-scrollbar-track {
	box-shadow: inset 0 0 6px rgba(0,0,0,0.1);
}

#slider::-webkit-scrollbar-thumb {
	background-color: #dede2e;
	outline: 1px solid slategrey;
	border-radius: 100px;
}

#slider::-webkit-scrollbar-thumb:hover {
	background-color: #18b5ce;
}

.arrow {
	width: 30px;
	height: 30px;
	cursor: pointer;
	transition: 0.3s;
	user-select: none;
}

.arrow:hover {
	opacity: 0.7;
	width: 35px;
	height: 35px;
}

h1, h3, h4 {
	margin-bottom: 15px;
}

p {
	font-size: 1.1rem;
	color: #333;
}

button.btn-warning {
	font-weight: bold;
}

#lightbox {
	display: none;
	position: fixed;
	top: 0; left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.8);
	justify-content: center;
	align-items: center;
	z-index: 1000;
}

#lightbox-img {
	max-width: 90%;
	max-height: 90%;
	border-radius: 8px;
	box-shadow: 0 0 25px rgba(0,0,0,0.9);
	cursor: zoom-out;
	transition: transform 0.3s ease;
}

#lightbox-img:hover {
	transform: scale(1.05);
}

/* Images */
.product-images #featured {
    width: 100%;
    max-height: 450px;
    object-fit: contain;
    border-radius: 10px;
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.product-images #featured:hover {
    transform: scale(1.03);
}

/* Miniatures */
.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    opacity: 0.6;
    border-radius: 6px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail:hover,
.thumbnail.active {
    opacity: 1;
    border-color: #ffc107;
}

/* Slider */
#slider {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
}

/* Flèches */
.arrow {
    width: 28px;
    height: 28px;
    cursor: pointer;
}

/* Infos produit */
.product-info h1 {
    font-size: 1.8rem;
}

.product-info p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Mobile */
@media (max-width: 768px) {
    .product-info h1 {
        font-size: 1.4rem;
    }

    .thumbnail {
        width: 65px;
        height: 65px;
    }
}
