* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'HelveticaNeue-Black', 'Helvetica Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    font-weight: 900;
    background: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 0;
}

.menu-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1400px;
    background: white;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    padding: 10px;
}

/* Top Row with CONOS and BATIDOS */
.top-row {
    display: flex;
    width: 100%;
    gap: 10px;
    margin-bottom: 10px;
}

.conos-section {
    flex: 2;
    margin: 0;
}

.batidos-section {
    flex: 1;
    background: white;
    margin: 0;
}

/* Tarrinas Full Width */
.tarrinas-section {
    margin: 0 0 10px 0;
}

/* Main Content Area */
.main-content {
    display: flex;
    width: 100%;
    gap: 10px;
}

/* Left Section */
.menu-section {
    flex: 2;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Right Section */
.right-section {
    flex: 1;
    background: #1e1a3d;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    align-self: flex-start;
    max-height: 300px;
}

/* Categories */
.category {
    border: 2px solid #1e1a3d;
    padding: 15px;
}

.category-title {
    font-size: 20px;
    font-weight: 900;
    color: #1e1a3d;
    margin-bottom: 15px;
    letter-spacing: 1.5px;
}

.white-text {
    color: white !important;
}

/* Items */
.items-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.item {
    display: flex;
    flex-direction: row;
    align-items: center;
    min-width: 120px;
    gap: 10px;
}

.item-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 3px;
}

.description {
    font-size: 13px;
    font-weight: 700;
    text-align: left;
    color: #1e1a3d;
    line-height: 1.2;
}

.price {
    font-size: 18px;
    font-weight: 900;
    color: #1e1a3d;
}

/* Icons */
.icon {
    width: 80px;
    height: 90px;
    position: relative;
}

svg.icon {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

img.icon {
    width: auto;
    height: auto;
    max-width: 100px;
    max-height: 100px;
}

img.icon.mini-cono {
    max-width: 50px;
    max-height: 50px;
}

img.icon.tarrina-pequena {
    max-width: 70px;
    max-height: 70px;
}

.cafe-section .items-row {
    justify-content: flex-start;
    row-gap: 45px;
}

.cafe-section .item {
    flex: 0 0 calc(33.333% - 14px);
    max-width: calc(33.333% - 14px);
}

.cafe-section img.icon {
    max-width: 60px;
    max-height: 60px;
}

img.icon.agua-pequena {
    max-width: 80px;
    max-height: 80px;
}

/* Cone Icons */
.cone-2::before,
.cone-mini::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 30px solid #d4a574;
}

.cone-2::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    background: #f8b7d0;
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
    top: -5px;
    box-shadow: 0 -15px 0 #a8d5a8;
}

.cone-mini::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background: #f8b7d0;
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
    top: 5px;
}

/* Tub Icons */
.tub-small::before,
.tub-medium::before,
.tub-large::before,
.tub-half::before,
.tub-liter::before {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 2px solid #1e1a3d;
    border-radius: 0 0 10px 10px;
}

.tub-small::before {
    width: 30px;
    height: 25px;
}

.tub-medium::before {
    width: 35px;
    height: 30px;
}

.tub-large::before {
    width: 40px;
    height: 35px;
}

.tub-half::before,
.tub-liter::before {
    width: 35px;
    height: 40px;
    border-radius: 5px;
}

.tub-liter::before {
    width: 45px;
    height: 45px;
}

.tub-small::after,
.tub-medium::after,
.tub-large::after {
    content: '';
    position: absolute;
    background: #f8b7d0;
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
}

.tub-small::after {
    width: 20px;
    height: 20px;
    top: 10px;
}

.tub-medium::after {
    width: 25px;
    height: 25px;
    top: 5px;
}

.tub-large::after {
    width: 30px;
    height: 30px;
    top: 0;
}

.tub-half::after,
.tub-liter::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 2px;
    background: #1e1a3d;
    transform: rotate(-45deg);
    top: 15px;
    right: 5px;
}

/* Pastry Icons */
.cookies::before {
    content: '';
    position: absolute;
    width: 35px;
    height: 35px;
    background: #d4a574;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid #8b6914;
}

.cookies::after {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    background: #654321;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: -7px -5px 0 #654321, 7px -5px 0 #654321, 0 7px 0 #654321;
}

.cookies-pack::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background: #d4a574;
    border-radius: 50%;
    left: 25%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.cookies-pack::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background: #8b6914;
    border-radius: 50%;
    left: 55%;
    top: 40%;
    transform: translate(-50%, -50%);
}

.brownies::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 25px;
    background: #3e2723;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.brownies::after {
    content: '';
    position: absolute;
    width: 35px;
    height: 3px;
    background: #5d4037;
    left: 50%;
    top: 40%;
    transform: translateX(-50%);
}

