:root{ --dth-bg:#133e57; }
*{box-sizing:border-box}
.dth-body{margin:0;background:var(--dth-bg);font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial}

/* Header */
.dth-header{background:rgba(0,0,0,0.25);backdrop-filter:saturate(120%) blur(2px);position:sticky;top:0;z-index:50}
.dth-header-inner{max-width:1240px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;padding:12px 16px}
.dth-logo img{display:block}
.dth-logo-text{color:#fff;font-weight:700;font-size:20px;text-transform:uppercase;letter-spacing:1px;text-decoration:none}
.dth-burger{background:none;border:0;display:none;gap:5px;flex-direction:column;align-items:center;justify-content:center;padding:10px;cursor:pointer}
.dth-burger span{display:block;width:24px;height:2px;background:#fff}
.dth-nav .dth-menu{list-style:none;margin:0;padding:0;display:flex;gap:18px}
.dth-nav .dth-menu a{color:#fff;text-decoration:none;padding:8px 6px;display:block}
@media (max-width: 900px){
  .dth-burger{display:flex}
  .dth-nav{position:fixed;inset:0 0 auto 0;top:60px;background:rgba(0,0,0,0.94);transform:translateY(-110%);transition:.2s ease;max-height:calc(100vh - 60px);overflow:auto}
  html.dth-nav-open .dth-nav{transform:translateY(0)}
  .dth-nav .dth-menu{flex-direction:column;padding:16px}
}

/* Containers */
.dth-container{max-width:1280px;margin:26px auto;padding:0 16px}
.dth-outer{margin:20px auto;padding:20px}
.dth-has-frame{border-style:solid;border-width:var(--dth-frame-slice);border-image-source:var(--dth-frame-url);border-image-slice:var(--dth-frame-slice);border-image-repeat:round;border-image-width:var(--dth-frame-slice)}
.dth-wrap{display:flex;flex-direction:column;gap:26px}

/* Hero */
.dth-hero{display:flex;justify-content:center;margin:6px 0 18px 0}
.dth-hero .dth-hero-inner{display:flex;flex-direction:column;align-items:center;text-align:center;gap:12px}
.dth-hero-text{color:#fff;font-size:clamp(18px,2vw,24px)}

/* Grid and cards */
.dth-grid{display:grid;gap:28px}
@media (max-width: 767px){ .dth-grid{grid-template-columns:1fr} }
@media (min-width:768px) and (max-width:1023px){ .dth-grid{grid-template-columns:repeat(var(--dth-cols-t), minmax(0,1fr))} }
@media (min-width:1024px){ .dth-grid{grid-template-columns:repeat(var(--dth-cols-d), minmax(0,1fr))} }

.dth-card{position:relative;text-align:center}
/* Title outside the frame */
.dth-title{margin:0 0 10px 0;font-size:clamp(18px,2.2vw,28px);line-height:1.2;color:#fff;text-align:center;text-transform:uppercase;letter-spacing:.5px}
.dth-title a{color:#fff;text-decoration:none;border-bottom:1px solid rgba(255,255,255,.35)}
/* Frame wrapper only around image+text */
.dth-card-frame{background:rgba(0,0,0,0.15);border-radius:14px;box-shadow:0 6px 24px rgba(0,0,0,0.35);backdrop-filter:saturate(120%) blur(0.5px);padding:20px}
.dth-framed{border-style:solid;border-width:calc(var(--dth-frame-slice)/3);border-image-source:var(--dth-frame-url);border-image-slice:var(--dth-frame-slice);border-image-repeat:round;border-image-width:calc(var(--dth-frame-slice)/3)}
.dth-img{display:flex;justify-content:center;margin:10px 0}
.dth-text{color:#f4f0e2;font-size:15px;line-height:1.6;text-align:center}

/* Specials */
.dth-special{margin-top:10px}

/* Products grid */
.dth-products{display:grid;gap:18px;margin-top:14px}
@media (max-width: 767px){ .dth-products{grid-template-columns:1fr} }
@media (min-width:768px) and (max-width:1023px){ .dth-products{grid-template-columns:repeat(var(--dth-pcols-t), minmax(0,1fr))} }
@media (min-width:1024px){ .dth-products{grid-template-columns:repeat(var(--dth-pcols-d), minmax(0,1fr))} }

.dth-product{position:relative;text-align:center;display:flex;flex-direction:column}
.dth-product-title{color:#fff;margin:4px 0;font-size:18px;font-weight:700;min-height:1.2em;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.dth-product .dth-card-frame{display:flex;flex-direction:column;height:100%}
.dth-product .dth-card-frame .dth-inner{display:flex;flex-direction:column;gap:8px;height:100%}
.dth-product-media{position:relative;width:100%;aspect-ratio: var(--dth-prod-ratio);overflow:hidden;border-radius:12px;margin-bottom:10px;display:flex;align-items:center;justify-content:center}
.dth-product-media img{width:100%;height:100%;object-fit:cover;display:block}
.dth-badge{position:absolute;top:10px;left:10px;background:#e64a19;color:#fff;font-weight:700;font-size:12px;padding:6px 10px;border-radius:999px;letter-spacing:.5px}
.dth-price{color:#ffe39b;margin-bottom:6px;min-height:1.2em}
.dth-desc{color:#f4f0e2;font-size:14px;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;min-height:calc(1em * 1.4 * 3)}
.dth-wa{display:inline-flex;align-items:center;gap:8px;margin-top:auto;padding:8px 12px;border-radius:999px;background:#25D366;color:#093;font-weight:700;text-decoration:none}
.dth-wa-ico{display:inline-block;vertical-align:middle}

/* Footer separate (no frame) */
.dth-footer{margin:30px auto 0 auto;max-width:1280px;padding:20px 16px;color:#f4f0e2;text-align:center;background:rgba(0,0,0,0.25);border-radius:14px}
.dth-footer a{color:#fff;text-decoration:underline}
