:root {
  --orange: #E84012;
  --orange-light: #ff5722;
  --black: #0a0a0a;
  --dark: #111111;
  --card-bg: #181818;
  --white: #ffffff;
  --gray: #aaaaaa;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

/* INTRO */
/* ===== INTRO WRAPPER ===== */
.intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: #ffffff;
}

/* ===== BACKGROUND LAYERS ===== */
.intro-bg {
  position: absolute;
  inset: 0;
}

.bg-orange {
  position: absolute;
  inset: 0;
  background: #f05123;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  animation: orangeReveal 1.2s ease forwards;
}

.bg-grey {
  position: absolute;
  inset: 0;
  background: #666666;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  animation: greyReveal 1.2s ease forwards;
}

/* ===== LOGO ===== */
.intro-logo {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-logo img {
  width: 700px;
  /* 👈 Bigger, flagship feel */
  max-width: 80vw;
  /* responsive safety */
  opacity: 0;
  transform: scale(0.9);
  animation: logoFade 1.4s ease forwards;
  animation-delay: 0.9s;
}

/* ===== ANIMATIONS ===== */
@keyframes orangeReveal {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes greyReveal {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes logoFade {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ===== EXIT ANIMATION ===== */
.intro.exit {
  transform: translateY(-100%);
  transition: transform 1.4s ease;
}


/* ================= NAVBAR ================= */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 22px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;

  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px);
  z-index: 100;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  padding: 14px 80px;
  background: rgba(255, 255, 255, 0.92);
}

/* LOGO */
.logo img {
  height: 30px;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

/* ================= NAV LINKS ================= */

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* NAV BUTTON */
.nav-btn {
  position: relative;
  padding: 8px 12px;
  font-size: 12.5px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;

  z-index: 0;
  /* 🔑 create stacking context */
  overflow: visible;
}

/* DIAGONAL HOVER */
.nav-btn::before {
  content: '';
  position: absolute;
  inset: 2px 2px;
  background: linear-gradient(135deg, #f4511e 50%, #666666 50%);
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transition: clip-path 0.55s cubic-bezier(.19, 1, .22, 1);
  z-index: -1;
  border-radius: 5PX;

}

/* hover */
.nav-btn:hover::before {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.nav-btn:hover {
  color: #fff;
}

/* ================= DROPDOWN ================= */

.dropdown {
  position: relative;
}

/* hover bridge → keeps menu open */
.dropdown::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 22px;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
}

.arrow {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(12px);

  min-width: 220px;
  background: rgb(255, 255, 255);
  border-radius: 14px;
  padding: 10px 0;

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);

  opacity: 0;
  pointer-events: none;
  transition: all 0.35s ease 0.15s;
  /* delay = more time to click */
  overflow: hidden;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.dropdown:hover .arrow {
  transform: rotate(180deg);
}

/* DROPDOWN ITEMS */
.dropdown-menu .nav-btn {
  display: block;
  padding: 14px 28px;
}

.dropdown-menu .nav-btn::before {
  inset: 0;
  /* prevent overflow */
}

/* ================= MOBILE ================= */
/* ========== HAMBURGER ========== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: #111;
}

/* ========== MOBILE ========== */
@media (max-width: 900px) {

  /* FULL SCREEN MOBILE */
  .sb {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #0a0a0a;
    display: flex;
    flex-direction: column;
  }

  /* TOP BAR */
  .sb-top {
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
  }

  .sb-logo {
    color: #fff;
    font-size: 14px;
    letter-spacing: 2px;
  }

  .sb-logo span {
    color: #f84612
  }

  /* TABS */
  .sb-tabs {
    display: flex;
    gap: 10px;
    padding: 10px 16px;
  }

  .sb-tab {
    flex: 1;
    text-align: center;
    padding: 10px;
    border-radius: 20px;
    font-size: 12px;
    color: #aaa;
    background: #111;
  }

  .sb-tab.active {
    background: #f84612;
    color: #fff;
  }

  /* IMAGE FULL */
  .sb-img {
    flex: 1;
    position: relative;
  }

  .sb-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: 0.6s;
  }

  .sb-img img.active {
    opacity: 1;
  }

  /* DARK GRADIENT */
  .sb-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #000 20%, transparent 60%);
  }

  /* CONTENT OVERLAY */
  .sb-content {
    position: absolute;
    bottom: 0;
    padding: 20px;
    color: #fff;
    z-index: 2;
  }

  .sb-title {
    font-size: 28px;
    font-weight: 300;
  }

  .sb-title strong {
    display: block;
    font-weight: 700;
  }

  .sb-desc {
    font-size: 13px;
    color: #ccc;
    margin: 8px 0 16px;
  }

  /* BUTTON */
  .sb-btn {
    background: #f84612;
    padding: 12px 18px;
    border: none;
    color: #fff;
    font-size: 12px;
    border-radius: 6px;
  }

  /* PROGRESS BAR */
  .sb-progress {
    height: 3px;
    background: #222;
  }

  .sb-bar {
    height: 100%;
    width: 0%;
    background: #f84612;
  }

  /* MOBILE TOUCH FEEL */
  .sb-tab:active {
    transform: scale(0.95);
  }
}






/* ================= MOBILE FULL HERO SLIDER ================= */

.mobile-hero-slider {
  display: none;
  height: 100vh;
  background: #000;
  overflow: hidden;
  position: relative;
}

.mhs-track {
  display: flex;
  height: 100%;
  transition: transform .8s cubic-bezier(.19, 1, .22, 1);
}

/* SLIDE */
.mhs-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.mhs-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.7);
}

