<style>
.dg-stores-app{
    max-width:1100px;
    margin:0 auto;
    padding:22px;
}

.dg-stores-hero{
    background:linear-gradient(135deg,#073b1d,#49b72f);
    border-radius:28px;
    padding:42px;
    color:white;
    margin-bottom:-28px;
    position:relative;
    overflow:hidden;
}

.dg-stores-hero h1{
    margin:0;
    font-size:44px;
    color:white;
}

.dg-stores-hero h1 span{
    color:#91e45a;
}

.dg-stores-hero p{
    font-size:17px;
    color:white;
    max-width:500px;
}

.dg-stores-search{
    background:white;
    border-radius:22px;
    padding:18px;
    box-shadow:0 14px 38px rgba(0,0,0,.12);
    margin:0 24px 28px;
    position:relative;
    z-index:2;
}

.dg-stores-search input{
    width:100%;
    border:0;
    outline:0;
    font-size:16px;
    padding:12px 16px;
    background:#f8fafc;
    border-radius:16px;
}

.dg-section-head{
    margin:22px 0;
}

.dg-section-head h2{
    margin:0;
    font-size:28px;
    color:#071327;
}

.dg-featured-row{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
    margin-bottom:34px;
}

.dg-store-card{
    background:white;
    border-radius:24px;
    overflow:hidden;
    border:1px solid #e5e7eb;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.22s;
    text-decoration:none!important;
    color:inherit!important;
    display:block;
}

.dg-store-card:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 40px rgba(0,0,0,.14);
}

.dg-store-cover{
    height:130px;
    position:relative;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    overflow:visible;
}

.dg-store-cover::before{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.18);
    z-index:1;
}

.dg-store-badge{
    position:absolute;
    left:14px;
    top:14px;
    background:#49b72f;
    color:white;
    padding:7px 11px;
    border-radius:999px;
    font-size:12px;
    font-weight:900;
    z-index:5;
}

.dg-store-logo{
    width:76px;
    height:76px;
    border-radius:20px;
    background:white;
    border:4px solid white;
    box-shadow:0 10px 25px rgba(0,0,0,.22);
    position:absolute;
    left:18px;
    bottom:-36px;
    object-fit:cover;
    z-index:999;
}

.dg-store-body{
    padding:48px 18px 18px;
    position:relative;
    z-index:1;
}

.dg-store-body h3{
    margin:0 0 4px;
    font-size:20px;
    color:#071327;
}

.dg-store-type{
    color:#6b7280;
    font-size:14px;
    margin-bottom:14px;
}

.dg-store-meta{
    display:flex;
    gap:14px;
    font-size:14px;
    color:#4b5563;
    margin-bottom:12px;
}

.dg-store-delivery{
    color:#2f951f;
    font-weight:900;
    font-size:15px;
}

.dg-more-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
}

.dg-store-list-card{
    background:white;
    border:1px solid #e5e7eb;
    border-radius:20px;
    padding:16px;
    display:flex;
    align-items:center;
    gap:14px;
    box-shadow:0 8px 20px rgba(0,0,0,.06);
    text-decoration:none!important;
    color:inherit!important;
}

.dg-store-list-card img{
    width:64px;
    height:64px;
    border-radius:18px;
    object-fit:cover;
    background:#e9f9e2;
}

.dg-store-list-card h3{
    margin:0 0 3px;
    font-size:18px;
    color:#071327;
}

.dg-store-list-card p{
    margin:0;
    color:#6b7280;
    font-size:14px;
}

.dg-store-list-card strong{
    color:#2f951f;
    font-size:14px;
}

@media(max-width:900px){
    .dg-featured-row{
        display:grid;
        grid-template-columns:1fr;
        gap:16px;
        margin-bottom:26px;
    }

    .dg-store-card{
        width:100%;
        max-width:100%;
        min-width:100%;
    }

    .dg-more-list{
        grid-template-columns:1fr;
        gap:12px;
    }

    .dg-store-list-card{
        padding:14px;
        border-radius:18px;
    }
}

@media(max-width:600px){
    .dg-stores-app{
        padding:12px;
    }

    .dg-stores-hero{
        border-radius:0 0 26px 26px;
        margin-left:-12px;
        margin-right:-12px;
        padding:34px 24px 54px;
    }

    .dg-stores-hero h1{
        font-size:36px;
    }

    .dg-stores-search{
        margin:-34px 8px 18px;
    }

    .dg-section-head h2{
        font-size:24px;
    }
}
</style>


<style>

.dg-local-wrap{
    max-width:1180px;
    margin:0 auto;
    padding:18px;
}

.dg-local-grid{
    display:grid;
    grid-template-columns:300px 1fr;
    gap:24px;
}

.dg-local-sidebar{
    background:white;
    border-radius:26px;
    padding:24px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    border:1px solid #e5e7eb;
    height:fit-content;
}

.dg-local-sidebar h2{
    margin:0 0 22px;
    font-size:34px;
    line-height:1.1;
    color:#071327;
}

.dg-local-sidebar h2 span{
    color:#49b72f;
}

