/* product detail page */
.productDetail {
    flex: 1;
}

.productDetailContainer {
    display: flex;
    gap: 32px;
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    width: 100%;
    box-sizing: border-box;
}

.productImageSection {
    flex: 1 1 38%;
    max-width: 460px;
    min-width: 280px;
}

.productSwiper {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}

.productMainImage {
    width: 100%;
    height: 340px;
    object-fit: contain;
    background: #f6f8fb;
    border-radius: 8px;
}


.productThumbnails {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: #2980b9;
    transform: scale(1.05);
}

.productInfoSection {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.productTitle {
    font-size: 32px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 15px;
    margin-top: 0;
}

.productPriceSection {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.currentPrice {
    font-size: 36px;
    font-weight: bold;
    color: #e74c3c;
}

.productDescription {
    margin-bottom: 25px;
}

.productDescription h3 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 12px;
    margin-top: 0;
}

.productDescription ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.productDescription li {
    padding: 8px 0;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}

.productDescription li:before {
    content: "✓ ";
    color: #27ae60;
    font-weight: bold;
    margin-right: 8px;
}

.productStock {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    padding: 12px;
    background-color: #f0f8ff;
    border-radius: 6px;
}

.stockLabel {
    font-weight: 600;
    color: #2c3e50;
}

.stockAmount {
    color: #27ae60;
    font-weight: 500;
}

.productActions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.quantitySelector {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantitySelector label {
    font-weight: 600;
    color: #2c3e50;
}

.quantitySelector input {
    width: 70px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.addToCartBtnLarge {
    background-color: #2980b9;
    color: #fff;
    border: none;
    padding: 15px 20px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.addToCartBtnLarge:hover {
    background-color: #1a5276;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(41, 128, 185, 0.3);
}