/* OVERLAY */
.mhs-overlay {
  position: absolute;
  bottom: 80px;
  left: 24px;
  color: #fff;
}

.mhs-overlay span {
  font-size: 11px;
  letter-spacing: 3px;
  opacity: .7;
  display: block;
  margin-bottom: 10px;
}

.mhs-overlay h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.mhs-overlay a {
  display: inline-block;
  padding: 12px 34px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
}

/* MOBILE ONLY */
@media(max-width:900px) {
  .mobile-hero-slider {
    display: block;
  }
}







/* TICKER */
.ticker{
  width:100%;
  overflow:hidden;
  background:#0a0a0a;
  border-top:1px solid rgba(255,255,255,0.08);
  border-bottom:1px solid rgba(255,255,255,0.08);
}

/* TRACK */
.ticker-track{
  display:flex;
  align-items:center;
  gap:14px;
  white-space:nowrap;
  padding:12px 0;
  animation:tickerScroll 12s linear infinite; /* ⚡ faster */
}

/* TEXT */
.ticker-item{
  font-size:11px;
  letter-spacing:1.5px;
  text-transform:uppercase;
  color:rgba(255,255,255,0.75);
}

/* NEW SEPARATOR */
.ticker-sep{
  width:6px;
  height:6px;
  background:#fff;
  border-radius:50%;
  display:inline-block;
  opacity:0.9;
  box-shadow:0 0 6px rgba(255,255,255,0.6);
}



/* ANIMATION */
@keyframes tickerScroll{
  0%{ transform:translateX(0); }
  100%{ transform:translateX(-50%); }
}

/* TOUCH PAUSE */
.ticker:active .ticker-track{
  animation-play-state:paused;
}

/* DESKTOP SPEED SLIGHTLY SLOWER */
@media(min-width:1024px){
  .ticker-track{
    animation-duration:16s;
  }
}

















/* SECTIONS 
.section {
  padding: 160px 90px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  color: var(--accent);
  margin-bottom: 80px;
}

*/
/* ---------------------------------------------------------------------------------------- */

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0 8%;
}

/* SLIDER CONTAINER */
.hero-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* SLIDES */
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

/* active slide */
.hero-slide.active {
  opacity: 1;
  animation: slowZoom 12s ease-in-out forwards;
}

/* slow cinematic zoom */
@keyframes slowZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

/* images */
.hero-slide:nth-child(1) {
  background-image: url('https://images.unsplash.com/photo-1503342217505-b0a15ec3261c');
}

.hero-slide:nth-child(2) {
  background-image: url('/hannah-morgan-ycVFts5Ma4s-unsplash.jpg');
}

.hero-slide:nth-child(3) {
  background-image: url('https://images.unsplash.com/photo-1490481651871-ab68de25d43d');
}


/* overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.25));
  z-index: 1;
}

/* content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  color: #fff;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1.05;
  margin-bottom: 24px;
  animation: fadeUp 1.2s ease forwards;
}

.hero-sub {
  font-size: 18px;
  letter-spacing: 1px;
  margin-bottom: 40px;
  opacity: 0.85;
  animation: fadeUp 1.2s ease forwards;
  animation-delay: 0.3s;
}

.hero-btn {
  display: inline-block;
  padding: 14px 36px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.4s ease;
  animation: fadeUp 1.2s ease forwards;
  animation-delay: 0.6s;
}

.hero-btn:hover {
  background: #fff;
  color: #000;
}

/* animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ------------------------------------------------------------------------------------------ */


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Bebas Neue', sans-serif;
  background: #ffffff;
}

