#principal-content-tienda-interno {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: stretch;   
    padding: 30px; 
}

#content-tienda-interna {
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.product-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.product-image {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 10px;
    border: 1px solid var(--azul);
}

.product-image img {
    width: 100%;
}

.product-details {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
}

.content-breadcrumb-tienda {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.content-breadcrumb-tienda span,
.content-breadcrumb-tienda a{
    color: #CCC7C7;
    font-size: 16px;
}

.product-details h2 {
    color: #209FD2;
    font-size: 20px;
}

.product-details p {
    font-size: 16px;
    color: #333;
	font-family: "OpenSans-Bold";
}

#content-select-talla {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

#content-select-talla label{
    font-size: 18px;
    color: #209FD2;
	font-family: "OpenSans-Bold";
}

#content-select-talla select{
    padding: 4px 10px;
    border: 1px solid #209FD2;
}

#content-pago-tienda-interna {
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: #F7F7F7;
}

.product-price {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-bottom: 3px solid #fff;
}

.product-price span {
    font-size: 30px;
    color: #209FD2;
	font-family: "OpenSans-Bold";
    margin: 0px;
}

.product-price p {
    font-size: 14px;
    color: #333;
	font-family: "OpenSans-Bold";
}

.product-quantity {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px;
    border-bottom: 3px solid #fff;
}

.product-quantity label{
    color: #209FD2;
    font-size: 18px;
    margin-right: 15px;
}

.product-quantity input{
    width: 80px;
    height: 40px;
    border-radius: 4px;
    border: 1px solid #D0D0D0;
    text-align: center;
}

.product-quantity button{
    width: 40px;
    height: 40px;
    font-size: 50px;
    color: #fff;
    background-color: #D0D0D0;
    border: none;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-quantity button svg{
    width: 60%;
    fill: #fff;
}

.product-buttons {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.product-buttons  form{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.product-buttons   a{
    width: 100%;
}

.product-buttons button {
    padding: 10px 20px;
}

.product-description {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.description-rpa {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #EEEEEE;
    border-top: 1px solid #209FD2;
    padding: 15px;
}

.product-description h3 {
    background-color: var(--azul);
    padding: 4px 10px;
    color: #fff;
    border-radius: 6px 6px 0px 0px;
    margin: 0px;
}

.product-description table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.product-description table, .product-description th, .product-description td {
    border: 1px solid #ccc;
}

.product-description th, .product-description td {
    padding: 10px;
    text-align: center;
}

.add-to-cart {
    width: 100%;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #D0D0D0;
    padding: 4px 15px;
    border-radius: 8px;
}

.add-to-cart svg{
    width: 30px;
    fill: #fff;
}

.add-to-cart span{
    color: #fff;
    font-size: 18px;
}

.pay-now {
    width: 100%;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #12C523;
    padding: 4px 15px;
    border-radius: 8px;
}

.pay-now svg{
    width: 30px;
    fill: #fff;
}

.pay-now span{
    color: #fff;
    font-size: 18px;
}

.payment-gateway {
    width: 95%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    flex-direction: column;
    padding: 30px;
    background-color: #fff;
    border-radius: 4px;
    transition: ease all 0.6s;
}

.payment-gateway:hover {
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14),
		0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

.payment-gateway img {
    width: 60%;
}


@media screen and (max-width: 1024px) {
    #principal-content-tienda-interno {
        padding: 0px;
        flex-direction: column;
    }

    #content-tienda-interna {
        width: 100%;
        gap: 20px;
    }

    #content-pago-tienda-interna {
        width: 100%;
    }

    .product-container {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .product-details {
        width: 100%;
        padding: 0px;
    }

    .content-breadcrumb-tienda span, .content-breadcrumb-tienda a {
        font-size: 13px;
    }

    .product-details h2 {
        font-size: 16px;
    }

    .product-details p {
        font-size: 14px;
    }

    #content-select-talla label {
        font-size: 16px;
    }

    #content-select-talla select {
        font-size: 16px;
    }

    .description-rpa {
        overflow: auto;
    }
}