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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f8f9f5;
    color: #1f2937;
    min-height: 100vh;
}

:root {
    --overlay-color: rgba(15, 23, 42, .55);
}

body.sidebar-open {
    overflow: hidden;
}

.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: var(--overlay-color);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
    z-index: 998;
}

body.sidebar-open .sidebar-overlay {
    opacity: 1;
    pointer-events: auto;
}

.sidebar-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    border: 1px solid #d1d5db;
    background: #fff;
    color: #2d5a27;
    font-size: 1.3rem;
    cursor: pointer;
    transition: box-shadow .2s ease;
}

.sidebar-toggle:focus-visible {
    box-shadow: 0 0 0 3px rgba(45, 90, 39, .25);
    outline: none;
}

.brand-mobile {
    display: none;
    font-weight: 700;
    color: #2d5a27;
    font-size: 1.05rem;
    gap: 6px;
    align-items: center;
}

a {
    color: inherit;
}

.main-container {
    display: flex;
    width: 100%;
    min-height: 100vh;
}

.sidebar {
    width: 250px;
    background: #fff;
    border-right: 1px solid #e5e7eb;
    padding: 28px 20px;
    flex-shrink: 0;
    position: sticky;
    top: 0;
    height: 100vh;
}

.sidebar h1.logo {
    color: #2d5a27;
    margin-bottom: 28px;
    font-size: 1.8rem;
    line-height: 1.1;
}

.sidebar nav a {
    display: block;
    padding: 12px;
    color: #4b5563;
    text-decoration: none;
    border-radius: 10px;
    margin-bottom: 8px;
    transition: all .2s ease;
}

.sidebar nav a:hover {
    background: #eef5ee;
    color: #2d5a27;
    transform: translateX(4px);
}

.content-area {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.main-content {
    flex: 1;
    padding: 0 40px 40px;
}

.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    background: #fff;
    padding: 16px 24px;
    margin: 20px 40px 30px;
    border-radius: 14px;
    border: 1px solid #eef0eb;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.header-leading {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: auto;
}

.signin-inline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .92rem;
    color: #475569;
    font-weight: 600;
    white-space: nowrap;
}

.signin-inline i {
    font-size: 1.1rem;
    color: #2d5a27;
}

.google-signin-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.google-signin-wrapper > div {
    display: flex;
}

.btn-google-login {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid #d1d5db;
    background: #fff;
    color: #1f2937;
    font-weight: 600;
    text-decoration: none;
    transition: box-shadow .2s ease, transform .2s ease;
}

.btn-google-login:hover {
    box-shadow: 0 12px 24px rgba(15, 23, 42, .08);
    transform: translateY(-1px);
}

.user-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid #dbe4d7;
    background: #f0f4ef;
}

.user-chip img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
}

.user-chip-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #dbe4d7;
    color: #2d5a27;
    font-size: 1.1rem;
}

.user-chip-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.user-chip-label {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #6b7280;
}

.logout-form {
    margin: 0;
    display: flex;
    align-items: center;
}

.btn-logout {
    border: none;
    background: transparent;
    color: #b45309;
    font-weight: 600;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 999px;
    transition: background-color .2s ease;
}

.btn-logout:hover {
    background: rgba(180, 83, 9, .1);
}

.form-busca {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    max-width: 560px;
}

.busca-principal {
    flex: 1;
    min-width: 0;
    padding: 12px 18px;
    font-size: .95rem;
    border-radius: 999px;
    border: 1px solid #d1d5db;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.busca-principal:focus {
    border-color: #2d5a27;
    box-shadow: 0 0 0 4px rgba(45, 90, 39, .12);
}

.btn-buscar {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: #2d5a27;
    color: #fff;
    cursor: pointer;
    transition: transform .2s ease, background-color .2s ease;
}

.btn-buscar:hover {
    background-color: #23471f;
    transform: translateY(-1px);
}

.cart-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: #2d5a27;
    background: #f0f4ef;
    border: 1px solid #dbe4d7;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 999px;
    white-space: nowrap;
}

.plantas-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    width: 100%;
}

.planta-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #edf0ea;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
}

.planta-card a {
    text-decoration: none !important;
    color: inherit;
}

.planta-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, .08);
}

