/* Lecomax — premium brand-store layout */
:root{
  --bg:#ffffff;
  --text:#0f172a;
  --muted: rgba(15, 23, 42, 0.65);
  --line: rgba(0,0,0,.08);
  --shadow: 0 24px 48px -12px rgba(0,0,0,.15);
  --accent: #3b82f6;
  --accent-glow: rgba(59, 130, 246, 0.5);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color:var(--text);
  background: #ffffff;
  overflow-x: hidden;
}

a{color:inherit; text-decoration:none}
.container{width:min(1240px, 92%); margin:0 auto}
.muted{color:var(--muted)}
.tiny{font-size:.86rem}

/* Top bar */
.topbar{
  border-bottom:1px solid var(--line);
  background: var(--bg);
  font-size: 0.82rem;
  font-weight: 500;
}
.topbar__inner{
  display:flex; justify-content:space-between; align-items:center;
  padding:8px 0;
}
.topbar__right{display:flex; gap:20px; align-items:center}
.toplink{
  display:flex; align-items:center; gap:6px;
  color:var(--muted); opacity:0.9;
  transition: all 0.2s;
}
.toplink:hover{color:var(--text); opacity:1}
.toplink svg { stroke-width: 2px; opacity: 0.7; }
.toplink:hover svg { opacity: 1; }
.dot{display:none}

/* Header */
.header{
  position:sticky; top:0; z-index:50;
  border-bottom:1px solid var(--line);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: all 0.3s ease;
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; padding:14px 0;
}

