body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
}
.product-container {
    display: flex;
    gap: 30px;
    max-width: 1000px;
    width: 100%;
}
.gallery{
    width: 100%;
}
/* Ana slider */
.swiper.mainSwiper {
    width: 100%;
    height: 400px;
    border: 1px solid #ccc;
    border-radius: 10px;
    cursor: zoom-in;
}
.swiper.mainSwiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
/* Thumbnail slider */
.swiper.thumbSwiper {
    margin-top: 15px;
}
.swiper.thumbSwiper img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border 0.3s;
}
.swiper-thumb-active {
    border: 2px solid #007bff !important;
}
/* Sağ taraf */
.product-info {
    flex: 1;
}
.price {
    color: #e63946;
    font-size: 22px;
    font-weight: bold;
    margin: 15px 0;
}
button {
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    background-color: #007bff;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    margin-right: 10px;
}
button:hover {
    background-color: #0056b3;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    z-index: 99999;
}
.lightbox.active {
    display: flex;
}
.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    transform: scale(0.8);
}
.lightbox img.show {
    opacity: 1;
    transform: scale(1);
}
/* Zoom efekti */
.lightbox img:hover {
    transform: scale(1.3);
    cursor: zoom-out;
}
.lightbox .close,
.lightbox .prev,
.lightbox .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: white;
    cursor: pointer;
    user-select: none;
    font-weight: bold;
}
.lightbox .close {
    top: 30px;
    right: 40px;
    font-size: 35px;
    transform: none;
}
.lightbox .prev { left: 50px; }
.lightbox .next { right: 50px; }

product {
    max-width:800px; margin:auto; background:white; border-radius:12px;
    box-shadow:0 3px 12px rgba(0,0,0,.08); padding:24px;
}
.product h2 { margin-bottom:8px; }
.product p { color:#555; margin-bottom:18px; }

.rating {
    display:flex; gap:6px; cursor:pointer;
}
.star {
    font-size:30px; color:#ccc; transition:color .2s ease;
}
.star.active { color:#ffb703 !important; }

.social-share {
    display:flex; gap:10px; margin-top:20px; flex-wrap:wrap;
}
.social-share button {
    border:none; padding:10px 14px; border-radius:8px;
    cursor:pointer; display:flex; align-items:center; gap:6px;
    font-size:14px; color:white;
}
.social-share .twitter { background:#1DA1F2; }
.social-share .facebook { background:#1877F2; }
.social-share .linkedin { background:#0077B5; }
.social-share .instagram { background:linear-gradient(45deg,#f58529,#dd2a7b,#8134af,#515bd4); }

.stats {
    margin-top:16px; color:#333; font-size:14px;
    border-top:1px solid #eee; padding-top:10px;
}
.status-msg { font-size:13px; color:#666; margin-top:8px; }

.paginations {
    display: flex;
    justify-content: center;
    width: 100%;
}
.paginations  ul{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.paginations  ul li a{
    height: 20px;
    width: 20px;
   display: flex;
    align-items: center;
    justify-content: center;
}