body{
    background-image: url('/assets/images/textura-marmol2.jpg');
    background-position: left top;
    background-size: contain;
    background-repeat: repeat;
    background-attachment: scroll;
    font-family: "Raleway" !important;
}
.example-wrapper{
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}
.gn-btn{
    background-color: rgb(178, 149, 89);
    color: white;
    border-radius: 30px;
    padding: 10px 20px;
    border: 0px solid;
    font-size: 16px;
    margin-top: 10px;
}
.gn-login{
    background-color: rgba(255, 255, 255, .5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 10px 20px;
    border-radius: 10px;
}
.gn-login form{
    display: flex;
    flex-direction: column;
}
.gn-login form input{
    font-size: 18px;
    margin-top: 10px;
}
.gn-btnVolver{
    display: flex;
    justify-content: flex-end;
}
.gn-btnVolver a{
    background-color: rgb(178, 149, 89);
    color: white;
    border-radius: 30px;
    padding: 10px 20px;
    text-decoration: none;
}
.pedidoCreado{
    display: flex;
    justify-content:center;
    width: 100%;
}
.pedidoCreado h1{
    font-size: 26px;
    font-weight: 500;
    background-color: rgb(213, 242, 213);
    padding: 20px 30px;
    border-radius: 10px;
    border: 1px solid rgb(171, 232, 171);
}
.order-info{
    background-color: rgba(255, 255, 255, .5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    margin: 20px;
    padding: 10px 20px;
    border-radius: 10px;
}
.order-info ul{
    list-style-type: none;
    margin: 0px;
    padding: 0px;
}
.order-info ul li{
    background-color: rgba(255, 255, 255, .7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    margin-top: 5px;
    margin-bottom:5px;
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 16px;
}
.order-listProducts{
    background-color: rgba(255, 255, 255, .5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    margin: 20px;
    padding: 10px 20px;
    border-radius: 10px;
}
.order-product{
    position: relative;
    display: flex;
    margin-bottom: 10px;
}
.order-product-image{
    height: 100px;
    width: 100px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    border-radius: 5px;
}
.order-product-image img{
    height: 100%;
    width: auto;
}
.order-product-info{
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    align-content: center;
}
.order-product-info .order-product-price{
    font-size: 20px;
    font-weight: bold;
    color: rgb(178, 149, 89);
}
.order-debug{
    background-color: rgba(255, 255, 255, .5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    margin: 20px;
    padding: 10px 20px;
    border-radius: 10px;
}

.page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.top-bar {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    background: rgb(178, 149, 89);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    transition: 0.2s;
    cursor: pointer;
}

.back-button:hover {
    background: #374151;
}

.sections {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 100px;
}

.section {
    text-align: center;
}

.section h2 {
    margin-bottom: 20px;
    color: #111827;
}

.swipe-container {
    position: relative;
    width: 320px;
    height: 500px;
}

.card {
    position: absolute;
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 18px;
    overflow: hidden;
    touch-action: none;
    user-select: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #E9E9E9;
    font-family: "Raleway" !important;
}

.card img {
    width: 100%;
    height: 78%;
    object-fit: cover;
    background: #fafafa;
}

.card-content {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card h3 {
    margin: 0;
    font-size: 20px;
    color: #111827;
}

.card-info {
    margin-top: 10px;
    font-size: 14px;
    color: #6b7280;
}

.submit-zone {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.submit-button {
    padding: 16px 30px;
    border: none;
    border-radius: 30px;
    background: rgb(178, 149, 89);
    color: white;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
}

.submit-button:hover {
    background: #1d4ed8;
}

@media (max-width: 900px) {
    .sections {
        flex-direction: column;
        align-items: center;
    }
}

.logout-button {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(178, 149, 89);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 28px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
}

.logout-button:hover {
    background: #dc2626;
    transform: scale(1.08);
}