/* HERO */
.editorial-hero {
  height: 100vh;
  display: flex;
  width: 100%;
}

/* CARD */
.card {
  flex: 1;
  transition: filter 0.6s ease;
}

/* VIDEO BOX */
.video-box {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* VIDEO */
.video-box video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(70, 35, 95, 0.65);
  transition: background 0.5s ease;
}

/* SIDE TEXT INSIDE */
.inside-text {
  position: absolute;
  top: 63%;
  left: -120px;
  transform: translateY(-50%) rotate(-90deg);
  font-size: 72px;
  font-family: 'Anton', sans-serif;
  letter-spacing: 6px;
  color: #ffffff;
  z-index: 3;
  opacity: 0.9;
}

.inside-text2 {
  position: absolute;
  top: 71%;
  left: 9px;
  transform: translateY(-50%) rotate(-90deg);
  font-size: 34px;
  font-family: 'Anton', sans-serif;
  letter-spacing: 6px;
  color: #ffffff;
  z-index: 3;
  opacity: 0.9;
}


/* PRICE */
.price {
  position: absolute;
  bottom: 65px;
  right: 32px;
  font-size: 50px;
  letter-spacing: 4px;
  color: #fff;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 3;
}

/* ===== HOVER EFFECTS ===== */
.editorial-hero:hover .card {
  filter: brightness(0.55) blur(1px);
}

.editorial-hero:hover .card:hover {
  filter: brightness(1) blur(0);
}

.card:hover .overlay {
  background: rgba(70, 35, 95, 0.45);
}

.card:hover .price {
  opacity: 1;
  transform: translateY(0);
}

.card {
  cursor: pointer;
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .editorial-hero {
    flex-direction: column;
    height: auto;
  }

  .card {
    height: 70vh;
  }

  .inside-text {
    transform: none;
    top: auto;
    bottom: 30px;
    left: 30px;
    font-size: 32px;
  }

  .price {
    bottom: 30px;
    right: 30px;
  }
}





/* BRAND STORY */

.brand-story {
  padding: 160px 90px;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 90px;
  align-items: center;
}

.story-tag {
  font-size: 12px;
  letter-spacing: 2px;
  opacity: 0.6;
}

.story-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin: 18px 0 26px;
}

.story-text p {
  max-width: 420px;
  line-height: 1.9;
  margin-bottom: 16px;
}

.story-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

@media (max-width: 900px) {
  .story-grid {
    grid-template-columns: 1fr;
  }
}




/* ================= STORE HORIZONTAL SCROLL ================= */
.store-gallery {
  padding: 160px 0;
  background: #ffffff;
  overflow: hidden;
}

.store-scroll-wrapper {
  position: relative;
  overflow: hidden;
}

.section-titlereveal {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  color: var(--accent);
  margin-bottom: 40px;
  margin-left: 80px;
  text-align: center;
}



.store-scroll img {
  flex: 0 0 auto;
  width: 420px;
  height: 300px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.store-scroll img:hover {
  transform: scale(1.04);
}

/* Mobile */
@media (max-width: 900px) {
  .store-scroll {
    padding: 30px 28px;
  }

  .store-scroll img {
    width: 300px;
    height: 220px;
  }
}


.store-scroll {
  scroll-behavior: smooth;
}

.store-scroll {
  display: flex;
  gap: 24px;
  padding: 40px 90px;
  overflow-x: auto;

  cursor: grab;
  scrollbar-width: none;

  scroll-behavior: auto;
  /* IMPORTANT */
  will-change: transform;
  /* performance boost */
}

.store-scroll::-webkit-scrollbar {
  display: none;
}









/* ===== STORY + TESTIMONIAL SECTION ===== */

.brand-experience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 120px 8%;
  background: var(--bg-main, #ffffff);
  color: #f04f0f;
}

/* TITLES */
.big-title {
  font-size: 48px;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

/* STORY */

.story-area {
  position: relative;
}

.story-line {
  position: absolute;
  left: 15px;
  top: 90px;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, #f3600b, transparent);
}

.story-point {
  padding-left: 60px;
  margin-bottom: 50px;
  opacity: .4;
  transform: translateY(40px);
  transition: .6s;
}

.story-point span {
  font-size: 22px;
  font-weight: 700;
}

.story-point p {
  font-size: 18px;
  margin-top: 10px;
}

.story-point.active {
  opacity: 1;
  transform: translateY(0);
}


/* STORY POINT WITH IMAGE */

.story-point {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-left: 60px;
  margin-bottom: 60px;
  opacity: .4;
  transform: translateY(40px);
  transition: .7s ease;
}

.story-point.active {
  opacity: 1;
  transform: translateY(0);
}

/* IMAGE */

.story-media {
  width: 120px;
  height: 120px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 20px 60px rgba(126, 126, 126, 0.6);
}

.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0%) contrast(1.1);
}

