body#product .ag-product-pack {
    margin: 18px 0 20px;
    padding: 16px;
    border: 1px solid rgba(216, 176, 76, 0.35);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 249, 235, 0.95), rgba(239, 254, 250, 0.9));
    box-shadow: 0 12px 28px rgba(18, 44, 77, 0.08);
}

body#product .ag-product-pack__title {
    margin: 0 0 12px;
    color: #10233f;
    font-size: 1.05rem;
    font-weight: 800;
    text-transform: uppercase;
}

body#product .ag-product-pack__items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

body#product .ag-pack-item {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.88);
}

body#product .ag-pack-item__image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
}

body#product .ag-pack-item__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

body#product .ag-pack-item__content {
    min-width: 0;
}

body#product .ag-pack-item__name {
    display: block;
    color: #1eb6cf;
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1.25;
}

body#product .ag-pack-item__reference,
body#product .ag-pack-item__price {
    display: block;
    margin-top: 3px;
    color: #5f6b7a;
    font-size: 0.78rem;
    line-height: 1.25;
}

body#product .ag-pack-item__price {
    color: #ff5b4a;
    font-weight: 800;
}

body#product .ag-pack-item__quantity {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
}

body#product .ag-pack-item__quantity span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 8px;
    border-radius: 999px;
    background: #d5ad4f;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 800;
}

@media (max-width: 767px) {
    body#product .ag-product-pack {
        margin: 16px 0;
        padding: 13px;
        border-radius: 16px;
    }

    body#product .ag-product-pack__title {
        text-align: center;
        font-size: 0.98rem;
    }

    body#product .ag-pack-item {
        grid-template-columns: 52px minmax(0, 1fr) auto;
        gap: 9px;
        padding: 9px;
    }

    body#product .ag-pack-item__image {
        width: 52px;
        height: 52px;
    }

    body#product .ag-pack-item__name {
        font-size: 0.84rem;
    }
}