.cake::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 35px solid #f8b7d0;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.cake::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: #8b4513;
    left: 50%;
    top: 55%;
    transform: translateX(-50%);
}

/* Drink Icons */
.drink-small::before,
.drink-medium::before,
.drink-large::before {
    content: '';
    position: absolute;
    width: 25px;
    height: 40px;
    background: transparent;
    border: 2px solid #1e1a3d;
    border-radius: 5px 5px 15px 15px;
    left: 50%;
    bottom: 5px;
    transform: translateX(-50%);
}

.drink-medium::before {
    width: 30px;
    height: 45px;
}

.drink-large::before {
    width: 35px;
    height: 50px;
}

.drink-small::after,
.drink-medium::after,
.drink-large::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 15px;
    background: #1e1a3d;
    left: 60%;
    top: 5px;
    transform: rotate(-15deg);
}

/* Water Icons */
.water-small::before,
.water-large::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 35px;
    background: #e3f2fd;
    border: 2px solid #1e1a3d;
    border-radius: 10px 10px 5px 5px;
    left: 50%;
    bottom: 5px;
    transform: translateX(-50%);
}

.water-large::before {
    width: 25px;
    height: 40px;
}

.water-small::after,
.water-large::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 5px;
    background: #1e1a3d;
    left: 50%;
    top: 10px;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Coffee Icons */
.coffee::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 25px;
    background: #6f4e37;
    border-radius: 0 0 15px 15px;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
}

.coffee::after {
    content: '';
    position: absolute;
    width: 35px;
    height: 3px;
    background: #6f4e37;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
}

.coffee-ice::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 35px;
    background: linear-gradient(to bottom, #f8b7d0 50%, #6f4e37 50%);
    border-radius: 5px;
    left: 50%;
    bottom: 5px;
    transform: translateX(-50%);
}

/* Milkshake Icons */
.milkshake-small::before,
.milkshake-large::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 40px;
    background: transparent;
    border: 2px solid #1e1a3d;
    border-radius: 5px 5px 10px 10px;
    left: 50%;
    bottom: 5px;
    transform: translateX(-50%);
}

.milkshake-large::before {
    width: 35px;
    height: 45px;
}

.milkshake-small::after,
.milkshake-large::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 10px;
    background: #f8b7d0;
    border-radius: 50%;
    left: 50%;
    top: 5px;
    transform: translateX(-50%);
}

/* Bottom Row */
.bottom-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.half-width {
    flex: 1.5;
}

/* Cafe and Agua Wrapper */
.cafe-agua-wrapper {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.cafe-agua-wrapper .cafe-section {
    flex: 7;
    margin: 0;
}

.cafe-agua-wrapper .agua-section {
    flex: 3;
    margin: 0;
}

.agua-section .items-row {
    flex-direction: column;
    gap: 10px;
}

.cafe-section {
    margin: 0;
}

/* Batidos Section Specific */
.batidos-section .items-row {
    justify-content: center;
    gap: 40px;
}

/* Logo */
.logo-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.logo-image {
    width: 100%;
    max-height: 180px;
    object-fit: contain;
}

/* Footer */
.footer {
    background: #1e1a3d;
    color: white;
    text-align: right;
    padding: 15px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Responsive */
/*@media (max-width: 1024px) {*/
/*    .top-row {*/
/*        flex-direction: column;*/
/*    }*/

/*    .conos-section,*/
/*    .batidos-section {*/
/*        flex: 1;*/
/*        width: 100%;*/
/*    }*/

/*    .main-content {*/
/*        flex-direction: column;*/
/*    }*/

/*    .menu-section,*/
/*    .right-section {*/
/*        flex: 1;*/
/*        width: 100%;*/
/*    }*/

/*    .right-section {*/
/*        min-height: 400px;*/
/*    }*/

/*    .items-row {*/
/*        justify-content: flex-start;*/
/*    }*/

/*    .bottom-row {*/
/*        flex-direction: column;*/
/*    }*/
/*}*/

/*@media (max-width: 768px) {*/
/*    .menu-container {*/
/*        padding: 5px;*/
/*    }*/

/*    .conos-section,*/
/*    .batidos-section {*/
/*        padding: 10px;*/
/*    }*/

/*    .category {*/
/*        padding: 10px;*/
/*    }*/

/*    .items-row {*/
/*        gap: 15px;*/
/*    }*/

/*    .item {*/
/*        min-width: 70px;*/
/*    }*/

/*    .logo-text {*/
/*        font-size: 36px;*/
/*    }*/

/*    .category-title {*/
/*        font-size: 16px;*/
/*    }*/
/*}*/
