/* ============================================================
   KOLAS — style.css
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,700;1,800&display=swap');

/* ── CSS Variables ── */
:root {
  --purple: #401C7B;
  --purple-dark: #2D1357;
  --pink: #F25C94;
  --green: #2EAF6C;
  --bg-light: #F5F4F2;
  --bg-section: #EDECEA;
  --white: #FFFFFF;
  --text-dark: #1A1A2E;
  --text-mid: #444;
  --radius-card: 16px;
  --radius-pill: 999px;
  --transition: 0.35s ease;
}

/* ── Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Work Sans', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* ── ANNOUNCEMENT BAR ── */
#announcement-bar {
  background: var(--purple);
  color: var(--white);
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 16px;
  letter-spacing: 0.01em;
  transition: max-height var(--transition), opacity var(--transition), padding var(--transition);
  overflow: hidden;
  max-height: 60px;
  opacity: 1;
}

#announcement-bar.hidden {
  max-height: 0;
  opacity: 0;
  padding: 0;
}

/* ── HEADER ── */
#site-header {
  background: var(--bg-light);
  position: relative;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}

#site-header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--purple);
  box-shadow: 0 4px 24px rgba(64, 28, 123, .28);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  padding: 0 32px;
  position: relative;
  transition: height var(--transition);
}

#site-header.sticky .header-inner {
  height: 80px;
}

/* Desktop nav */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}

.desktop-nav a {
  font-family: 'Work Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--purple);
  text-transform: uppercase;
  line-height: 16px;
  letter-spacing: -0.3px;
  transition: color var(--transition), opacity .2s;
  white-space: nowrap;
}

.desktop-nav a:hover {
  opacity: .75;
}

#site-header.sticky .desktop-nav a {
  color: var(--white);
}

/* Logo */
.logo-wrap {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
}

.logo-fill {
  fill: var(--purple);
  transition: fill var(--transition);
}

#site-header.sticky .logo-fill {
  fill: var(--white);
}

/* CTA */
.cta-wrap {
  display: flex;
  justify-content: flex-end;
  flex: 1;
}

.btn-order {
  background-color: var(--pink);
  font-family: 'Work Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 18px;
  letter-spacing: -0.04px;
  color: var(--white);
  border: none;
  border-radius: 40px;
  padding: 20px 66px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease;
  cursor: pointer;
}

.btn-order:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 16px rgba(242, 92, 148, .4);
  color: var(--white);
}

/* Hamburger */
.hamburger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  transition: opacity .2s;
}

.hamburger-btn:hover {
  opacity: .7;
}

.ham-line {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--purple);
  border-radius: 2px;
  transition: background var(--transition);
}

#site-header.sticky .ham-line {
  background: var(--white);
}

/* Mobile sticky ORDER NOW */
.mobile-sticky-order {
  display: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

/* Sticky spacer */
.sticky-spacer {
  display: none;
}

.sticky-spacer.active {
  display: block;
}

/* Overlay */
#menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  z-index: 1998;
  opacity: 0;
  transition: opacity var(--transition);
}

#menu-overlay.open {
  display: block;
  opacity: 1;
}

/* Slide menu */
#slide-menu {
  position: fixed;
  top: 0;
  right: -82%;
  width: 80%;
  height: 100vh;
  background: var(--white);
  z-index: 1999;
  transition: right var(--transition) cubic-bezier(.4, 0, .2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

#slide-menu.open {
  right: 0;
}

.slide-menu-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(64, 28, 123, .1);
}

.close-btn {
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background .2s;
}

.close-btn:hover {
  background: rgba(64, 28, 123, .08);
}

.close-btn svg {
  width: 22px;
  height: 22px;
  stroke: var(--purple);
}

.slide-menu-nav {
  display: flex;
  flex-direction: column;
  padding: 16px 0;
}

.slide-menu-nav a {
  font-size: 17px;
  font-weight: 700;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 16px 28px;
  border-bottom: 1px solid rgba(64, 28, 123, .07);
  transition: background .2s;
}

