*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

:root{
  /* Primary brand colors - Deep Royal Purple & Warm Orange */
  --purple:#42235F;
  --purple-dark:#3B2057;
  --purple-soft:#E8D8F5;
  --purple-gradient:#F6C7E9;
  --orange:#D94A18;
  --orange-dark:#B93D12;
  --orange-light:#F06A30;
  
  /* Background & Surfaces */
  --white:#FFFFFF;
  --surface-soft:#F6F4FA;
  --bg-light:#FAF8FC;
  
  /* Typography */
  --text-primary:#1A1A2E;
  --text-secondary:#5A5A6E;
  --text-muted:#8A8A9E;
  
  /* Effects */
  --shadow-sm:0 8px 20px rgba(66,35,95,0.08);
  --shadow-md:0 12px 28px rgba(66,35,95,0.12);
  --shadow-lg:0 20px 40px rgba(66,35,95,0.15);
  --shadow-orange:0 8px 20px rgba(217,74,24,0.25);
  --shadow-orange-lg:0 12px 32px rgba(217,74,24,0.35);
  
  /* Borders & Radius */
  --radius-sm:12px;
  --radius-md:18px;
  --radius-lg:24px;
  --radius-xl:32px;
  --radius-pill:999px;
  
  /* Transitions */
  --transition-fast:0.2s ease;
  --transition-base:0.3s ease;
  --transition-slow:0.4s ease;
}

html{scroll-behavior:smooth}

body{
  font-family:'DM Sans',sans-serif;
  background:var(--white);
  color:var(--text-primary);
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}

/* ============================================
   LOGIN & APPLY OVERLAYS (Purple Gradient)
   ============================================ */
#lov{
  display:none;
  position:fixed;
  inset:0;
  z-index:9999;
  background:linear-gradient(135deg,var(--purple) 0%,var(--purple-dark) 50%,#5A2E82 100%);
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:26px;
}
#lov.show{display:flex;animation:ovIn var(--transition-base) both}

#aov{
  display:none;
  position:fixed;
  inset:0;
  z-index:9999;
  background:linear-gradient(135deg,var(--purple) 0%,var(--purple-dark) 50%,#5A2E82 100%);
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:26px;
}
#aov.show{display:flex;animation:ovIn var(--transition-base) both}

@keyframes ovIn{
  from{opacity:0;transform:scale(0.98);}
  to{opacity:1;transform:scale(1);}
}

.ov-logo img{
  height:48px;
  width:auto;
  animation:ovPop 0.5s cubic-bezier(0.4,0,0.2,1) 0.1s both;
}

@keyframes ovPop{
  from{opacity:0;transform:scale(0.7);}
  to{opacity:1;transform:scale(1);}
}

.ov-spin{
  width:50px;
  height:50px;
  border-radius:50%;
  border:4px solid rgba(255,255,255,0.2);
  border-top-color:var(--orange);
  animation:spin 0.8s linear infinite;
}
@keyframes spin{to{transform:rotate(360deg)}}

.ov-txt{
  font-family:'Sora',sans-serif;
  font-size:15px;
  font-weight:600;
  color:rgba(255,255,255,0.9);
  animation:ovUp 0.5s ease 0.2s both;
}
@keyframes ovUp{
  from{opacity:0;transform:translateY(10px);}
  to{opacity:1;transform:none;}
}

.ov-dots{display:flex;gap:7px}
.ov-d{
  width:8px;
  height:8px;
  border-radius:50%;
  background:rgba(255,255,255,0.4);
  animation:db 1.2s ease-in-out infinite;
}
.ov-d:nth-child(2){animation-delay:0.2s}
.ov-d:nth-child(3){animation-delay:0.4s}
@keyframes db{
  0%,100%{background:rgba(255,255,255,0.3);transform:scale(0.85);}
  50%{background:var(--orange);transform:scale(1.25);}
}

/* ============================================
   NAVBAR (Purple Gradient)
   ============================================ */