.card-image img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.card-info {
    padding: 14px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-info h3 {
    margin-bottom: 8px;
    min-height: 2.8em;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.planta-preco {
    display: block;
    font-weight: 700;
    color: #2d5a27;
    font-size: 1.12rem;
    margin: 6px 0 12px;
}

.btn-comprar {
    display: block;
    background: #2d5a27;
    color: #fff;
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: .92rem;
    margin-top: auto;
    border: none;
    cursor: pointer;
    width: 100%;
    transition: background-color .2s ease;
}

.btn-comprar:hover {
    background-color: #23471f;
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
}

.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #fff;
    color: #374151;
    text-decoration: none;
    font-weight: 600;
}

.page-link:hover,
.page-link.active {
    background: #2d5a27;
    border-color: #2d5a27;
    color: #fff;
}

.produto-wrapper {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 24px auto;
    padding: 24px;
    gap: 36px;
    background: #fff;
    border: 1px solid #edf0ea;
    border-radius: 14px;
}

.produto-imagem-container {
    flex: 1.1;
    min-width: 300px;
}

.produto-imagem-container img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: 1px solid #edf0ea;
    display: block;
}

.produto-info-container {
    flex: 1;
    min-width: 300px;
}

.breadcrumb {
    font-size: .75rem;
    color: #6b7280;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: .08em;
}

.produto-titulo {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 6px;
}

.sku {
    font-size: .78rem;
    color: #9ca3af;
    margin-bottom: 20px;
}

.preco-tag {
    font-size: 2.25rem;
    color: #2e7d32;
    font-weight: 800;
    margin-bottom: 6px;
}

.parcelas {
    font-size: .95rem;
    color: #4b5563;
    margin-bottom: 24px;
}

.compra-flex {
    display: flex;
    gap: 12px;
    margin-bottom: 26px;
}

.qtd-box {
    width: 72px;
    height: 48px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    text-align: center;
    font-size: 1rem;
    color: #111827;
}

.btn-comprar-detalhe {
    flex: 1;
    min-height: 48px;
    background-color: #2d5a27;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: .95rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color .2s ease;
}

.btn-comprar-detalhe:hover {
    background-color: #23471f;
}

.descricao-box {
    border-top: 1px solid #edf0ea;
    padding-top: 18px;
}

.descricao-box strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 8px;
    color: #1f2937;
}

.descricao-box p {
    font-size: .95rem;
    color: #4b5563;
    margin-bottom: 16px;
    line-height: 1.6;
}

.disponibilidade {
    font-size: .9rem;
    font-weight: 700;
}

.disponibilidade.em-estoque {
    color: #2e7d32;
}

.disponibilidade.esgotado {
    color: #b91c1c;
}

.carrinho-wrapper {
    max-width: 980px;
}

.carrinho-container {
    width: 100%;
}

.alerta-sucesso {
    background: #effaf0;
    border: 1px solid #b9e3bc;
    border-left: 4px solid #2e7d32;
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 16px;
}

.alerta-sucesso p {
    margin: 0;
    color: #1f6d2c;
}

.carrinho-vazio-box p {
    margin-bottom: 0;
}

.carrinho-item-box {
    margin-bottom: 16px;
}