.slide-menu-nav a:hover {
  background: rgba(64, 28, 123, .05);
}

.slide-menu-cta {
  padding: 28px 28px 0;
}

.slide-menu-cta .btn-order {
  width: 100%;
  justify-content: center;
  font-size: 14px;
  padding: 16px 24px;
}

/* ── HERO SLIDER ── */
.hero-banner-section {
  background: radial-gradient(circle at 70% 50%, #3e1b78 0%, #210d44 60%, #15072e 100%);
  position: relative;
  padding: 90px 0 100px;
  overflow: hidden;
  color: #ffffff;
}

.hero-banner-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-radial-gradient(circle at 50% 120%, rgba(255, 255, 255, 0.03) 0, rgba(255, 255, 255, 0.03) 25px, transparent 25px, transparent 50px);
  pointer-events: none;
}

.hero-title-main {
  font-size: clamp(30px, 5vw + 10px, 72px);
  font-weight: 900;
  font-style: italic;
  line-height: 0.95;
  letter-spacing: -1.5px;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.hero-title-sub {
  font-size: clamp(30px, 5vw + 10px, 72px);
  font-weight: 900;
  font-style: italic;
  line-height: 0.95;
  letter-spacing: -1.5px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-literal-text {
  font-size: 19px;
  font-weight: 600;
  color: #eaeaea;
  margin-bottom: 40px;
}

.btn-hero-shop {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 2px solid #ffffff;
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 14px 42px;
  border-radius: 40px;
  transition: all var(--transition-speed);
  text-decoration: none;
  display: inline-flex;
  cursor: pointer;
}

.btn-hero-shop:hover {
  background: #ffffff;
  color: var(--global-primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-graphic-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-van-img {
  max-width: 100%;
  z-index: 5;
  transition: transform 0.5s ease;
}

.hero-graphic-container:hover .hero-van-img {
  transform: scale(1.03);
}

.hero-slider-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  margin-top: 80px;
}

.hero-arrow {
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
  opacity: 0.8;
  transition: opacity var(--transition-speed), transform var(--transition-speed);
}

.hero-arrow:hover {
  opacity: 1;
  transform: scale(1.2);
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all var(--transition-speed);
}

.hero-dot.active {
  width: 10px;
  height: 10px;
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}


/* ── SECTION COMMONS ── */
.section-title {
  font-size: clamp(26px, 3.5vw, 60px);
  font-weight: 800;
  color: var(--purple);
  text-align: center;
  margin-bottom: 32px;
}

.section-title.left {
  text-align: left;
}

.section-pad {
  padding: 110px 0;
}

.section-bg {
  background: var(--bg-section);
}

/* ── FEATURED CATEGORIES ── */
.categories-section {
  background: var(--bg-light);
}

.cat-track-wrap {
  overflow: hidden;
  margin-top: 30px;
}

.cat-track {
  display: flex;
  gap: 24px;
  transition: transform .5s ease;
}

.cat-card {
  min-width: 334.531px;
  text-align: center;
  cursor: pointer;
}

.cat-card-img {
  border-radius: var(--radius-card);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 14px;
  transition: transform .3s;
}

.cat-card:hover .cat-card-img {
  transform: scale(1.03);
}

.cat-card-img img {
  object-fit: contain;
}

.cat-card h4 {
  font-family: "Work Sans", Sans-serif;
  font-size: clamp(22px, 1.5vw + 16px, 30px);
  font-weight: 400;
  text-transform: none;
  text-decoration: none;
  line-height: 45.6px;
  letter-spacing: -0.76px;
  transition-duration: 0.5s;
  color: #401c7b;
}

/* ── SLIDER CONTROLS SHARED ── */
.slider-controls {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 75%;
  margin: 0 auto;
  margin-top: 38px;
  padding: 0 4px;
}

.slider-arrow-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--purple);
  font-size: 22px;
  display: flex;
  align-items: center;
  transition: opacity .2s;
  padding: 0 4px;
  width: 28px;
  height: 28px;
}

.slider-arrow-btn svg {
  fill: #401C7B;
}

.slider-arrow-btn:hover {
  opacity: .6;
}

.slider-progress-wrap {
  flex: 1;
  height: 3px;
  background: #D0CCCC;
  border-radius: 2px;
}

.slider-progress-bar {
  height: 100%;
  background: var(--purple);
  border-radius: 2px;
  transition: width .4s ease;
  width: 30%;
}

/* ── DEALS SECTION ── */
.deals-section {
  background: #EEEEEE;
}

.deals-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 55px;
}