.navbar{
  position:sticky;
  top:0;
  z-index:500;
  height:68px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 20px;
  background:linear-gradient(135deg,var(--purple) 0%,var(--purple-dark) 100%);
  box-shadow:0 4px 24px rgba(66,35,95,0.25);
  overflow:hidden;
}
.navbar::after{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(105deg,transparent 30%,rgba(255,255,255,0.08) 50%,transparent 70%);
  animation:shim 3.5s ease-in-out infinite;
  pointer-events:none;
}
@keyframes shim{
  0%{transform:translateX(-150%);}
  100%{transform:translateX(200%);}
}

.nav-logo{display:flex;align-items:center;text-decoration:none;position:relative;z-index:1}
.nav-logo img{height:32px;width:auto;object-fit:contain}

.nav-right{display:flex;align-items:center;gap:12px;position:relative;z-index:1}

.bell-btn{
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.2);
  border-radius:12px;
  width:40px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  position:relative;
  transition:background var(--transition-fast);
}
.bell-btn:hover{background:rgba(255,255,255,0.22);}
.bell-btn svg{
  width:20px;
  height:20px;
  stroke:#fff;
  fill:none;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.bell-dot{
  position:absolute;
  top:8px;
  right:8px;
  width:8px;
  height:8px;
  background:var(--orange);
  border-radius:50%;
  border:2px solid var(--purple);
  animation:bp 2s infinite;
}
@keyframes bp{
  0%,100%{transform:scale(1);}
  50%{transform:scale(1.3);background:#ff6b4a;}
}

.login-btn{
  display:flex;
  align-items:center;
  gap:6px;
  background:var(--orange);
  color:var(--white);
  border:none;
  border-radius:var(--radius-pill);
  padding:8px 20px;
  font-family:'Sora',sans-serif;
  font-weight:700;
  font-size:12px;
  letter-spacing:0.3px;
  cursor:pointer;
  text-decoration:none;
  box-shadow:var(--shadow-orange);
  transition:all var(--transition-fast);
  white-space:nowrap;
}
.login-btn:hover{
  background:var(--orange-dark);
  transform:translateY(-2px);
  box-shadow:var(--shadow-orange-lg);
}
.login-btn svg{
  width:14px;
  height:14px;
  stroke:currentColor;
  fill:none;
  stroke-width:2.2;
}

/* ============================================
   HERO SECTION - FIXED IMAGE FIT
   ============================================ */
.hero{
  position:relative;
  overflow:hidden;
  background:linear-gradient(135deg,var(--purple) 0%,#2D1B42 100%);
  line-height:0;
}
.hero-track{
  display:flex;
  transition:transform 0.65s cubic-bezier(0.4,0,0.2,1);
  will-change:transform;
}
.hero-slide{
  min-width:100%;
  flex-shrink:0;
}
.hero-slide img{
  width:100%;
  height:210px;
  object-fit:cover;
  object-position:center;
  display:block;
}
.hero-dots-bar{
  position:absolute;
  bottom:10px;
  left:0;
  right:0;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:6px;
  z-index:10;
  pointer-events:none;
}
.hero-dot{
  width:7px;
  height:7px;
  border-radius:50%;
  background:rgba(255,255,255,0.5);
  border:none;
  cursor:pointer;
  pointer-events:all;
  transition:all var(--transition-fast);
}
.hero-dot.on{
  background:var(--orange);
  transform:scale(1.4);
}
.hero-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:rgba(66,35,95,0.6);
  backdrop-filter:blur(8px);
  border:none;
  color:#fff;
  width:34px;
  height:34px;
  border-radius:50%;
  cursor:pointer;
  font-size:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:10;
  transition:all var(--transition-fast);
}
.hero-nav:hover{
  background:var(--orange);
  transform:translateY(-50%) scale(1.1);
}
.hero-nav.prev{left:10px}
.hero-nav.next{right:10px}

/* ============================================
   SECTION BASE
   ============================================ */
.sec{padding:22px 16px}
.sec-head{
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:14px;
}
.sec-head.sb{justify-content:space-between}
.sec-title{
  font-family:'Sora',sans-serif;
  font-size:18px;
  font-weight:800;
  background:linear-gradient(135deg,var(--purple) 0%,#5A2E82 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  position:relative;
  display:inline-block;
  text-align:center;
}
.sec-title::after{
  content:'';
  position:absolute;
  bottom:-4px;
  left:50%;
  transform:translateX(-50%);
  width:28px;
  height:3px;
  background:var(--orange);
  border-radius:3px;
  transition:width var(--transition-base);
}
.sec-title:hover::after{width:100%}
.sec-head.sb .sec-title{text-align:left}
.sec-head.sb .sec-title::after{left:0;transform:none}

.see-all{
  font-family:'Sora',sans-serif;
  font-size:12px;
  font-weight:600;
  color:var(--orange);
  text-decoration:none;
  display:flex;
  align-items:center;
  gap:3px;
  transition:gap var(--transition-fast);
}
.see-all::after{content:'›';font-size:16px}
.see-all:hover{gap:6px}

/* ============================================
   iSHOP CARDS - FIXED IMAGE FIT
   ============================================ */
.ishop-outer{overflow:hidden;border-radius:var(--radius-lg)}
.ishop-track{
  display:flex;
  transition:transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.ishop-card{
  min-width:100%;
  flex-shrink:0;
  background:linear-gradient(135deg,var(--purple) 0%,var(--purple-dark) 100%);
  border-radius:var(--radius-lg);
  padding:36px 26px 30px;
  color:#fff;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
  position:relative;
  overflow:hidden;
}
.ishop-card::before{
  content:'';
  position:absolute;
  top:-60px;
  right:-60px;
  width:200px;
  height:200px;
  background:rgba(255,255,255,0.07);
  border-radius:50%;
}
.ishop-card::after{
  content:'';
  position:absolute;
  bottom:-40px;
  left:-40px;
  width:150px;
  height:150px;
  background:rgba(0,0,0,0.07);
  border-radius:50%;
}
.ishop-badge{
  background:rgba(255,255,255,0.15);
  border:1.5px solid rgba(255,255,255,0.25);
  border-radius:50%;
  width:72px;
  height:72px;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:1;
  position:relative;
}
.ishop-badge svg{
  width:30px;
  height:30px;
  stroke:var(--orange);
  fill:none;
  stroke-width:1.8;
}
.ishop-card h3{
  font-family:'Sora',sans-serif;
  font-size:18px;
  font-weight:800;
  line-height:1.3;
  z-index:1;
}
.ishop-card p{
  font-size:13.5px;
  opacity:.88;
  line-height:1.6;
  max-width:270px;
  z-index:1;
}

/* ============================================
   PILL DOTS (shared)
   ============================================ */
.pill-dots{
  display:flex;
  justify-content:center;
  gap:6px;
  margin-top:12px;
}
.pill-dot{
  width:24px;
  height:6px;
  border-radius:4px;
  background:#D1C5E0;
  border:none;
  cursor:pointer;
  transition:all var(--transition-fast);
}
.pill-dot.on{
  background:var(--orange);
  width:36px;
}

/* ============================================
   POSTER SLIDER - FIXED IMAGE FIT (1:1)
   ============================================ */
.poster-slider-outer{
  overflow:hidden;
  border-radius:16px;
}
.poster-slider-track{
  display:flex;
  transition:transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.poster-slide{
  min-width:100%;
  flex-shrink:0;
}
.poster-slide img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  object-position:center;
  display:block;
}

/* ============================================
   PICK WHERE YOU LEFT - FIXED IMAGE FIT
   ============================================ */
.pick-section{padding:16px 16px 6px}
.pick-outer{
  background:linear-gradient(135deg,var(--purple) 0%,var(--purple-dark) 100%);
  border-radius:var(--radius-lg);
  padding:18px 16px 16px;
}
.pick-title{
  font-family:'Sora',sans-serif;
  font-size:16px;
  font-weight:800;
  color:#fff;
  margin-bottom:14px;
}
.pick-slider-wrap{
  overflow:hidden;
  border-radius:var(--radius-md);
}
.pick-track{
  display:flex;
  transition:transform 0.55s cubic-bezier(0.4,0,0.2,1);
}
.pick-card{
  min-width:100%;
  flex-shrink:0;
  background:#fff;
  border-radius:var(--radius-md);
  padding:18px 14px 16px;
  display:flex;
  align-items:center;
  gap:14px;
  position:relative;
  overflow:hidden;
}
.pick-card-body{flex:1}
.pick-badge{
  position:absolute;
  top:12px;
  right:12px;
  background:linear-gradient(135deg,var(--orange),var(--orange-dark));
  color:#fff;
  font-family:'Sora',sans-serif;
  font-size:10px;
  font-weight:700;
  padding:4px 10px;
  border-radius:50px;
  white-space:nowrap;
}
.pick-badge.blue{
  background:linear-gradient(135deg,#5A2E82,var(--purple));
}
.pick-card-body h4{
  font-family:'Sora',sans-serif;
  font-weight:800;
  font-size:15px;
  color:var(--text-primary);
}
.pick-card-body p{
  font-size:12px;
  color:var(--text-secondary);
  margin-top:5px;
  line-height:1.45;
  max-width:160px;
}
.pick-actions{
  display:flex;
  gap:18px;
  margin-top:12px;
}
.pick-actions a{
  font-family:'Sora',sans-serif;
  font-size:12px;
  font-weight:700;
  color:var(--orange);
  text-decoration:none;
  letter-spacing:.2px;
}
.pick-img{
  width:100px;
  height:80px;
  object-fit:contain;
  object-position:center;
  flex-shrink:0;
  border-radius:10px;
}
.pick-dots-row{
  display:flex;
  justify-content:center;
  gap:6px;
  margin-top:12px;
}
.pick-dot{
  width:7px;
  height:7px;
  border-radius:50%;
  background:rgba(255,255,255,0.45);
  border:none;
  cursor:pointer;
  transition:all var(--transition-fast);
}
.pick-dot.on{
  background:var(--orange);
  transform:scale(1.3);
}

/* ============================================
   DIGI BANNER - ORIGINAL
   ============================================ */
.digi-banner{
  background:linear-gradient(135deg,var(--surface-soft) 0%,#F0EBF5 100%);
  border-radius:var(--radius-lg);
  padding:30px 22px;
  text-align:center;
  box-shadow:var(--shadow-sm);
  border:1px solid rgba(66,35,95,0.08);
  position:relative;
  overflow:hidden;
}
.digi-banner::before{
  content:'';
  position:absolute;
  top:-50px;
  right:-50px;
  width:180px;
  height:180px;
  background:radial-gradient(circle,rgba(217,74,24,0.06),transparent);
}
.digi-tag{
  display:inline-block;
  background:rgba(217,74,24,0.1);
  color:var(--orange);
  font-family:'Sora',sans-serif;
  font-size:11px;
  font-weight:700;
  letter-spacing:.5px;
  text-transform:uppercase;
  padding:5px 12px;
  border-radius:50px;
  margin-bottom:14px;
}
.digi-banner h2{
  font-family:'Sora',sans-serif;
  font-size:21px;
  font-weight:800;
  line-height:1.3;
  position:relative;
  z-index:1;
  color:var(--text-primary);
}
.digi-banner h2 em{
  color:var(--orange);
  font-style:italic;
}
.digi-banner p{
  color:var(--text-secondary);
  font-size:13.5px;
  margin-top:9px;
  line-height:1.6;
  position:relative;
  z-index:1;
}
.cta-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:22px;
  background:linear-gradient(135deg,var(--orange),var(--orange-dark));
  color:#fff;
  border:none;
  border-radius:50px;
  padding:14px 38px;
  font-family:'Sora',sans-serif;
  font-weight:700;
  font-size:14px;
  cursor:pointer;
  box-shadow:var(--shadow-orange);
  transition:all var(--transition-base);
  position:relative;
  z-index:1;
}
.cta-btn:hover{
  transform:translateY(-3px) scale(1.03);
  box-shadow:var(--shadow-orange-lg);
}
.cta-btn svg{
  width:16px;
  height:16px;
  stroke:#fff;
  fill:none;
  stroke-width:2.2;
  stroke-linecap:round;
  stroke-linejoin:round;
}

/* ============================================
   TILES - 2x2 GRID
   ============================================ */
.tiles{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:12px;
}
.tile{
  background:linear-gradient(135deg,var(--purple) 0%,var(--purple-dark) 100%);
  color:#fff;
  border-radius:var(--radius-md);
  padding:20px 12px 16px;
  text-align:center;
  cursor:pointer;
  text-decoration:none;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  box-shadow:0 3px 14px rgba(66,35,95,0.25);
  position:relative;
  overflow:hidden;
  transition:transform var(--transition-base), box-shadow var(--transition-base);
}
.tile::before{
  content:'';
  position:absolute;
  top:-22px;
  right:-22px;
  width:70px;
  height:70px;
  background:rgba(255,255,255,0.1);
  border-radius:50%;
}
.tile:hover{
  transform:translateY(-5px) scale(1.02);
  box-shadow:0 14px 32px rgba(66,35,95,0.38);
}
.tile:active{transform:scale(0.97);}
.tile-icon{
  width:48px;
  height:48px;
  background:rgba(255,255,255,0.15);
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  z-index:1;
}
.tile-icon svg{
  width:22px;
  height:22px;
  stroke:rgba(255,255,255,0.95);
  fill:none;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.tile span{
  font-family:'Sora',sans-serif;
  font-size:11px;
  font-weight:700;
  line-height:1.4;
  position:relative;
  z-index:1;
}

/* ============================================
   VOUCHERS - FIXED IMAGE FIT
   ============================================ */
.voucher-outer{overflow:hidden;border-radius:var(--radius-md)}
.v-track{
  display:flex;
  transition:transform 0.55s cubic-bezier(0.4,0,0.2,1);
}
.v-card{
  min-width:100%;
  flex-shrink:0;
  background:var(--white);
  border-radius:var(--radius-md);
  padding:18px 20px;
  display:flex;
  align-items:center;
  gap:16px;
  box-shadow:var(--shadow-sm);
  border:1px solid rgba(66,35,95,0.06);
}
.v-logo-box{
  width:68px;
  height:50px;
  background:var(--surface-soft);
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  overflow:hidden;
}
.v-logo{
  max-width:56px;
  max-height:38px;
  width:auto;
  height:auto;
  object-fit:contain;
  object-position:center;
}
.v-body{flex:1}
.v-body h4{
  font-family:'Sora',sans-serif;
  font-weight:700;
  font-size:15px;
  color:var(--text-primary);
}
.v-body p{
  color:var(--text-secondary);
  font-size:12.5px;
  margin-top:4px;
  line-height:1.4;
}
.v-badge{
  background:linear-gradient(135deg,var(--orange),var(--orange-dark));
  color:#fff;
  font-family:'Sora',sans-serif;
  font-size:11px;
  font-weight:700;
  padding:4px 10px;
  border-radius:50px;
  white-space:nowrap;
  flex-shrink:0;
}

/* ============================================
   FOOTER (Purple Theme)
   ============================================ */
.footer{
  background:linear-gradient(135deg,var(--purple-dark) 0%,#2D1B42 100%);
  color:#fff;
  padding:36px 20px 20px;
  margin-top:6px;
  position:relative;
  overflow:hidden;
}
.footer::before{
  content:'';
  position:absolute;
  top:-80px;
  right:-80px;
  width:280px;
  height:280px;
  background:radial-gradient(circle,rgba(217,74,24,0.07),transparent);
  pointer-events:none;
}
.foot-logo{margin-bottom:10px}
.foot-logo img{height:32px;width:auto}
.foot-desc{
  color:rgba(255,255,255,0.44);
  font-size:12.5px;
  line-height:1.7;
  margin-top:10px;
}
.socials{display:flex;gap:9px;margin-top:16px}
.soc-btn{
  width:36px;
  height:36px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,0.14);
  background:rgba(255,255,255,0.04);
  color:var(--orange);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  font-size:12px;
  font-weight:800;
  font-family:'Sora',sans-serif;
  transition:all var(--transition-fast);
}
.soc-btn:hover{
  border-color:var(--orange);
  background:rgba(217,74,24,0.12);
  transform:translateY(-2px);
}
.foot-divider{
  border:none;
  border-top:1px solid rgba(255,255,255,0.07);
  margin:22px 0;
}
.foot-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
  margin-bottom:22px;
}
.foot-col h5{
  font-family:'Sora',sans-serif;
  font-weight:700;
  font-size:12.5px;
  color:rgba(255,255,255,0.85);
  margin-bottom:12px;
  letter-spacing:.3px;
}
.foot-col a{
  display:block;
  color:rgba(255,255,255,0.4);
  font-size:12px;
  text-decoration:none;
  margin-bottom:8px;
  transition:color var(--transition-fast);
}
.foot-col a:hover{color:var(--orange);}
.foot-bottom{
  border-top:1px solid rgba(255,255,255,0.06);
  padding-top:16px;
  text-align:center;
  color:rgba(255,255,255,0.22);
  font-size:11px;
}
.foot-links{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:12px;
  margin-top:9px;
}
.foot-links a{
  color:rgba(255,255,255,0.28);
  font-size:11px;
  text-decoration:none;
  transition:color var(--transition-fast);
}
.foot-links a:hover{color:var(--orange);}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal{
  opacity:0;
  transform:translateY(24px);
  transition:opacity 0.6s cubic-bezier(0.4,0,0.2,1),transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible{
  opacity:1;
  transform:translateY(0);
}
.stagger > *{
  opacity:0;
  transform:translateY(20px);
  transition:opacity 0.5s,transform 0.5s;
}
.stagger.visible > *:nth-child(1){opacity:1;transform:none;transition-delay:0.04s;}
.stagger.visible > *:nth-child(2){opacity:1;transform:none;transition-delay:0.10s;}
.stagger.visible > *:nth-child(3){opacity:1;transform:none;transition-delay:0.16s;}
.stagger.visible > *:nth-child(4){opacity:1;transform:none;transition-delay:0.22s;}
.stagger.visible > *:nth-child(5){opacity:1;transform:none;transition-delay:0.28s;}
.stagger.visible > *:nth-child(6){opacity:1;transform:none;transition-delay:0.34s;}
.stagger.visible > *:nth-child(7){opacity:1;transform:none;transition-delay:0.40s;}
.stagger.visible > *:nth-child(8){opacity:1;transform:none;transition-delay:0.46s;}

/* ============================================
   FIX FOR POSTER SLIDER - sq1, sq2, sq3, sq4
   COMPACT SIZE - DOES NOT AFFECT ANY OTHER ELEMENT
   ============================================ */

/* Target ONLY images inside poster slider with high specificity */
.poster-slider-outer .poster-slider-track .poster-slide img {
  max-height: 220px !important;
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
  object-position: center !important;
  aspect-ratio: auto !important;
}

/* Responsive - keeps them compact on all screens */
@media(min-width:480px) {
  .poster-slider-outer .poster-slider-track .poster-slide img {
    max-height: 240px !important;
  }
}

@media(min-width:600px) {
  .poster-slider-outer .poster-slider-track .poster-slide img {
    max-height: 260px !important;
  }
}

@media(min-width:800px) {
  .poster-slider-outer .poster-slider-track .poster-slide img {
    max-height: 300px !important;
  }
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */
@media(min-width:480px){
  .hero-slide img{height:250px}
}
@media(min-width:600px){
  .hero-slide img{height:310px}
  .navbar{padding:0 26px}
  .sec{padding:26px 22px}
  .tiles{grid-template-columns:repeat(4,1fr)}
}
@media(min-width:800px){
  .sec{padding:30px 28px}
  .hero-slide img{height:380px}
}