/* TEXT */

.story-text span {
  font-size: 22px;
  font-weight: 700;
}

.story-text p {
  margin-top: 10px;
  font-size: 18px;
  opacity: .85;
}

/* MOBILE */

@media(max-width:700px) {
  .story-point {
    flex-direction: column;
    align-items: flex-start;
  }

  .story-media {
    width: 100%;
    height: 200px;
  }
}





/* TESTIMONIALS */

.testimonial-area {
  position: relative;
}

.testimonial-stack {
  position: relative;
  height: 260px;
}

.t-card {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(15px);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(77, 77, 77, 0.486);
  opacity: 0;
  transform: scale(.9) translateY(40px);
  transition: .7s;

}

.t-card p {
  font-size: 22px;
  line-height: 1.6;
}

.t-card span {
  display: block;
  margin-top: 25px;
  opacity: .7;
}

.t-card.active {
  opacity: 1;
  transform: scale(1) translateY(0);
  z-index: 5;
}

/* HOVER DEPTH */
.t-card:hover {
  transform: scale(1.03) rotateX(5deg);
}

/* MOBILE */

@media(max-width:900px) {
  .brand-experience {
    grid-template-columns: 1fr;
  }
}


/* ================================
   MOBILE & TABLET OPTIMIZATION
================================ */

@media (max-width:1024px) {
  .brand-experience {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 80px 6%;
  }

  .big-title {
    font-size: 36px;
  }
}

@media (max-width:768px) {

  .big-title {
    font-size: 32px;
    letter-spacing: 2px;
  }

  /* STORY */

  .story-line {
    left: 0;
    width: 3px;
  }

  .story-point {
    padding-left: 30px;
    gap: 20px;
  }

  .story-media {
    width: 30%;
    height: 180px;
    border-radius: 14px;
  }

  .story-text span {
    font-size: 20px;
  }

  .story-text p {
    font-size: 16px;
  }

  /* TESTIMONIALS */

  .testimonial-stack {
    height: 300px;
  }

  .t-card {
    padding: 30px;
  }

  .t-card p {
    font-size: 18px;
  }

}

@media (max-width:480px) {

  .brand-experience {
    padding: 70px 5%;
  }

  .big-title {
    font-size: 28px;
  }

  .story-media {
    height: 117px;
  }

  .testimonial-stack {
    height: 320px;
  }

  .t-card span {
    font-size: 14px;
  }

}

@media (max-width:768px) {

  .story-point {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 25px;
    gap: 14px;
  }

}

.story-media img {
  transition: transform .6s ease;
}

.story-point:hover .story-media img {
  transform: scale(1.08);
}




/* ===== BRAND SOUL SECTION ===== */

/* ===== MODERN BRAND SOUL ===== */

.brand-soul-modern {
  padding: 140px 8%;
  background: var(--bg-main, #0f0f0f);
  color: #fff;
  perspective: 1200px;
}

/* CARD */

.soul-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
  margin-bottom: 160px;
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(20px);
  border-radius: 30px;
  padding: 60px;
  box-shadow:
    0 40px 120px rgba(0, 0, 0, .7),
    inset 0 0 0 1px rgba(255, 255, 255, .05);
  transform-style: preserve-3d;
  transition: transform .8s ease;
}

.soul-card:hover {
  transform: rotateX(2deg) rotateY(-2deg) translateY(-10px);
}

.soul-card.reverse {
  direction: rtl;
}

.soul-card.reverse>* {
  direction: ltr;
}

/* MEDIA */

.media-layer {
  position: relative;
  height: 420px;
  border-radius: 22px;
  overflow: hidden;
  transform: translateZ(60px);
}

