.almada-product-showcase {
    width: 100%;
    padding: 60px 24px;
    border-radius: 24px;
    overflow: hidden;
}

.almada-showcase-header {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.almada-title-mark {
    display: inline-block;
    width: 64px;
    height: 5px;
    border-radius: 999px;
    margin-bottom: 18px;
}

.almada-showcase-title {
    margin: 0 0 14px;
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 800;
    line-height: 1.08;
    color: #151515;
}

.almada-showcase-subtitle {
    margin: 0;
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

.almada-products-grid {
    display: grid;
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
}

.almada-product-card {
    position: relative;
    padding: 28px 22px 30px;
    border-radius: 28px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
    outline: none;
}

.almada-product-card:hover,
.almada-product-card:focus-visible {
    transform: translateY(-8px);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.12);
}

.almada-product-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    padding: 9px 12px;
    border-radius: 999px;
}

.almada-product-image {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 300px;
    margin-bottom: 22px;
}

.almada-product-image img {
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 18px 20px rgba(0, 0, 0, 0.18));
}

.almada-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 260px;
    border: 2px dashed #ddd;
    border-radius: 22px;
    color: #999;
    font-weight: 700;
}

.almada-product-title {
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 800;
    color: #151515;
}

.almada-product-description {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: #666;
}

.almada-product-popup {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.almada-product-popup.is-open {
    display: flex;
}

.almada-popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.62);
    backdrop-filter: blur(6px);
}

.almada-popup-dialog {
    position: relative;
    z-index: 1;
    width: min(1120px, 96vw);
    max-height: 92vh;
    overflow: auto;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.28);
    padding: 34px;
    animation: almadaPopupIn 0.25s ease;
}

@keyframes almadaPopupIn {
    from { opacity: 0; transform: translateY(18px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.almada-popup-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: #f2f2f2;
    color: #111;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    transition: 0.2s ease;
}

.almada-popup-close:hover {
    color: #fff;
}

.almada-popup-content {
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    gap: 30px;
    align-items: center;
}

.almada-popup-info,
.almada-popup-nutrition {
    text-align: start;
}

.almada-popup-info h3 {
    margin: 0 0 12px;
    font-size: clamp(28px, 3vw, 44px);
    line-height: 1.1;
    font-weight: 850;
    color: #141414;
}

.almada-popup-size {
    display: inline-flex;
    color: #fff;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 22px;
}

.almada-popup-info h4,
.almada-popup-nutrition h4 {
    margin: 18px 0 8px;
    font-size: 18px;
    font-weight: 800;
    color: #151515;
}

.almada-popup-info p {
    margin: 0;
    color: #5c5c5c;
    font-size: 15.5px;
    line-height: 1.75;
}

.almada-popup-image {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 440px;
    background: radial-gradient(circle, rgba(0,0,0,0.06), rgba(255,255,255,0) 62%);
    border-radius: 28px;
}

.almada-popup-image img {
    max-width: 100%;
    max-height: 520px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 24px 26px rgba(0, 0, 0, 0.20));
}

.almada-popup-nutrition table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border: 1px solid #e7e7e7;
    border-radius: 18px;
    background: #fff;
}

.almada-popup-nutrition td {
    padding: 13px 15px;
    border-bottom: 1px solid #ececec;
    color: #333;
    font-size: 15px;
}

.almada-popup-nutrition tr:last-child td {
    border-bottom: 0;
}

.almada-popup-nutrition td:first-child {
    font-weight: 800;
    background: #fafafa;
}

body.almada-popup-lock {
    overflow: hidden;
}

@media (max-width: 1024px) {
    .almada-popup-content {
        grid-template-columns: 1fr;
    }

    .almada-popup-image {
        order: -1;
        min-height: 320px;
    }

    .almada-popup-image img {
        max-height: 380px;
    }
}

@media (max-width: 767px) {
    .almada-product-showcase {
        padding: 42px 16px;
        border-radius: 18px;
    }

    .almada-product-image {
        min-height: 250px;
    }

    .almada-product-popup {
        padding: 12px;
    }

    .almada-popup-dialog {
        padding: 26px 18px;
        border-radius: 22px;
    }
}
