/** {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}
*/
body {
    background: #f5f5f5;
/*    padding: 20px;*/
}

/* Product Layout */


.product-container {
    max-width: 1200px;
    margin: auto;
    background: #fff;
    padding: 30px;
    display: flex;
    gap: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Slider */
.slider {
    flex: 1;
    position: relative;
}

.slider-images {
    overflow: hidden;
    border-radius: 14px;
    border: 2px solid #F8C822;
}

.slide {
    display: none;
    width: 100%;
}

.slide.active {
    display: block;
}

/* Slider Nav */
.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #F8C822;
    border: none;
    padding: 10px 14px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
}

.prev { left: 10px; }
.next { right: 10px; }

/* Dots */
.dots {
    display: flex;
    justify-content: center;
    margin-top: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    background: #ddd;
    border-radius: 50%;
    margin: 0 6px;
    cursor: pointer;
}

.dot.active {
    background: #F8C822;
}

/* Product Info */
.product-info {
    flex: 1;
}

.product-info h1 {
    font-size: 28px;
}

.brand {
    color: #777;
    margin: 10px 0;
}

.price {
    font-size: 26px;
    color: #F8C822;
    margin: 15px 0;
}

.price span {
    font-size: 16px;
    text-decoration: line-through;
    color: #999;
    margin-left: 10px;
}

.description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Buttons */
.actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 28px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
}

.btn.primary {
    background: #F8C822;
    border: none;
}

.btn.outline {
    border: 2px solid #F8C822;
    background: transparent;
}

/* Tabs */
.tabs-container {
    max-width: 1200px;
    margin: 30px auto;
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.tabs {
    display: flex;
    border-bottom: 2px solid #eee;
}

.tab-btn {
    padding: 12px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.tab-btn.active {
    border-bottom: 3px solid #F8C822;
    font-weight: bold;
}

.tab-content {
    display: none;
    padding-top: 20px;
    color: #555;
}

.tab-content.active {
    display: block;
}

/* Responsive */
@media (max-width: 992px) {
    .product-container {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .btn {
        width: 100%;
    }

    .product-info h1 {
        font-size: 22px;
    }
}