.media-layer img {
  width: 100%;
  height: 129%;
  object-fit: cover;
  filter: grayscale(0%) contrast(1.1);
}

.gradient-bg {
  background:
    radial-gradient(circle at top right, var(--accent, #ffb400) 0%, transparent 45%),
    linear-gradient(135deg, #1a1a1a, #0b0b0b);
}

.gradient-bg.alt {
  background:
    radial-gradient(circle at bottom left, var(--accent, #ffb400) 0%, transparent 45%),
    linear-gradient(135deg, #1a1a1a, #0b0b0b);
}

/* GLOW */

.glow {
  position: absolute;
  inset: 0;
  box-shadow: 0 0 120px rgba(255, 180, 0, .25);
  pointer-events: none;
}

/* CONTENT */

.content-layer {
  transform: translateZ(40px);
}

.content-layer h2 {
  font-size: 44px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.lead {
  font-size: 22px;
  opacity: .95;
  margin-bottom: 20px;
}

.content-layer p {
  font-size: 18px;
  line-height: 1.7;
  opacity: .8;
}

.signature {
  display: inline-block;
  margin-top: 25px;
  font-style: italic;
  opacity: .7;
}

/* FLOATING TEXT */

.floating-text {
  position: absolute;
  bottom: 30px;
  left: 30px;
  font-size: 90px;
  font-weight: 800;
  opacity: .08;
  letter-spacing: 10px;
}

/* MISSION LIST */

.mission-modern {
  list-style: none;
  padding: 0;
}

.mission-modern li {
  font-size: 18px;
  margin-bottom: 18px;
  padding-left: 30px;
  position: relative;
}

.mission-modern li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: var(--accent, #ffb400);
}

/* REVEAL */

.reveal {
  opacity: 0;
  transform: translateY(80px) scale(.96);
  transition: 1s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* MOBILE */

@media(max-width:900px) {
  .soul-card {
    grid-template-columns: 1fr;
    padding: 40px;
  }

  .media-layer {
    height: 300px;
  }
}


/* ===== CAREER SECTION ===== */

.career-section {
  background: #111;
  padding: 100px 20px;
  color: #fff;
  font-family: Arial, sans-serif;
}

.career-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.career-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.career-subtitle {
  color: #aaa;
  margin-bottom: 60px;
  font-size: 18px;
}

/* JOB GRID */

.job-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.job-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.3s ease;
}

.job-card h3 {
  color: #ff5a1f;
  margin-bottom: 15px;
  font-size: 20px;
}

.job-card p {
  color: #ccc;
  font-size: 15px;
}

.job-card:hover {
  transform: translateY(-8px);
  border-color: #ff5a1f;
}

/* APPLY BOX */

.apply-box {
  background: #1a1a1a;
  padding: 50px 20px;
  border-radius: 15px;
}

.apply-box h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

.apply-box p {
  color: #ccc;
}

/* BUTTON */

.apply-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 40px;
  background: #ff5a1f;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 16px;
  transition: 0.3s ease;
}

.apply-btn:hover {
  background: #ff7a45;
}

/* MOBILE RESPONSIVE */

@media (max-width: 768px) {

  .career-title {
    font-size: 34px;
  }

  .career-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .job-card {
    padding: 25px;
  }

  .apply-box h3 {
    font-size: 22px;
  }

  .apply-btn {
    width: 100%;
    text-align: center;
  }
}













/* ================= SEASONAL CAMPAIGN ================= */
.seasonal-campaign {
  padding: 180px 90px;
  background: #666666;
  color: #ffffff;
  text-align: center;
}

.campaign-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  margin-bottom: 18px;
}

.campaign-content p {
  font-size: 16px;
  letter-spacing: 1px;
  margin-bottom: 40px;
  opacity: 0.9;
}

.seasonal-campaign .hero-btn {
  border-color: #ffffff;
}

.seasonal-campaign .hero-btn:hover {
  background: #ffffff;
  color: #000000;
}

@media (max-width: 900px) {
  .seasonal-campaign {
    padding: 140px 28px;
  }

  .campaign-content h2 {
    font-size: 38px;
  }
}












/* FOOTER */
/* ================= PREMIUM FOOTER ================= */
.footer-premium {
  background: #f05123;
  color: #ffffff;
  padding: 120px 90px 60px;
}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.4fr;
  gap: 60px;
  margin-bottom: 80px;
}

/* BRAND */
.footer-brand h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.9;
}

/* TITLES */
.footer-contact h4,
.footer-hours h4 {
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* TEXT */
.footer-contact p,
.footer-hours p {
  font-size: 14px;
  margin-bottom: 10px;
  opacity: 0.9;
}

/* MAP */
.footer-map {
  position: relative;
  overflow: hidden;
}

.footer-map iframe {
  width: 100%;
  height: 220px;
  border: none;
  filter: grayscale(100%) contrast(110%);
  transition: filter 0.6s ease;
  border-radius: 2px;
}

/* Hover activation */
.footer-map:hover iframe {
  filter: grayscale(0%) contrast(100%);
}

/* GET DIRECTIONS LINK */
.directions-link {
  position: absolute;
  bottom: 14px;
  right: 18px;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-decoration: none;
  color: #ffffff;
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-map:hover .directions-link {
  opacity: 1;
  transform: translateX(4px);
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* SOCIAL */
.social-links a {
  margin-right: 28px;
  font-size: 13px;
  text-decoration: none;
  color: #ffffff;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.social-links a:hover {
  opacity: 1;
}

/* COPYRIGHT */
.footer-bottom p {
  font-size: 13px;
  opacity: 0.8;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-premium {
    padding: 100px 28px 50px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .social-links a {
    margin-right: 18px;
  }
}


/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1.2s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ================= MOBILE BOTTOM NAV ================= */

.mobile-bottom-nav {
  position: fixed;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  height: 70px;
  background: #111;
  border-radius: 18px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 999;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);
}

/* Nav Items */
.mb-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 11px;
  color: #bbb;
  text-decoration: none;
  gap: 4px;
}

.mb-item {
  transition:
    transform .2s ease,
    color .2s ease;
}

.mb-item:active {
  transform: scale(0.9);
}




.mb-item .icon {
  font-size: 30px;
  font-style: normal;
  transform: rotate(0deg);
  display: inline-block;
}

.mb-item:hover {
  color: #fff;
}

.mb-item.store-trigger span {
  font-size: 30px;
}

/* Center Logo */
.round-logo-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

/* ORANGE HALF */
.round-logo-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #f05123;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

/* GREY HALF */
.round-logo-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #5a5a5a;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

/* LOGO */
.round-logo-btn img {
  position: relative;
  z-index: 2;
  width: 50px;
  height: auto;
}

.round-logo-btn {
  transform: translateY(-18px);
}


/* Hide on Desktop */
@media(min-width:901px) {
  .mobile-bottom-nav {
    display: none;
  }
}

/* hide on mobile */
@media (max-width: 900px) {
  .navbar {
    display: none;
  }
}


/* ================= STORE POPUP MENU ================= */



.store-popup a {
  padding: 14px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.store-popup a:last-child {
  border-bottom: none;
}

.store-popup a:hover {
  background: #f05123;
}

/* ACTIVE STATE */
.store-popup.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Desktop hide */
@media(min-width:901px) {
  .store-popup {
    display: none;
  }
}



.store-popup {
  position: fixed;
  bottom: 100px;
  left: 50%;
  width: 220px;
  background: #111;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  overflow: hidden;

  opacity: 0;
  pointer-events: none;

  transform:
    translateX(-50%) translateY(20px) scale(0.95);

  transition:
    opacity .35s ease,
    transform .35s cubic-bezier(.19, 1, .22, 1);

  z-index: 1000;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .6);
}

.store-popup.active {
  opacity: 1;
  pointer-events: auto;

  transform:
    translateX(-50%) translateY(0) scale(1);
}


.store-trigger {
  transition: transform .15s ease;
}

.store-trigger:active {
  transform: scale(0.9);
}



.store-popup a {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity .3s ease,
    transform .3s ease;
}

.store-popup.active a {
  opacity: 1;
  transform: translateY(0);
}

.store-popup.active a:nth-child(1) {
  transition-delay: .05s;
}

.store-popup.active a:nth-child(2) {
  transition-delay: .1s;
}

.store-popup.active a:nth-child(3) {
  transition-delay: .15s;
}



/* ================= TAP ANIMATION ================= */

.mb-item,
.store-trigger,
.round-logo-btn {
  transition:
    transform .15s ease,
    box-shadow .15s ease;
}

/* When finger is pressing */
.mb-item:active,
.store-trigger:active {
  transform: scale(0.88);
}

/* Center logo stronger press */
.round-logo-btn:active {
  transform: translateY(-18px) scale(0.9);
}



















/* ── SECTION WRAPPER ── */
.deals-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── HEADER ── */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 16px;
}

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.9;
  color: var(--white);
}

.section-title span {
  color: var(--orange);
  display: block;
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1.5px solid var(--orange);
  color: var(--orange);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  background: transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.view-all-btn:hover {
  background: var(--orange);
  color: #fff;
}

.view-all-btn svg {
  transition: transform 0.2s;
}

.view-all-btn:hover svg {
  transform: translateX(4px);
}

/* ── FILTER TABS ── */
.filter-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.tab {
  padding: 8px 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--card-bg);
  border: 1px solid #2a2a2a;
  color: var(--gray);
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 2px;
}

.tab:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.tab.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

/* ── DEALS GRID ── */
.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2px;
}

/* ── DEAL CARD ── */
.deal-card {
  background: var(--card-bg);
  border: 1px solid #1e1e1e;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.4s ease forwards;
}

.deal-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  z-index: 2;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.deal-card-header {
  background: var(--orange);
  padding: 10px 14px 8px;
}

.deal-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2px;
}

.deal-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.05;
}

