/* ========== WRAPPER ========== */
.content-wrapper {
    max-width: 1164px;
    margin: 0 auto;
    padding: 20px;
}

/* ========== PRODUCT DETAIL LAYOUT ========== */
.product-detail-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 60px;
}

.product-image img {
    width: 100%;
    max-width: 516px;
    height: auto;
    display: block;
}

@media (max-width: 1024px) {
    .product-image img {
        max-width: 316px;
    }
}

.product-info {
    flex: 1;
    max-width: 572px;
    width: 100%;
}

.product-info h1 {
    font-size: 40px;
    font-weight: 700;
    line-height: 57px;
    margin-bottom: 20px;
}

.product-info .price {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 14px;
}

.product-info .description {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 22px;
}

/* ========== DROPDOWNS ========== */
.selection {
    margin-bottom: 20px;
}

.selection label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #818181;
    margin-bottom: 10px;
}

.selection select {
    width: 204px;
    height: 48px;
    border-radius: 4px;
    font-size: 16px;
    padding-right: 34px;
    background: url('path/to/arrow.svg') no-repeat right 14px center;
    background-size: 20px 20px;
}

/* ========== SIZE BUTTONS ========== */
.sizes {
    margin-bottom: 23px;
}

.size-button {
    width: 73px;
    height: 48px;
    border: 1px solid black;
    border-radius: 4px;
    font-size: 16px;
    margin-right: 10px;
    background-color: transparent;
    color: black;
    cursor: pointer;
}

.size-button.active,
.size-button:hover {
    background-color: black;
    color: white;
}

/* ========== QUANTITY ========== */
.quantity {
    margin-bottom: 20px;
}

.quantity label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #818181;
    margin-bottom: 10px;
}

.quantity input {
    width: 100px;
    height: 48px;
    border-radius: 4px;
    padding-left: 16px;
}

/* ========== ADD TO CART BUTTON ========== */
.product-detail-container a {
    color: white;
}

.add-to-cart {
    width: 100%;
    max-width: 572px;
    height: 56px;
    background-color: #005180;
    color: white;
    font-size: 20px;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {

    .product-detail-container {
        flex-direction: column;
        align-items: center;
        gap: 0px;
    }

    .product-image {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 0px;
    }

    .product-image img {
        max-width: 70%;
        height: auto;
    }

    .product-info {
        max-width: 100%;
    }

    .sizes .size-button {
        margin-bottom: 8px;
    }

    .add-to-cart {
        max-width: 100%;
        width: 100%;
    }
}