.brand{display:flex; gap:14px; align-items:center}
.brand__logo{
  width:48px; height:48px; 
  border-radius:12px;
  object-fit: contain;
  background: #fff;
  padding: 4px; /* Give space for the logo */
  border:1px solid rgba(0,0,0,0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.brand:hover .brand__logo {
  transform: scale(1.05) rotate(-2deg);
}
.brand__text{display:grid; line-height:1.1}
.brand__name{font-weight:800; letter-spacing:-0.03em; font-size:1.25rem}
.brand__sub{font-size:.8rem; color:var(--muted); margin-top:2px; font-weight:500}
.brand--foot .brand__sub{display:none}

.actions{display:flex; gap:10px; align-items:center}
.searchbox{position:relative; width:min(360px, 42vw)}
.searchbox input{
  width:100%;
  padding:12px 40px 12px 14px;
  border-radius: 14px;
  border:1px solid var(--line);
  background: rgba(0,0,0,.04);
  color:var(--text);
  outline:none;
  transition: all 0.2s;
}
.searchbox input:focus{
  border-color: rgba(59, 130, 246,.5);
  background: rgba(59, 130, 246, 0.05);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}
.searchbox__icon{
  position:absolute; right:12px; top:50%;
  transform:translateY(-50%);
  opacity:.8;
}

.iconbtn{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border:1px solid var(--line);
  background: rgba(0,0,0,.03);
  color:var(--text);
  border-radius: 14px;
  padding:0;
  cursor:pointer;
  transition: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.iconbtn:hover{
  background: rgba(0,0,0,.06);
  border-color: rgba(0,0,0,.15);
  transform: translateY(-1px);
}
.iconbtn:active{transform: translateY(0);}

.badge{
  position: absolute;
  top: -4px;
  right: -4px;
  display:flex; align-items:center; justify-content: center;
  min-width:18px; height:18px; padding:0 5px;
  border-radius:99px;
  background: var(--accent);
  color: #fff;
  border: 2px solid #ffffff; /* Match bg for cutout effect */
  font-size:.65rem;
  font-weight: 800;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  z-index: 2;
  margin: 0;
}

.burger{
  display:none; 
  width:44px; height:44px; 
  border-radius:14px; 
  border:1px solid rgba(0,0,0,.08); 
  background: transparent; 
  cursor:pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  transition: all 0.2s;
}
.burger:hover { background: rgba(0,0,0,.04); }
.burger span{
  display:block; 
  width: 20px; 
  height:2px; 
  background:var(--text); 
  border-radius: 4px;
  transition: all 0.2s;
}
.burger span:nth-child(2) { width: 14px; margin-left: 6px; }
.burger:hover span:nth-child(2) { width: 20px; margin-left: 0; }

/* Dropdowns */
.chip{
  display:inline-flex; align-items:center; gap:8px;
  border:1px solid transparent;
  background: transparent;
  color:var(--muted);
  font-size: 0.82rem; font-weight: 500;
  padding:6px 10px;
  border-radius: 8px;
  cursor:pointer;
  transition: all 0.2s;
}
.chip:hover{
  background: rgba(0,0,0,.04);
  color:var(--text);
}
.chip[aria-expanded="true"] {
  background: rgba(0,0,0,.06);
  color:var(--text);
}
.chev{opacity:.6; transition: transform 0.2s; width:12px; height:12px;}
.chip[aria-expanded="true"] .chev,
.nav__btn[aria-expanded="true"] .chev { transform: rotate(180deg); }

.dropdown{
  position:absolute;
  margin-top:6px;
  width: 180px;
  border:1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 16px;
  padding: 6px;
  box-shadow: 0 10px 40px -10px rgba(0,0,0,0.1);
  display:none; 
  z-index: 100;
  animation: fadeScale 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes fadeScale {
  from { opacity:0; transform: scale(0.96) translateY(-4px); }
  to { opacity:1; transform: scale(1) translateY(0); }
}
.dropdown.show{display:block}
.dropdown__item{
  display:block; width:100%; text-align:left;
  padding:10px 14px;
  background:none; border:none;
  font-size:.9rem; color:var(--text);
  cursor:pointer;
  border-radius: 10px;
  transition: background 0.1s;
}
.dropdown__item:hover{background: rgba(0,0,0,.04)}
.topbar__left{position:relative}

/* Nav + mega menu */
.nav{display:flex; gap:10px; align-items:center}
.nav__link{
  color:var(--text); font-weight:600; font-size: 0.95rem; 
  padding: 10px 16px; border-radius: 99px;
  border: 1px solid transparent;
  transition: all 0.2s;
  opacity: 0.75;
}
.nav__link:hover{
  opacity: 1;
  background: rgba(0,0,0,.04);
  border-color: rgba(0,0,0,.06);
}
.nav__group{position:relative}
.nav__btn{
  border: 1px solid transparent;
  background: transparent;
  color:var(--text);
  font-weight:700;
  font-size: 0.95rem;
  cursor:pointer;
  padding:10px 16px;
  border-radius: 99px;
  transition: all 0.2s;
  opacity: 0.8;
  display: flex; align-items: center; gap: 6px;
}
.nav__btn:hover, .nav__btn[aria-expanded="true"]{
  opacity: 1; 
  background: rgba(0,0,0,.04);
  border-color: rgba(0,0,0,.06);
}
.mega{
  position:absolute;
  left:0;
  top: calc(100% + 14px);
  width: min(920px, 92vw);
  border:1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.15);
  padding:18px;
  display:none;
  animation: slideDown 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.mega.show{display:block}
.mega__grid{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr 1.2fr;
  gap:12px;
}
.mega__grid--small{grid-template-columns: 1fr 1fr;}
.mega__col{
  border:1px solid rgba(0,0,0,.08);
  background: rgba(0,0,0,.02);
  border-radius: 18px;
  padding:14px;
}
.mega__title{font-weight:900; margin-bottom:10px}
.mega__link{
  display:block;
  padding:10px 10px;
  border-radius: 14px;
  color:var(--muted);
}
.mega__link:hover{color:var(--text); background: rgba(0,0,0,.04)}
.mega__promo{display:flex}
.promoCard{
  flex:1;
  border-radius: 18px;
  border:1px solid rgba(76,195,255,.15);
  background:
    radial-gradient(420px 220px at 20% 10%, rgba(56, 189, 248,.15), transparent 60%),
    radial-gradient(420px 220px at 80% 20%, rgba(139, 92, 246,.12), transparent 60%),
    rgba(0,0,0,.02);
  padding:16px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.promoCard__badge{
  display:inline-block;
  width:max-content;
  border:1px solid rgba(16, 185, 129,.3);
  background: rgba(16, 185, 129,.1);
  color: #059669;
  padding:6px 10px;
  border-radius: 999px;
  font-weight:800;
  font-size:.82rem;
}
.promoCard__headline{font-weight:900; font-size:1.1rem; margin-top:10px}
.promoCard__text{color:var(--muted); line-height:1.7; margin:10px 0 14px}
.promoMini{
  border-radius: 18px;
  border:1px solid rgba(0,0,0,.08);
  background: rgba(0,0,0,.02);
  padding:14px;
}
.promoMini__kicker{color:var(--muted); font-weight:800}
.promoMini__title{font-weight:900; margin-top:8px}
.promoMini__text{color:var(--muted); margin-top:6px; line-height:1.7}

/* Hero */
.hero{padding:26px 0 10px}
.hero__inner{display:grid; gap:16px}
.heroTabs{display:flex; gap:10px; flex-wrap:wrap}
.heroTab{
  border:1px solid var(--line);
  background: rgba(0,0,0,.03);
  color:var(--muted);
  padding:10px 12px;
  border-radius: 999px;
  cursor:pointer;
  font-weight:800;
}
.heroTab.is-active{
  color:var(--text);
  border-color: rgba(76,195,255,.45);
  background: rgba(76,195,255,.10);
}

.heroGrid{
  display:grid;
  grid-template-columns: 1.4fr .6fr;
  gap:14px;
  align-items:stretch;
}

.slider{
  border:1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(0,0,0,.03), rgba(0,0,0,.01));
  box-shadow: 0 20px 50px -10px rgba(0,0,0,0.1);
  overflow:hidden;
  position:relative;
  min-height: 420px;
}
.slider__track{
  display:flex;
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
  height:100%;
}
.slide{
  min-width:100%;
  padding:36px;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:24px;
  align-items:center;
  background:
    radial-gradient(600px 400px at 0% 0%, rgba(56, 189, 248, 0.25), transparent 60%),
    radial-gradient(600px 400px at 100% 100%, rgba(139, 92, 246, 0.2), transparent 60%);
}
.slide__kicker{
  display:inline-block;
  width:max-content;
  border:1px solid rgba(0,0,0,.12);
  background: rgba(0,0,0,.05);
  color:var(--muted);
  padding:6px 12px;
  border-radius: 999px;
  font-weight:700;
  font-size:.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}
.slide h1{
  margin:12px 0 16px;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  letter-spacing:-.03em;
  line-height:1.05;
  background: linear-gradient(to right, #111827, rgba(17, 24, 39, 0.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* Image Slide Variants */
.slide--image {
  display: flex !important;
  align-items: center;
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 36px 48px;
}
.slide--image::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(5,8,15,0.92) 0%, rgba(5,8,15,0.6) 50%, rgba(5,8,15,0) 100%);
  z-index: 1;
}
.slide__content {
  position: relative; z-index: 2;
  max-width: 600px;
}
.slide__title--large {
  margin:12px 0 16px;
  font-size: clamp(2.8rem, 5vw, 4.2rem) !important;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.slide__text--contrast {
  color: #e2e8f0 !important;
  font-size: 1.1rem;
  line-height: 1.6;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
  margin-bottom: 24px;
}
.btn--blur {
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 18px; border-radius: 14px; cursor:pointer; font-weight:700;
  background: rgba(0,0,0,0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0,0,0,0.1);
  color: var(--text);
  transition: all 0.2s;
}
.btn--blur:hover {
  background: rgba(0,0,0,0.1);
  transform: translateY(-1px);
}

.slide p{margin:0; color:var(--muted); line-height:1.8; max-width: 54ch}
.slide__cta{display:flex; gap:10px; margin-top:14px; flex-wrap:wrap}
.visual{
  border:1px solid rgba(0,0,0,.10);
  background: rgba(0,0,0,.03);
  border-radius: 22px;
  padding:18px;
  height: 100%;
  display:grid;
  align-content:center;
}
.visual__stack{display:grid; gap:10px}
.visual__row{display:flex; gap:10px; flex-wrap:wrap}
.tile{
  flex:1 1 110px;
  min-height: 78px;
  border-radius: 18px;
  border:1px solid rgba(0,0,0,.10);
  background: rgba(0,0,0,.03);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 12px;
}
.tile__emoji{font-size:1.4rem}
.tile__name{font-weight:900}
.tile__meta{color:var(--muted); font-size:.86rem; margin-top:2px}
.tile__price{font-weight:900}
.brandGlow{
  background:
    radial-gradient(400px 250px at 30% 30%, rgba(76,195,255,.22), transparent 60%),
    radial-gradient(420px 260px at 70% 10%, rgba(138,92,255,.18), transparent 60%);
  border-color: rgba(76,195,255,.22);
}

.slider__nav{
  position:absolute; top:50%; transform:translateY(-50%);
  width:44px; height:44px;
  border-radius: 16px;
  border:1px solid rgba(0,0,0,.1);
  background: rgba(255,255,255,0.9);
  color:var(--text);
  cursor:pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.slider__nav:hover{background: #fff; transform: translateY(-50%) scale(1.05);}
.slider__nav.prev{left:12px}
.slider__nav.next{right:12px}

.slide__overlay-btn {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: #111827;
  padding: 12px 24px;
  border-radius: 99px;
  font-weight: 600;
  font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 10;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
}
.slide__overlay-btn:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}
@media (max-width: 520px){
  .slide__overlay-btn {
    bottom: 20px;
    left: 20px;
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}


.slider__dots{
  position:absolute; left:0; right:0; bottom:14px;
  display:flex; justify-content:center; gap:8px;
}
.dotBtn{
  width:10px; height:10px; border-radius:999px;
  border:1px solid rgba(0,0,0,.2);
  background: rgba(0,0,0,.1);
  cursor:pointer;
}
.dotBtn.is-active{background: rgba(59, 130, 246,.8); border-color: rgba(59, 130, 246, 1)}

/* Side cards */
.sideCards{display:grid; gap:12px}
.sideCard{
  border:1px solid var(--line);
  border-radius: 22px;
  background: rgba(0,0,0,.02);
  box-shadow: 0 12px 40px rgba(0,0,0,.05);
  padding:16px;
}
.sideCard__kicker{color:var(--muted); font-weight:800}
.sideCard__title{font-weight:900; font-size:1.2rem; margin-top:10px}
.sideCard__text{color:var(--muted); margin-top:6px; line-height:1.7}
.sideCard--alt{
  border-color: rgba(68,242,166,.22);
  background:
    radial-gradient(360px 220px at 20% 10%, rgba(68,242,166,.16), transparent 60%),
    rgba(0,0,0,.02);
}

/* Flash Card */
.flash-card {
  border: 1px solid #ef4444;
  border-radius: 24px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 12px 40px rgba(239, 68, 68, 0.15);
  display: flex; flex-direction: column; gap: 16px;
  position: relative; overflow: hidden;
}
.flash-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at top right, rgba(239, 68, 68, 0.1), transparent 70%);
  pointer-events: none;
}
.flash-card__header {
  display: flex; justify-content: space-between; align-items: center;
}
.flash-card__badge {
  background: #ef4444; color: #fff; font-weight: 800; font-size: 0.75rem; 
  padding: 4px 10px; border-radius: 6px; letter-spacing: 0.05em;
  animation: flashPulse 1.5s infinite;
}
@keyframes flashPulse { 0% { opacity: 1; } 50% { opacity: 0.7; } 100% { opacity: 1; } }

.flash-card__timer {
  font-family: monospace; font-weight: 700; color: #ef4444; font-size: 1rem;
  display: flex; align-items: center; gap: 2px;
}

.flash-card__content { display: flex; gap: 16px; align-items: center; }
.flash-card__img {
  width: 80px; height: 80px; background: #f8fafc; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.flash-card__img img { width: 100%; height: 100%; object-fit: contain; }

.flash-card__info { display: flex; flex-direction: column; gap: 4px; }
.flash-card__info h3 { font-size: 0.95rem; font-weight: 700; margin: 0; line-height: 1.2; }

.flash-card__price { margin-top: 4px; display: flex; align-items: baseline; gap: 6px; }
.flash-card__price .new { color: #ef4444; font-weight: 800; font-size: 1.1rem; }
.flash-card__price .old { color: var(--muted); font-size: 0.85rem; text-decoration: line-through; }

.flash-card__progress {
  height: 6px; background: #fee2e2; border-radius: 99px; margin-top: 8px; position: relative; width: 100%; overflow: hidden;
}
.flash-card__progress .bar {
  height: 100%; bg: #ef4444; background: #ef4444; border-radius: 99px;
}
.flash-card__stock { font-size: 0.75rem; color: #ef4444; font-weight: 600; margin-top: 4px; }

.benefit-list{ display:grid; gap:12px; margin-top:14px; }
.benefit-item{
  display:flex; align-items:center; gap:12px;
  padding: 10px;
  border-radius: 12px;
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.2s;
}
.benefit-item:hover{ transform: translateX(2px); background: rgba(255,255,255,0.8); }
.benefit-icon{
  width: 38px; height: 38px;
  display:flex; align-items:center; justify-content:center;
  background: var(--text);
  color: var(--bg);
  border-radius: 10px;
  flex-shrink: 0;
}
.benefit-title{ font-weight:700; font-size: 0.95rem; line-height: 1.2; }
.benefit-desc{ font-size: 0.8rem; color: var(--muted); line-height: 1.2; margin-top:2px; }

/* Sections */
.section{padding:42px 0}
.section--alt{
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background: rgba(0,0,0,.015);
}
.section--tight{padding:28px 0 38px}
.section__head{
  display:flex; justify-content:space-between; align-items:flex-end;
  gap:14px; flex-wrap:wrap;
  margin-bottom:16px;
}
h2{margin:0; font-size:1.65rem}
.filters{
  display: flex; 
  gap: 12px; 
  align-items: center; 
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
  max-width: 100%;
  scrollbar-width: none; /* Firefox */
  mask-image: linear-gradient(to right, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, black 90%, transparent 100%);
}
.filters::-webkit-scrollbar { display: none; }
.pillBtn{
  flex-shrink: 0;
  border:1px solid var(--line);
  background: rgba(0,0,0,.03);
  color:var(--muted);
  padding:10px 18px;
  border-radius: 99px;
  cursor:pointer;
  font-weight:700;
  white-space: nowrap;
  transition: all 0.2s;
}
.pillBtn:hover{ background: rgba(0,0,0,.06); color: var(--text); }
.pillBtn.is-active{
  border-color: var(--accent); 
  background: var(--accent); 
  color:#fff; 
  box-shadow: 0 4px 12px var(--accent-glow);
}
.select{
  flex-shrink: 0;
  border:1px solid var(--line);
  background: #fff;
  color:var(--text);
  padding:10px 16px;
  border-radius: 99px;
  outline:none;
  font-weight: 600;
  cursor: pointer;
}

/* Category “places” */
.catGrid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:16px;
}
.catCard{
  border:1px solid #f1f5f9;
  border-radius: 28px;
  padding:24px;
  display:flex; flex-direction:column; justify-content:space-between;
  gap:12px;
  position:relative;
  overflow:hidden;
  transition: all .3s cubic-bezier(0.34, 1.56, 0.64, 1);
  min-height: 240px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.catCard:hover{
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.1);
  z-index: 2;
}
.catCard__top{display:flex; justify-content:space-between; align-items:flex-start; z-index: 2;}
.catCard__badge{
  background: #fff;
  color: var(--text);
  padding:6px 12px;
  border-radius: 99px;
  font-weight:800; font-size:.7rem;
  letter-spacing: 0.05em; text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.catCard__img{
  width: 100px; height: 100px; object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.15));
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.catCard:hover .catCard__img{ transform: scale(1.15) rotate(6deg); }

.catCard__title{font-weight:800; font-size:1.3rem; margin-bottom: 4px; z-index: 2; letter-spacing:-0.02em; color:#0f172a}
.catCard__text{color:var(--muted); font-size:0.9rem; line-height:1.5; z-index: 2; font-weight:500}
.catCard__cta{
  margin-top: auto; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; color: var(--accent); font-size: 0.95rem;
}
.catCard__cta::after { content: '→'; transition: transform 0.2s; }
.catCard:hover .catCard__cta { gap: 12px; }
.catCard:hover .catCard__cta::after { transform: translateX(4px); }

/* Modern Gradient Backgrounds */
.catCard::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.8), transparent 70%);
  z-index: 1;
}
.catCard--tech { background: linear-gradient(145deg, #f0f9ff, #e0f2fe); }
.catCard--wear { background: linear-gradient(145deg, #f5f3ff, #ede9fe); }
.catCard--shoe { background: linear-gradient(145deg, #f0fdf4, #dcfce7); }
.catCard--bag { background: linear-gradient(145deg, #fff7ed, #ffedd5); }


/* Product Grid Wrapper for Floating Nav */
.grid-wrapper {
  position: relative;
  /* Ensure hover on wrapper (which includes arrows) keeps arrows visible if we want auto-hide later */
}

/* Product grid (Horizontal Slider) */
.grid{
  display: flex;
  overflow-x: auto;
  gap: 24px;
  padding: 10px 4px 40px 4px; /* Space for shadows/hover */
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Firefox */
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  mask-image: linear-gradient(to right, transparent 0%, black 2%, black 98%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 2%, black 98%, transparent 100%);
}
.grid::-webkit-scrollbar { display: none; }

.card{
  flex: 0 0 300px; /* Slightly narrower for vertical vertical */
  scroll-snap-align: start;
  display: flex;
  flex-direction: column; /* Vertical Layout */
  border:1px solid rgba(0,0,0,0.06);
  background: #ffffff;
  border-radius: 28px;
  overflow:hidden;
  transition: all .4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.05);
  margin-bottom: 0;
}
.card:hover{
  transform: translateY(-8px); 
  box-shadow: 0 24px 60px -12px rgba(0,0,0,0.12);
}
.card__img{
  width: 100%;
  height: 260px; /* Big photo area */
  flex-shrink: 0;
  display:grid; place-items:center;
  font-size: 6rem; /* Big Emoji */
  background: #f8fafc;
  transition: transform 0.5s;
  position: relative;
  z-index: 0;
}
.card__img::after {
  content:''; position: absolute; inset:0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.4), transparent 70%);
}
.card:hover .card__img { transform: scale(1.05); }

.card__body{
  padding: 20px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  z-index: 1;
  background: #fff;
}
.card__top{
  display:flex; justify-content:space-between; align-items:center; 
  margin-bottom: 6px;
}
.fav-btn {
  background: rgba(0,0,0,0.03);
  border-radius: 50%;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border: none;
  cursor: pointer;
  color: var(--muted);
  transition: all 0.2s;
}
.fav-btn:hover { background: #fee2e2; color: #ef4444; transform: scale(1.1); }
.fav-btn:active { transform: scale(0.9); }

.tag{
  font-size:.65rem;
  color: var(--accent);
  background: rgba(59, 130, 246, 0.1);
  padding:4px 10px;
  border-radius:6px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
}
.rating{ display: none; } /* Hide rating for cleaner look, or move it */

.card h3{
  margin: 0 0 4px; 
  font-size:1.05rem; 
  font-weight: 700; 
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1.3;
}
.price{display:flex; align-items:center; gap:8px; margin-bottom: 12px;}
.price strong{font-size:1.25rem; font-weight: 800; color: var(--text);}
.price s{color:#94a3b8; font-size:.9rem; font-weight: 500;}

.card__actions{display:flex; gap:8px; margin-top:auto;}
.card__actions .btn {
  padding: 0 16px;
  height: 40px;
  font-size: 0.9rem;
  border-radius: 12px;
}
.w100{flex: 1;}


/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  border:1px solid rgba(0,0,0,.12);
  background: rgba(0,0,0,.04);
  color:var(--text);
  padding:12px 18px;
  border-radius: 14px;
  cursor:pointer;
  font-weight:700;
  font-size: 0.95rem;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn:hover{background: rgba(0,0,0,.08); transform: translateY(-1px);}
.btn:active{transform: translateY(1px);}
.btn--primary{
  border: none;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
  color: #fff;
}
.btn--primary:hover {
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
}
.btn--ghost{background: transparent; border: 1px solid rgba(0,0,0,0.1);}
.btn--ghost:hover{background: rgba(0,0,0,0.05); border-color: rgba(0,0,0,0.2);}

/* Grid Nav */
.nav-arrow {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.08);
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--text);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 10;
}
.nav-arrow:hover { 
  background: var(--text); 
  color: #fff; 
  border-color: var(--text); 
  transform: scale(1.1); 
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.nav-arrow:active { transform: scale(0.95); }

.nav-arrow--floating {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
/* Move arrows slightly outside the grid if space permits, or overlay them */
.nav-arrow--floating.prev { left: -24px; }
.nav-arrow--floating.next { right: -24px; }

@media (max-width: 1340px) {
  /* On smaller screens (but still desktop-ish), move arrows inside or hide */
  .nav-arrow--floating.prev { left: 10px; }
  .nav-arrow--floating.next { right: 10px; }
}
@media (max-width: 768px){ 
  .nav-arrow--floating { display:none; } /* Hide on touch devices */
}

/* Quotes */
.quotes{ display:grid; grid-template-columns: repeat(3, 1fr); gap:20px; margin-top: 20px; }
.quote{
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  border-radius: 24px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.quote:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.quote__stars{ display:flex; gap:4px; }
.quote__title{ font-weight:700; line-height:1.5; font-size: 1.1rem; color: var(--text); }
.quote__foot{ display: flex; align-items: center; gap: 14px; margin-top: auto; padding-top: 20px; border-top: 1px solid rgba(0,0,0,0.04); }
.quote__avatar{ 
  width: 48px; height: 48px; 
  border-radius: 50%; 
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem;
}
.quote__name{ font-weight: 800; font-size: 0.95rem; display: block; margin-bottom: 2px;}
.quote__ver{ font-size: 0.85rem; color: var(--muted); display:flex; align-items:center; gap:6px; font-weight: 500;}
.quote__ver::before{
  content:''; display:inline-block; width:14px; height:14px; 
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2310b981'%3E%3Cpath d='M12 2L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-3zm-2 16l-4-4 1.41-1.41L10 15.17l6.59-6.59L18 10l-8 8z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
}

/* Contact Card (After Quotes) */
.contact-card {
  margin-top: 60px;
  background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 
    0 20px 40px -6px rgba(0, 0, 0, 0.08), 
    0 10px 15px -3px rgba(0, 0, 0, 0.03),
    inset 0 0 0 1px rgba(255,255,255,1);
  border-radius: 28px;
  padding: 48px 24px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content:''; position: absolute; top:0; left:0; right: 0; height:6px;
  background: linear-gradient(90deg, var(--accent) 0%, #a855f7 100%);
}
.contact-card__item {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: rgba(59, 130, 246, 0.08);
  color: var(--accent);
  padding: 10px 20px;
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.contact-card h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0;
  background: linear-gradient(135deg, var(--text) 0%, #475569 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.25;
}
.contact-card__actions { 
  display: flex; gap: 16px; flex-wrap: wrap; margin-top: 16px; 
  width: 100%; justify-content: center;
}
.contact-card__actions .btn {
  height: 54px;
  padding: 0 32px;
  font-size: 1.05rem;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.contact-card__actions .btn--primary {
  background: linear-gradient(135deg, var(--accent) 0%, #2563eb 100%);
}

/* Footer */
.footer{padding:30px 0}
.footer__inner{display:flex; justify-content:space-between; gap:18px; flex-wrap:wrap; border-top:1px solid var(--line); padding-top:22px}
.footCols{display:flex; gap:34px; flex-wrap:wrap}
.footCol{display:grid; gap:10px}
.footCol__title{font-weight:900}
.footCol a{color:var(--muted)}
.footCol a:hover{color:var(--text)}

/* Modal + drawer */
.modal, .drawer{
  position:fixed; inset:0; display:none; z-index:80;
  transition: all 0.3s;
}
.modal.show, .drawer.show{display:block}
.modal__bg, .drawer__bg{
  position:absolute; inset:0; 
  background: rgba(0,0,0,.6); 
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal__panel{
  position:relative;
  width:min(760px, 92%);
  margin: 10vh auto 0;
  border-radius: 24px;
  border:1px solid rgba(0,0,0,.1);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 40px 80px rgba(0,0,0,0.2);
  padding:24px;
  animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.modal__close{
  position:absolute; top:20px; right:20px;
  border:1px solid rgba(0,0,0,.1);
  background: rgba(0,0,0,.05);
  color:var(--text);
  border-radius: 12px;
  padding:8px 12px;
  cursor:pointer;
  transition: all 0.2s;
}
.modal__close:hover{background: rgba(0,0,0,.1)}

.drawer__panel{
  position:absolute; right:0; top:0; bottom:0;
  width:min(480px, 90vw);
  border-left:1px solid rgba(0,0,0,.1);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  box-shadow: -20px 0 60px rgba(0,0,0,0.15);
  display:flex; flex-direction:column;
  animation: slideInRight 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes slideInRight { from { transform: translateX(100%); } to { transform: translateX(0); } }

.drawer__head{
  display:flex; justify-content:space-between; align-items:center; 
  padding:20px 24px; 
  border-bottom:1px solid var(--line);
  background: rgba(0,0,0,.02);
}
.drawer__title{font-weight:800; font-size: 1.4rem; letter-spacing: -0.02em;}

.drawer__body{
  padding:24px; 
  overflow-y:auto; 
  display:flex; flex-direction: column; gap:16px;
  flex: 1;
}

.drawer__foot{
  padding:24px; 
  border-top:1px solid var(--line); 
  display:grid; gap:16px;
  background: rgba(255, 255, 255, 0.5);
}

.cartItem{
  border:1px solid rgba(0,0,0,.08);
  background: rgba(0,0,0,.03);
  border-radius: 20px;
  padding:16px;
  display:grid; gap:10px;
  transition: background 0.2s;
}
.cartItem:hover{background: rgba(0,0,0,.05);}

.cartItem__top{display:flex; justify-content:space-between; gap:12px; align-items: flex-start;}
.cartItem__name{font-weight:700; font-size: 1.05rem; line-height: 1.4;}

.qty{display:flex; align-items:center; gap:4px; background: rgba(0,0,0,0.05); padding: 4px; border-radius: 12px; border: 1px solid rgba(0,0,0,0.05);}
.qty button{
  width:28px; height:28px;
  border-radius: 8px;
  border:none;
  background: rgba(0,0,0,.05);
  color:var(--text);
  cursor:pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.qty button:hover{background: rgba(0,0,0,.1);}
.qty span{min-width:24px; text-align:center; font-weight: 600; font-size: 0.9rem;}

.totals{display:flex; justify-content:space-between; align-items:flex-end; margin-bottom: 8px;}
.totals .muted { font-size: 1.1rem; }
.totals strong { font-size: 2rem; letter-spacing: -0.03em; line-height: 1; }


/* Toast Notification */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
  color: #111827;
  padding: 12px 24px;
  border-radius: 99px;
  font-weight: 600;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 200;
  pointer-events: none;
  font-size: 0.95rem;
}
.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* Responsive */
@media (max-width: 980px){
  .nav{
    display:none; /* Initially hidden */
    flex-direction: column;
    position: absolute;
    top: 70px; left: 2%; right: 2%; width: 96%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.15);
    z-index: 100;
    align-items: stretch;
    gap: 8px;
    animation: slideDownMobile 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .nav__link, .nav__btn {
    width: 100%;
    justify-content: flex-start;
    padding: 14px 18px;
    font-size: 1.05rem;
    border-radius: 16px;
  }
  .nav__btn { justify-content: space-between; }
  .nav__group { position: static; } /* Allow mega menu to expand within list */
  
  /* Mobile Mega Menu */
  .mega {
    position: static;
    width: 100%;
    box-shadow: none;
    border: 1px solid rgba(0,0,0,0.06);
    background: rgba(0,0,0,0.02);
    margin-top: 10px;
    padding: 12px;
  }
  .mega__grid { grid-template-columns: 1fr; gap: 12px; }
  .mega__col { background: transparent; border: none; padding: 0; }
  .mega__title { 
    margin: 12px 0 6px; 
    font-size: 0.85rem; 
    text-transform: uppercase; 
    letter-spacing: 0.05em; 
    color: var(--muted); 
    opacity: 0.8;
  }
  .mega__link { padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.04); border-radius: 0; }
  .mega__link:last-child { border-bottom: none; }
  .mega__promo { display: none; } /* Hide complicated promos on mobile */

  .burger{display:flex}
  .searchbox{width:min(420px, 60vw)}
  .heroGrid{grid-template-columns: 1fr}
  .grid{grid-template-columns: repeat(2, 1fr)}
  .catGrid{grid-template-columns: repeat(2, 1fr)}
  .quotes{grid-template-columns: 1fr}
  .slider{min-height: 380px}
}

@keyframes slideDownMobile {
  from { opacity: 0; transform: translateY(-20px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 520px){
  .grid{grid-template-columns: 1fr}
  .catGrid{grid-template-columns: repeat(2, 1fr)} /* Keep grid 2-col on mobile */
  .searchbox{display:none}
  .slide{grid-template-columns: 1fr}
  .slider{min-height: 320px; border-radius: 16px}
  .slider img { border-radius: 12px !important; }
  
  .catCard { min-height: 200px; padding: 18px; }
  .catCard__img { width: 70px; height: 70px; }
  .catCard__title { font-size: 1.1rem; }
  .catCard__badge { font-size: 0.6rem; padding: 4px 8px; }
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #25d366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  z-index: 999;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.whatsapp-float svg { width: 32px; height: 32px; fill: currentColor; } 
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6);
  background-color: #20bd5a;
}
.whatsapp-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid #25d366;
  animation: pulse-border 1.5s linear infinite;
  z-index: -1;
}
@keyframes pulse-border {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}
/ *   E n h a n c e d   C a r d   S t y l e s   * / 
 
 . c a t C a r d _ _ v i s u a l   { 
 
     p o s i t i o n :   r e l a t i v e ; 
 
     / *   R e m o v e d   s t a t i c   w i d t h / h e i g h t   t o   l e t   c h i l d r e n   c o n t r o l   i t   o r   f l e x   * / 
 
 } 
 
 
 
 . c a t C a r d _ _ i m g - - h e r o   { 
 
     w i d t h :   2 2 0 p x ; 
 
     h e i g h t :   2 2 0 p x ; 
 
     m a r g i n :   - 3 0 p x   - 4 0 p x   0   0 ; 
 
     t r a n s f o r m :   r o t a t e ( 1 2 d e g ) ; 
 
     f i l t e r :   d r o p - s h a d o w ( 0   2 0 p x   3 0 p x   r g b a ( 0 , 0 , 0 , 0 . 1 5 ) ) ; 
 
     t r a n s i t i o n :   t r a n s f o r m   0 . 4 s   c u b i c - b e z i e r ( 0 . 3 4 ,   1 . 5 6 ,   0 . 6 4 ,   1 ) ; 
 
 } 
 
 
 
 . c a t C a r d : h o v e r   . c a t C a r d _ _ i m g - - h e r o   { 
 
     t r a n s f o r m :   r o t a t e ( 0 d e g )   s c a l e ( 1 . 1 ) ; 
 
 } 
 
 
 
 . c a t C a r d _ _ f a b   { 
 
     p o s i t i o n :   a b s o l u t e ; 
 
     b o t t o m :   1 5 p x ; 
 
     r i g h t :   2 5 p x ; 
 
     w i d t h :   4 0 p x ; 
 
     h e i g h t :   4 0 p x ; 
 
     b o r d e r - r a d i u s :   5 0 % ; 
 
     d i s p l a y :   f l e x ; 
 
     a l i g n - i t e m s :   c e n t e r ; 
 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
 
     b o x - s h a d o w :   0   4 p x   1 2 p x   r g b a ( 5 9 ,   1 3 0 ,   2 4 6 ,   0 . 3 ) ; 
 
     b a c k g r o u n d :   v a r ( - - a c c e n t ) ; 
 
     c o l o r :   # f f f ; 
 
     t r a n s i t i o n :   t r a n s f o r m   0 . 2 s   c u b i c - b e z i e r ( 0 . 1 6 ,   1 ,   0 . 3 ,   1 ) ,   b o x - s h a d o w   0 . 2 s ; 
 
     z - i n d e x :   1 0 ; 
 
 } 
 
 
 
 . c a t C a r d : h o v e r   . c a t C a r d _ _ f a b   { 
 
     t r a n s f o r m :   s c a l e ( 1 . 1 ) ; 
 
     b o x - s h a d o w :   0   8 p x   2 0 p x   r g b a ( 5 9 ,   1 3 0 ,   2 4 6 ,   0 . 4 ) ; 
 
 } 
 
 
 
 / *   S o f t   B u t t o n   S t y l e   * / 
 
 . b t n - - s o f t   { 
 
     b a c k g r o u n d :   # f 1 f 5 f 9 ; 
 
     c o l o r :   v a r ( - - t e x t ) ; 
 
     b o r d e r :   n o n e ; 
 
     f o n t - w e i g h t :   7 0 0 ; 
 
     t r a n s i t i o n :   a l l   0 . 2 s   e a s e ; 
 
 } 
 
 
 
 . b t n - - s o f t : h o v e r   { 
 
     b a c k g r o u n d :   v a r ( - - a c c e n t ) ; 
 
     c o l o r :   # f f f ; 
 
     b o x - s h a d o w :   0   4 p x   1 2 p x   r g b a ( 5 9 ,   1 3 0 ,   2 4 6 ,   0 . 2 5 ) ; 
 
 } 
 
 
 
 / *   M a k e   c a r d   i n t e r a c t i v e   * / 
 
 . c a t C a r d   { 
 
     c u r s o r :   p o i n t e r ; 
 
     t e x t - d e c o r a t i o n :   n o n e   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . c a t C a r d   . c a t C a r d _ _ t i t l e   { 
 
     m a r g i n - t o p :   - 1 0 p x ;   / *   P u l l   t i t l e   u p   s l i g h t l y   i f   n e e d e d   * / 
 
     f o n t - s i z e :   1 . 4 r e m ; 
 
 } 
 
 