.carrinho-item-box h3 {
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.carrinho-item-box p {
    margin-bottom: 8px;
}

.carrinho-acoes {
    margin-bottom: 0;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.form-atualizar-item {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-atualizar,
.btn-remover,
.btn-finalizar {
    padding: 0 18px;
    min-width: 150px;
}

.btn-remover {
    background: #b71c1c;
}

.btn-remover:hover {
    background: #991b1b;
}

.carrinho-subtotal {
    font-size: 1.9rem;
    margin-top: 12px;
}

.form-finalizar {
    margin-top: 16px;
}

.btn-finalizar {
    min-width: 220px;
}

.btn-continuar {
    display: inline-block;
    margin-top: 16px;
    padding: 10px 16px;
    width: auto;
}

/* Carrinho */
.cart-stage {
    background: #f1f2f6;
    padding: 40px 20px 60px;
}

.cart-shell {
    max-width: 1120px;
    margin: 0 auto;
    background: #f8f8fb;
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 30px 60px rgba(15, 23, 42, .08);
}

.cart-header {
    margin-bottom: 20px;
}

.cart-subtitle {
    color: #6b7280;
    font-size: .95rem;
    margin-top: 4px;
}

.cart-card {
    background: #fff;
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 14px 30px rgba(15, 23, 42, .06);
}

.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cart-item-card {
    display: grid;
    grid-template-columns: 140px 1.4fr 1fr auto;
    align-items: center;
    gap: 24px;
}

.cart-item-media img,
.cart-item-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 18px;
    object-fit: cover;
    background: #f1f5f9;
}

.cart-item-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-weight: 600;
    font-size: .85rem;
}

.cart-item-details h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.cart-item-brand {
    display: inline-block;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #9ca3af;
    margin-bottom: 6px;
}

.cart-item-price-mobile {
    display: none;
    font-weight: 700;
}

.cart-item-quantity .cart-quantity-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.qty-selector {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px;
    border-radius: 999px;
    background: #eef2ff;
}

.qty-selector input {
    width: 70px;
    border: none;
    background: transparent;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
}

.qty-selector input:focus {
    outline: none;
}

.qty-btn {
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #111827;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(30, 64, 175, .18);
    transition: transform .2s ease, background-color .2s ease;
}

.qty-btn:hover {
    background-color: #fef3eb;
    transform: translateY(-1px);
}

.cart-item-pricing {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.cart-item-pricing strong {
    font-size: 1.2rem;
    color: #111827;
}

.cart-remove-btn {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 12px;
    background: #ffe7db;
    color: #c2410c;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color .2s ease, transform .2s ease;
}

.cart-remove-btn:hover {
    background: #ffc8a3;
    transform: translateY(-1px);
}

.btn-primario,
.btn-secundario,
.btn-ghost {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .02em;
}

.btn-primario {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 14px;
    border: none;
    background: #ff7a33;
    color: #fff;
    box-shadow: 0 14px 30px rgba(255, 122, 51, .35);
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
}

.btn-primario:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 32px rgba(255, 122, 51, .4);
}

.btn-secundario {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 12px;
    border: none;
    background: #e3e9ff;
    color: #2b4dff;
    cursor: pointer;
    transition: background-color .2s ease, color .2s ease;
}

.btn-secundario:hover {
    background: #d3ddff;
    color: #1d3be0;
}

.btn-ghost {
    background: transparent;
    border: 1px dashed #cbd5f5;
    padding: 10px 18px;
    border-radius: 12px;
    color: #4b5563;
    cursor: pointer;
    transition: border-color .2s ease, color .2s ease;
}

.btn-ghost:hover {
    border-color: #94a3ff;
    color: #1f2937;
}

.cart-bottom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.cart-card-head h2 {
    font-size: 1.3rem;
    margin-bottom: 2px;
}

.cart-card-head p {
    color: #6b7280;
    font-size: .92rem;
}

.cart-auth-card {
    margin-top: 18px;
    padding: 18px;
    border-radius: 18px;
    background: #0097a5;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: 0 10px 26px rgba(0, 118, 132, .25);
}

.cart-auth-copy {
    display: flex;
    gap: 12px;
    align-items: center;
}

.cart-auth-copy i {
    font-size: 1.7rem;
    background: rgba(255, 255, 255, .15);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cart-auth-copy strong {
    display: block;
    font-size: 1.05rem;
}

.cart-auth-copy p {
    margin: 0;
    font-size: .9rem;
    opacity: .85;
}

.btn-login-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    padding: 12px 16px;
    background: #fff;
    color: #026a74;
    font-weight: 700;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
    box-shadow: 0 12px 24px rgba(255, 255, 255, .35);
}

.btn-login-cart:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 28px rgba(255, 255, 255, .45);
}