.deals-header .section-title {
  margin-bottom: 0;
}

.day-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.day-tab {
  flex: 0 0 auto;
  min-width: max-content;
  background: #fff;
  border-radius: 20px;
  padding: 8px 16px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
  border: 0;
  font-size: 18px;
}

.day-tab.active {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
}

.deals-track-wrap {
  overflow: hidden;
}

.deals-track {
  display: flex;
  gap: 20px;
  transition: transform .5s ease;
}

.deal-card {
  min-width: 270px;
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.deal-card-img {
  height: 200px;
  background: url(../images/deal-box-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.deal-card-img img {
  max-height: 180px;
  object-fit: contain;
}

.deal-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.deal-badge {
  color: #FFF;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 100%;
  width: fit-content;
  border-radius: 100px;
  padding: 5px 12px;
  background: linear-gradient(103.96deg, #10B981 0%, #059669 100%);
  box-shadow: 0px 2px 12px 0px #10B9814D;
  display: inline-block;
}

.deal-subtitle {
  color: #1A1035;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
}

.deal-title {
  color: #1A1035;
  font-family: "Work Sans", sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 22.1px;
  margin: 0;
}

.deal-price {
  color: #059669;
  font-family: Inter, sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: normal;
}

.btn-shop-now {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px;
  margin-top: auto;
  border-radius: 74px;
  background: linear-gradient(99deg, #6F44B6 0%, #280F50 100%);
  box-shadow: 0 2px 12px 0 rgba(233, 30, 140, 0.15);
  color: #FFF;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  transition: opacity 0.2s ease;
}

.btn-shop-now:hover {
  opacity: .85;
  color: var(--white);
}

.btn-shop-now .arrow {
  margin-left: 6px;
}

/* ── SHOP BY MOOD ── */


.mood-track-wrap {
  overflow: hidden;
  padding-top: 30px;
}

.mood-track {
  display: flex;
  gap: 9px;
  transition: transform .5s ease;
}

.mood-card {
  min-width: 245px;
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
}

.mood-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.mood-card:hover img {
  transform: scale(1.06);
}

.mood-card-label a {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  margin: 0 20px;
  text-align: center;
  background-color: #FFFFFF00;
  font-family: "Work Sans", Sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 16.8px;
  letter-spacing: -0.3px;
  fill: #FFFFFF;
  color: #FFFFFF;
  border-style: solid;
  border-width: 1.84px 1.84px 1.84px 1.84px;
  border-color: #FFFFFF;
  border-radius: 32px 32px 32px 32px;
  padding: 19px 30px 19px 30px;
  backdrop-filter: blur(4.59405px);

}

.mood-card-label a:hover {
  background-color: #000000;
  color: #FFFFFF;
}

/* ── FEATURED BRANDS ── */

.brand-slide-wrap {
  overflow: hidden;
  padding-top: 20px;
}

.brand-slides {
  display: flex;
  transition: transform .5s ease;
}

.brand-slide {
  min-width: 100%;
  display: flex;
  gap: 20px;
  align-items: center;
}

.brand-slide-img {
  flex: 0 0 40%;
  max-width: 40%;
  border-radius: var(--radius-card);
  overflow: hidden;
  height: 347px;
}

.brand-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-slide-content {
  flex: 1;
}

.brand-slide-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.brand-slide-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.brand-slide-content p {
  font-size: 22px;
  font-weight: 400;
  text-transform: none;
  text-decoration: none;
  line-height: 30px;
  letter-spacing: -0.5px;
  color: #000000;
  margin-bottom: 28px;
  margin-top: 20px;
}

.btn-brand-order {
  background-color: #4A2C6B;
  font-family: "Work Sans", Sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 16.8px;
  letter-spacing: -0.3px;
  fill: #FFFFFF;
  color: #FFFFFF;
  border-radius: 32px 32px 32px 32px;
  padding: 19px 30px 19px 30px;
  display: inline-block;
  min-width: 344px;
  text-align: center;
}

.btn-brand-order:hover {
  background-color: #000;
  color: var(--white);
}

/* ── WHO WE ARE ── */

.whoweare-section{
  padding-top: 0;
  padding-bottom: 100px;
}
.whoweare-section .section-title {
  margin-bottom: 20px;
}

.whoweare-section p {
  text-align: center;
  font-family: "Work Sans", Sans-serif;
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 400;
  text-transform: none;
  text-decoration: none;
  line-height: 42px;
  letter-spacing: -0.5px;
  color: #000000;
}

/* ── REVIEWS ── */


.reviews-track-wrap {
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 20px;
  transition: transform .5s ease;
}

.review-card {
  min-width: 340px;
  background: #F0EEF5;
  border-radius: var(--radius-card);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
  overflow: hidden;
}

.reviewer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviewer-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
}

.reviewer-date {
  font-size: 12px;
  color: #888;
}

.google-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.stars {
  display: flex;
  gap: 2px;
  align-items: center;
}

.stars span {
  color: #F4B400;
  font-size: 18px;
}

.verified-icon {
  color: #1a73e8;
  font-size: 16px;
  margin-left: 4px;
}

.review-text {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

/* ── NEWS & BLOG ── */


.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--white);
}

.blog-card-img {
  border-radius: 20px;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 20px;
}

.blog-card-body h4 {
  color: #000000;
  font-family: "Work Sans", Sans-serif;
  font-size: 27px;
  font-weight: 600;
  text-transform: none;
  text-decoration: none;
  line-height: 1.2em;
  letter-spacing: -0.3px;
}

.btn-read-more {
  font-family: "Work Sans", Sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1.5em;
  background-color: #ff0072;
  border-color: #ff0072;
  margin-top: 30px;
  padding: 13.69px 33px;
  border-radius: 10px;
  color: #FFFFFF;
  display: block;
  width: fit-content;
}

.btn-read-more:hover {
  opacity: .85;
  color: var(--white);
}

.btn-view-all-wrap {
  text-align: center;
  margin-top: 40px;
}

.btn-view-all {
  background-color: #4A2C6B;
  font-family: "Work Sans", Sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 16.8px;
  letter-spacing: -0.3px;
  fill: #FFFFFF;
  color: #FFFFFF;
  border-radius: 32px 32px 32px 32px;
  padding: 19px 80px 19px 80px;
  display: block;
  width: fit-content;
  margin: 0 auto;
}

.btn-view-all:hover {
  background-color: #000;
}

/* ── FAQ ── */

.faq-heading {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.faq-item {
  border-bottom: 1px solid #E0DCDC;
  padding: 18px 0;
  cursor: pointer;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 23px;
  font-weight: 600;
  color: var(--text-dark);
  gap: 16px;
}

.faq-icon {
  font-size: 22px;
  color: var(--purple);
  flex-shrink: 0;
  transition: transform .3s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  font-size: 16px;
  color: #21212199;
  line-height: 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding-top: 12px;
}

/* ── FOOTER ── */
#site-footer {
  background: var(--purple);
  color: var(--white);
  padding: 64px 0 0;
}

.footer-top {
  padding-bottom: 48px;
}



.footer-tagline {
  font-family: "Work Sans", Sans-serif;
  font-size: 38.75px;
  font-weight: 700;
  line-height: 50px;
  letter-spacing: -0.6px;
  color: #FFFFFF;
}

.footer-desc {

  font-family: "Work Sans", Sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  color: #FFFFFF;
  margin-bottom: 24px;
}

.footer-subscribe {
  display: flex;
  align-items: center;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, .4);
  border-radius: var(--radius-pill);
  padding: 12px 16px;
  gap: 10px;
  cursor: pointer;
  transition: border-color .2s;
  margin-bottom: 28px;
}

.footer-subscribe:hover {
  border-color: var(--white);
}

.footer-subscribe-text {
  font-size: 14px;
  color: rgba(255, 255, 255, .85);
  flex: 1;
}

.footer-subscribe-arrow {
  color: var(--white);
  font-size: 18px;
}

.footer-socials {
  display: flex;
  gap: 20px;
  margin-bottom: 36px;
}

.footer-social-icon {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(255, 255, 255, .4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, background .2s;
}

.footer-social-icon:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, .15);
}

.footer-social-icon svg {
  width: 16px;
  height: 16px;
  fill: var(--white);
}

.footer-app-label {
  font-family: "Work Sans", Sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1em;
  letter-spacing: -0.6px;
  color: #FFFFFF;
}

.footer-app-sub {
  font-family: "Work Sans", Sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2em;
  color: #FFFFFF;
  margin-bottom: 14px;
}

.btn-appstore img {
  max-width: 40%;
}



/* Footer columns */
.footer-col h5 {
  font-family: "Work Sans", Sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 16.8px;
  letter-spacing: 0.14px;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-family: "Work Sans", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-transform: none;
  text-decoration: none;
  line-height: 16px;
  letter-spacing: -0.28px;
  color: #FFFCF8B3;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-col {
  margin-bottom: 20px;
}

/* Footer logo area */
.footer-logo-col {
  display: flex;
  flex-direction: column;

}

.footer-kolas-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 12px;
}