.dg-local-contact{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.dg-local-contact input,
.dg-local-contact textarea{
    width:100%;
    border:1px solid #d1d5db;
    border-radius:16px;
    padding:14px;
    background:#f8fafc;
}

.dg-local-contact textarea{
    min-height:130px;
}

.dg-local-contact button{
    background:#49b72f;
    color:white;
    border:none;
    border-radius:999px;
    padding:15px;
    font-weight:900;
    font-size:15px;
}

.dg-local-hero{
    position:relative;
    overflow:hidden;
    border-radius:34px;
    min-height:380px;
    padding:34px;
    display:flex;
    align-items:flex-end;
    box-shadow:0 18px 40px rgba(0,0,0,.12);
    background-size:cover;
    background-position:center;
}

.dg-local-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,.75), rgba(0,0,0,.15));
}

.dg-local-content{
    position:relative;
    z-index:2;
    width:100%;
}

.dg-local-top{
    display:flex;
    align-items:center;
    gap:22px;
}

.dg-local-logo{
    width:120px;
    height:120px;
    border-radius:28px;
    border:5px solid white;
    object-fit:cover;
    background:white;
    box-shadow:0 12px 30px rgba(0,0,0,.25);
}

.dg-local-title h1{
    margin:0;
    font-size:56px;
    line-height:1;
    color:white;
    font-weight:900;
}

.dg-local-badge{
    display:inline-block;
    background:#49b72f;
    color:white;
    padding:8px 16px;
    border-radius:999px;
    font-weight:900;
    margin-bottom:14px;
}

.dg-local-meta{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
    margin-top:18px;
    color:white;
    font-weight:700;
    font-size:16px;
}

/* WhatsApp flotante profesional */

.dg-local-whatsapp{
    position:fixed;
    right:18px;
    bottom:78px;
    z-index:999999;
}

.dg-local-whatsapp a{
    width:58px;
    height:58px;
    padding:0;
    border-radius:50%;
    background:#25D366;
    color:#fff!important;
    text-decoration:none!important;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:0;
    box-shadow:0 10px 26px rgba(37,211,102,.45);
    border:3px solid #fff;
}

.dg-local-whatsapp a::before{
    content:'💬';
    font-size:27px;
    line-height:1;
}

.dg-local-whatsapp a:hover{
    transform:scale(1.06);
    background:#1ebe5d;
}

.dg-products-section{
    margin-top:28px;
}

.dg-products-section h2{
    font-size:34px;
    margin-bottom:18px;
    color:#071327;
}

.dg-products-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.dg-product-card{
    background:white;
    border-radius:24px;
    overflow:hidden;
    border:1px solid #e5e7eb;
    box-shadow:0 10px 28px rgba(0,0,0,.08);
}

.dg-product-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    background:#f3f4f6;
}

.dg-product-body{
    padding:18px;
}

.dg-product-body h3{
    margin:0 0 10px;
    font-size:18px;
    color:#071327;
}

.dg-product-price{
    color:#2f951f;
    font-size:22px;
    font-weight:900;
    margin-bottom:14px;
}

.dg-product-btn{
    display:block;
    text-align:center;
    background:#49b72f;
    color:white!important;
    text-decoration:none!important;
    border-radius:999px;
    padding:13px;
    font-weight:900;
}

.dg-empty-products{
    background:white;
    border-radius:24px;
    padding:40px;
    text-align:center;
    border:1px solid #e5e7eb;
    box-shadow:0 10px 28px rgba(0,0,0,.08);
}

@media(max-width:900px){

    .dg-local-wrap{
        padding:8px;
    }

    .dg-local-grid{
        grid-template-columns:1fr;
        gap:14px;
    }

    .dg-local-sidebar{
        order:2;
    }

    .dg-local-main{
        order:1;
    }

    .dg-local-hero{
        min-height:230px;
        border-radius:22px;
        padding:16px;
        align-items:flex-end;
        background-position:center;
        box-shadow:0 10px 26px rgba(0,0,0,.12);
    }

    .dg-local-overlay{
        background:linear-gradient(to top, rgba(0,0,0,.72), rgba(0,0,0,.15));
    }

    .dg-local-top{
        display:flex;
        align-items:flex-end;
        gap:12px;
    }

    .dg-local-logo{
        width:86px;
        height:86px;
        border-radius:22px;
        border:5px solid #fff;
        margin:0;
        flex-shrink:0;
        box-shadow:0 10px 24px rgba(0,0,0,.28);
    }

    .dg-local-title h1{
        color:#fff;
        font-size:30px;
        line-height:1;
        margin:0;
        text-shadow:0 3px 10px rgba(0,0,0,.45);
    }

    .dg-local-badge{
        display:none;
    }

    .dg-local-meta{
        color:#fff;
        display:flex;
        flex-direction:column;
        gap:4px;
        font-size:13px;
        margin-top:8px;
        text-shadow:0 2px 8px rgba(0,0,0,.45);
    }

    .dg-products-section{
        margin-top:18px;
    }

    .dg-products-section h2{
        font-size:24px;
        margin-bottom:14px;
    }

    .dg-products-grid{
        grid-template-columns:repeat(2,1fr);
        gap:10px;
    }

    .dg-product-card{
        border-radius:14px;
    }

    .dg-product-card img{
        height:135px;
    }

    .dg-product-body{
        padding:10px;
    }

    .dg-product-body h3{
        font-size:15px;
        margin-bottom:6px;
    }

    .dg-product-price{
        font-size:18px;
        margin-bottom:8px;
    }

    .dg-product-btn{
        font-size:13px;
        padding:9px;
    }

    .dg-local-sidebar h2{
        font-size:26px;
    }

    .dg-local-whatsapp{
        right:16px;
        bottom:78px;
    }

    .dg-local-whatsapp a{
        width:58px;
        height:58px;
    }

}

</style>