.cep-form,
.coupon-form {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cep-input-group,
.coupon-input-group {
    display: flex;
    gap: 10px;
}

.cep-input-group input,
.coupon-input-group input {
    flex: 1;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    padding: 12px 14px;
    font-size: .95rem;
}

.cep-helper {
    display: block;
    margin-top: 10px;
    color: #94a3b8;
    font-size: .85rem;
}

.cep-feedback {
    margin-top: 14px;
    padding: 14px;
    border-radius: 14px;
    background: #f8fafc;
    color: #1f2937;
    font-size: .9rem;
    border: 1px dashed #cbd5f5;
}

.cep-feedback.erro {
    background: #fff5f5;
    border-color: #fecaca;
    color: #b91c1c;
}

.cart-summary-list {
    margin-top: 16px;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
}

.cart-summary-row dt {
    color: #4b5563;
}

.cart-summary-row dd {
    font-weight: 600;
    color: #111827;
}

.cart-summary-muted {
    color: #9ca3af;
}

.cart-total-card {
    margin-top: 18px;
    background: #fff4ed;
    border-radius: 18px;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cart-total-card span {
    font-size: .85rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.cart-total-card strong {
    font-size: 1.6rem;
    color: #1f2937;
}

.pix-hint {
    color: #c05621;
    font-size: .9rem;
}

.cart-payment-options {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #edf0fa;
}

.cart-payment-label {
    display: block;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #94a3b8;
    margin-bottom: 10px;
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.payment-icons span {
    background: #eff3ff;
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 600;
    color: #1f3c86;
    font-size: .85rem;
}

.cart-payment-note {
    margin-top: 10px;
    font-size: .9rem;
    color: #475569;
}

.cart-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 32px;
}

.cart-empty-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.footer-container {
    background: #fff;
    border-top: 1px solid #e5e7eb;
    padding: 36px 40px;
    margin-top: 44px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 36px;
}

.footer-column h3 {
    margin-bottom: 12px;
    color: #1f2937;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li a {
    text-decoration: none;
    color: #4b5563;
    line-height: 2;
}

.footer-bottom {
    text-align: center;
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px solid #eef0eb;
    color: #6b7280;
}

@media (max-width: 1024px) {
    .main-container {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        height: auto;
        position: static;
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
    }

    .top-header,
    .main-content {
        margin-left: 20px;
        margin-right: 20px;
        padding-left: 0;
        padding-right: 0;
    }

    .top-header {
        margin-bottom: 20px;
    }

    .main-content {
        padding-bottom: 30px;
    }

    .plantas-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-container {
        padding: 28px 20px;
    }

    .footer-content {
        flex-direction: column;
    }

    .cart-shell {
        padding: 24px;
    }

    .cart-item-card {
        grid-template-columns: 120px 1fr;
        grid-auto-rows: auto;
    }

    .cart-item-quantity,
    .cart-item-pricing {
        justify-self: flex-start;
        width: 100%;
    }

    .cart-item-pricing {
        align-items: flex-start;
    }
}

@media (max-width: 900px) {
    .sidebar {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: min(320px, 82vw);
        border-right: none;
        border-bottom: none;
        padding: 32px 24px;
        box-shadow: 10px 0 30px rgba(15, 23, 42, .18);
        transform: translateX(-110%);
        transition: transform .3s ease;
        z-index: 999;
    }

    body.sidebar-open .sidebar {
        transform: translateX(0);
    }

    .sidebar nav a {
        font-size: 1rem;
        padding: 14px 12px;
    }

    .sidebar-toggle {
        display: inline-flex;
    }

    .brand-mobile {
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    .top-header {
        margin: 16px;
        padding: 14px 18px;
        gap: 12px;
    }

    .form-busca {
        order: 3;
        flex-basis: 100%;
        max-width: none;
    }

    .header-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .signin-inline {
        justify-content: center;
    }

    .google-signin-wrapper {
        justify-content: center;
        flex-direction: column;
    }

    .google-signin-wrapper > div {
        justify-content: center;
    }

    .btn-google-login,
    .cart-icon {
        width: 100%;
        justify-content: center;
    }

    .user-chip {
        width: 100%;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .logout-form {
        width: 100%;
        justify-content: flex-end;
    }

    .btn-logout {
        width: 100%;
        text-align: center;
    }
    .produto-wrapper {
        padding: 16px;
        gap: 20px;
    }

    .produto-titulo {
        font-size: 1.55rem;
    }

    .preco-tag {
        font-size: 1.8rem;
    }

    .compra-flex,
    .carrinho-acoes,
    .form-atualizar-item {
        flex-direction: column;
        align-items: stretch;
    }

    .plantas-grid {
        grid-template-columns: 1fr;
    }

    .qtd-box,
    .btn-comprar-detalhe,
    .btn-atualizar,
    .btn-remover,
    .btn-finalizar,
    .btn-continuar {
        width: 100%;
        min-width: 0;
    }

    .cart-shell {
        padding: 20px;
    }

    .cart-item-card {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .cart-item-media img,
    .cart-item-placeholder {
        width: 100%;
        height: 220px;
    }

    .cart-item-price-mobile {
        display: inline-block;
        color: #111827;
        font-size: 1.1rem;
    }

    .cart-item-quantity,
    .cart-item-pricing {
        width: 100%;
    }

    .cart-actions {
        flex-direction: column;
        align-items: stretch;
    }
}