/* La Martinika — store chrome (header + footer) extraído de la demo.
   Valores literales + clases prefijadas lm- para no colisionar con el CSS del template. */

.lm-wrap{max-width:1240px;margin:0 auto;padding:0 28px}

/* ---------- TOP BANNER ---------- */
.lm-topbar{background:#3C5154;color:#EDE4D6;font-size:.74rem;letter-spacing:.14em;text-transform:uppercase;font-weight:500;overflow:hidden}
.lm-topbar .lm-wrap{display:flex;justify-content:center;gap:2.6rem;align-items:center;padding-top:9px;padding-bottom:9px;flex-wrap:wrap}
.lm-topbar span{display:inline-flex;align-items:center;gap:.5rem;white-space:nowrap}
.lm-topbar a{color:inherit;text-decoration:none;display:inline-flex;align-items:center;gap:.5rem;white-space:nowrap}
.lm-topbar svg{width:13px;height:13px;stroke:#FFBF00;opacity:.9;fill:none}
.lm-ticker-main{display:flex;gap:2.6rem;align-items:center;flex-wrap:wrap}
.lm-ticker-dup{display:none;gap:2.6rem}

/* ---------- NAV ---------- */
header.lm-nav{position:sticky;top:0;z-index:200;background:rgba(249,245,240,.92);backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);border-bottom:1px solid #E2D8C9;transition:.3s}
.lm-nav-inner{display:flex;align-items:center;justify-content:space-between;height:84px}
.lm-brand{display:flex;align-items:center;gap:13px;cursor:pointer;text-decoration:none}
.lm-brand img{height:50px;width:auto}
.lm-bk{font-family:'Cormorant Garamond',Georgia,serif;font-size:1.5rem;letter-spacing:.04em;color:#3C5154}
.lm-nav-links{display:flex;gap:2.4rem;align-items:center}
.lm-nav-links a{font-family:'Raleway',sans-serif;font-size:.82rem;letter-spacing:.06em;font-weight:500;color:#5A5650;cursor:pointer;position:relative;padding:4px 0;transition:.25s;text-decoration:none}
.lm-nav-links a.lm-nl::after{content:'';position:absolute;left:0;bottom:-2px;width:0;height:1px;background:#526C6F;transition:.3s}
.lm-nav-links a.lm-nl:hover,.lm-nav-links a.lm-nl.lm-on{color:#3C5154}
.lm-nav-links a.lm-nl:hover::after,.lm-nav-links a.lm-nl.lm-on::after{width:100%}
.lm-nav-cta{display:inline-flex!important;align-items:center;gap:8px;background:#526C6F;color:#F9F5F0!important;padding:11px 22px;border-radius:40px;font-size:.78rem;letter-spacing:.08em;font-weight:600;cursor:pointer;transition:.3s}
.lm-nav-cta:hover{background:#3C5154;transform:translateY(-1px)}
.lm-nav-cta::after{display:none}
.lm-burger{display:none;flex-direction:column;gap:5px;cursor:pointer;background:none;border:none}
.lm-burger span{width:24px;height:2px;background:#2A2724;transition:.3s}
.lm-mobile-menu{display:none;flex-direction:column;background:#F9F5F0;border-bottom:1px solid #E2D8C9}
.lm-mobile-menu a{padding:15px 28px;border-top:1px solid #E2D8C9;font-size:.92rem;font-weight:500;cursor:pointer;color:#5A5650;text-decoration:none;font-family:'Raleway',sans-serif}

/* ---------- FOOTER ---------- */
footer.lm-footer{background:#2A2724;color:#CFC8BC;padding:72px 0 28px;margin-top:0}
.lm-foot-grid{display:grid;grid-template-columns:1.6fr 1fr 1fr 1.2fr;gap:40px;margin-bottom:48px}
.lm-foot-brand img{height:54px;margin-bottom:18px}
.lm-fbk{font-family:'Cormorant Garamond',Georgia,serif;font-size:1.6rem;color:#F9F5F0;margin-bottom:14px}
.lm-foot-brand p{font-size:.88rem;line-height:1.7;max-width:320px;color:#A89F90;font-family:'Raleway',sans-serif}
.lm-foot-col h4{font-family:'Raleway',sans-serif;font-size:.76rem;letter-spacing:.16em;text-transform:uppercase;color:#FFBF00;margin-bottom:18px;font-weight:600}
.lm-foot-col a,.lm-foot-col p{display:block;font-size:.88rem;color:#BFB6A8;margin-bottom:11px;cursor:pointer;transition:.2s;text-decoration:none;font-family:'Raleway',sans-serif}
.lm-foot-col a:hover{color:#F9F5F0}
.lm-foot-social{display:flex;gap:12px;margin-top:6px}
.lm-foot-social a{width:38px;height:38px;border-radius:50%;border:1px solid rgba(255,255,255,.16);display:flex;align-items:center;justify-content:center;margin:0}
.lm-foot-social a svg{width:17px;height:17px;fill:#BFB6A8;transition:.2s}
.lm-foot-social a:hover{border-color:#FFBF00}
.lm-foot-social a:hover svg{fill:#FFBF00}
.lm-foot-bottom{border-top:1px solid rgba(255,255,255,.1);padding-top:24px;text-align:center;font-size:.78rem;color:#8C8478;line-height:1.8;font-family:'Raleway',sans-serif}
.lm-foot-bottom a{color:#FFBF00}

@media(max-width:860px){
  .lm-nav-links{display:none}
  .lm-burger{display:flex}
  .lm-topbar .lm-wrap{justify-content:flex-start;flex-wrap:nowrap;animation:lmslide 28s linear infinite;width:max-content}
  .lm-ticker-dup{display:flex}
  .lm-foot-grid{grid-template-columns:1fr;gap:28px}
  .lm-foot-brand p{max-width:none}
}
@keyframes lmslide{from{transform:translateX(0)}to{transform:translateX(-50%)}}