.deal-card-body {
  background: #0a0a0a;
  padding: 14px 14px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.deal-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 10px;
}

.rupee {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
}

.price-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 52px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.price-note {
  font-size: 11px;
  color: var(--gray);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  align-self: flex-end;
  padding-bottom: 6px;
}

.deal-badge {
  display: inline-block;
  padding: 3px 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  background: rgba(232, 64, 18, 0.15);
  color: var(--orange);
  border: 1px solid rgba(232, 64, 18, 0.3);
  width: fit-content;
}

.deal-badge.bogo {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

/* ── FEATURED (large) CARD ── */
.deal-card.featured {
  grid-column: span 2;
  flex-direction: row;
  background: #111;
}

.deal-card.featured .deal-card-header {
  width: 45%;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.deal-card.featured .deal-name {
  font-size: 26px;
}

.deal-card.featured .deal-card-body {
  width: 55%;
  padding: 20px;
}

.deal-card.featured .price-num {
  font-size: 72px;
}

/* ── TICKER STRIP ── */
.ticker-wrap {
  background: var(--orange);
  overflow: hidden;
  padding: 10px 0;
  margin-bottom: 36px;
}

.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 22s linear infinite;
  white-space: nowrap;
}

.ticker-track:hover {
  animation-play-state: paused;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.ticker-item {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.ticker-dot {
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: inline-block;
}

/* ── HIDDEN items for filter ── */
.deal-card[data-hidden="true"] {
  display: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .deal-card.featured {
    grid-column: span 1;
    flex-direction: column;
  }

  .deal-card.featured .deal-card-header {
    width: 100%;
  }

  .deal-card.featured .deal-card-body {
    width: 100%;
  }

  .deals-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}








/* SECTION */
.about-section {
  padding: 80px 8%;
  overflow: hidden;
}

/* CONTAINER */
.about-container {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* IMAGE */
.about-image {
  flex: 1;
  overflow: hidden;
  border-radius: 20px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 1.5s ease;
}

/* CONTENT */
.about-content {
  flex: 1;
}

.about-title {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 20px;
}

.about-title span {
  color: #f84612;
}

.about-text {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* FEATURES */
.about-features {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.feature-card {
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ANIMATION STATES */
.hidden {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.show {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
  }

  .about-title {
    font-size: 30px;
  }
}




.designer-credit {
  background: #000;
  text-align: center;
  padding: 12px 10px;
}

.designer-credit p {
  margin: 0;
  font-size: 13px;
  color: #aaa;
  letter-spacing: 1px;
}

.designer-credit a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.designer-credit a:hover {
  color: #f84612;
}

@media (max-width: 768px) {
  .designer-credit {
    display: none;
  }
}







/* Hide by default (desktop safe) */
.designer-popup {
  display: none;
}

/* Show only on mobile */
@media (max-width: 768px) {
  .designer-popup {
    display: block;
    position: fixed;
    bottom: 90px; /* above your bottom nav */
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #000;
    color: #aaa;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 13px;
    letter-spacing: 1px;
    opacity: 0;
    pointer-events: auto;
    transition: 0.4s ease;
    z-index: 9999;
  }

  .designer-popup a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
  }

  .designer-popup.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}