#container {
    display: flex;
    justify-content: center;
    height: max-content;
    padding: 10px;
}
#container-left {
    width: 20%;
    padding: 15px;
    gap: 1rem;
    display: flex;
    flex-direction: column;
}
/* Layout organization */
#container-right {
    display: flex;
    gap: 20px;
    padding: 20px;
    border-radius: 15px;
}

.product-page-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 30px;
}

/* Gallery Styles */
.product-visuals {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.main-image-container {
    position: relative;
    background: #fff;
    border: 2px solid #000;
    padding: 10px;
    border-radius: 10px;
    overflow: hidden;
}

.main-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.image-thumbnails {
    display: flex;
    gap: 10px;
}

.thumb-btn {
    width: 80px;
    height: 80px;
    border: 2px solid #ccc;
    cursor: pointer;
    background: #fff;
    padding: 5px;
    transition: all 0.2s;
}

.thumb-btn.active {
    border-color: #ff00ff;
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

.thumb-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Info Styles */
.product-header {
    border-bottom: 2px solid #eee;
    margin-bottom: 20px;
    justify-content: space-around;
}
.product-header * {
    line-height: 1;
}

.product-title {
    font-size: 2.5rem;
    margin: 0;
    color: #333;
    text-transform: uppercase;
}

.product-price {
    font-size: 2rem;
    font-weight: 800;
    color: #ff00ff;
}

.status-tag {
    background: #00ff00;
    color: #000;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: bold;
    margin-left: 15px;
}

.info-card {
    background: #f9f9f9;
    padding: 20px;
    border-left: 5px solid #ff00ff;
    margin-bottom: 20px;
}

.info-card h3 {
    margin-top: 0;
    font-size: 1rem;
    color: #4b0082;
}

.info-item {
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
}

.label {
    font-weight: bold;
    color: #666;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.value {
    color: #222;
    font-size: 1.1rem;
}

/* Action Zone */
.purchase-zone {
    margin-top: 30px;
    display: flex;
    gap: 20px;
}

.quantity-selector {
    display: flex;
    border: 2px solid #000;
}

.quantity-selector input {
    width: 50px;
    text-align: center;
    border: none;
    font-weight: bold;
    -moz-appearance:textfield;
}

.quantity-selector button {
    padding: 10px 15px;
    background: #eee;
    border: none;
    cursor: pointer;
}

.btn-add-to-cart {
    flex-grow: 1;
    background: linear-gradient(to right, #ff00ff, #ff77ff);
    color: white;
    border: none;
    font-weight: bold;
    font-size: 1.2rem;
    cursor: pointer;
    border-bottom: 4px solid #b300b3;
    transition: transform 0.1s;
}

.btn-add-to-cart:active {
    transform: translateY(2px);
    border-bottom-width: 2px;
}

.badge-best-seller {
    position: absolute;
    top: 10px;
    right: 10px;
    background: gold;
    padding: 5px 10px;
    font-weight: bold;
    transform: rotate(5deg);
    border: 2px solid #000;
}