.footer-kolas-text {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: .1em;
  color: var(--white);
}

/* Footer bottom bar */
.footer-bottom {
  padding: 40px 0;
  text-align: center;
  font-family: "Work Sans", Sans-serif;
  font-size: 13.13px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 16px;
  letter-spacing: 0.14px;
  color: #FFFFFF;
}

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  .footer-top {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .footer-logo-col {
    align-items: flex-start;
  }

  .desktop-nav {
    gap: 8px;
  }
}

@media (max-width: 1023px) {

  .desktop-nav,
  .cta-wrap {
    display: none;
  }

  .logo-wrap {
    position: static;
    transform: none;
  }

  .hamburger-btn {
    display: flex;
  }

  .header-inner {
    height: 95px;
    padding: 0 20px;
  }

  #site-header.sticky .header-inner {
    height: 80px;
  }

  #site-header.sticky .logo-wrap {
    display: none;
  }

  #site-header.sticky .mobile-sticky-order {
    display: inline-flex;
    opacity: 1;
    pointer-events: auto;
    font-size: 13px;
    padding: 12px 24px;
    letter-spacing: -0.04px;
  }

  .hero-content {
    max-width: 80%;
    padding: 48px 40px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }

  .brand-slide {
    flex-direction: column;
  }

  .brand-slide-img {
    max-width: 100%;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-logo-col {
    align-items: flex-start;
  }

  .deals-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media only screen and (max-width:991px) {
  .category-carousel-inner div {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .section-pad {
    padding: 48px 0;
  }

  .hero-section {
    min-height: 400px;
  }

  .hero-slide {
    min-height: 400px;
  }

  .hero-content {
    max-width: 100%;
    padding: 40px 24px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .cat-card {
    min-width: 160px;
  }

  .cat-card-img {
    height: 160px;
  }

  .deal-card {
    min-width: 220px;
  }

  .mood-card {
    min-width: 190px;
    height: 240px;
  }

  .review-card {
    min-width: 280px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }
}

/* Focus */
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 3px;
  border-radius: 4px;
}