@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap');

*{
    padding: 0; margin: 0;
    box-sizing: border-box; text-transform: capitalize;
    transition: .4s linear;
    outline: none; border: none; text-decoration: none;
    text-transform: unset!important;
    font-family: "Inter", sans-serif;
  
}

:root{
    --main-color: #2874f0;
    --hover-color: #2165d3;
    --black-color: #01213A;
    --white-color: #fff;
    --heading-font: "Sora", sans-serif;;
    --gray-color: #777;
}


html{
    font-size: 65.5%;
    scroll-behavior: smooth;
    transition: .10s all;

}

body{
    overflow-x: hidden;
    background: #fff;
/*    cursor: url("../img/pencil.png"), auto;*/
}

a{
    text-decoration: none!important;
}

ol, ul{
    padding-left: 0;
}

dl, ol, ul{
    margin: 0;
}
::-webkit-scrollbar{
    width: .6rem;
}

::-webkit-scrollbar-track{
    background: var(--white-color);
}

::-webkit-scrollbar-thumb{
    background: #F4F5F6;
}

/* --- Scroll to Top Button --- */
#scrollTopBtn {
  position: fixed;
  bottom: 40px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--main-color);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  transform: translateY(80px);

  transition: opacity 0.4s ease,
              transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 999;
}

#scrollTopBtn.visible {
  opacity: 1;
  transform: translateY(0);
}

#scrollTopBtn:hover {
  background: var(--hover-color);
  color: var(--white);
  transform: translateY(-3px);
}

#scrollTopBtn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: white;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.heading-section{
  margin-bottom: 2rem;
}

.heading-section__inner {
    display: flex;
    align-items: stretch;
    gap: 1.8rem;
}

.heading-section__accent {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    justify-content: center;
}

.heading-section__accent-bar {
    width: 0.5rem;
    border-radius: 1rem;
}

.heading-section__accent-bar--top {
    height: 2.4rem;
    background: #018ef6;
}

.heading-section__accent-bar--bottom {
    height: 1.4rem;
    background: #d51243;
}

.white{
  color: var(--white-color)!important;
}

.gray{
  color: #ffffff1a!important;
}
/*END UTITLITY CSS*/

/*START HEADER+HOME */
/* ===== WELCOME BAR ===== */
.welcome-bar {
  background: #edf3ff;
  text-align: center;
  padding: 1rem 2rem;
  background: url(../img/top_offfer_bar_bg.png);
  background-size: cover; background-position: center;
  width: 100%;
  font-size: 1.3rem;
  color: #444; font-family: var(--heading-font);
  transition: all 0.4s ease;
  overflow: hidden;
  max-height: 6rem;
}
.welcome-bar.hidden {
  max-height: 0;
  padding: 0;
  opacity: 0;
}
.welcome-bar a {
  color: var(--main-color);
  font-weight: 600;
  font-family: var(--heading-font);
  margin-left: 0.4rem;
}
.welcome-bar a:hover { text-decoration: underline; }

/* ===== HEADER 2 - LOGO + SEARCH + ICONS ===== */
.header-main {
  background: #fff;
  padding: 1.4rem 5%;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
/*  box-shadow: 0 2px 8px rgba(0,0,0,0.06);*/
}
.header-main-inner {
  display: flex;
  align-items: center;
  gap: 2rem; justify-content: space-between;
}


.hm-logo img{
  height: 3rem;
}

/* Search */
.hm-search-wrap {
  flex: 1;
  max-width: 68rem;
  margin: 0 auto;
  position: relative;
}
.hm-search-input {
  width: 100%;
  padding: 1.4rem 5rem 1.1rem 4.5rem;
/*  border: 2px solid var(--main-color);*/
  border-radius: 12px;
  font-size: 1.4rem;
  background: #f3f4f7;
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none; font-family:var(--heading-font);
}
.hm-search-input:focus {
  border-color: #2874f0;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(40,116,240,0.1);
}
.hm-search-icon {
  position: absolute;
  left: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  font-size: 1.5rem;
}
.hm-search-btn {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  padding: 0 1.8rem;
  background: transparent;
  border: none;
  border-radius: 0 3rem 3rem 0;
  color: #111111;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.2s;
}

/* Search Dropdown */
.hm-search-dropdown {
  position: absolute;
  top: calc(100% + 0.8rem);
  left: 0; right: 0;
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  border: 1px solid #e8e8e8;
  z-index: 9999;
  display: none;
  overflow: hidden;
  animation: dropFade 0.2s ease;
}
.hm-search-dropdown.show { display: block; }
@keyframes dropFade {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.search-drop-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #999;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1.4rem 2rem 0.8rem;
}
.search-drop-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 2rem;
  cursor: pointer;
  transition: background 0.15s;
  border-bottom: 1px solid #f5f5f5;
}
.search-drop-item:last-child { border-bottom: none; }
.search-drop-item:hover { background: #f0f5ff; }
.sdi-left { display: flex; flex-direction: column; gap: 0.2rem; }
.sdi-name { font-size: 1.4rem; font-weight: 600; color: #222; }
.sdi-sku { font-size: 1.15rem; color: #2874f0; }
.sdi-price { display: flex; align-items: center; gap: 0.8rem; font-size: 1.3rem; }
.sdi-old { color: #aaa; text-decoration: line-through; }
.sdi-new { color: #222; font-weight: 600; }
.sdi-off { color: #2874f0; font-weight: 700; font-size: 1.2rem; }

/* Icons */
.hm-icons {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.hm-lang {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.4rem 1.4rem;
  border: 1px solid #e7e7e7;
  border-radius: 3rem;
  cursor: pointer;
  font-size: 1.3rem;
  color: #444;
  transition: border-color 0.2s;
  white-space: nowrap;
}
.hm-lang:hover { border-color: #2874f0; color: #2874f0; }
.hm-lang img { width: 2rem; object-fit: cover; border-radius: 0.2rem; }

.hm-icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  color: #333;
  font-size: 1.9rem;
  background: transparent;
  border: none;
}

.hm-icon-btn img{
  width: 22px;
}
.hm-icon-btn:hover { background: #f0f5ff; color: #2874f0; }
.hm-icon-badge {
  position: absolute;
  top: 0.2rem; right: 0.2rem;
  width: 1.7rem; height: 1.7rem;
  background: #d51243;
  color: #fff;
  border-radius: 50%;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}

/* Mobile search bar */
.mobile-search-bar {
  display: none;
  background: #fff;
  padding: 1rem 5%;
  border-bottom: 1px solid #eee;
  position: fixed;
  z-index: 11111;
  top: 6.2rem;
  z-index: 999;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.mobile-search-bar.show {
  transform: translateY(0);
  opacity: 1;
}
.mobile-search-inner {
  position: relative;
}
.mobile-search-inner input {
  width: 100%;
  padding: 1rem 4rem 1rem 1.5rem;
  border: 1.5px solid #2874f0;
  border-radius: 2rem;
  font-size: 1.4rem;
  outline: none;
}
.mobile-search-inner button {
  position: absolute; right: 0; top: 0; height: 100%;
  padding: 0 1.4rem;
  background: #2874f0; border: none; border-radius: 0 2rem 2rem 0;
  color: #fff; font-size: 1.5rem; cursor: pointer;
}

/* ===== HEADER 3 - CATEGORY BUTTON + NAV ===== */
.header-nav {
  background: #fff;
  padding: 0 5%;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 7.4rem;
  z-index: 998;
  background: #171d37;
}
.header-nav-inner {
  display: flex;
  align-items: center;
  height: 6.5rem;
}

.header-main{
    transition: all 0.4s ease;
  }

.header-main.fixed {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  backdrop-filter: blur(1rem);
  background: rgba(255,255,255,0.7);
  border-bottom: 0.1rem solid rgba(255,255,255,0.3);
  animation: slideDown 0.4s ease forwards;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}


/* Category Button */
.cat-btn {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: #2874f0;
  color: #fff;
  padding: 0 1.5rem;
  height: 100%;
  border: none;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s;
  margin-right: 2rem;
  border-radius: 0;
}

.cat-btn img{
  width: 22px;
}

.cat-btn:hover { background: #1a5fd4; }

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0;
  height: 100%;
  flex: 1;
}
.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1.6rem;
  height: 100%;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--black-color);
  transition: color 0.2s;
  color: var(--white-color);
/*  white-space: nowrap;*/
  cursor: pointer;
  font-family: var(--heading-font);
}
.nav-link:hover { color: #2874f0; }
.nav-link i { font-size: 1.1rem; transition: transform 0.2s; }
.nav-item:hover > .nav-link i { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown, .nav-mega {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 0 0 1rem 1rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  border-top: 2px solid #2874f0;
  z-index: 9000;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  min-width: 20rem;
}

.nav-item:last-child .nav-mega {
  min-width: 60rem;
  left: -44rem;
}

.nav-item:nth-last-child(2) .nav-mega{min-width: 60rem;
  left: -44rem; min-width: 60rem;
}

.nav-item:nth-last-child(3) .nav-mega{min-width: 60rem;
  left: -44rem; min-width: 60rem;
}

.nav-mega { min-width: 60rem; left: -5rem; }
.nav-item:hover > .nav-dropdown,
.nav-item:hover > .nav-mega {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.nav-dropdown a {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.1rem 2rem;
  font-size: 1.35rem;
  color: #333;
  transition: background 0.15s, color 0.15s;
  border-bottom: 1px solid #f5f5f5;
}
.nav-dropdown a:last-child { border-bottom: none; }
.nav-dropdown a:hover { background: #f0f5ff; color: #2874f0; }

/* Mega menu */
.nav-mega-inner { display: flex; padding: 2rem; gap: 2rem; }
.nav-mega-col { flex: 1; }
.nav-mega-heading {
  font-size: 1.2rem;
  font-weight: 700;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
  margin-bottom: 1rem;
}
.nav-mega-col a {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0.8rem 0;
  font-size: 1.35rem;
  color: #333;
  transition: color 0.15s;
}
.nav-mega-col a:hover { color: #2874f0; }
.nav-mega-col a i { font-size: 1.1rem; color: #2874f0; }

/* Right nav info */
.nav-info {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 1.3rem;
  color: #555;
}
.nav-info span { display: flex; align-items: center; gap: 0.5rem; cursor: pointer; }
.nav-info span:hover { color: #2874f0; }
.nav-info .ni-phone { color: #2874f0; font-weight: 600; }

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  padding: 2rem 5% 3rem;
}

.hero-row {
  display: grid;
  grid-template-columns: 25rem 1fr 26rem;
  grid-template-rows: 46rem;
  gap: 1.2rem;
  width: 100%;
  height: 46rem;
}


.hero-cat-slot {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  width: 100%;    
  height: 100%;   
  overflow: hidden;
}

.cat-sidebar {
  position: absolute;
  inset: 0;             
  width: 100%;
  height: 100%;
  background: #fff;
  border: 1px solid #E5E5E5;
  overflow-y: auto;
  overflow-x: hidden;
  /* Default: visible */
  border-radius: 16px;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.cat-sidebarOther{
  position: absolute;
  inset: 0;
  top: 188px;
  left: 0;
  max-width: 291px;
  height: 100%;
  background: #fff;
  border: 1px solid #E5E5E5;
  overflow-y: auto;
  overflow-x: hidden;
  border-radius: 0;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

/*
 * COLLAPSED STATE — only visual.
 * The slot still occupies its 25rem grid column.
 * Space stays empty. Banner does NOT move. Nothing shifts.
 */
.hero-cat-slot.cat-hidden .cat-sidebar {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-1.5rem); /* subtle slide hint, purely cosmetic */
  pointer-events: none;
}

/* Thin minimal scrollbar */
.cat-sidebar::-webkit-scrollbar { width: 0.3rem; }
.cat-sidebar::-webkit-scrollbar-track { background: transparent; }
.cat-sidebar::-webkit-scrollbar-thumb { background: #d0d0d0; border-radius: 2rem; }
.cat-sidebar::-webkit-scrollbar-thumb:hover { background: #b0b0b0; }

.cat-sidebar-heading {
  font-size: 1.5rem;
  font-weight: 700;
  border-bottom: 1px solid #E5E5E5;
  color: var(--white-color);
  background: #171d37;
  padding: 1.4rem 1.8rem;
  font-family:var(--heading-font);
  display: flex; align-items: center; gap: 0.8rem;
}
.cat-list { list-style: none; }
.cat-list-item { border-bottom: 1px solid #E5E5E5; }
.cat-list-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.8rem;
  font-size: 1.35rem;
  color: #333; font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.cat-list-link:hover { background: #f0f5ff; color: #2874f0; }
.cat-list-link-left { display: flex; align-items: center; gap: 1rem; font-family:var(--heading-font); }
.cat-list-link-left img { width: 20px;}
.cat-list-toggle {
  width: 2.2rem; height: 2.2rem;
  border-radius: 50%;
  border: 1px solid #ddd;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: #888;
  transition: all 0.2s;
  flex-shrink: 0;
}
.cat-list-item.open .cat-list-toggle {
  background: #2874f0;
  border-color: #2874f0;
  color: #fff;
}

/* Category Accordion Sub-list */
.cat-sub-list {
  list-style: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: #f9fbff;
}
.cat-sub-list.open { max-height: 30rem; }
.cat-sub-list li a {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0.9rem 1.8rem 0.9rem 3.8rem;
  font-size: 1.3rem;
  color: #555;
  transition: color 0.15s;
}
.cat-sub-list li a:hover { color: #2874f0; }
.cat-sub-list li a::before {
  content: '';
  width: 0.5rem; height: 0.5rem;
  border-radius: 50%;
  background: #2874f0;
  flex-shrink: 0; display: none;
}

/* Banner Slider — grid col 2 */
.hero-banner {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;  /* exactly 46rem from grid row */
  min-width: 0;
}

.web-detail-section__support-box {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.web-detail-section__support-icon {
  font-size: 2.8rem;
}

.web-detail-section__support-icon img{
  width: 40px;
}

.web-detail-section__support-icon i{
  color: var(--main-color);
}

.web-detail-section__support-content h4 {
  font-size: 1.3rem;
  margin: 0; color: #777;
  font-weight: 400;
}

.web-detail-section__support-content span {
  font-size: 1.6rem;
    font-weight: 700;
    display: block; 
    color: #282828;
    font-family: var(--heading-font);
    margin-top: .3rem;
}

.banner-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.65s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}

/* Each slide is exactly the container width */
.banner-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}

.banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Banner text container — centered vertically */
.banner-text {
  position: absolute;
  top: 50%;
  left: 6%;
  transform: translateY(-50%);
  z-index: 2;
}

/* Text elements — hidden by default, animate in when slide is active */
.banner-tag {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2874f0;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(1.4rem);
  transition: opacity 0.42s ease 0.05s, transform 0.42s ease 0.05s;
}
.banner-title {
  font-size: 4rem;
  line-height: 1.15;
  color: var(--black-color);
  margin-bottom: 2rem;
  max-width: 45rem;
  opacity: 0; font-weight: 600;
  transform: translateY(1.8rem);
  font-family:var(--heading-font);
  transition: opacity 0.42s ease 0.18s, transform 0.42s ease 0.18s;
}
.banner-title span { color: #2874f0; }
.banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 2.4rem;
  background: var(--white-color);
  color: var(--black-color);
  border-radius: 0.4rem;
  font-size: 1.35rem;
  font-weight: 600;
  opacity: 0; font-family:var(--heading-font);
  transform: translateY(1.4rem);
  transition: background 0.2s, gap 0.2s,
              opacity 0.42s ease 0.3s, transform 0.42s ease 0.3s;
}
.banner-cta:hover { background: #2874f0; gap: 1.4rem; color: #fff; }

/* Active slide — animate text elements in */
.banner-slide.is-active .banner-tag {
  opacity: 1;
  transform: translateY(0);
}
.banner-slide.is-active .banner-title {
  opacity: 1;
  transform: translateY(0);
}
.banner-slide.is-active .banner-cta {
  opacity: 1;
  transform: translateY(0);
}

/* Slider controls */
.banner-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 4.2rem; height: 4.2rem;
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: #333;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 3px 12px rgba(0,0,0,0.15);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.banner-arrow:hover { background: #2874f0; color: #fff; }
.banner-arrow.prev { left: 1.5rem; }
.banner-arrow.next { right: 1.5rem; }
.banner-dots {
  position: absolute;
  bottom: 1.8rem; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 0.8rem; z-index: 5;
}
.banner-dot {
  width: 2.8rem; height: 0.4rem;
  background: rgba(255,255,255,0.5);
  border-radius: 2rem;
  cursor: pointer;
  transition: background 0.2s, width 0.2s;
  border: none;
}
.banner-dot.active { background: #2874f0; width: 4rem; }

/* Side banners — grid col 3 */
.hero-side-banners {
  grid-column: 3;
  grid-row: 1;
  width: 100%;     /* = 26rem from grid */
  height: 100%;    /* = 46rem from grid */
  display: flex;
  flex-direction: column;
  gap: 1.2rem; border-radius: 14px;
}
.side-banner {
  flex: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 14px;
}
.side-banner img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.side-banner:hover img { transform: scale(1.05); }
.side-banner-text {
  position: absolute;
  top: 0; left: 0; right: 0;
  padding: 2rem 1.6rem;
/*  background: linear-gradient(0deg, rgba(0,0,0,0.55) 0%, transparent 100%);*/
  color: #fff;
}
.side-banner-tag {
  font-size: 1.15rem;
  font-weight: 600;
  color: #2874f0;
  margin-bottom: 0.4rem;
}
.side-banner-title {
  font-size: 1.8rem;
  line-height: 1.3;
  color: #111;
  font-weight: 600;
  max-width: 200px;
  font-family:var(--heading-font);
}

/* ===== SIDEBARS (Cart, Wishlist, User) ===== */
.sidebar-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 9900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.sidebar-overlay.show { opacity: 1; pointer-events: all; }

.sidebar-panel {
  position: fixed;
  top: 0; right: -42rem;
  width: 40rem;
  max-width: 96vw;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  box-shadow: -8px 0 32px rgba(0,0,0,0.12);
  display: flex; flex-direction: column;
  transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
  overflow: hidden;
}
.sidebar-panel.show { right: 0; }

.sidebar-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 2rem 2.4rem;
  border-bottom: 1px solid #eee;
  flex-shrink: 0; gap: 15px;
}
.sidebar-header-left { display: flex; align-items: center; gap: 1.2rem; }
.sidebar-header-left img{
  width: 30px;
}

.sidebar-header-left i { font-size: 2.2rem; color: #2874f0; }
.sidebar-title  {
  font-size: 1.8rem;
    font-weight: 700;
    color: #111;
  font-family: var(--heading-font);
}
.sidebar-count { font-size: 1.35rem; color: #888; font-weight: 400; }
.sidebar-close {
  width: 3.6rem; height: 3.6rem;
  border-radius: 50%;
  background: #f5f5f5;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: #555;
  transition: background 0.2s, color 0.2s;
}
.sidebar-close:hover { background: #ffe0e0; color: #e00; }

.sidebar-body {
  flex: 1;
  overflow-y: auto;
  padding: 0 2.4rem;
}
.sidebar-body::-webkit-scrollbar { width: 0.4rem; }
.sidebar-body::-webkit-scrollbar-thumb { background: #ddd; border-radius: 2rem; }

.sidebar-footer {
  padding: 1.6rem 2.4rem 2.4rem;
  border-top: 1px solid #eee;
  flex-shrink: 0;
}

/* Cart Items */
.cart-item {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid #f2f2f2;
}
.cart-item:last-child { border-bottom: none; }
.cart-item-img {
  width: 7rem; height: 7rem;
  object-fit: cover;
  border-radius: 0.8rem;
  flex-shrink: 0;
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: 1.35rem; font-weight: 600; color: #111; line-height: 1.4; margin-bottom: 0.3rem; font-family: var(--heading-font);}
.cart-item-sku { font-size: 1.15rem; color: #aaa; margin-bottom: 0.6rem; }
.cart-item-price { font-size: 1.5rem; font-weight: 600; color: #2874f0; font-family: var(--heading-font);}
.cart-item-qty {
  display: flex; align-items: center; gap: 0;
  margin-top: 0.8rem;
  border: 1px solid #e0e0e0;
  border-radius: 0.4rem;
  overflow: hidden;
  width: fit-content;
}
.qty-btn {
  width: 2.8rem; height: 2.8rem;
  border: none; background: #f8f8f8;
  cursor: pointer; font-size: 1.4rem; color: #555;
  transition: background 0.15s, color 0.15s;
  display: flex; align-items: center; justify-content: center;
}
.qty-btn:hover { background: #2874f0; color: #fff; }
.qty-val {
  padding: 0 1rem; min-width: 3rem;
  text-align: center; font-size: 1.3rem; font-weight: 600;
  border-left: 1px solid #e0e0e0; border-right: 1px solid #e0e0e0;
  line-height: 2.8rem; font-family: var(--heading-font);
}
.cart-item-del {
  width: 3.4rem; height: 3.4rem;
  border-radius: 8px;
  background: #fff4f4;
  color: #e00;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.15s;
  flex-shrink: 0;
}

.cart-item-del img{
  width: 18px;
}

.cart-item-del:hover { background: #ffe0e0; }

.cart-subtotal {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 0 1.6rem;
  font-size: 1.6rem; font-weight: 700; color: #111;
  border-bottom: 1px solid #eee;
  margin-bottom: 1.4rem;
}
.cart-subtotal-price { color: #2874f0; }
.btn-checkout {
  display: block; width: 100%;
  padding: 1.4rem;
  background: #2874f0;
  color: #fff;
  border: none; border-radius: 3rem;
  font-size: 1.5rem; font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  text-align: center;
  margin-bottom: 1rem;
}
.btn-checkout:hover { background: var(--hover-color); color: var(--white);}
.btn-continue {
  display: block; width: 100%;
  padding: 1.3rem;
  background: transparent;
  color: #333;
  border: 1.5px solid #ddd; border-radius: 3rem;
  font-size: 1.4rem; font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s;
  text-align: center;
}
.btn-continue:hover { border-color: #2874f0; color: #2874f0; }

/* Wishlist Items */
.wishlist-item {
  display: flex; align-items: center; gap: 1.4rem;
  padding: 1.6rem 0; border-bottom: 1px solid #f2f2f2;
}
.wishlist-item:last-child { border-bottom: none; }
.wishlist-item-img {
  width: 7rem; height: 7rem;
  object-fit: cover; border-radius: 0.8rem; flex-shrink: 0;
}
.wishlist-item-info { flex: 1; }
.wishlist-item-name {
  font-size: 1.4rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 0.5rem;
    font-family: var(--heading-font);
}

.wishlist-item-price { font-size: 1.5rem; font-weight: 700; color: #2874f0; margin-bottom: 0.8rem; }
.btn-add-cart {
  padding: .8rem 1.2rem;
    background: var(--main-color);
    color: #fff;
    border-radius: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
    font-family: var(--heading-font);
    transition: background .2s;
}

.btn-add-cart img{
  width: 16px;
  filter: brightness(100);
}

.btn-add-cart:hover { background: #1a5fd4; }
.wishlist-item-del {
  width: 3.4rem; height: 3.4rem;
  border-radius: 50%;
  border: 1.5px solid #e0e0e0;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  color: #999; font-size: 1.4rem;
  cursor: pointer;
  transition: all 0.15s;
  flex-shrink: 0;
}
.wishlist-item-del:hover { border-color: #e00; color: #e00; background: #fff5f5; }

/* User (More) Sidebar */
.more-section-label {
  font-size: 1.1rem; font-weight: 700;
  color: #aaa; text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 1.6rem 0 0.8rem;
}
.more-list { list-style: none; }
.more-list li {
  border-bottom: 1px solid #f2f2f2;
}

.more-list li a img{
  width: 18px;
}

.more-list li:last-child { border-bottom: none; }
.more-list a {
  display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.4rem 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    font-family: var(--heading-font);
    border-bottom: 1px solid #f5f5f5;
    transition: color .2s;
}
.more-list a:hover { color: #2874f0; }
.more-list a i { font-size: 1.7rem; color: #555; width: 2.2rem; transition: color 0.15s; }
.more-list a:hover i { color: #2874f0; }

/* ===== MOBILE MENU SIDEBAR ===== */
.mobile-menu-panel {
  position: fixed;
  top: 0; left: -100%;
  width: 32rem;
  max-width: 90vw;
  height: 100vh;
  background: #111;
  z-index: 9999;
  display: flex; flex-direction: column;
  transition: left 0.4s cubic-bezier(0.4,0,0.2,1);
  overflow: hidden;
}
.mobile-menu-panel.show { left: 0; }

.mob-menu-close {
  display: flex; align-items: center; justify-content: center; gap: 0.8rem;
  padding: 1.4rem 2rem;
  background: #2874f0;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: center;
}

.mob-menu-search {
  padding: 1.4rem 2rem;
  background: #111;
  border-bottom: 1px solid #2a2a2a;
}
.mob-menu-search-inner {
  position: relative;
}
.mob-menu-search input {
  width: 100%;
  padding: 1rem 4rem 1rem 1.5rem;
  background: #fff;
  border: none;
  border-radius: 0.4rem;
  font-size: 1.4rem;
  outline: none;
}
.mob-menu-search button {
  position: absolute; right: 0; top: 0; height: 100%;
  padding: 0 1.2rem;
  background: #2874f0; border: none;
  border-radius: 0 0.4rem 0.4rem 0;
  color: #fff; cursor: pointer;
}

.mob-menu-tabs {
  display: flex;
  border-bottom: 1px solid #2a2a2a;
  flex-shrink: 0;
}
.mob-tab {
  flex: 1; padding: 1.2rem;
  background: transparent; border: none;
  font-size: 1.3rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #aaa; cursor: pointer;
  transition: all 0.2s;
}
.mob-tab.active { background: #2874f0; color: #fff; }

.mob-menu-body { flex: 1; overflow-y: auto; }
.mob-menu-body::-webkit-scrollbar { width: 0.3rem; }
.mob-menu-body::-webkit-scrollbar-thumb { background: #333; }

.mob-menu-tab-content { display: none; }
.mob-menu-tab-content.active { display: block; }

/* Menu tab items */
.mob-menu-list { list-style: none; }
.mob-menu-item { border-bottom: 1px solid #222; }
.mob-menu-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 2rem;
  color: #ccc;
  font-size: 1.4rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.mob-menu-link:hover { background: #1a1a1a; color: #fff; }
.mob-menu-link i { font-size: 1.3rem; color: #555; }
.mob-menu-item.open > .mob-menu-link i { transform: rotate(45deg); color: #2874f0; }

.mob-sub-list {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease;
  background: #0a0a0a;
  list-style: none;
}
.mob-sub-list.open { max-height: 30rem; }
.mob-sub-list li a {
  display: block;
  padding: 1.1rem 2rem 1.1rem 3.4rem;
  font-size: 1.3rem; color: #888;
  transition: color 0.15s;
}
.mob-sub-list li a:hover { color: #2874f0; }

/* Cat tab items */
.mob-cat-list { list-style: none; }
.mob-cat-item { border-bottom: 1px solid #222; }
.mob-cat-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 2rem;
  color: #ccc; font-size: 1.4rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.mob-cat-link:hover { background: #1a1a1a; color: #fff; }
.mob-cat-toggle {
  width: 2.4rem; height: 2.4rem;
  border: 1px solid #444;
  border-radius: 0.3rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: #888;
  transition: all 0.2s;
}
.mob-cat-item.open .mob-cat-toggle {
  background: #2874f0; border-color: #2874f0; color: #fff;
}
.mob-cat-sub {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease;
  background: #0a0a0a; list-style: none;
}
.mob-cat-sub.open { max-height: 20rem; }
.mob-cat-sub li a {
  display: block;
  padding: 1rem 2rem 1rem 3.4rem;
  font-size: 1.3rem; color: #777;
  transition: color 0.15s;
}
.mob-cat-sub li a:hover { color: #2874f0; }

/* Login/Wishlist in mobile menu */
.mob-menu-footer {
  border-top: 1px solid #222;
  padding: 1.6rem 0;
}
.mob-footer-link {
  display: flex; align-items: center; gap: 1.2rem;
  padding: 1.2rem 2rem;
  font-size: 1.4rem; color: #aaa;
  transition: color 0.15s;
  cursor: pointer;
}
.mob-footer-link:hover { color: #2874f0; }
.mob-footer-link i { font-size: 1.8rem; }

/* More accordion in mobile */
.mob-more-trigger {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 2rem;
  font-size: 1.4rem; color: #aaa;
  cursor: pointer;
  transition: color 0.15s;
}
.mob-more-trigger:hover { color: #2874f0; }
.mob-more-trigger span { display: flex; align-items: center; gap: 1.2rem; }
.mob-more-list {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease;
  list-style: none; background: #0a0a0a;
}

.mob-more-list li{
  margin: 1.2rem 0;
}

.mob-more-list.open { max-height: 50rem; }
.mob-more-list a {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 2rem 1rem 3.4rem;
  font-size: 1.3rem; color: #777;
  transition: color 0.15s;
}
.mob-more-list a:hover { color: #2874f0; }
.mob-more-list .ml-section-label {
  font-size: 1.1rem; font-weight: 700;
  color: #555; text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 1.2rem 2rem 0.4rem 2rem;
}
/*END HEADER+HOME*/

.banner-section{
  padding: 2rem 5%;
}

.banner-section img{
  width: 100%; 
}
/*Start category section*/
.category-bar-section {
  padding: 4rem 5%;
/*  background: hsl(0deg 0% 97% / 54%);*/
background: #f8f8f8;
}

/* ── SCROLL WRAPPER (mobile) ── */
.category-bar-section__scroll-wrapper {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.category-bar-section__row::-webkit-scrollbar {
  display: none; height: 0; width: ;
}

/* ── GRID ROW ── */
.category-bar-section__row {
  display: flex;
  gap: 2.6rem;
  min-width: max-content;
}

/* ── SINGLE CARD ── */
.category-bar-section__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  flex: 1 1 0;
  min-width: 11rem;
}

/* ── BIG CIRCLE (image bg) ── */
.category-bar-section__circle {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  background: #e8e8e8;
  flex-shrink: 0;
  box-shadow: 0 0.8rem 1.5rem rgba(0,0,0,0.08),
    0 0.2rem 0.4rem rgba(0,0,0,0.05),
    inset 0 0.1rem 0.2rem rgba(255,255,255,0.8);
  border: 4px solid white;
}

.category-bar-section__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}

/* ── WHITE OVERLAY (solid bottom arc) ── */
.category-bar-section__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: #00000054;
  display: none;
  border-radius: 0 0 10% 10% / 0 0 100% 100%;
  transition: height 0.45s ease, border-radius 0.45s ease;
}

/* ── ICON BUBBLE (center-top of circle) ── */
.category-bar-section__icon-bubble {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: width 0.45s ease, height 0.45s ease;
  z-index: 2; display: none;
  box-shadow: 0 0.2rem 0.8rem rgba(0,0,0,0.10);
}

.category-bar-section__icon-bubble i,
.category-bar-section__icon-bubble img {
  font-size: 1.6rem;
  color: #444444;
  width: 2rem;
  height: 2rem;
  object-fit: contain;
  transition: font-size 0.45s ease, width 0.45s ease, height 0.45s ease;
}

/* ── BADGE (count) ── */
.category-bar-section__badge {
  position: absolute;
  top: 0.4rem;
  right: 0.4rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #e5363a;
  line-height: 1;
  z-index: 3; display: none;
}

/* ── LABEL ── */
.category-bar-section__label {
  font-size: 1.6rem;
  max-width: 140px;
  font-weight: 600;
  font-family: var(--heading-fonts);
  color: var(--black-color);
  text-align: center;
  line-height: 1.4;
  transition: color 0.25s ease;
}

/* ── ACTIVE / HOVER STATE ── */
.category-bar-section__card:hover .category-bar-section__overlay,
.category-bar-section__card--active .category-bar-section__overlay {
  height: 100%;
  border-radius: 0;
}

.category-bar-section__card:hover .category-bar-section__icon-bubble,
.category-bar-section__card--active .category-bar-section__icon-bubble {
  width: 6.4rem;
  height: 6.4rem;
}

.category-bar-section__card:hover .category-bar-section__icon-bubble i,
.category-bar-section__card--active .category-bar-section__icon-bubble i {
  font-size: 2.8rem;
}

.category-bar-section__icon-bubble img{
  width: 26px;
}

.category-bar-section__card:hover .category-bar-section__bg-img,
.category-bar-section__card--active .category-bar-section__bg-img {
  transform: scale(1.07);
}

.category-bar-section__card--active .category-bar-section__label {
  color: #e5363a;
}
/*End category section*/

/* Start book section*/
.book-section {
  padding: 4rem 5%;
/*  background: #f8f8f8;*/
}

/* ════════════ HEADER ════════════ */
.book-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  gap: 1.8rem;
}

.book-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;

  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--main-color);
  margin-bottom: 1rem;
}

.book-section__eyebrow-line {
  width: 2.4rem;
  height: 2px;
  background: var(--main-color);
  border-radius: 2px;
  flex-shrink: 0;
}

.book-section__title {
  
  font-size: 3.2rem;
  font-weight: 700;
  color: #1c1c2e;
  line-height: 1.22;
}

.book-section__title-accent {
  color: var(--main-color);
}

.book-section__desc {

  font-size: 1.45rem;
  color: #7c8593;
  margin-top: 0.7rem;
  font-weight: 400;
}

.book-section__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;

  font-size: 1.35rem;
  font-weight: 500;
  color: var(--main-color);
  text-decoration: none;
  border: 1.5px solid var(--main-color);
  padding: 0.95rem 2.2rem;
  border-radius: 10rem;
  white-space: nowrap;
  transition: background 0.22s, color 0.22s;
  flex-shrink: 0;
}

.book-section__cta:hover {
  background: var(--main-color);
  color: #fff;
}

/* ════════════ CAROUSEL WRAP ════════════ */
.book-section__track {
  position: relative;
}

/* ── Overlay arrows ── */
.book-section__arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  z-index: 30;
  width: 4.6rem;
  height: 4.6rem;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #dde3ec;
  color: #1c1c2e;
  font-size: 1.35rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.09);
  transition: background 0.22s, border-color 0.22s, color 0.22s, transform 0.22s;
}

.book-section__arrow:hover {
  background: var(--main-color);
  border-color: var(--main-color);
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}

.book-section__arrow--prev { left: -2.3rem; }
.book-section__arrow--next { right: -2.3rem; }

/* ── Owl overrides ── */
.book-section .owl-stage       { display: flex; align-items: stretch; }
/*.book-section .owl-item        { display: flex; }*/
.book-section .owl-dots        { margin-top: 3rem; text-align: center; }
.book-section .owl-dot span    {
  width: 8px; height: 8px; border-radius: 50%;
  background: #cdd4de; margin: 0 4px; display: block;
  transition: all 0.25s;
}
.book-section .owl-dot.active span {
  background: var(--main-color); width: 28px; border-radius: 4px;
}

/* ════════════ CARD ════════════ */
/*.book-section__card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 22px;
  border: 1.4px solid #e6ecf4;
  overflow: hidden;
  width: 100%; height: 100%;
  text-decoration: none;
  color: inherit;
  transition: transform 0.32s cubic-bezier(0.22,0.61,0.36,1),
              box-shadow 0.32s;
  position: relative;
  box-shadow: 0 2px 16px rgba(30, 35, 54, 0.07);
}

.book-section__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 52px rgba(26,182,157,0.11),
              0 6px 18px rgba(0,0,0,0.06);
}*/

/* ── Image area ── */
/*.book-section__img-box {
  position: relative;
  width: 100%;
  height: 24rem; border-radius: 22px;
  background: #f7f7f7;
  display: flex;
  border-bottom: 1px solid #eaeff6;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow: hidden;
  background: url(../img/book-card-bg.png);
  background-size: cover; background-position: center;
}

.book-section__img-box img {
  max-width: 100%;
  max-height: 100%;
  display: block; border-radius: 12px;
  object-fit: contain;
  transition: transform 0.38s ease;
}*/
/*
.owl-carousel .owl-item img{
  width: initial;
}*/

/*.book-section__card:hover .book-section__img-box img {
  transform: scale(1.05);
}*/

/* quick-add strip on hover */
/*.book-section__hover-strip {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 5rem;
  background: linear-gradient(to top, rgb(255 255 255 / 88%) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1rem;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.26s, transform 0.26s;
  pointer-events: none;
}

.book-section__card:hover .book-section__hover-strip {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.book-section__hover-strip-label {
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.04em;
  border: 1.5px solid rgba(255,255,255,0.55);
  padding: 0.35rem 1.3rem;
  border-radius: 10rem;
  cursor: pointer;
  background: var(--main-color);
  transition: background 0.18s;
}

.book-section__hover-strip-label:hover {
  background: var(--hover-color);
}*/

/* ── Badge ── */
/*.book-section__badge {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  font-size: 1.0rem;
  font-weight: 500;
  padding: 0.28rem 0.85rem;
  border-radius: 10rem;
  z-index: 2;
  letter-spacing: 0.04em;
}

.book-section__badge--offer {
  background: #e5edfa;
  color: var(--main-color);
  border: 1px solid #aabae8;
}

.book-section__badge--hot {
  background: #fff4e0;
  color: #d68400;
  border: 1px solid #f5d68a;
}*/

/* ── Body ── */
/*.book-section__body {
  padding: 1.6rem 1.7rem 0.8rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.55rem;
}

.book-section__pub {

  font-size: 1.05rem;
  font-weight: 500;
  color: var(--main-color);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.book-section__book-title {
  
  font-size: 1.35rem;
  font-weight: 600;
  color: #1c1c2e;
  line-height: 1.5;
  flex: 1;
}

.book-section__pricing {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.book-section__price {
  
  font-size: 1.8rem;
  font-weight: 700;
  color: #1c1c2e;
}

.book-section__mrp {
  font-size: 1.2rem;
  font-weight: 400;
  color: #b0bac8;
  text-decoration: line-through;
}

.book-section__off {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--main-color);
  background: #e5faf6;
  padding: 0.2rem 0.72rem;
  border-radius: 10rem;
  border: 1px solid #aae8dc;
  display: none;
}

.book-section__pricing {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.price-rating {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 1.2rem;
  color: #f5a623; 
}

.rating-count {
  font-size: 1.2rem;
  color: #555;
  margin-left: 0.3rem;
}*/

/* ── Footer actions ── */
/*.book-section__actions {
  padding: 0.4rem 1.7rem 1.7rem;
  display: flex;
  align-items: center;
  border-top: 1.5px solid #e8e8e8;
  padding: 0;
}

.book-section__actions a:nth-child(2){
  border-right: 1.5px solid #e8e8e8;
}


.book-section__add-btn {
  flex: 1;
  height: 5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  background: var(--main-color);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  border: none;
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
  min-width: 0;
}

.book-section__add-btn img {
  width: 18px!important;
}

.book-section__add-btn:hover {
  background: var(--hover-color);
  color: var(--white-color);
}

.book-section__ico {
  width: 5rem;
  height: 5rem;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #92a0b3;
  font-size: 1.25rem;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.book-section__ico img{
  width: 18px!important;
}

.book-section__ico:hover {
  border-color: var(--main-color);
  color: var(--main-color);
  background: #e5ecfa;
}*/



.book-shop-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  text-decoration: none;
  color: inherit;
  background: #fff;
/*  border-radius: 1.2rem;*/
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

/*.book-shop-card:hover {
  box-shadow: 0 1.2rem 3.6rem rgba(0,0,0,0.13);
  transform: translateY(-0.5rem);
  color: inherit;
  text-decoration: none;
}*/

/* =============================================
   IMAGE BOX
============================================= */
.book-shop-img-box {
  position: relative;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 26rem;
  overflow: hidden;
  border-radius: 4px;
  flex-shrink: 0;
}

.book-shop-img-box img {
  display: block;
  max-width: 17rem;
/*  max-height: 21rem;*/
  border-radius: 0.3rem;
/*  box-shadow: 0.6rem 1rem 2.4rem rgba(0,0,0,0.22);*/
  transition: transform 0.42s cubic-bezier(.4,0,.2,1);
  transform-style: preserve-3d;
  will-change: transform;
  position: relative;
  z-index: 1;
}

.book-shop-card:hover .book-shop-img-box img {
  transform: perspective(55rem) rotateY(-9deg) rotateX(3deg) scale(1.07);
}

/* =============================================
   BADGE — top left
============================================= */
.book-shop-badge {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  font-family: var(--heading-font);
  background: #e63946;
  padding: 0.22rem 0.75rem;
  border-radius: 4px;
  letter-spacing: 0.03em;
  line-height: 1.7;
  z-index: 4;
}

.new{
  font-family: var(--heading-font);
  background: var(--main-color);
}

.book-shop-badge--new {
  background: #2ec4b6;
}

/* =============================================
   TIMER — bottom left
============================================= */
.book-shop-timer-wrap {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  background: #fff;
  border-radius: 8px;
  padding: 6px 16px;
}

.book-shop-timer-text {
  font-size: 1.2rem;
  font-weight: 500;
  color: #da3f3f;
  font-family: var(--heading-font);
  white-space: nowrap;
  display: block;
}

/* =============================================
   ICON BAR — RIGHT side, vertical (one below other)
   Same as screenshot: heart → eye → cart stacked
============================================= */
.book-shop-icon-bar {
  position: absolute;
  top: 30%;
  right: 1rem;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;   /* vertical stack */
  align-items: center;
  gap: 0.7rem;
  z-index: 6;
}

.book-shop-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: #fff;
  border-radius: 50%;
  color: #444;
  font-size: 1.25rem;
  box-shadow: 0 0.3rem 1rem rgba(0,0,0,0.13);
  cursor: pointer;
  /* hidden — slide in from right */
  opacity: 0;
  transform: translateX(2rem);
  transition:
    opacity    0.25s ease,
    transform  0.25s ease,
    background 0.16s ease,
    color      0.16s ease;
}

/* staggered: first icon appears first */
.book-shop-icon-btn:nth-child(1) {
  transition-delay: 0s,    0s,    0s, 0s;
}
.book-shop-icon-btn:nth-child(2) {
  transition-delay: 0.07s, 0.07s, 0s, 0s;
}
.book-shop-icon-btn:nth-child(3) {
  transition-delay: 0.14s, 0.14s, 0s, 0s;
}

.book-shop-icon-btn img{
  width: 16px!important;
  transition:
    opacity    0.25s ease,
    transform  0.25s ease,
    background 0.16s ease,
    color      0.16s ease;
}

/* reveal on hover */
.book-shop-card:hover .book-shop-icon-btn {
  opacity: 1;
  transform: translateX(0);
}

.book-shop-icon-btn:hover {
  background: var(--main-color);
  color: #fff;
}

.book-shop-icon-btn:hover img{
  filter: brightness(100);
}

/* =============================================
   CARD BODY
============================================= */
.book-shop-card-body {
  padding: 1.6rem 1.6rem 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;
}

.book-shop-store {
  font-size: 1.12rem;
  color: #aaa;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.book-shop-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--black-color);
  line-height: 1.46;
  margin-bottom: 1rem;
  min-height: 4.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden; font-family: var(--heading-font);
}

.book-shop-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  margin-bottom: 1.6rem;
}

.book-shop-stars i {
  font-size: 1.28rem;
  color: #f4a127;
}

.book-shop-stars i.book-shop-star-empty {
  color: #ddd;
}

.book-shop-review-count {
  font-size: 1.18rem;
  color: #aaa;
  margin-left: 0.3rem;
}

.book-shop-price-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  margin-top: auto;
}

.book-shop-price-old {
  font-size: 1.28rem;
  font-family: var(--heading-font);
  color: var(--gray-color);
  text-decoration: line-through;
}

.book-shop-price-new {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--black-color);
  font-family: var(--heading-font);
}
/*BOOK SECTION TABS*/
/* ==========================================================
 DEMO PAGE LABELS
========================================================== */
.demo-label {
font-size: 1.2rem;
font-weight: 700;
letter-spacing: 0.1em;
text-transform: uppercase;
color: #9ca3af;
margin-bottom: 1.2rem;
font-family: 'Inter', sans-serif;
}

/* ==========================================================
 SECTION CARD
========================================================== */
.section-heading {
margin-bottom: 2rem;
/*box-shadow: 0 2px 20px rgba(40,116,240,.07);*/
}

/* ==========================================================
 HEADING ROW
========================================================== */
.heading-inner {
display: flex;
align-items: center;
min-height: 5.6rem;
margin-bottom: 3rem;
/*background: white;*/
/*padding: 20px;*/
border-radius: 14px;
}

/* ==========================================================
 LEFT  –  ACCENT BAR + TITLE TEXT
========================================================== */
.title-block {
display: flex;
align-items: center;
gap: 1.4rem;
flex-shrink: 0;
}

/* Animated bar */
.accent-bar {
position: relative;
width: 0.4rem;
height: 4.8rem;
border-radius: 0.8rem;
overflow: hidden;
background: #eef3fd;
flex-shrink: 0;
}

.accent-bar::after {
content: '';
position: absolute;
top: 0; left: 0;
width: 100%;
height: 200%;
background: linear-gradient(
  to bottom,
  #e53935   0%,
  #e53935  24%,
  #2874f0  50%,
  #2874f0  74%,
  #e53935 100%
);
animation: barSlide 2.4s linear infinite;
}

@keyframes barSlide {
from { transform: translateY(-50%); }
to   { transform: translateY(0);    }
}

/* Title text stack */
.title-text {
display: flex;
flex-direction: column;
gap: 0.2rem;
}

.title-subtitle {
font-size: 1.1rem;
font-weight: 600;
letter-spacing: 0.12em;
text-transform: uppercase;
color: #2874f0;
font-family: 'Inter', sans-serif;
}

.title-main {
    font-size: 3rem;
    font-weight: 700;
    color: var(--black-color);
    line-height: 1.2;
    font-family: var(--heading-font);
}

/* ==========================================================
 CENTRE DIVIDER
========================================================== */
.heading-divider {
flex: 1;
height: 0.1rem;
background: #f0eeee;
margin: 0 2.4rem;
align-self: center;
}

/* ==========================================================
 RIGHT  –  BOOTSTRAP 5 TABS  (Variant 1)
========================================================== */
.tabs-wrapper {
position: relative;
flex-shrink: 0;
}

#v1-tabs.nav-tabs {
border-bottom: none;
gap: 0;
flex-wrap: nowrap;
}

#v1-tabs .nav-item { list-style: none; }

#v1-tabs .nav-link {
font-family: var(--heading-font);
font-size: 1.4rem;
font-weight: 500;
color: #6b7280;
background: transparent !important;
border: none !important;
border-radius: 0;
padding: 0.8rem 1.4rem;
cursor: pointer;
transition: color 0.22s ease;
white-space: nowrap;
}

#v1-tabs .nav-link:hover { color: #0d1b3e; }

#v1-tabs .nav-link.active {
color: var(--main-color);
font-weight: 700;
font-family: var(--heading-font);
}

.tab-indicator {
position: absolute;
bottom: -0.1rem;
height: 0.25rem;
background: #2874f0;
border-radius: 0.3rem;
transition: left .3s cubic-bezier(.4,0,.2,1),
            width .3s cubic-bezier(.4,0,.2,1);
pointer-events: none;
}

.tab-content-area {
margin-top: 2rem;
min-height: 6rem;
}

#v1-tabContent .tab-pane.show {
animation: paneIn .28s ease both;
}

@keyframes paneIn {
from { opacity: 0; transform: translateY(0.5rem); }
to   { opacity: 1; transform: translateY(0);      }
}

.chip-row {
display: flex;
flex-wrap: wrap;
gap: 1rem;
}

.chip {
font-size: 1.3rem;
padding: 0.6rem 1.6rem;
border-radius: 10rem;
background: #eef3fd;
color: #2874f0;
font-weight: 500;
font-family: 'Inter', sans-serif;
}

/* ==========================================================
 RIGHT  –  SEE MORE BUTTON
========================================================== */
.see-more-btn {
font-family: 'Inter', sans-serif;
font-size: 1.4rem;
font-weight: 600;
color: #2874f0;
background: transparent;
border: 0.15rem solid #2874f0;
border-radius: 0.6rem;
padding: 0.8rem 2rem;
cursor: pointer;
transition: background .2s ease, color .2s ease;
white-space: nowrap;
flex-shrink: 0;
text-decoration: none;
display: inline-flex;
align-items: center;
gap: 0.6rem;
}

.see-more-btn:hover {
background: #2874f0;
color: #fff;
}

.see-more-btn svg { transition: transform .2s ease; }
.see-more-btn:hover svg { transform: translateX(0.3rem); }
/*End book section*/

/*START WEB DETAIL SECTION*/
.web-detail-section {
  padding: 2rem 5%;
  border-top: 1px solid #e0e0e073;
}

.web-detail-section__card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: #ffffff;
    border: 1px solid #e0e0e0;
  padding: 1.8rem 1.8rem;
  border-radius: 16px;
  transition: all 0.3s ease;
  height: 100%;
}

.web-detail-section__card:hover {
  box-shadow: 0 0.8rem 2rem rgba(0,0,0,0.08);
  transform: translateY(-0.3rem);
}

.web-detail-section__icon img{
  width: 30px;
}

.web-detail-section__content h4 {
  font-size: 1.6rem;
  font-weight: 600;
  font-family: var(--heading-font);
  margin: 0;
  color: var(--black-color);
}

.web-detail-section__content p {
  font-size: 1.3rem;
  margin: 0.3rem 0 0;
  color: var(--gray-color);
}
/*END WEB DETAIL SECTION*/

/*START SEO SECTION*/
.mototive-seo-section {
  padding: 4rem 5%;
}

.mototive-seo-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--black-color);
  margin-bottom: 2rem;
  line-height: 1.4;
  font-family: var(--heading-font);
}

.mototive-seo-subtitle {
  font-size: 2rem;
  font-weight: 600;
  color: #354e78;
  margin-top: 2.5rem;
  margin-bottom: 1.2rem;
}

.mototive-seo-text {
  font-size: 1.5rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.mototive-seo-list {
  padding-left: 2rem;
  margin-top: 1rem;
}

.mototive-seo-list li {
  font-size: 1.5rem;
  color: #444;
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

/*END SEO SECTION*/

/* ===================================================
   SECTION  —  .shop-school-section
   =================================================== */
.shop-school-section {
  padding: 4rem 5%;
  background: #f5f5f5;
}

/* ---- Section heading ---- */
.shop-school-section__heading-wrap {
  margin-bottom: 4rem;
  text-align: center;
}

.shop-school-section__eyebrow {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--main-color);
  background: rgba(255, 107, 43, 0.1);
  padding: 0.5rem 1.4rem;
  border-radius: 10rem;
  margin-bottom: 1.2rem;
}

.shop-school-section__title {
  font-size: 3.4rem;
  font-weight: 700;
  color: #1e2336;
  margin-bottom: 0.8rem;
  line-height: 1.25;
}

.shop-school-section__title span {
  color: var(--main-color);
}

.shop-school-section__subtitle {
  font-size: 1.5rem;
  color: #6b7280;
  max-width: 50rem;
  margin: 0 auto;
}

/* ===================================================
   CARD  —  .sss-card  (shop-school-section card)
   =================================================== */
.sss-card {
  background: #ffffff;
  border-radius: 2rem;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  box-shadow: 0 2px 16px rgba(30, 35, 54, 0.07);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.sss-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(30, 35, 54, 0.13);
}

/* ---- Card image / logo area ---- */
.sss-card__image-wrap {
  position: relative;
/*  height: 19rem;*/
  overflow: hidden;
}

.sss-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.sss-card:hover .sss-card__image-wrap img {
  transform: scale(1.05);
}

/* colour overlay makes every image card look branded */
.sss-card__image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(30, 35, 54, 0.45) 0%,
    rgba(30, 35, 54, 0.15) 60%,
    transparent 100%
  );
}

/* floating badge — school short-name */
.sss-card__badge {
  position: absolute;
  top: 1.4rem;
  font-family: var(--heading-font);
  left: 1.4rem;
  z-index: 2;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.4rem 1rem;
  border-radius: 10rem;
}

/* school logo circle — positioned on .sss-card so overflow:hidden of image-wrap doesn't clip it */
.sss-card__logo {
  position: absolute;
  top: calc(19rem - 3.2rem); /* image height minus half logo height */
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 6.4rem;
  height: 6.4rem;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #ffffff;
  box-shadow: 0 4px 18px rgba(30, 35, 54, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}

.sss-card__logo img{
  width: 40px!important;
}

.sss-card__logo i {
  font-size: 2.6rem;
  color: var(--main-color);
}

/* ---- Card body ---- */
.sss-card__body {
  padding:  2rem 2rem; 
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sss-card__school-name {
  font-size: 1.6rem;
  font-weight: 600;
  color: #1e2336;
  font-family: var(--heading-font);
  margin-bottom: 0.3rem;
  line-height: 1.3; margin-bottom: 2rem;
}

.sss-card__location {
  font-size: 1.25rem;
  color: #9ca3af;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 1.6rem;
}

.sss-card__location i {
  font-size: 1.1rem;
  color: var(--main-color);
}

/* ---- Divider line ---- */
.sss-card__divider {
  width: 3.6rem;
  height: 0.3rem;
  border-radius: 10rem;
  background: var(--main-color);
  margin: 0 auto 1.8rem;
  display: none;
}

/* ---- Buttons ---- */
.sss-card__actions {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: auto;
}

.sss-card__btn-row {
  display: flex;
  gap: 0.8rem;
}

/* Books button */
.sss-card__btn--books {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  font-family: var(--heading-font);
  border: 2px solid var(--main-color);
  background: var(--main-color);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
}

.sss-card__btn--books:hover {
  background: var(--hover-color);
  border-color: var(--hover-color);
  color: #fff;
}

/* Stationery button */
.sss-card__btn--stationery {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid #9ca3af;
    background: #ffff;
    color: #2e3451;
    font-family: var(--heading-font);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  text-decoration: none;
}

.sss-card__btn--stationery:hover {
  background: #1e2336; border-color: #1e2336;
  color: #fff;
}

.sss-card__btn--stationery:hover img{
  filter: brightness(100);
}

/* Complete Set button */
.sss-card__btn--complete {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 1rem;
  border-radius: 14px;
  border: none;
  background: linear-gradient(135deg, #1e2336 0%, #2f3654 100%);
  background-size: cover; background-position: center;
  color: #fff; 
  cursor: pointer; font-family: var(--heading-font);
  transition: opacity 0.2s, transform 0.15s;
  text-decoration: none;
  width: 100%;
  letter-spacing: 0.02em;
}

.sss-card__btn--complete:hover {
  opacity: 0.88;
  color: #fff;
  transform: scale(0.99);
}

.sss-card__btn--complete i {
  font-size: 1.4rem;
  color: var(--main-color);
}

.sss-card__btn--books img{
  width: 16px!important;
}

.sss-card__btn--stationery img{
  width: 16px!important;
}
/*............*/
.heading-section__heading { font-size: 2rem; }
.sss-owl-wrap {
  padding: 0 3.8rem;
}

.sss-owl-wrap .sss-owl-prev,
.sss-owl-wrap .sss-owl-next {
  width: 3.6rem;
  height: 3.6rem;
  font-size: 1.3rem;
}

.heading-section__tabs-wrapper {
      width: 100%;
      justify-content: center;
  }
  .heading-section__tab-btn {
      font-size: 1.2rem;
      padding: 0.8rem 1.2rem;
      gap: 0.5rem;
  }
  .heading-section__tab-btn i {
      display: none;
  }
/* ===================================================
     OWL CAROUSEL — scoped under .sss-owl-wrap
     so it never affects other carousels on the page
     =================================================== */
  
  /* Wrapper — gives room for arrows on sides */
  .sss-owl-wrap {
    position: relative;
    padding: 0 ;
  }

  /* Each owl item needs bottom padding so the logo
     circle (which overflows the card top) isn't clipped */
  /*.sss-owl-wrap .owl-item {
    padding: 0.6rem 0.8rem 1rem;
  }*/

  /* ---- Custom arrow buttons ---- */
  .sss-owl-wrap .sss-owl-prev,
  .sss-owl-wrap .sss-owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 4.4rem;
    height: 4.4rem;
    border-radius: 50%;
    background: #ffffff;
    border: 1.5px solid #e5e7eb;
    box-shadow: 0 4px 16px rgba(30, 35, 54, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    color: #1e2336;
    font-size: 1.5rem;
  }

  .sss-owl-wrap .sss-owl-prev {
    left: 0;
  }

  .sss-owl-wrap .sss-owl-next {
    right: 0;
  }

  .sss-owl-wrap .sss-owl-prev:hover,
  .sss-owl-wrap .sss-owl-next:hover {
    background: var(--main-color);
    border-color: var(--main-color);
    color: #ffffff;
    transform: translateY(-50%) scale(1.08);
  }

  /* Disabled state */
  .sss-owl-wrap .sss-owl-prev.disabled,
  .sss-owl-wrap .sss-owl-next.disabled {
    opacity: 0.35;
    pointer-events: none;
  }

  /* Hide default owl nav/dots — we use custom */
  .sss-owl-wrap .owl-nav,
  .sss-owl-wrap .owl-dots {
    display: none !important;
  }

  /* Smooth card transition during drag */
  .sss-owl-wrap .owl-stage {
    display: flex;
    align-items: stretch;
  }

  .sss-owl-wrap .owl-item .sss-card {
    height: 100%;
  }
/*End book section*/
/*Start brand slider*/
.brand-slider {
  padding: 4rem 5%;
  background: #2d3451;
  overflow: hidden;
}
.brand-slider__heading {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  margin: 0 0 3rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.brand-slider__track-wrapper {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.brand-slider__track {
  display: flex;
  gap: 1.2rem;
  width: max-content;
  animation: brand-slider-scroll 28s linear infinite;
}
.brand-slider__track-wrapper:hover .brand-slider__track {
  animation-play-state: paused;
}
@keyframes brand-slider-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.brand-slider__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 0.5px solid var(--color-border-tertiary);
  border-radius: 1rem;
  padding: 1.6rem 2rem;
  min-width: 14rem;
  max-width: 14rem;
  transition: border-color 0.25s, box-shadow 0.25s;
  cursor: pointer;
  text-decoration: none;
  gap: 0.6rem;
}
.brand-slider__card:hover {
  border-color: var(--color-border-secondary);
}
.brand-slider__logo-wrap {
  width: 7rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-slider__logo-wrap svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand-slider__name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  text-align: center;
  letter-spacing: 0.02em;
}

.brand-apc .brand-slider__logo-wrap { background: #fff; }

/*End brand slider*/

.pg-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px; margin-top: 3rem;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  font-size: 14px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.pagination a.num {
  width: 40px;
  height: 40px;
  font-weight: 400;
  color: #333333;
  background: #ffffff;
  border: 1px solid #e0e0e0;
}

.pagination a.num:hover {
  color: #2874f0;
  border-color: #2874f0;
  background: #eef4ff;
}

.pagination a.num.active {
  color: #ffffff;
  background: #2874f0;
  border: 1px solid #2874f0;
  font-weight: 500;
}

.pagination a.arrow {
  height: 40px;
  padding: 0 16px;
  gap: 6px;
  font-weight: 500;
  color: #2874f0;
  background: #eef4ff;
  border: 1px solid #c4d9fd;
}

.pagination a.arrow:hover {
  background: #2874f0;
  color: #ffffff;
  border-color: #2874f0;
}

.pagination a.arrow:hover svg {
  stroke: #ffffff;
}

.pagination a.arrow svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #2874f0;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.15s;
}

.pg-info {
  font-size: 13px;
  color: #666666;
  margin: 0;
}

.pg-info span {
  color: #2874f0;
  font-weight: 500;
}

/* =========================================================
   SECTION: bookshop-featured
========================================================= */
.bookshop-featured {
  padding: 4rem 5%;
  background: #f2f5fb;
  background: linear-gradient(45deg, #ffffffcc, #ffffffad), url(../img/arrival-bg2.jpg);
  background-size: cover; background-position: center;
  width: 100%; background-attachment: fixed;
}

/* The row must stretch both columns to equal height */
.bookshop-featured__row {
  align-items: stretch;
  --bs-gutter-x: 2.4rem;
}

/* ─────────────────────────────
   LEFT COLUMN
───────────────────────────── */
.bookshop-featured__left-col {
  display: flex;
  flex-direction: column;
  height: 100%;         /* fill stretched row */
  gap: 0;               /* no gap — we use flex children */
}

/* Offer slider occupies as much as possible */
.bookshop-featured__offer-card {
  flex: 1 1 auto;
  min-height: 0;
  background: #fff;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(40,116,240,.10);
  display: flex;
  flex-direction: column;
  margin-bottom: 1.8rem;
}

/* Gradient header strip */
.bookshop-featured__offer-header {
  background:  var(--main-color);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  padding: 1.1rem 2rem;
  letter-spacing: .08em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .8rem; font-family: var(--heading-font);
  flex-shrink: 0;
}

.bookshop-featured__offer-header-icon {
  width: 2.4rem;
  height: 2.4rem;
  background: rgba(255,255,255,.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.bookshop-featured__offer-header-icon img{
  width: 18px;
}

/* Owl wrapper fills remaining space */
#bookshop-offer-owl {
  flex: 1;
  min-height: 0;
}
#bookshop-offer-owl .owl-stage-outer,
#bookshop-offer-owl .owl-stage,
#bookshop-offer-owl .owl-item { height: 100%; }
#bookshop-offer-owl .owl-item .bookshop-featured__offer-slide { height: 100%; }

.bookshop-featured__offer-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 2.2rem 2rem 1rem;
}

.bookshop-featured__offer-top { text-align: center; }

.bookshop-featured__offer-brand {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: 1rem;
  color: #2874f0;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: .4rem;
}

.bookshop-featured__offer-brand::before,
.bookshop-featured__offer-brand::after {
  content: '';
  width: 2rem;
  height: 1px;
  background: #c8d9fd;
}

.bookshop-featured__offer-name {
  font-size: 1.9rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.28;
}

.bookshop-featured__offer-img-wrap {
  position: relative;
  margin: 1.4rem 0;
}

.bookshop-featured__offer-img-wrap::before {
  content: '';
  position: absolute;
  inset: -8px;
  z-index: 0;
}

.bookshop-featured__offer-img {
  width: 13rem;
  height: 16rem;
  object-fit: cover;
  border-radius: 1.2rem;
  display: block;
  position: relative;
  z-index: 1;
}

/* Floating discount pill on image */
.bookshop-featured__offer-pill {
  position: absolute;
  top: 1rem;
  right: -1rem;
  background: #e8320a;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  padding: .4rem .9rem;
  border-radius: 5rem;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(232,50,10,.35);
  letter-spacing: .02em;
}

.bookshop-featured__offer-price-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  justify-content: center;
  margin-bottom: .6rem;
}

.bookshop-featured__offer-price {
  font-size: 2.6rem;
  font-weight: 700;
  color: #2874f0;
  letter-spacing: -.01em;
}

.bookshop-featured__offer-old {
  font-size: 1.4rem;
  color: #c4c4c4;
  text-decoration: line-through;
}

/* ── Premium Timer ── */
.bookshop-featured__timer-wrap {
  width: 100%;
  padding: 1.2rem 1.4rem;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-bottom: .4rem;
}

.bookshop-featured__timer-label-top {
  font-size: .95rem;
  color: rgba(255,255,255,.45);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-right: .4rem;
  font-weight: 500;
}

.bookshop-featured__timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bookshop-featured__timer-box {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.10);
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  width: 5rem;
  height: 4.6rem;
  border-radius: .8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: .04em;
  position: relative;
  overflow: hidden;
  font-family: 'Outfit', monospace;
}

/* shimmer line across middle of timer box */
.bookshop-featured__timer-box::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  height: 1px;
  background: rgba(255,255,255,.07);
}

.bookshop-featured__timer-sub {
  font-size: .85rem;
  color: rgba(255,255,255,.35);
  margin-top: .4rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.bookshop-featured__timer-sep {
  color: rgba(255,255,255,.3);
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 1.2rem;
}

/* Owl dots – scoped to offer carousel */
#bookshop-offer-owl .owl-dots {
  text-align: center;
  padding: .6rem 0 .2rem;
}
#bookshop-offer-owl .owl-dot span {
  background: #dde8fc !important;
  width: 2.4rem !important;
  height: .35rem !important;
  border-radius: 5rem !important;
  margin: 0 .25rem !important;
  transition: all .3s !important;
}
#bookshop-offer-owl .owl-dot.active span {
  background: #2874f0 !important;
  width: 3.6rem !important;
}

/* ── Banner (fixed height, fills rest of left col) ── */
.bookshop-featured__banner-wrap {
  flex: 0 0 auto;
  height: 14rem;
  border-radius: 1.8rem;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 32px rgba(40,116,240,.12);
}

.bookshop-featured__banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.bookshop-featured__banner-wrap:hover .bookshop-featured__banner-img {
  transform: scale(1.04);
}

/* Banner overlay text */
.bookshop-featured__banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9,28,76,.72) 0%, rgba(9,28,76,.1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 2.4rem;
}

.bookshop-featured__banner-tag {
  font-size: 1rem;
  color: rgba(255,255,255,.7);
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: .4rem;
}

.bookshop-featured__banner-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.bookshop-featured__banner-cta {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #2874f0;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  padding: .55rem 1.4rem;
  border-radius: 5rem;
  text-decoration: none;
  width: fit-content;
  transition: background .2s, transform .2s;
}

.bookshop-featured__banner-cta:hover {
  background: #1a5cf0;
  transform: translateX(3px);
  color: #fff;
  text-decoration: none;
}

/* ─────────────────────────────
   RIGHT COLUMN — Tabs
───────────────────────────── */
.bookshop-featured__right-col {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border-radius: 2rem;
  box-shadow: 0 12px 48px rgba(40,116,240,.08);
  overflow: hidden;
}

/* Tab Nav */
.bookshop-featured__tabs-nav {
  display: flex;
  align-items: center;
  border-bottom: 1.5px solid #eef1fb;
  padding: 0 2.4rem;
  flex-shrink: 0;
  gap: 0;
}

.bookshop-featured__tab-btn {
  background: none;
  border: none;
  outline: none;
  font-size: 1.6rem;
  font-weight: 600;
  color: #b0b8cc;
  font-family: var(--main-color);
  padding: 1.8rem 1.8rem 1.6rem;
  cursor: pointer;
  border-bottom: 2.5px solid transparent;
  margin-bottom: -1.5px;
  transition: color .2s ease, border-color .2s ease;
  letter-spacing: .01em;
  white-space: nowrap;
}

.bookshop-featured__tab-btn:hover { color: #2874f0; }

.bookshop-featured__tab-btn.bsf-active {
  color: #2874f0;
  border-bottom-color: #2874f0;
}

/* Tab Panes */
.bookshop-featured__tab-pane {
  display: none;
  flex: 1;
  padding: 2rem 2.4rem 2.4rem;
  overflow: auto;
}

.bookshop-featured__tab-pane.bsf-active {
  display: block;
  animation: bsf-slidein .28s cubic-bezier(.22,.68,0,1.2);
}

@keyframes bsf-slidein {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Cards Grid */
.bookshop-featured__cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.bookshop-featured__card {
  background: #f5f5f5;
  border-radius: 1.4rem;
  padding: 1.3rem;
  display: flex;
  flex-direction: row;
  gap: 1.2rem;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .22s ease, transform .22s ease, background .18s ease;
/*  border: 1.5px solid #edf1fb;*/
  min-height: 11rem;
}

.bookshop-featured__card:hover {
  background: #fff;
  box-shadow: 0 8px 36px rgba(40,116,240,.13);
  transform: translateY(-3px);
  border-color: #c9d9fd;
  text-decoration: none;
  color: inherit;
}

.bookshop-featured__card-img {
  flex-shrink: 0;
  width: 7rem;
  height: 9rem;
  border-radius: .9rem;
  overflow: hidden;
  background: #e8edf8;
}

.bookshop-featured__card-img img {
  width: 7rem;
  height: 9rem;
  display: block;
  object-fit: cover;
}

.bookshop-featured__card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: .35rem;
  min-width: 0;
}

.bookshop-featured__card-brand {
  font-size: .95rem;
  color: #2874f0;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.bookshop-featured__card-name {
  font-size: 1.4rem;
  color: var(--black-color);
  line-height: 1.6;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: var(--heading-font);
}

.bookshop-featured__card-price-row {
  display: flex;
  align-items: center;
  gap: .55rem;
  flex-wrap: wrap;
}

.bookshop-featured__card-price {
  font-size: 1.6rem;
  font-weight: 700;
  font-family: var(--heading-font);
  color: var(--black-color);
}

.bookshop-featured__card-old {
  font-size: 1.1rem;
  color: var(--gray-color);
  text-decoration: line-through;
  font-family: var(--heading-font);
}

.bookshop-featured__card-badge {
  background: #e63946;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  padding: .2rem .6rem;font-family: var(--heading-font);
  border-radius: .4rem;
  border: 1px solid #fdd0c8;
}


/*Start footer section*/
.footer_section {
    padding: 4rem 5%;
    background-color: #f8f8f8;
  }

  /* ── Trust Bar ── */
  .footer_section .footer_trust_bar {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 4rem;
    margin-bottom: 4rem;
  }

  .footer_section .footer_trust_item {
    display: flex; height: 100%;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.4rem 1.6rem;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    transition: box-shadow 0.2s, border-color 0.2s;
  }

  .footer_section .footer_trust_item:hover {
    box-shadow: 0 4px 20px rgba(40,116,240,0.1);
    border-color: #2874f0;
  }

  .footer_section .footer_trust_icon_wrap {
    width: 6.4rem;
    height: 6.4rem;
    background: #e8f0fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
  }

  .footer_section .footer_trust_icon_wrap img{
    width: 3.5rem;
  }

  .footer_section .footer_trust_title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.3rem;
    font-family: var(--heading-font);
  }

  .footer_section .footer_trust_subtitle {
    font-size: 1.3rem;
    color: #7a8aaa;
  }

  /* ── Newsletter ── */
  .footer_section .footer_newsletter_row {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 1.4rem;
    padding: 3rem 3.2rem;
    margin-bottom: 4.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
  }

  .footer_section .footer_newsletter_label {
    font-size: 2rem;
    font-weight: 700;
    color: var(--black-color);
    white-space: nowrap;
    font-family: var(--heading-font);
  }

  .footer_section .footer_newsletter_form {
    display: flex;
    gap: 1rem;
    flex: 1;
    min-width: 24rem;
    max-width: 52rem;
  }

  .footer_section .footer_newsletter_input {
    flex: 1;
    border: 1px solid #e0e0e0;
    border-radius: 0.8rem;
    padding: 1rem 1.6rem;
    font-size: 1.4rem;
    color: #1a1a2e;
    background: #f8f8f8;
    outline: none;
  }

  .footer_section .footer_newsletter_input:focus {
    border-color: #2874f0;
    background: #fff;
  }

  .footer_section .footer_newsletter_btn {
    background: #2874f0;
    color: #fff;
    border: none;
    border-radius: 0.8rem;
    padding: 1rem 2.4rem;
    font-size: 1.4rem;
    font-weight: 600;
    font-family: var(--heading-font);
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
  }

  .footer_section .footer_newsletter_btn:hover {
    background: #1a5dcb;
  }

  .footer_section .footer_social_group {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .footer_section .footer_social_label {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a2e;
    white-space: nowrap;
    margin-right: 0.4rem;
  }

  .footer_section .footer_social_icon {
    width: 3.8rem;
    height: 3.8rem;
    border-radius: 50%;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2874f0;
    font-size: 1.5rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    border: 1px solid #e0e0e0;
  }

  .footer_section .footer_social_icon:hover {
    background: #2874f0;
    color: #fff;
    border-color: #2874f0;
  }

  /* ── Main Footer Grid ── */
  .footer_section .footer_main_grid {
    border-top: 1px solid #dce8fd;
    padding-top: 4rem;
  }

  .footer_section .footer_col_heading {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 1.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.7rem; font-family: var(--heading-font);
  }

  .footer_section .footer_col_heading::after {
    content: '';
    display: block;
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, #2874f0, transparent);
    border-radius: 2px; display: none;
  }

  .footer_section .footer_col_heading a {
    color: var(--black-color);
    font-family: var(--heading-font);
    text-decoration: none;
  }

  .footer_section .footer_col_heading a:hover {
    color: #1a5dcb;
    text-decoration: underline;
  }

  .footer_section .footer_contact_intro {
    font-size: 1.3rem;
    color: #7a8aaa;
    margin-bottom: 1.4rem;
  }

  .footer_section .footer_contact_detail {
    font-size: 1.35rem;
    color: #1a1a2e;
    font-weight: 500;
    line-height: 1.8;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
  }

  .footer_section .footer_contact_detail i {
    color: #2874f0;
    width: 1.8rem;
    text-align: center;
  }

  .footer_section .footer_contact_detail a {
    color: #1a1a2e;
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer_section .footer_contact_detail a:hover {
    color: #2874f0;
    text-decoration: underline;
  }

  .footer_section .footer_link_list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer_section .footer_link_list li {
    margin-bottom: 1.6rem;
  }

  .footer_section .footer_link_list a {
    font-size: 1.4rem;
    color: #4a5878;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    transition: color 0.2s, padding-left 0.2s;
  }

  .footer_section .footer_link_list a:hover {
    color: #2874f0;
    padding-left: 0.5rem;
  }

  .footer_section .footer_link_list a i {
    font-size: 1rem;
    color: #b0c4e8;
    transition: color 0.2s;
  }

  .footer_section .footer_link_list a:hover i {
    color: #2874f0;
  }

  /* ── Bottom Bar ── */
  .footer_section .footer_bottom_bar {
    margin-top: 4rem;
    border-top: 1px solid #dce8fd;
    padding-top: 2.4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.2rem;
  }

  .footer_section .footer_bottom_copy {
    font-size: 1.3rem;
    color: #8a9abc;
  }

  .footer_section .footer_bottom_copy span {
    color: #2874f0;
    font-weight: 600;
  }

  .footer_section .footer_bottom_heart {
    color: #2874f0;
    font-size: 1.2rem;
  }
/*End footer section*/

/* ==========================================
   SECTION 1 — BREADCRUMB HEADER
========================================== */
.books-breadcrumb-header-section {
    position: relative;
    background: url(../img/other-page-hero-bg.jpg);
    padding: 6rem 0; 
    background-size: cover; background-position: bottom;
    text-align: center;
    overflow: hidden;
}

/* white semi-transparent overlay */
.books-breadcrumb-header-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.80);
    backdrop-filter: blur(1px);
}

.books-breadcrumb-header__content {
    position: relative;
    z-index: 1; max-width: 600px;
    margin: auto;
    padding: 0 2rem;
}

.books-breadcrumb-header__title {
    font-size: 3.4rem;
    font-weight: 700;
    color: var(--black-color);
    font-family: var(--heading-font);
    margin: 0 0 1.2rem;
    line-height: 1.4; 
}

.books-breadcrumb-header__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.books-breadcrumb-header__nav-link {
    color: #555;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 500;
    transition: color 0.2s;
}

.books-breadcrumb-header__nav-link:hover {
    color: #2874f0;
}

.books-breadcrumb-header__nav-sep {
    color: #bbb;
    font-size: 1.1rem;
}

.books-breadcrumb-header__nav-current {
    color: #2874f0;
    font-size: 1.3rem;
    font-weight: 600;
}

/* ==========================================
   SECTION 2 — CATALOG
========================================== */
.books-catalog-section {
/*    background: #f3f4f7;*/
    padding: 4rem 5%;
}

/* ==========================================
   MOBILE FILTER BUTTON
========================================== */
.books-catalog__mobile-filter-btn {
    display: none;
/*    width: 100%;*/
    background: var(--main-color);
    color: #fff;
    border: none;
    padding: 1.3rem 1.6rem;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--heading-font);
    cursor: pointer;
    align-items: center;
    gap: 0.8rem;
    justify-content: center;
    margin-bottom: 2.4rem;
    border-radius: 12px;
    letter-spacing: 0.03em;
    transition: background 0.2s;
}

.books-catalog__mobile-filter-btn:hover {
    background: #1a5fc7;
}

.books-catalog__mobile-filter-btn img{
  width: 22px;
}

/* ==========================================
   SIDEBAR — OVERLAY & DRAWER (mobile)
========================================== */
.books-catalog__sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1100;
    opacity: 0;
    transition: opacity 0.3s;
}

.books-catalog__sidebar-overlay.bcs-overlay-open {
    display: block;
    opacity: 1;
}

.books-catalog__sidebar-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 32rem;
    max-width: 90vw;
    height: 100vh;
    overflow-y: auto;
    background: #f2f2f2;
    z-index: 1200;
    transform: translateX(-100%);
    transition: transform 0.32s cubic-bezier(.4,0,.2,1);
    display: block;
}

.books-catalog__sidebar-drawer.bcs-drawer-open {
    transform: translateX(0);
}

/* Drawer close bar */
.books-catalog__drawer-closebar {
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.4rem 1.8rem;
    background: #1a1a1a;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    z-index: 10;
}

.books-catalog__drawer-close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 2.2rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    display: flex;
    align-items: center;
}

/* ==========================================
   SIDEBAR — LAYOUT
========================================== */
.books-catalog__sidebar {
  border-radius: 12px;
}

/* "SHOP BY" orange/blue top bar */
.books-catalog__sidebar-shopby {
    background: #2874f0;
    color: #fff;
    padding: 1.3rem 1.8rem;
    font-size: 1.5rem;
    font-weight: 800;
/*    border-radius: 12px 12px 0 0;*/
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Each sidebar card box */
.books-catalog__sidebar-box {
    background: #fff;
    border: 1px solid #e2e2e2;
    margin-bottom: 2rem;
}

/* Orange/blue box header */
.books-catalog__sidebar-box-header {
    background: #2874f0;
    color: #fff;
    padding: 1.2rem 1.8rem;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: flex; border-radius: 12px 12px 0 0;
    align-items: center;
    justify-content: space-between;
}

.books-catalog__sidebar-box-header-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.4rem;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.books-catalog__sidebar-box-header-link img{
  width: 20px;
}

.books-catalog__sidebar-box-header-link:hover {
    opacity: 1;
    color: #fff;
}

/* Shopping Options sub-title */
.books-catalog__sidebar-options-title {
    padding: 1.4rem 1.8rem 0.6rem;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1a1a1a;
    border-bottom: 1px solid #ebebeb;
    margin-bottom: 0; font-family: var(--heading-font);
}

/* ==========================================
   SIDEBAR — ACCORDION
========================================== */
.books-catalog__accordion-item {
    border-bottom: 1px solid #ebebeb;
}

.books-catalog__accordion-item:last-child {
    border-bottom: none;
}

.books-catalog__accordion-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.3rem 1.8rem;
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #1a1a1a;
    cursor: pointer;
    user-select: none;
    letter-spacing: 0.04em;
    transition: background 0.2s;
}

.books-catalog__accordion-trigger:hover {
    background: #f0f5ff;
}

.books-catalog__accordion-chevron {
    font-size: 1.1rem;
    color: #999;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

/* When open, rotate chevron */
.books-catalog__accordion-trigger.bcs-acc-open .books-catalog__accordion-chevron {
    transform: rotate(180deg);
}

/* Smooth accordion — grid-template-rows technique (no JS height needed) */
.books-catalog__accordion-body {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    background: #f5f5f585s;
    transition: grid-template-rows 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.books-catalog__accordion-body > * {
    overflow: hidden;
    min-height: 0;
}

.books-catalog__accordion-body.bcs-acc-body-open {
    grid-template-rows: 1fr;
}

/* Inner padding wrapper so padding also animates in smoothly */
.books-catalog__accordion-body-inner {
    padding: 0 1.8rem;
    transition: padding 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.books-catalog__accordion-body.bcs-acc-body-open .books-catalog__accordion-body-inner {
    padding: 1.2rem 1.8rem 1.6rem;
}

/* Direct link (no sub-accordion) */
.books-catalog__accordion-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.3rem 1.8rem;
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #1a1a1a;
    letter-spacing: 0.04em;
    text-decoration: none;
    border-bottom: 1px solid #ebebeb;
    transition: background 0.2s, color 0.2s;
}

.books-catalog__accordion-link:last-child {
    border-bottom: none;
}

.books-catalog__accordion-link:hover {
    background: #f0f5ff;
    color: #2874f0;
}

.books-catalog__accordion-link-icon {
    font-size: 1.1rem;
    color: #bbb;
}

/* ==========================================
   SIDEBAR — SCHOOL SEARCH & LIST
========================================== */
.books-catalog__school-search {
    margin-bottom: 1.2rem;
}

.books-catalog__school-search-input {
    width: 100%;
    padding: 0.95rem 1.2rem;
    font-size: 1.3rem;
    font-family: 'Inter', sans-serif;
    border: 1px solid #ddd;
    outline: none;
    background: #fff;
    transition: border-color 0.2s;
    color: #444;
}

.books-catalog__school-search-input:focus {
    border-color: #2874f0;
}

.books-catalog__school-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.books-catalog__school-list-item {
    border-bottom: 1px solid #eee;
}

.books-catalog__school-list-item:last-child {
    border-bottom: none;
}

.books-catalog__school-list-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.95rem 0;
    font-size: 1.3rem;
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
}

.books-catalog__school-list-link:hover {
    color: #2874f0;
}

.books-catalog__school-list-arrow {
    font-size: 0.95rem;
    color: #bbb;
    flex-shrink: 0;
}

.books-catalog__school-list-name {
    flex: 1;
}

.books-catalog__school-count-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ebebeb;
    color: #555;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 0.2rem 0.65rem;
    border-radius: 3px;
    flex-shrink: 0;
}

/* ==========================================
   SIDEBAR — BRAND SEARCH BOX
========================================== */
.books-catalog__brand-search-wrap {
    padding: 1.4rem 1.6rem;
}

.books-catalog__brand-search-field {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border: 1px solid #ddd;
    padding: 0.9rem 1.2rem;
    background: #fff; border-radius: 12px;
}

.books-catalog__brand-search-icon {
    color: #bbb;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.books-catalog__brand-search-input {
    border: none;
    outline: none;
    font-size: 1.3rem;
    font-family: 'Inter', sans-serif;
    color: #555;
    width: 100%;
    background: transparent;
}

/* ==========================================
   SIDEBAR — FEATURED BRANDS NAV
========================================== */
.books-catalog__brands-nav {
    display: flex;
    gap: 0.4rem;
}

.books-catalog__brands-nav-btn {
    background: var(--white);
    border: 1px solid rgba(255,255,255,0.5);
    color: var(--main-color); border-radius: 6px;
    width: 2.6rem;
    height: 2.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background 0.2s;
}

.books-catalog__brands-nav-btn:hover {
    background: rgba(255,255,255,0.4);
}

/* Carousel wrap */
.books-catalog__brands-carousel-wrap {
    padding: 1.6rem 1.2rem;
}

/* Each brand card inside carousel */
.books-catalog__brand-slide-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0.6rem;
    min-height: 7rem;
}

.books-catalog__brand-logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    text-align: center;
    line-height: 1.2;
    border: 1px solid #eee;
    padding: 0.8rem 1rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 5.5rem;
}

/* Brand-specific colour classes */
.books-catalog__brand-ajanta    { color: #003087; font-size: 1.3rem; }
.books-catalog__brand-citizen   { color: #111; }
.books-catalog__brand-funskool  { color: #fff; background: #e53935; border-color: #e53935; }
.books-catalog__brand-artline   { color: #e53935; font-style: italic; }
.books-catalog__brand-doms      { color: #fff; background: #b71c1c; border-color: #b71c1c; }
.books-catalog__brand-navneet   { color: #1565c0; font-size: 1.2rem; }
.books-catalog__brand-camlin    { color: #5d4037; font-size: 1.2rem; }
.books-catalog__brand-faber     { color: #fff; background: #1b5e20; border-color: #1b5e20; font-size: 1.2rem; }
.books-catalog__brand-parker    { color: #333; letter-spacing: 0.08em; }
.books-catalog__brand-rachna    { color: #1a237e; }

/* ==========================================
   SIDEBAR — COMPARE / WISHLIST
========================================== */
.books-catalog__sidebar-empty-msg {
    padding: 1.6rem 1.8rem;
    font-size: 1.3rem;
    color: #666;
    margin: 0;
}

/* ==========================================
   MAIN RIGHT — BOOK CATALOG SHOPPING
========================================== */
.book-catalog-shopping {padding: 2rem; padding-top: 0}

/* ---- School scroller ---- */
.book-catalog-shopping__schools-scroll-outer {
    overflow-x: auto;
    overflow-y: hidden;
    margin-bottom: 2.4rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.book-catalog-shopping__schools-scroll-outer::-webkit-scrollbar {
    display: none;
}

.book-catalog-shopping__schools-scroll-inner {
    display: flex;
    gap: 1.6rem;
    width: max-content;
    padding-bottom: 0.4rem;
}

.book-catalog-shopping__school-card {
    width: 15rem;
    flex-shrink: 0;
    text-decoration: none;
    text-align: center;
    display: block;
}

/* ---- School card thumb: image fills box, no icon/abbr ---- */
.book-catalog-shopping__school-card-thumb {
    width: 15rem;
    height: 15rem;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 0.8rem;
    transition: opacity 0.2s, transform 0.2s;
}

.book-catalog-shopping__school-card:hover .book-catalog-shopping__school-card-thumb {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* image inside thumb — fills entire box */
.book-catalog-shopping__school-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.book-catalog-shopping__school-card-label {
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
}

/* school card gradient backgrounds — kept for fallback if image fails to load */
.bcs-school-bg-1 { background: linear-gradient(135deg, #880e4f 0%, #c2185b 100%); }
.bcs-school-bg-2 { background: linear-gradient(135deg, #4a148c 0%, #7b1fa2 100%); }
.bcs-school-bg-3 { background: linear-gradient(135deg, #b71c1c 0%, #e53935 100%); }
.bcs-school-bg-4 { background: linear-gradient(135deg, #e65100 0%, #f57c00 100%); }
.bcs-school-bg-5 { background: linear-gradient(135deg, #1b5e20 0%, #388e3c 100%); }
.bcs-school-bg-6 { background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%); }
.bcs-school-bg-7 { background: linear-gradient(135deg, #006064 0%, #00838f 100%); }
.bcs-school-bg-8 { background: linear-gradient(135deg, #37474f 0%, #546e7a 100%); }

/* ---- Toolbar ---- */
.book-catalog-shopping__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.2rem;
    background: #fff;
    border: 1px solid #e2e2e2;
    padding: 1.2rem 1.6rem;
    margin-bottom: 2.4rem;
    border-radius: 12px;
}

.book-catalog-shopping__toolbar-left {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.book-catalog-shopping__view-btn {
    background: #fff;
    border: 1px solid #ddd;
    padding: 0.65rem 1rem;
    cursor: pointer;
    font-size: 1.4rem;
    color: #666; border-radius: 6px;
    transition: all 0.2s;
    line-height: 1;
}

.book-catalog-shopping__view-btn:hover,
.book-catalog-shopping__view-btn.bcs-view-active {
    background: #2874f0;
    border-color: #2874f0;
    color: #fff;
}

.book-catalog-shopping__count {
    font-size: 1.3rem;
    color: #555; font-family: var(--heading-font);
    font-weight: 500;
    padding-left: 0.6rem;
}

.book-catalog-shopping__toolbar-right {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.book-catalog-shopping__sort-label {
    font-size: 1.3rem;
    color: #555; font-family: var(--heading-font);
    font-weight: 600;
    white-space: nowrap;
}

.book-catalog-shopping__sort-select {
    border: 1px solid #ddd;
    padding: 0.75rem 1.2rem;
    font-size: 1.4rem;
    color: #333; border-radius: 6px;
    font-family:  var(--heading-font);
    outline: none;
    cursor: pointer;
    background: #fff;
    transition: border-color 0.2s;
    min-width: 15rem;
}

.book-catalog-shopping__sort-select:focus {
    border-color: #2874f0;
}

.book-catalog-shopping__sort-dir-btn {
    background: #fff;
    border: 1px solid #ddd;
    padding: 0.75rem 1.1rem;
    cursor: pointer;
    font-size: 1.3rem;
    color: #555; border-radius: 6px;
    transition: all 0.2s;
    line-height: 1;
}

.book-catalog-shopping__sort-dir-btn:hover,
.book-catalog-shopping__sort-dir-btn.bcs-sort-desc {
    background: #2874f0;
    border-color: #2874f0;
    color: #fff;
}

/* ---- Book Cards Grid ---- */
.book-catalog-shopping__grid-row {
    /* uses Bootstrap row */
}

.book-catalog-shopping__card-col {
    margin-bottom: 2.4rem;
}

/*END BOOK CATELOG UI*/

/*START PRODUCT DETAIL PAGE UI*/
/* ============================
   PRODUCT-DETAIL SECTION
  ============================ */
.product-detail {
  padding: 4rem 5%;
  background: #f5f5f5;
  }

.product-detail__card {
  background: #fff;
  border-radius: 2rem;
  overflow: hidden;
  padding: 3.2rem 3rem;
  }

  /* ============================
   PRODUCT-DETAIL IMAGE COLUMN
  ============================ */
.product-detail__image-col {
  position: sticky;
  top: 2rem;
  }

.product-detail__main-image-wrap {
  background: #f7f7f7;
  border-radius: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  min-height: 38rem;
  overflow: hidden;
  position: relative;
}

  .product-detail__main-img {
  width: 100%;
  max-width: 24rem;
  height: auto;
  border-radius: 1rem;
/*  box-shadow: 0 1.6rem 4rem rgba(0,0,0,0.18);*/
  transition: opacity 0.4s ease, transform 0.4s ease;
  display: block;
  }

  .product-detail__main-img.product-detail__img-fade {
  opacity: 0;
  transform: scale(0.96);
  }

  /* Thumbnail Carousel */
  .product-detail__thumb-wrap {
  margin-top: 1.8rem;
  position: relative;
  }

  .product-detail__owl-thumb .product-detail__thumb-item {
  cursor: pointer;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid transparent;
  transition: border-color 0.25s, box-shadow 0.25s;
  background: #fff;
  padding: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  }

  .product-detail__owl-thumb .product-detail__thumb-item.product-detail__thumb-active,
  .product-detail__owl-thumb .product-detail__thumb-item:hover {
  border-color: var(--main-color);
/*  box-shadow: 0 0 0 0.3rem rgba(40,116,240,0.12);*/
  }

  .product-detail__owl-thumb .product-detail__thumb-item img {
  width: 100%;
  max-width: 7rem;
  height: 8rem;
  display: block;
  border-radius: 0.6rem;
  }

  /* Owl Nav Buttons */
  .product-detail__owl-thumb .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff !important;
  border: 1px solid #e0e7ff !important;
  border-radius: 50% !important;
  width: 3.2rem;
  height: 3.2rem;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem !important;
  color: #2874f0 !important;
  box-shadow: 0 0.4rem 1.2rem rgba(40,116,240,0.12);
  transition: background 0.2s, box-shadow 0.2s;
  z-index: 10;
  }

  .product-detail__owl-thumb .owl-nav button:hover {
  background: #2874f0 !important;
  color: #fff !important;
  }

  .product-detail__owl-thumb .owl-nav button.owl-prev { left: -1.6rem; }
  .product-detail__owl-thumb .owl-nav button.owl-next { right: -1.6rem; }

  /* ============================
   PRODUCT-DETAIL INFO COLUMN
  ============================ */
  .product-detail__info {
  padding-left: 2rem;
  }

  .product-detail__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #eaf1fe;
  color: var(--main-color);
  font-size: 1.4rem;
  font-weight: 600;
  font-family: var(--heading-font);
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border-radius: 10rem;
  margin-bottom: 1.2rem;
  }

  .product-detail__badge i { font-size: 1rem; }

  .product-detail__title {
  font-family: var(--heading-font);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--black-color);
  margin-bottom: 1.4rem;
  }

  .product-detail__price-row {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-bottom: 0.8rem;
  }

  .product-detail__price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--main-color);
  font-family: var(--heading-font);
  letter-spacing: -0.02em  }

  .product-detail__price-note {
  font-size: 1.2rem;
  color: #8a94a6;
  margin-bottom: 1.8rem;
  }

  .product-detail__stock {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.3rem;
  font-weight: 600;
  color: #0db96a;
  background: #e8faf3;
  padding: 0.5rem 1.2rem;
  border-radius: 10rem;
  margin-bottom: 1.8rem;
  }

  .product-detail__stock i { font-size: 1.1rem; }

  .product-detail__sku {
  font-size: 1.25rem;
  color: #8a94a6;
  margin-bottom: 2rem;
  }

  .product-detail__sku span {
  color: #1a1a2e;
  font-weight: 600;
  }

  .product-detail__divider {
  height: 1px;
  background: linear-gradient(90deg, #e8ecf6 0%, transparent 100%);
  margin: 2rem 0;
  }

  /* Shipping Toggle */
  .product-detail__ship-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.8rem;
  background: #f7f9ff;
  border: 1.5px solid #dde5f8;
  border-radius: 1.2rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  user-select: none;
  margin-bottom: 0.2rem;
  }

  .product-detail__ship-header:hover {
  background: #eaf1fe;
  border-color: #2874f0;
  }

  .product-detail__ship-header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.4rem;
  font-weight: 600;
  font-family: var(--heading-font);
  color: var(--black-color);
  }

  .product-detail__ship-header-left i {
  font-size: 1.6rem;
  color: #2874f0;
  }

  .product-detail__ship-toggle-icon {
  font-size: 1.4rem;
  color: #2874f0;
  transition: transform 0.3s ease;
  }

  .product-detail__ship-toggle-icon.product-detail__icon-open {
  transform: rotate(180deg);
  }

  .product-detail__ship-calc {
  background: #f7f9ff;
  border: 1.5px solid #dde5f8;
  border-top: none;
  border-radius: 0 0 1.2rem 1.2rem;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.35s ease, padding 0.3s ease;
  padding: 0 1.8rem;
  }

  .product-detail__ship-calc.product-detail__ship-open {
    max-height: 60rem;
    opacity: 1;
    padding: 1.8rem;
  }

  .product-detail__ship-label {
  font-size: 1.2rem;
  font-weight: 600;
  color: #8a94a6;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.6rem;
  display: block;
  }

  .product-detail__ship-select,
  .product-detail__ship-input {
  width: 100%;
  font-size: 1.35rem;
  color: #1a1a2e;
  background: #fff;
  border: 1.5px solid #dde5f8;
  border-radius: 0.9rem;
  padding: 1rem 1.4rem;
  outline: none;
  margin-bottom: 1.4rem;
  transition: border-color 0.2s;
  appearance: none;
  }

  .product-detail__ship-select:focus,
  .product-detail__ship-input:focus {
  border-color: #2874f0;
  box-shadow: 0 0 0 0.3rem rgba(40,116,240,0.1);
  }

  .product-detail__ship-cost-box {
  background: #eaf1fe;
  border-radius: 1rem;
  padding: 1.4rem 1.6rem;
  margin-bottom: 1.4rem;
  display: none;
  }

  .product-detail__ship-cost-box.product-detail__cost-visible {
  display: block;
  animation: product-detail-fadein 0.3s ease;
  }

  @keyframes product-detail-fadein {
  from { opacity: 0; transform: translateY(-0.6rem); }
  to   { opacity: 1; transform: translateY(0); }
  }

  .product-detail__ship-cost-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    color: #2874f0;
    font-weight: 600;
    margin-bottom: 1rem;
  }

  .product-detail__ship-cost-title img{
    width: 18px;
  }

  .product-detail__ship-delivery {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    color: #2874f0;
    font-weight: 600;
    margin-bottom: 0.6rem;
  }

  .product-detail__ship-delivery img{
    width: 18px;
  }

  .product-detail__ship-delivery i { font-size: 1.2rem; }

  .product-detail__ship-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.3rem;
  color: #4a5568;
  }

  .product-detail__ship-row strong { color: #1a1a2e; }

  .product-detail__calc-btn {
  width: 100%;
  background: #2874f0;
  color: #fff;
  border: none;
  border-radius: 0.9rem;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 1.1rem 2rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  }

  .product-detail__calc-btn img{
    width: 16px;
  }

  .product-detail__calc-btn:hover {
  background: #1a5fd4;
  transform: translateY(-1px);
  box-shadow: 0 0.6rem 2rem rgba(40,116,240,0.25);
  }

  .product-detail__calc-btn:active { transform: translateY(0); }

  /* Quantity */
  .product-detail__qty-label {
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8a94a6;
  margin-bottom: 0.8rem;
  }

  .product-detail__qty-control {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid #dde5f8;
  border-radius: 1.2rem;
  overflow: hidden;
  background: #fff;
  }

  .product-detail__qty-btn {
  width: 4rem;
  height: 4rem;
  background: transparent;
  border: none;
  font-size: 1.6rem;
  color: #2874f0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  }

  .product-detail__qty-btn:hover { background: #eaf1fe; }

  .product-detail__qty-value {
  width: 4rem;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: #0f1b3d;
  background: #f7f9ff;
  border: none;
  outline: none;
  pointer-events: none;
  }

  /* CTA Buttons */
  .product-detail__cta-row {
  display: flex;
  gap: 1.2rem;
  margin-top: 2.4rem;
  flex-wrap: wrap;
  }

  .product-detail__btn-cart {
  flex: 1;
  min-width: 14rem;
  background: #fff;
  color: #2874f0;
  border: 2px solid #2874f0;
  border-radius: 1.2rem;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 1.6rem 2rem;
  cursor: pointer;
  transition: all 0.22s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  }

  .product-detail__btn-cart:hover {
  background: #eaf1fe;
  transform: translateY(-2px);
  box-shadow: 0 0.6rem 2rem rgba(40,116,240,0.15);
  }

  .product-detail__btn-buy {
  flex: 2;
  min-width: 16rem;
  background: var(--main-color);
  color: #fff;
  border: none;
  border-radius: 1.2rem;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 1.6rem 2.4rem;
  cursor: pointer;
  transition: all 0.22s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  box-shadow: 0 0.6rem 2rem rgba(40,116,240,0.25);
  }

  .product-detail__btn-buy:hover {
  background: var(--hover-color);
  transform: translateY(-2px);
  color: var(--white);
  box-shadow: 0 1rem 2.8rem rgba(40,116,240,0.35);
  }

  .product-detail__btn-wish {
  width: 5rem;
  height: 5rem;
  background: #fff;
  border: 1.5px solid #dde5f8;
  border-radius: 1.2rem;
  font-size: 2rem;
  color: #c0c7d6;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.22s;
  flex-shrink: 0;
  }

  .product-detail__btn-wish:hover,
  .product-detail__btn-wish.product-detail__wish-active {
  color: #e53935;
  border-color: #fce4e4;
  background: #fff5f5;
  }

  /* Overview */
  .product-detail__overview {
  margin-top: 2.4rem;
  background: #f7f9ff;
  border-radius: 1.4rem;
  padding: 2rem 2rem;
  border: 1.5px solid #e8ecf6;
  }

  .product-detail__overview-title {
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #2874f0;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  }

  .product-detail__overview-title i { font-size: 1.3rem; }

  .product-detail__overview-text {
  font-size: 1.35rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 1.2rem;
  }

  .product-detail__note {
  background: #fff8e7;
  border-left: 3px solid #f5a623;
  border-radius: 0.6rem;
  padding: 1rem 1.4rem;
  }

  .product-detail__note-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #c47a00;
  margin-bottom: 0.4rem;
  }

  .product-detail__note-text {
  font-size: 1.25rem;
  line-height: 1.7;
  color: #7a5300;
  }

  /* Share Row */
  .product-detail__share-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  }

  .product-detail__share-label {
  font-size: 1.25rem;
  color: #8a94a6;
  font-weight: 600;
  }

  .product-detail__share-icon {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background: #f0f4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: #2874f0;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  cursor: pointer;
  text-decoration: none;
  }

  .product-detail__share-icon:hover {
  background: #2874f0;
  color: #fff;
  transform: translateY(-2px);
  }

/*  .............*/
/* ===== PRODUCT INFO SECTION ===== */
.product-info-section {
  padding: 4rem 5%;
}

.product-info-section .product-info-section__heading {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #2874f0;
  margin-bottom: 0.6rem;
}

.product-info-section .product-info-section__title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 3.6rem;
  line-height: 1.25;
}

/* ===== ACCORDION WRAPPER ===== */
.product-info-section .product-info-section__accordion {
  border-radius: 1.4rem;
  overflow: hidden;
/*  box-shadow: 0 0.4rem 3rem rgba(40, 116, 240, 0.08);*/
  border: none;
  border: 1px solid #dde5f8;
}

/* ===== ACCORDION ITEM ===== */
.product-info-section .product-info-section__item {
  border: none;
    border-bottom: 1px solid #dde5f8;
    background: #f7f9ff;
}

.product-info-section .product-info-section__item:last-child {
  border-bottom: none;
}

/* ===== ACCORDION BUTTON ===== */
.product-info-section .product-info-section__btn {
  font-family: 'Inter', sans-serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: #1a1a2e;
  background: #fff;
  padding: 2.2rem 2.6rem;
  border: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  transition: background 0.22s, color 0.22s;
}

.product-info-section .product-info-section__btn:not(.collapsed) {
  color: #2874f0;
  background: #eef3ff;
  box-shadow: none;
}

.product-info-section .product-info-section__btn:focus {
  box-shadow: none;
  outline: none;
}

.product-info-section .product-info-section__btn::after {
  display: none;
}

.product-info-section .product-info-section__btn-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 0.8rem;
  background: #eef3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.6rem;
  color: #2874f0;
  transition: background 0.22s, color 0.22s;
}

.product-info-section .product-info-section__btn:not(.collapsed) .product-info-section__btn-icon {
  background: #2874f0;
  color: #fff;
}

.product-info-section .product-info-section__btn-chevron {
  margin-left: auto;
  font-size: 1.3rem;
  color: #a0aec0;
  transition: transform 0.3s ease, color 0.22s;
}

.product-info-section .product-info-section__btn:not(.collapsed) .product-info-section__btn-chevron {
  transform: rotate(180deg);
  color: #2874f0;
}

/* ===== ACCORDION BODY ===== */
.product-info-section .product-info-section__body {
  padding: 2.6rem;
  background: #fff;
}

/* ===== TAB 1: DETAILS ===== */
.product-info-section .product-info-section__details-text {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 2rem;
}

.product-info-section .product-info-section__note-card {
  background: #fffbeb;
  border-left: 0.4rem solid #f59e0b;
  border-radius: 0 0.8rem 0.8rem 0;
  padding: 1.6rem 2rem;
}

.product-info-section .product-info-section__note-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #92400e;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.product-info-section .product-info-section__note-item {
  font-size: 1.35rem;
  color: #78350f;
  line-height: 1.7;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 0.4rem;
}

.product-info-section .product-info-section__note-item i {
  margin-top: 0.3rem;
  color: #f59e0b;
  flex-shrink: 0;
}

/* ===== TAB 2: MORE INFORMATION ===== */
.product-info-section .product-info-section__info-table {
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #e8eef8;
  font-size: 1.45rem;
}

.product-info-section .product-info-section__info-row {
  display: flex;
  border-bottom: 1px solid #e8eef8;
}

.product-info-section .product-info-section__info-row:last-child {
  border-bottom: none;
}

.product-info-section .product-info-section__info-row:nth-child(even) {
  background: #f7f9ff;
}

.product-info-section .product-info-section__info-label {
  width: 38%;
  padding: 1.3rem 1.8rem;
  font-weight: 600;
  color: #555;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-shrink: 0;
}

.product-info-section .product-info-section__info-label i {
  color: #2874f0;
  font-size: 1.3rem;
  width: 1.6rem;
  display: none;
}

.product-info-section .product-info-section__info-value {
  padding: 1.3rem 1.8rem;
  color: #1a1a2e;
  font-weight: 400;
  flex: 1;
  border-left: 1px solid #e8eef8;
  font-size: 1.4rem;
}

.product-info-section .product-info-section__company-note {
  margin-top: 2rem;
  background: #eef3ff;
  border-radius: 0.8rem;
  padding: 1.4rem 1.8rem;
  font-size: 1.35rem;
  color: #2874f0;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.product-info-section .product-info-section__company-note i {
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* ===== TAB 3: REVIEWS ===== */
.product-info-section .product-info-section__review-wrapper {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.product-info-section .product-info-section__review-summary {
  min-width: 16rem;
  flex-shrink: 0;
}

.product-info-section .product-info-section__review-count {
  font-size: 5rem;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1;
}

.product-info-section .product-info-section__review-stars-row {
  display: flex;
  gap: 0.3rem;
  margin: 0.8rem 0 0.4rem;
  font-size: 1.5rem;
  color: #e0e0e0;
}

.product-info-section .product-info-section__review-label {
  font-size: 1.3rem;
  color: #888;
}

.product-info-section .product-info-section__star-bars {
  flex: 1;
  min-width: 20rem;
}

.product-info-section .product-info-section__star-bar-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.7rem;
}

.product-info-section .product-info-section__star-bar-label {
  font-size: 1.3rem;
  color: #555;
  width: 3.5rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.product-info-section .product-info-section__star-bar-track {
  flex: 1;
  height: 0.8rem;
  background: #e8eef8;
  border-radius: 10rem;
  overflow: hidden;
}

.product-info-section .product-info-section__star-bar-fill {
  height: 100%;
  background: #f59e0b;
  border-radius: 10rem;
}

.product-info-section .product-info-section__star-bar-count {
  font-size: 1.2rem;
  color: #888;
  width: 1.5rem;
}

/* Divider */
.product-info-section .product-info-section__review-divider {
  border: none;
  border-top: 1px solid #e8eef8;
  margin: 2.4rem 0;
}

/* Review Form */
.product-info-section .product-info-section__form-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.4rem;
}

.product-info-section .product-info-section__form-product {
  font-size: 1.35rem;
  color: #2874f0;
  font-weight: 600;
  margin-bottom: 2rem;
}

.product-info-section .product-info-section__rating-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin-bottom: 2.2rem;
}

.product-info-section .product-info-section__rating-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.product-info-section .product-info-section__rating-label {
  font-size: 1.4rem;
  color: #555;
  width: 5rem;
}

.product-info-section .product-info-section__stars-input {
  display: flex;
  gap: 0.3rem;
}

.product-info-section .product-info-section__stars-input i {
  font-size: 1.8rem;
  color: #e0e0e0;
  cursor: pointer;
  transition: color 0.15s;
}

.product-info-section .product-info-section__stars-input i:hover,
.product-info-section .product-info-section__stars-input i.active {
  color: #f59e0b;
}

.product-info-section .product-info-section__field-label {
  font-size: 1.35rem;
  font-weight: 600;
  color: #444;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.product-info-section .product-info-section__field-label span {
  color: #e53e3e;
}

.product-info-section .product-info-section__input,
.product-info-section .product-info-section__textarea {
  font-family: 'Inter', sans-serif;
  font-size: 1.45rem;
  color: #1a1a2e;
  border: 1.5px solid #dce4f5;
  border-radius: 0.8rem;
  padding: 1.1rem 1.4rem;
  width: 100%;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.product-info-section .product-info-section__input:focus,
.product-info-section .product-info-section__textarea:focus {
  border-color: #2874f0;
  box-shadow: 0 0 0 0.3rem rgba(40,116,240,0.1);
}

.product-info-section .product-info-section__textarea {
  min-height: 10rem;
  resize: vertical;
}

.product-info-section .product-info-section__form-group {
  margin-bottom: 1.8rem;
}

.product-info-section .product-info-section__attach-row {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  margin-bottom: 2.2rem;
}

.product-info-section .product-info-section__attach-label {
  font-size: 1.35rem;
  color: #666;
}

.product-info-section .product-info-section__attach-btn {
  font-family: 'Inter', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #2874f0;
  background: #eef3ff;
  border: 1.5px solid #2874f0;
  border-radius: 2rem;
  padding: 0.7rem 1.8rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.product-info-section .product-info-section__attach-btn:hover {
  background: #2874f0;
  color: #fff;
}

.product-info-section .product-info-section__attach-hint {
  font-size: 1.25rem;
  color: #aaa;
}

.product-info-section .product-info-section__submit-btn {
  font-family: 'Inter', sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: #fff;
  background: #2874f0;
  border: none;
  border-radius: 0.8rem;
  padding: 1.3rem 4rem;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 0.4rem 1.6rem rgba(40,116,240,0.25);
}

.product-info-section .product-info-section__submit-btn:hover {
  background: #1a5fd4;
  transform: translateY(-0.15rem);
  box-shadow: 0 0.6rem 2rem rgba(40,116,240,0.35);
}
/*END PRODUCT DETAIL PAGE UI*/

/*START PRODUCT INNER PAGE UI*/
/* ===========================
   PAGE TOP BAR
=========================== */
.order-detail-section__topbar {
  background: #fff;
  border-bottom: 1px solid #e8ecf4;
  padding: 1.4rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(40,116,240,0.06);
}

.order-detail-section__brand {
  font-size: 2rem;
  font-weight: 700;
  color: #2874f0;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.order-detail-section__brand i { font-size: 1.8rem; }

/* Google sign-in button */
.order-detail-section__google-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border: 1.5px solid #d0d8e8;
  border-radius: 5rem;
  padding: 0.8rem 2rem;
  font-size: 1.35rem;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.order-detail-section__google-btn:hover {
  border-color: #2874f0;
  box-shadow: 0 4px 16px rgba(40,116,240,0.12);
  color: #2874f0;
}

.order-detail-section__google-btn img {
  width: 1.9rem;
  height: 1.9rem;
}

/* ===========================
   MAIN SECTION WRAPPER
=========================== */
.order-detail-section {
  padding: 4rem 5%;
  margin: 0 auto;
  background: #f0f4ff;
}

/* ===========================
   STEP BREADCRUMB
=========================== */
.order-detail-section__steps {
  display: flex;
  align-items: center;
  gap: 0.6rem;
/*  margin-bottom: 3.5rem;*/
  flex-wrap: wrap;
}

.order-detail-section__step {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.3rem;
  font-weight: 500;
  color: #8a96b0;
}

.order-detail-section_login_flex{
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap; margin-bottom: 3rem;
}

.order-detail-section__step--active { color: #2874f0; }

.order-detail-section__step-num {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: #e8ecf4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #8a96b0;
  transition: all 0.2s;
}

.order-detail-section__step--active .order-detail-section__step-num {
  background: #2874f0;
  color: #fff;
  box-shadow: 0 4px 12px rgba(40,116,240,0.35);
}

.order-detail-section__step-divider {
  width: 3rem;
  height: 1px;
  background: #d0d8e8;
}

/* ===========================
   CARD BASE
=========================== */
.order-detail-section__card {
  background: #fff;
  border-radius: 1.6rem;
  padding: 3rem;
  box-shadow: 0 4px 24px rgba(40,116,240,0.07);
  margin-bottom: 2.4rem;
  transition: box-shadow 0.2s;
}

.order-detail-section__card:hover {
  box-shadow: 0 8px 36px rgba(40,116,240,0.11);
}

/* ===========================
   CARD HEADER
=========================== */
.order-detail-section__card-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2.8rem;
  padding-bottom: 1.8rem;
  border-bottom: 1.5px solid #f0f4ff;
}

.order-detail-section__card-icon {
  width: 4.2rem;
  height: 4.2rem;
  background: linear-gradient(135deg, #2874f0 0%, #5b9df9 100%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.7rem;
  flex-shrink: 0;
/*  box-shadow: 0 4px 14px rgba(40,116,240,0.3);*/
}

.order-detail-section__card-icon img{
  width: 2.2rem;
}

.order-detail-section__card-title {
  font-size: 1.7rem;
  font-weight: 700;
  color: #1a1a2e;
  letter-spacing: -0.2px;
}

.order-detail-section__card-subtitle {
  font-size: 1.25rem;
  color: #8a96b0;
  margin-top: 0.2rem;
}

/* ===========================
   FORM ELEMENTS
=========================== */

/* Guest notice */
.order-detail-section__guest-notice {
  background: #f0f4ff;
  border: 1.5px dashed #b5ccf9;
  border-radius: 1rem;
  padding: 1.2rem 1.6rem;
  font-size: 1.3rem;
  color: #5577cc;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2.4rem;
}

.order-detail-section__guest-notice i { color: #2874f0; }

.order-detail-section__form-group {
  margin-bottom: 2rem;
}

.order-detail-section__form-label {
  display: block;
  font-size: 1.3rem;
  font-weight: 500;
  color: #4a5578;
  margin-bottom: 0.7rem;
  letter-spacing: 0.02em;
}

.order-detail-section__form-label span {
  color: #e53e3e;
  margin-left: 0.2rem;
}

.order-detail-section__form-control {
  width: 100%;
  padding: 1.3rem 1.6rem;
  border: 1.5px solid #e0e6f0;
  border-radius: 1rem;
  font-size: 1.45rem;
  color: #1a1a2e;
  background: #fafbff;
  outline: none;
  transition: all 0.22s ease;
  appearance: none;
}

.order-detail-section__form-control:focus {
  border-color: #2874f0;
  background: #fff;
  box-shadow: 0 0 0 3.5px rgba(40,116,240,0.13);
}

.order-detail-section__form-control::placeholder { color: #b0bac8; }

/* Select wrapper for custom arrow */
.order-detail-section__select-wrap {
  position: relative;
}

.order-detail-section__select-wrap::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
  color: #8a96b0;
  pointer-events: none;
  font-size: 1.3rem;
}

.order-detail-section__form-control--select {
  cursor: pointer;
  padding-right: 4rem;
}

/* Input with icon */
.order-detail-section__input-wrap {
  position: relative;
}

.order-detail-section__input-wrap .order-detail-section__input-icon {
  position: absolute;
  right: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  color: #b0bac8;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ===========================
   SHIPPING METHODS
=========================== */
.order-detail-section__shipping-option {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  padding: 1.8rem 2rem;
  border: 1.5px solid #e0e6f0;
  border-radius: 1.2rem;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #fafbff;
  margin-bottom: 1.2rem;
}

.order-detail-section__shipping-option:hover {
  border-color: #2874f0;
  background: #f5f8ff;
}

.order-detail-section__shipping-option--selected {
  border-color: #2874f0;
  background: #f0f4ff;
  box-shadow: 0 0 0 3px rgba(40,116,240,0.1);
}

/* Custom radio */
.order-detail-section__radio {
  width: 2rem;
  height: 2rem;
  border: 2px solid #d0d8e8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}

.order-detail-section__shipping-option--selected .order-detail-section__radio {
  border-color: #2874f0;
  background: #2874f0;
}

.order-detail-section__radio::after {
  content: '';
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: #fff;
  display: none;
}

.order-detail-section__shipping-option--selected .order-detail-section__radio::after { display: block; }

.order-detail-section__shipping-info { flex: 1; }

.order-detail-section__shipping-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a2e;
}

.order-detail-section__shipping-eta {
  font-size: 1.25rem;
  color: #8a96b0;
  margin-top: 0.2rem;
}

.order-detail-section__shipping-eta i { color: #8a96b0; font-size: 1.1rem; }

.order-detail-section__shipping-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: #2874f0;
}

/* ===========================
   PAYMENT METHOD
=========================== */
.order-detail-section__payment-gateway {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 2rem;
  background: #f8fafe;
  border: 1.5px solid #e0e6f0;
  border-radius: 1.2rem;
  margin-bottom: 2rem;
}

.order-detail-section__payment-logo {
  font-size: 2.2rem;
  font-weight: 800;
  color: #2874f0;
}

.order-detail-section__payment-logo img{
  width: 75px;
}

.order-detail-section__payment-logo span { color: #00BCD4; }

.order-detail-section__payment-pg-badge {
  background: #2874f0;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 0.4rem;
  letter-spacing: 0.04em;
}

.order-detail-section__payment-methods-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-left: auto;
}

.order-detail-section__payment-chip {
  background: #fff;
  border: 1px solid #e0e6f0;
  border-radius: 2rem;
  padding: 0.5rem 1.2rem;
  font-size: 1.15rem;
  color: #4a5578;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.order-detail-section__payment-chip i { color: #2874f0; font-size: 1.2rem; }

/* Billing checkbox */
.order-detail-section__checkbox-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  margin-bottom: 1.8rem;
}

.order-detail-section__checkbox-box {
  width: 2rem;
  height: 2rem;
  border: 2px solid #2874f0;
  border-radius: 0.5rem;
  background: #2874f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: all 0.2s;
}

.order-detail-section__checkbox-label {
  font-size: 1.4rem;
  color: #4a5578;
}

/* Billing address display */
.order-detail-section__billing-address {
  background: #f0f4ff;
  border-radius: 1rem;
  padding: 1.4rem 1.8rem;
  font-size: 1.35rem;
  color: #5577cc;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.order-detail-section__billing-address i { color: #2874f0; }

/* ===========================
   BILLING FORM (slide-down)
=========================== */
.order-detail-section__billing-form-wrap {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1),
              opacity 0.35s ease,
              margin-top 0.35s ease;
  margin-top: 0;
}

.order-detail-section__billing-form-wrap.is-open {
  max-height: 120rem;
  opacity: 1;
  margin-top: 1.6rem;
}

.order-detail-section__billing-form-inner {
  padding: 2.2rem;
  background: #f8fafe;
  border: 1.5px solid #e0e6f0;
  border-radius: 1.2rem;
}

.order-detail-section__billing-form-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.order-detail-section__billing-form-title i { color: #2874f0; }

.order-detail-section__billing-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 1.4rem;
}

.order-detail-section__billing-cancel-btn {
  background: transparent;
  border: 1.5px solid #d0d8e8;
  border-radius: 0.8rem;
  padding: 0.9rem 2rem;
  font-size: 1.3rem;
  font-weight: 600;
  color: #8a96b0;
  cursor: pointer;
  transition: all 0.2s;
}

.order-detail-section__billing-cancel-btn:hover {
  border-color: #2874f0;
  color: #2874f0;
}

.order-detail-section__billing-update-btn {
  background: linear-gradient(135deg, #2874f0 0%, #1a60d4 100%);
  border: none;
  border-radius: 0.8rem;
  padding: 0.9rem 2.4rem;
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(40,116,240,0.3);
}

.order-detail-section__billing-update-btn:hover {
  background: linear-gradient(135deg, #1a60d4 0%, #1250b8 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(40,116,240,0.4);
}

/* ===========================
   TOOLTIP (Bootstrap-style)
=========================== */
.ods-tooltip-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.ods-tooltip-wrap .ods-tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) scale(0.9);
  background: #1a1a2e;
  color: #fff;
  font-size: 1.2rem;
  padding: 0.7rem 1.2rem;
  border-radius: 0.7rem;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.ods-tooltip-wrap .ods-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #1a1a2e;
}

.ods-tooltip-wrap:hover .ods-tooltip {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

/* ===========================
   ORDER SUMMARY SIDEBAR
=========================== */
.order-detail-section__summary-card {
  background: #fff;
  border-radius: 2rem;
  padding: 3rem;
  box-shadow: 0 8px 40px rgba(40,116,240,0.10);
  position: sticky;
  top: 9rem;
}

.order-detail-section__summary-header {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 2.4rem;
  padding-bottom: 1.6rem;
  border-bottom: 1.5px solid #f0f4ff;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.order-detail-section__summary-header img { width:18px; }

/* Price rows */
.order-detail-section__price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  font-size: 1.4rem;
  color: #4a5578;
}

.order-detail-section__price-row--total {
  font-weight: 700;
  font-size: 1.8rem;
  color: #1a1a2e;
  border-top: 2px solid #f0f4ff;
  padding-top: 1.6rem;
  margin-top: 0.8rem;
  display: none;
}

.order-detail-section__price-row--total .order-detail-section__price-val {
  color: #2874f0;
}

.order-detail-section__price-sub {
  font-size: 1.2rem;
  color: #8a96b0;
  margin-top: 0.2rem;
}

.order-detail-section__tax-toggle {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.25rem;
  color: #8a96b0;
  cursor: pointer;
}

.order-detail-section__tax-toggle i { font-size: 1rem; color: #2874f0; }

.order-detail-section__tax-detail {
  display: flex;
  justify-content: space-between;
  font-size: 1.25rem;
  color: #8a96b0;
  padding: 0.5rem 0 0 1rem;
}

/* ===========================
   CART ITEM
=========================== */
.order-detail-section__cart-label {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a1a2e;
  margin: 2rem 0 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.order-detail-section__cart-label img { width:18px; }

.order-detail-section__cart-item {
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
  padding: 1.6rem;
  background: #f8fafe;
  border: 1.5px solid #e8ecf4;
  border-radius: 1.2rem;
}

.order-detail-section__item-img-wrap {
  width: 7rem;
  height: 8.5rem;
  border-radius: 0.8rem;
  overflow: hidden;
  flex-shrink: 0;
  background: #e8ecf4;
}

.order-detail-section__item-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.order-detail-section__item-info { flex: 1; }

.order-detail-section__item-name {
  font-size: 1.35rem;
  font-weight: 600;
  color: #1a1a2e;
  line-height: 1.4;
  margin-bottom: 0.8rem;
}

.order-detail-section__item-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2874f0;
}

/* Qty controls */
.order-detail-section__qty {
  display: flex;
  align-items: center;
  gap: 0;
  background: #fff;
  border: 1.5px solid #e0e6f0;
  border-radius: 0.8rem;
  overflow: hidden;
  width: fit-content;
  margin-top: 1rem;
}

.order-detail-section__qty-btn {
  width: 3rem;
  height: 3rem;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #2874f0;
  transition: background 0.15s;
}

.order-detail-section__qty-btn:hover { background: #f0f4ff; }

.order-detail-section__qty-val {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a1a2e;
  padding: 0 1rem;
  min-width: 3.2rem;
  text-align: center;
  border-left: 1px solid #e0e6f0;
  border-right: 1px solid #e0e6f0;
}

/* ===========================
   DISCOUNT CODE
=========================== */
.order-detail-section__discount {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1.5px solid #f0f4ff;
}

.order-detail-section__discount-label {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.order-detail-section__discount-label img { width:18px }

.order-detail-section__discount-row {
  display: flex;
  gap: 1rem;
}

.order-detail-section__discount-input {
  flex: 1;
  padding: 1.2rem 1.4rem;
  border: 1.5px dashed #b5ccf9;
  border-radius: 0.9rem;
  background: #f5f8ff;
  font-size: 1.4rem;
  color: #1a1a2e;
  outline: none;
  transition: all 0.2s;
}

.order-detail-section__discount-input:focus {
  border-color: #2874f0;
  border-style: solid;
  background: #fff;
}

.order-detail-section__discount-input::placeholder { color: #b0bac8; }

.order-detail-section__discount-btn {
  background: #2874f0;
  color: #fff;
  border: none;
  border-radius: 0.9rem;
  padding: 0 2rem;
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  letter-spacing: 0.04em;
}

.order-detail-section__discount-btn:hover {
  background: #1a60d4;
  box-shadow: 0 4px 16px rgba(40,116,240,0.35);
  transform: translateY(-1px);
}

/* ===========================
   ORDER NOTE
=========================== */
.order-detail-section__note-textarea {
  width: 100%;
  padding: 1.3rem 1.6rem;
  border: 1.5px solid #e0e6f0;
  border-radius: 1rem;
  background: #fafbff;
  font-size: 1.4rem;
  color: #1a1a2e;
  resize: vertical;
  min-height: 9rem;
  outline: none;
  transition: all 0.2s;
  margin-top: 1.2rem;
}

.order-detail-section__note-textarea:focus {
  border-color: #2874f0;
  background: #fff;
  box-shadow: 0 0 0 3.5px rgba(40,116,240,0.1);
}

.order-detail-section__note-textarea::placeholder { color: #b0bac8; }

/* ===========================
   PLACE ORDER BUTTON
=========================== */
.order-detail-section__place-order-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  padding: 1.8rem;
  background: var(--main-color);
  color: #fff;
  border: none;
  border-radius: 1.2rem;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  margin-top: 2.4rem;
  transition: all 0.25s ease;
  box-shadow: 0 6px 24px rgba(40,116,240,0.35);
}

.order-detail-section__place-order-btn:hover {
  background: linear-gradient(135deg, #1a60d4 0%, #1250b8 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(40,116,240,0.45);
}

.order-detail-section__place-order-btn:active {
  transform: translateY(0);
}

.order-detail-section__place-order-btn i { font-size: 1.5rem; }

/* Trust badges */
.order-detail-section__trust {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.8rem;
  flex-wrap: wrap;
}

.order-detail-section__trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.2rem;
  color: #8a96b0;
}

.order-detail-section__trust-item i { color: #2874f0; font-size: 1.3rem; }

/* ===========================
   DIVIDER
=========================== */
.order-detail-section__divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #e0e6f0, transparent);
  margin: 0.6rem 0;
}

 /* ===========================
   ORDER SUCCESS POPUP
=========================== */

/* Backdrop override for smoother feel */
.ods-modal-backdrop {
  background: rgba(10, 15, 40, 0.55) !important;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.ods-success-modal .modal-dialog {
  max-width: 48rem;
}

.ods-success-modal .modal-content {
  border: none;
  border-radius: 2rem;
  box-shadow: 0 24px 80px rgba(40, 116, 240, 0.18);
  overflow: hidden;
  animation: odsModalIn 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes odsModalIn {
  from { opacity: 0; transform: translateY(40px) scale(0.94); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Header gradient */
.ods-success-modal__header {
  background: linear-gradient(135deg, #2874f0 0%, #1a60d4 100%);
  padding: 3.2rem 3rem 2.4rem;
  text-align: center;
  position: relative;
}

/* Animated checkmark circle */
.ods-success-modal__check-ring {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.6rem;
  animation: odsRingPop 0.5s 0.2s cubic-bezier(0.34,1.56,0.64,1) both;
}

@keyframes odsRingPop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.ods-success-modal__check-ring i {
  font-size: 3.6rem;
  color: #fff;
  animation: odsCheckBounce 0.4s 0.45s ease both;
}

@keyframes odsCheckBounce {
  0%   { transform: scale(0) rotate(-20deg); opacity: 0; }
  70%  { transform: scale(1.15) rotate(5deg); }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

.ods-success-modal__title {
      font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  letter-spacing: -0.3px;
}

.ods-success-modal__subtitle {
  font-size: 1.35rem;
  color: rgba(255,255,255,0.78);
}

/* Body */
.ods-success-modal__body {
  padding: 2.8rem 3rem;
  background: #fff;
}

/* Order ID pill */
.ods-success-modal__order-id {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f0f4ff;
  border: 1.5px solid #d0dcf8;
  border-radius: 1rem;
  padding: 1.2rem 1.8rem;
  margin-bottom: 2.2rem;
}

.ods-success-modal__order-id-label {
  font-size: 1.25rem;
  color: #8a96b0;
  font-weight: 500;
}

.ods-success-modal__order-id-val {
      font-size: 1.5rem;
  font-weight: 700;
  color: #2874f0;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  cursor: pointer;
}

.ods-success-modal__order-id-val i {
  font-size: 1.3rem;
  color: #8a96b0;
  transition: color 0.2s;
}

.ods-success-modal__order-id-val:hover i { color: #2874f0; }

/* Info rows */
.ods-success-modal__info-row {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid #f0f4ff;
}

.ods-success-modal__info-row:last-of-type { border-bottom: none; }

.ods-success-modal__info-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: #f0f4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ods-success-modal__info-icon img {
  width: 18px;
}

.ods-success-modal__info-text-label {
  font-size: 1.2rem;
  color: #8a96b0;
  margin-bottom: 0.2rem;
}

.ods-success-modal__info-text-val {
      font-size: 1.4rem;
  font-weight: 600;
  color: #1a1a2e;
}

/* Footer buttons */
.ods-success-modal__footer {
  padding: 0 3rem 3rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ods-success-modal__btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: 100%;
  padding: 1.6rem;
  background: linear-gradient(135deg, #2874f0 0%, #1a60d4 100%);
  color: #fff;
  border: none;
  border-radius: 1.2rem;
      font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 6px 24px rgba(40,116,240,0.32);
  text-decoration: none;
}

.ods-success-modal__btn-primary:hover {
  background: linear-gradient(135deg, #1a60d4 0%, #1250b8 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(40,116,240,0.42);
  color: #fff;
}

.ods-success-modal__btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: 100%;
  padding: 1.4rem;
  background: transparent;
  color: #4a5578;
  border: 1.5px solid #e0e6f0;
  border-radius: 1.2rem;
      font-size: 1.4rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.ods-success-modal__btn-secondary:hover {
  border-color: #2874f0;
  color: #2874f0;
  background: #f0f4ff;
}

/* Trust strip inside modal */
.ods-success-modal__trust-strip {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1.6rem 3rem;
  background: #f8fafe;
  border-top: 1px solid #f0f4ff;
  flex-wrap: wrap;
}

.ods-success-modal__trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.15rem;
  color: #8a96b0;
}
.ods-success-modal__trust-item i { color: #2874f0; }
/*END PRODUCT INNER PAGE UI*/

/*START LOGIN REGISTER PAGE UI*/
.login-section {
  width: 100%;
  background: #f3f4f7;
  padding: 4rem 5%;
}

.login-section__views-container {
  position: relative;
  max-width: 65rem;
  margin: 0 auto;
}

.login-section__view {
  transition: opacity 0.38s cubic-bezier(.4,0,.2,1), transform 0.38s cubic-bezier(.4,0,.2,1);
}
.login-section__view--hidden {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0; left: 0; width: 100%;
  transform: translateY(1.8rem) scale(0.982);
}
.login-section__view--visible {
  opacity: 1;
  pointer-events: all;
  position: relative;
  transform: translateY(0) scale(1);
}

.login-section__card {
  background: #ffffff;
  border-radius: 2.2rem;
  box-shadow:
    0 0 0 1px rgba(40,116,240,0.06),
    0 10px 48px rgba(40,116,240,0.11),
    0 2px 10px rgba(0,0,0,0.04);
  overflow: hidden;
}

/* TABS */
.login-section__tabs {
  display: flex;
  align-items: stretch;
  border-bottom: 1.5px solid #edf0f7;
  background: #fff;
}

.login-section__tab {
  flex: 1;
  padding: 1.8rem 1rem;
  font-size: 1.6rem;
  font-weight: 600;
  font-family: var(--heading-font);
  background: none;
  border: none;
  cursor: pointer;
  color: #b0b9cc;
  position: relative;
  transition: color 0.2s;
}

.login-section__tab::after {
  content: '';
  position: absolute;
  bottom: -1.5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2.5px;
  background: #2874f0;
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(.4,0,.2,1);
}

.login-section__tab--active { color: #2874f0; }
.login-section__tab--active::after { width: 55%; }

.login-section__tab-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.6rem;
  flex-shrink: 0;
  background: none;
  border: none;
  border-left: 1.5px solid #edf0f7;
  color: #c8cfdf;
  font-size: 1.4rem;
  cursor: pointer;
  transition: color 0.18s;
  display: none;
}
.login-section__tab-close:hover { color: #2874f0; }

/* BODY */
.login-section__body { padding: 3.8rem 4.2rem 4.2rem; }

.login-section__heading {
  font-size: 2.6rem;
  font-weight: 700;
  font-family: var(--heading-font);
  color: var(--black-color);
  letter-spacing: -0.025em;
  margin-bottom: 0.5rem;
}

.login-section__subheading {
  font-size: 1.4rem;
  color: #8a97b0;
  font-weight: 400;
  margin-bottom: 3.2rem;
}

/* GOOGLE BTN */
.login-section__google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  width: 100%;
  padding: 1.3rem 2rem;
  background: #fff;
  border: 1.5px solid #dde3f0;
  border-radius: 1.2rem;
  font-size: 1.4rem;
  font-weight: 600;
  font-family:var(--heading-font);
  color: #0c1a3a;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.login-section__google-btn:hover {
  border-color: #2874f0;
  background: #f4f8ff;
  box-shadow: 0 2px 12px rgba(40,116,240,0.1);
  color: #0c1a3a;
}

.login-section__google-svg { width: 2rem; height: 2rem; flex-shrink: 0; }

/* DIVIDER */
.login-section__divider {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin: 2.6rem 0;
}
.login-section__divider-line {
  flex: 1;
  height: 1px;
  background: #edf0f7;
}
.login-section__divider-text {
  font-size: 1.2rem;
  color: #b0b9cc;
  font-weight: 500;
}

/* FORM */
.login-section__form-group { margin-bottom: 1.8rem; }

.login-section__label {
  display: block;
  font-size: 1.3rem;
  font-weight: 600;
  color: #2e3a55;
  margin-bottom: 0.75rem;
}

.login-section__required { color: #2874f0; }

.login-section__input-wrapper { position: relative; }

.login-section__input {
  width: 100%;
  padding: 1.3rem 4.4rem 1.3rem 1.5rem;
  border: 1.5px solid #dde3f0;
  border-radius: 1.1rem;
  font-size: 1.4rem;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #0c1a3a;
  background: #f7f9fd;
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.login-section__input--plain { padding-right: 1.5rem; }

.login-section__input::placeholder { color: #b8c3d8; }
.login-section__input:focus {
  border-color: #2874f0;
  background: #fff;
  box-shadow: 0 0 0 3.5px rgba(40,116,240,0.09);
}

.login-section__input-icon {
  position: absolute;
  right: 0; top: 0;
  height: 100%; width: 4.4rem;
  display: flex; align-items: center; justify-content: center;
  color: #c0c9dc;
  font-size: 1.4rem;
  pointer-events: none;
}

.login-section__eye-btn {
  position: absolute;
  right: 0; top: 0;
  height: 100%; width: 4.4rem;
  background: none; border: none;
  display: flex; align-items: center; justify-content: center;
  color: #c0c9dc; font-size: 1.4rem; cursor: pointer;
  transition: color 0.18s;
}
.login-section__eye-btn:hover { color: #2874f0; }

.login-section__forgot {
  display: block;
  text-align: right;
  font-size: 1.3rem;
  font-weight: 500;
  color: #2874f0;
  background: none; border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  margin-top: -0.6rem;
  margin-bottom: 2.6rem;
  transition: color 0.18s;
  padding: 0;
}
.login-section__forgot:hover { color: #1558c8; text-decoration: underline; }

/* PRIMARY BUTTON */
.login-section__btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  width: 100%;
  padding: 1.5rem;
  background: #2874f0;
  color: #fff;
  border: none;
  border-radius: 1.2rem;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--heading-font);
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}
.login-section__btn-primary:hover {
  background: #1558c8;
  box-shadow: 0 8px 26px rgba(40,116,240,0.28);
  transform: translateY(-1px);
}
.login-section__btn-primary:active { transform: translateY(0); }

/* SECONDARY BUTTON */
.login-section__btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  width: 100%;
  padding: 1.4rem;
  background: #f4f8ff;
  color: #2874f0;
  border: 1.5px solid #dde3f0;
  border-radius: 1.2rem;
  font-size: 1.4rem;
  font-weight: 600;
  font-family: var(--heading-font);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  margin-top: 1.2rem;
}
.login-section__btn-secondary:hover {
  background: #e8f0fe;
  border-color: #2874f0;
}

/* CHECKBOX */
.login-section__checkbox-row {
  display: flex; align-items: center; gap: 0.9rem;
}
.login-section__checkbox {
  width: 1.6rem; height: 1.6rem;
  accent-color: #2874f0; cursor: pointer; flex-shrink: 0;
}
.login-section__checkbox-label {
  font-size: 1.3rem; color: #5a6882; cursor: pointer;
}

/* SECTION HEADING */
.login-section__section-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #adb8cc;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-bottom: 1rem;
  border-bottom: 1px solid #edf0f7;
  margin-bottom: 2rem;
}

/* NO PWD */
.login-section__no-pwd-btn {
  display: inline-block;
  padding: 0.45rem 1.1rem;
  background: #eef2fc;
  color: #2874f0;
  border: none;
  border-radius: 0.6rem;
  font-size: 1.2rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  cursor: pointer;
  margin-top: 0.8rem;
  transition: background 0.18s;
}
.login-section__no-pwd-btn:hover { background: #dce8fb; }

/* RECAPTCHA */
.login-section__recaptcha {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  border: 1.5px solid #dde3f0;
  border-radius: 0.9rem;
  padding: 1.1rem 1.6rem;
  background: #f7f9fd;
  margin-bottom: 2.4rem;
}
.login-section__recaptcha-checkbox {
  width: 1.8rem; height: 1.8rem;
  accent-color: #2874f0; cursor: pointer;
}
.login-section__recaptcha-text {
  font-size: 1.3rem; color: #2e3a55; font-weight: 500;
}
.login-section__recaptcha-badge {
  display: flex; flex-direction: column;
  align-items: center; gap: 0.2rem;
  margin-left: 1rem;
}
.login-section__recaptcha-badge i { font-size: 1.9rem; color: #2874f0; }
.login-section__recaptcha-badge span { font-size: 1rem; color: #b0b9cc; font-weight: 500; }

/* FORGOT PASSWORD CARD HEADER */
.login-section__card-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.8rem 2rem;
  border-bottom: 1.5px solid #edf0f7;
  background: #fff;
}
.login-section__back-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.6rem;
  height: 3.6rem;
  background: #f4f8ff;
  border: none;
  border-radius: 1rem;
  color: #2874f0;
  font-size: 1.4rem;
  cursor: pointer;
  transition: background 0.18s;
  flex-shrink: 0;
}
.login-section__back-btn:hover { background: #dce8fb; }
.login-section__card-header-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0c1a3a;
}

/* SUCCESS MESSAGE */
.login-section__success-box {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: #f0faf4;
  border: 1.5px solid #b6eacf;
  border-radius: 1.1rem;
  padding: 1.6rem;
  margin-bottom: 2.4rem;
}
.login-section__success-icon {
  width: 3rem;
  height: 3rem;
  background: #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.login-section__success-text {
  font-size: 1.35rem;
  color: #166534;
  font-weight: 500;
  line-height: 1.6;
}
/*END LOGIN REGISTER PAGE UI*/

/*START WISHLIST SECTION*/
.wishlist-section {
  padding: 4rem 5%;
  min-height: 100vh;
}

.wishlist-section__heading {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.6rem;
  letter-spacing: -0.03em;
}

.wishlist-section__heading span {
  color: #2874f0;
}

.wishlist-section__subheading {
  font-size: 1.4rem;
  color: #6b7280;
  margin-bottom: 3.2rem;
  font-weight: 400;
}

/* ===== TABLE WRAPPER ===== */
.wishlist-section__table-wrapper {
  background: #f4f6fb;
  border-radius: 1.6rem;
  box-shadow: 0 4px 32px rgba(40, 116, 240, 0.07), 0 1px 4px rgba(0,0,0,0.04);
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: thin;
  scrollbar-color: rgba(40, 116, 240, 0.22) transparent;
}

.wishlist-section__table-wrapper::-webkit-scrollbar {
  height: 4px;
}

.wishlist-section__table-wrapper::-webkit-scrollbar-track {
  background: transparent;
}

.wishlist-section__table-wrapper::-webkit-scrollbar-thumb {
  background: rgba(40, 116, 240, 0.22);
  border-radius: 99px;
}

.wishlist-section__table-wrapper::-webkit-scrollbar-thumb:hover {
  background: rgba(40, 116, 240, 0.42);
}

/* ===== TABLE ===== */
.wishlist-section__table {
  width: 100%;
    border-collapse: collapse;
    font-size: 1.45rem;
    background: white;
    border: 1px solid #d1d5db99;
}

.wishlist-section__table thead {
  background: #f0f5ff;
}

.wishlist-section__table thead th {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2874f0;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 1.8rem 2rem;
  text-align: center;
  border-bottom: 2px solid #e8eeff;
  white-space: nowrap;
}

.wishlist-section__table thead th:first-child { text-align: left; }

.wishlist-section__table tbody tr {
  border-bottom: 1px solid #f0f4ff;
  transition: background 0.18s;
}

.wishlist-section__table tbody tr:last-child { border-bottom: none; }

.wishlist-section__table tbody tr:hover { background: #fafbff; }

.wishlist-section__table tbody td {
  padding: 2rem 2rem;
  text-align: center;
  vertical-align: middle;
  color: #374151;
  font-weight: 500;
}

.wishlist-section__table tbody td:first-child { text-align: left; }

/* ===== IMAGE CELL ===== */
.wishlist-section__img-wrap {
  width: 8rem;
  height: 8rem;
  border-radius: 1rem;
  overflow: hidden;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wishlist-section__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== COURSE NAME ===== */
.wishlist-section__course-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a2e;
}

/* ===== PRICE ===== */
.wishlist-section__price {
  font-size: 1.5rem;
  font-weight: 600;
  color: #374151;
}

.wishlist-section__total {
  font-size: 1.55rem;
  font-weight: 700;
  color: #2874f0;
}

/* ===== QUANTITY INPUT ===== */
.wishlist-section__qty-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.wishlist-section__qty-btn {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 0.8rem;
  border: 1.5px solid #d1d5db;
  background: #f9fafb;
  color: #374151;
  font-size: 1.6rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.18s, background 0.18s, color 0.18s;
  line-height: 1;
  padding-bottom: 0.1rem;
}

.wishlist-section__qty-btn:hover {
  border-color: #2874f0;
  background: #e8f0fe;
  color: #2874f0;
}

.wishlist-section__qty-input {
  width: 5.4rem;
  height: 3.6rem;
  border: 1.5px solid #d1d5db;
  border-radius: 0.8rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  color: #1a1a2e;
  background: #fff;
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
}

.wishlist-section__qty-input:focus {
  border-color: #2874f0;
  box-shadow: 0 0 0 3px rgba(40, 116, 240, 0.13);
}

/* ===== ADD TO CART BTN ===== */
.wishlist-section__add-btn {
  background: #2874f0;
  color: #fff;
  border: none;
  border-radius: 1rem;
  padding: 1rem 2rem;
  font-size: 1.35rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  transition: background 0.18s, transform 0.13s, box-shadow 0.18s;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(40,116,240,0.18);
  letter-spacing: 0.01em;
}

.wishlist-section__add-btn img{
  width: 18px; filter: brightness(100);
}

.wishlist-section__add-btn:hover {
  background: var(--hover-color);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(40,116,240,0.28);
}

.wishlist-section__add-btn:active { transform: translateY(0); }

.wishlist-section__add-btn i { font-size: 1.3rem; }

/* ===== REMOVE BTN ===== */
.wishlist-section__remove-btn {
  background: none;
  border: none;
  color: #d51243;
  font-size: 1.4rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  padding: 0.6rem 1.2rem;
  border-radius: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.16s, background 0.16s;
}

.wishlist-section__remove-btn:hover {
  color: #e53e3e;
  background: #fff0f0;
}

.wishlist-section__remove-btn img { width:18px }

/* ===== EMPTY STATE ===== */
.wishlist-section__empty {
  display: none;
  text-align: center;
  padding: 5rem 2rem;
}

.wishlist-section__empty i {
  font-size: 5rem;
  color: #d1d5db;
  margin-bottom: 1.4rem;
}

.wishlist-section__empty-text {
  font-size: 1.8rem;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 0.6rem;
}

.wishlist-section__empty-sub {
  font-size: 1.4rem;
  color: #9ca3af;
}

/* ===== ROW REMOVE ANIMATION ===== */
.wishlist-section__row--removing {
  animation: wishlist-section-fadeout 0.32s ease forwards;
}

@keyframes wishlist-section-fadeout {
  to { opacity: 0; transform: translateX(40px); max-height: 0; padding: 0; }
}

/* ===== SUMMARY BAR ===== */
.wishlist-section__summary {
  margin-top: 2.4rem;
  background: #fff;
  border-radius: 1.4rem;
  box-shadow: 0 2px 16px rgba(40,116,240,0.06);
  padding: 2.4rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.6rem; border: 1px solid #d1d5db99;
}

.wishlist-section__summary-label {
  font-size: 1.5rem;
  color: #6b7280;
  font-weight: 500;
}

.wishlist-section__summary-total {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1a1a2e;
}

.wishlist-section__summary-total span {
  color: #2874f0;
}

.wishlist-section__proceed-btn {
  background: #2874f0;
  color: #fff;
  border: none;
  border-radius: 1rem;
  padding: 1.2rem 3rem;
  font-size: 1.55rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: background 0.18s, transform 0.13s, box-shadow 0.18s;
  box-shadow: 0 2px 14px rgba(40,116,240,0.2);
  letter-spacing: 0.01em;
}

.wishlist-section__proceed-btn img{
  width: 18px;
}

.wishlist-section__proceed-btn:hover {
  background: var(--hover-color);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(40,116,240,0.3);
}
/*END WISHLIST SECTION*/

/*START CART SECTION*/
.cart-section {
  padding: 4rem 5%;
  min-height: 100vh;
}

.cart-section__heading {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}

.cart-section__heading span { color: var(--blue); }

.cart-section__subheading {
  font-size: 1.4rem;
  color: var(--muted);
  margin-bottom: 3rem;
  font-weight: 400;
}

/* ===== LAYOUT ===== */
.cart-section__layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2.4rem;
  align-items: start;
}

/* ===== TABLE WRAPPER ===== */
.cart-section__table-wrapper {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(40,116,240,0.22) transparent;
}

.cart-section__table-wrapper::-webkit-scrollbar { height: 4px; }
.cart-section__table-wrapper::-webkit-scrollbar-track { background: transparent; }
.cart-section__table-wrapper::-webkit-scrollbar-thumb { background: rgba(40,116,240,0.22); border-radius: 99px; }

/* ===== TABLE ===== */
.cart-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.45rem;
}

.cart-table thead { background: var(--blue-xlight); }

.cart-table thead th {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 1.6rem 2rem;
  text-align: center;
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
}

.cart-table thead th:first-child { text-align: left; }

.cart-table tbody tr {
  border-bottom: 1px solid #f0f4ff;
  transition: background 0.18s;
}

.cart-table tbody tr:last-child { border-bottom: none; }
.cart-table tbody tr:hover { background: #fafbff; }

.cart-table tbody td {
  padding: 1.8rem 2rem;
  text-align: center;
  vertical-align: middle;
  color: #374151;
  font-weight: 500;
}

.cart-table tbody td:first-child { text-align: left; }

/* ===== IMAGE ===== */
.cart-img-wrap {
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 1rem;
  overflow: hidden;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cart-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== COURSE NAME ===== */
.cart-course-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
}

/* ===== PRICE / TOTAL ===== */
.cart-price {
  font-size: 1.5rem;
  font-weight: 600;
  color: #374151;
  font-family: 'Inter', sans-serif;
}

.cart-row-total {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--blue);
  font-family: 'Inter', sans-serif;
}

/* ===== QTY ===== */
.cart-qty-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.cart-qty-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 0.7rem;
  border: 1.5px solid #d1d5db;
  background: #f9fafb;
  color: #374151;
  font-size: 1.6rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.18s, background 0.18s, color 0.18s;
  line-height: 1;
}

.cart-qty-btn:hover {
  border-color: var(--blue);
  background: var(--blue-light);
  color: var(--blue);
}

.cart-qty-input {
  width: 5rem;
  height: 3.4rem;
  border: 1.5px solid #d1d5db;
  border-radius: 0.7rem;
  text-align: center;
  font-size: 1.45rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
}

.cart-qty-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(40,116,240,0.13);
}

/* ===== REMOVE BTN ===== */
.cart-remove-btn {
  background: none;
  border: none;
  color: #d51243;
  font-size: 1.35rem;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border-radius: 0.8rem;
  transition: color 0.18s, background 0.18s;
  font-family: 'Inter', sans-serif;
}

.cart-remove-btn img{
  width: 18px;
}

.cart-remove-btn:hover {
  color: var(--red);
  background: #fef2f2;
}

/* ===== EMPTY STATE ===== */
.cart-empty {
  display: none;
  text-align: center;
  padding: 5rem 2rem;
}

.cart-empty i {
  font-size: 4.5rem;
  color: #d1d5db;
  margin-bottom: 1.5rem;
  display: block;
}

.cart-empty-text {
  font-size: 1.9rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.6rem;
}

.cart-empty-sub {
  font-size: 1.4rem;
  color: var(--muted);
}

/* ===== ROW REMOVING ANIMATION ===== */
.cart-row--removing {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* ============================================================
   SUMMARY PANEL — Matches the screenshot style exactly
============================================================ */
.cart-summary {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: sticky;
  top: 2rem;
}

.cart-summary__header {
  padding: 1.8rem 2.2rem 1.4rem;
  border-bottom: 1px solid var(--border);
}

.cart-summary__title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ===== ACCORDION ROWS ===== */
.summary-accordion {
  border-bottom: 1px solid var(--border);
}

.summary-accordion__trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 1.6rem 2.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background 0.15s;
}

.summary-accordion__trigger:hover { background: #fffdf0; }

.summary-accordion__trigger .acc-chevron {
  color: var(--muted);
  font-size: 1.2rem;
  transition: transform 0.25s;
}

.summary-accordion__trigger.open .acc-chevron {
  transform: rotate(180deg);
}

.summary-accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
  background: #fffdf0;
}

.summary-accordion__body.open {
  max-height: 400px;
}

.summary-accordion__inner {
  padding: 1.4rem 2.2rem 1.8rem;
}

/* Shipping options */
.shipping-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.shipping-info div img {
  width: 20px;
}

.shipping-info p {
  font-size: 1.35rem;
  color: #374151;
  font-weight: 500;
}

.shipping-info p small {
  display: block;
  font-size: 1.2rem;
  color: var(--muted);
  font-weight: 400;
  margin-top: 0.2rem;
}

.shipping-amount {
  font-size: 1.35rem;
  font-weight: 600;
  color: #374151;
  font-family: 'Inter', sans-serif;
}

/* Tax breakdown */
.tax-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
  color: #374151;
}

.tax-row:last-child { margin-bottom: 0; }

.tax-row span:last-child {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: var(--text);
}

/* ===== PRICE ROWS ===== */
.summary-rows {
  padding: 1.6rem 2.2rem;
  border-bottom: 1px solid var(--border);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: #374151;
}

.summary-row:last-child { margin-bottom: 0; }

.summary-row__label { font-weight: 400; }

.summary-row__val {
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  color: var(--text);
}

.summary-row__val--discount {
  color: var(--green);
}

/* Tax toggle trigger row */
.summary-row--tax {
  cursor: pointer;
  user-select: none;
  padding: 0.4rem 0;
  border-radius: 0.6rem;
  transition: background 0.15s;
  margin: 0 -0.6rem 1.2rem;
  padding-left: 0.6rem;
  padding-right: 0.6rem;
}

.summary-row--tax:hover { background: var(--blue-xlight); }

.summary-row--tax .tax-toggle-icon {
  color: var(--muted);
  font-size: 1.1rem;
  transition: transform 0.25s;
}

.summary-row--tax.open .tax-toggle-icon { transform: rotate(180deg); }

.tax-details-inline {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.tax-details-inline.open { max-height: 200px; }

.tax-sub-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.25rem;
  color: var(--muted);
  padding: 0.3rem 0;
}

.tax-sub-row span:last-child {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

/* ===== ORDER TOTAL ===== */
.summary-total-block {
  padding: 1.6rem 2.2rem;
  border-bottom: 1px solid var(--border);
}

.summary-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.summary-total-label {
  font-size: 1.4rem;
  color: var(--muted);
  font-weight: 500;
}

.summary-subtotal-label {
  font-size: 1.3rem;
  color: var(--muted);
  font-weight: 400;
  margin-top: 0.5rem;
}

.summary-grand-val {
  font-size: 2.2rem;
  font-weight: 700;
  color: #eb811f;
  font-family: 'Inter', sans-serif;
}

.summary-sub-val {
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  text-align: right;
  display: block;
  margin-top: 0.4rem;
}

/* ===== COUPON ===== */
.coupon-accordion {
  border-bottom: none;
}

.coupon-accordion .summary-accordion__trigger {
  color: #cb6f09;
}

.coupon-inner {
  padding: 1.2rem 2.2rem 1.8rem;
}

.coupon-wrap {
  display: flex;
  gap: 0.8rem;
}

.coupon-input {
  flex: 1;
  height: 4rem;
  border: 1.5px solid #d1d5db;
  border-radius: 0.8rem;
  padding: 0 1.2rem;
  font-size: 1.4rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
  letter-spacing: 0.05em;
}

.coupon-input::placeholder { color: #9ca3af; font-weight: 400; letter-spacing: 0; }

.coupon-input:focus {
  border-color: #eb811f;
box-shadow: 0 0 0 3px rgb(240 177 40 / 13%);
}

.coupon-input.applied {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(22,163,74,0.13);
  color: var(--green);
}

.coupon-btn {
  height: 4rem;
  padding: 0 1.8rem;
  background: #eb811f;
  color: var(--white);
  border: none;
  border-radius: 0.8rem;
  font-size: 1.35rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: background 0.18s, transform 0.12s;
  white-space: nowrap;
}

.coupon-btn:hover { background: #e37510; transform: translateY(-1px); }
.coupon-btn:active { transform: translateY(0); }

.coupon-msg {
  font-size: 1.25rem;
  margin-top: 0.8rem;
  display: none;
  font-weight: 500;
}

.coupon-msg.success { color: var(--green); display: block; }
.coupon-msg.error { color: var(--red); display: block; }

/* ===== CHECKOUT BTN ===== */
.summary-checkout {
  padding: 1.8rem 2.2rem;
}

.checkout-btn {
  background: #2874f0;
  color: #fff;
  width: 100%;
  border: none;
  border-radius: 1rem;
  padding: 1.2rem 3rem;
  font-size: 1.55rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  display: inline-flex;
  align-items: center; justify-content: center;
  gap: 0.8rem;
  transition: background 0.18s, transform 0.13s, box-shadow 0.18s;
  box-shadow: 0 2px 14px rgba(40,116,240,0.2);
  letter-spacing: 0.01em;
}

.checkout-btn img{
  width: 18px;
}

.checkout-btn:hover {
  background: var(--hover-color);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(40,116,240,0.32);
}

.checkout-btn:active { transform: translateY(0); }

/* ===== MOBILE CARD VIEW ===== */
.cart-cards { display: none; }

.cart-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 1.6rem;
  margin-bottom: 1.2rem;
  transition: background 0.18s;
}

.cart-card__top {
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}

.cart-card__name {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  flex: 1;
  line-height: 1.4;
}

.cart-card__price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-card__total {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--blue);
  font-family: 'Inter', sans-serif;
}

.cart-card__unit {
  font-size: 1.25rem;
  color: var(--muted);
  font-weight: 400;
  font-family: 'Inter', sans-serif;
}

/* ROOT ONLY CART PAGE*/
:root {
  --blue: #2874f0;
  --blue-dark: #1a5ed4;
  --blue-light: #e8f0fe;
  --blue-xlight: #f0f5ff;
  --text: #1a1a2e;
  --muted: #6b7280;
  --border: #e8eeff;
  --bg: #f4f6fb;
  --white: #fff;
  --orange: #e87722;
  --green: #16a34a;
  --red: #dc2626;
  --shadow: 0 4px 32px rgba(40,116,240,0.07), 0 1px 4px rgba(0,0,0,0.04);
  --radius: 1.6rem;
  --radius-sm: 1rem;
}
/*END CART SECTION*/

/*START MY ACCOUNT PAGE UI*/
.my-account { padding: 4rem 5%; background: #f8f8f8}

/* ══ HEADER ══ */
.my-account__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
}
.my-account__header-title {
  font-size: 2.4rem;
  font-weight: 600;
  color: #1a1a2e;
  letter-spacing: -0.03em;
}
.my-account__mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.6rem;
  border-radius: 0.8rem;
  color: #1a1a2e;
  transition: background 0.2s;
}
.my-account__mobile-toggle:hover { background: #ebebf0; }
.my-account__mobile-toggle i { font-size: 2rem; }

/* ══ LAYOUT ══ */
.my-account__layout { display: flex; gap: 2.4rem; align-items: flex-start; }

/* ══ OVERLAY ══ */
.my-account__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,15,30,0.4);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.my-account__overlay.active { opacity: 1; pointer-events: all; }

/* ══ SIDEBAR ══ */
.my-account__sidebar {
  width: 26rem;
  flex-shrink: 0;
  background: #fff;
  border-radius: 1.6rem;
  border: 1px solid #e8e9f0;
  overflow: hidden;
  position: sticky;
  top: 2rem;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
.my-account__sidebar-user {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 2rem 2rem 1.6rem;
  border-bottom: 1px solid #f0f0f5;
}
.my-account__sidebar-avatar {
  width: 4.4rem; height: 4.4rem;
  border-radius: 50%;
  background: linear-gradient(135deg,#e8f0fe,#c2d4fd);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 600; color: #2874f0;
  flex-shrink: 0; letter-spacing: 0.04em;
}
.my-account__sidebar-user-info { overflow: hidden; }
.my-account__sidebar-user-name {
  font-size: 1.4rem; font-weight: 600; color: #1a1a2e;
  margin: 0;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.my-account__sidebar-user-email {
  font-size: 1.2rem; color: #7a7b8c; margin: 0;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.my-account__sidebar-nav { padding: 1.2rem 0; list-style: none; }
.my-account__sidebar-nav-link {
  display: flex; align-items: center; gap: 1.2rem;
  padding: 1.15rem 2rem;
  text-decoration: none; color: #4a4b5e;
  font-size: 1.4rem; font-weight: 500;
  transition: background 0.18s, color 0.18s;
  border-left: 3px solid transparent;
}
.my-account__sidebar-nav-link:hover { background: #f7f8fc; color: #2874f0; border-left-color: #b3ccf8; }
.my-account__sidebar-nav-link.active { background: #e8f1ff; color: #333333; border-left-color: #2874f0; }
.my-account__sidebar-nav-link img { width:18px }
.my-account__sidebar-divider { height: 1px; background: #f0f0f5; margin: 0.8rem 2rem; }
.my-account__sidebar-nav-link--logout { color: #d94040; }
.my-account__sidebar-nav-link--logout:hover { background: #fff5f5; color: #c02020; border-left-color: #f5c6c6; }

/* ══ CONTENT ══ */
.my-account__content { flex: 1; min-width: 0; }

/* ══ PROFILE COVER CARD ══ */
.my-account__profile-card {
  background: #fff;
  border-radius: 1.6rem;
  border: 1px solid #e8e9f0;
  overflow: hidden;
  margin-bottom: 2rem;
}
.my-account__profile-cover {
  position: relative;
  height: 12rem;
  background: linear-gradient(120deg,#0f2c6b 0%,#1a56b0 40%,#38bdf8 100%);
  overflow: hidden;
}
.my-account__profile-cover-img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.my-account__profile-cover-upload {
  position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    right: -41px;
    background: var(--main-color);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 1rem 1.2rem;
    border-radius: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.2s;
    font-family: var(--heading-font);
}

.my-account__profile-cover-upload img{
  width: 16px; filter: brightness(100);
}

.my-account__profile-cover-upload:hover { background: rgba(255,255,255,0.3); }
.my-account__profile-info {
  display: flex; align-items: flex-end; gap: 1.6rem;
  padding: 0 2.4rem 2rem;
  margin-top: -3.8rem;
}
.my-account__profile-avatar-wrap { position: relative; flex-shrink: 0; }
.my-account__profile-avatar {
  width: 7.6rem; height: 7.6rem;
  border-radius: 50%;
  border: 3px solid #fff;
  background: linear-gradient(135deg,#e8f0fe,#c2d4fd);
  object-fit: cover; display: block;
  box-shadow: 0 2px 12px rgba(59,91,219,0.15);
}
.my-account__profile-avatar-edit {
  position: absolute; bottom: 0.2rem; right: 0.2rem;
  width: 2.4rem; height: 2.4rem;
  border-radius: 50%;
  background: #2874f0;
  border: 2px solid #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.my-account__profile-avatar-edit:hover { background: #1a5fd4; }
.my-account__profile-avatar-edit i { font-size: 1rem; color: #fff; }
.my-account__profile-meta { padding-bottom: 0.4rem; }
.my-account__profile-name { font-size: 1.7rem; font-weight: 600; color: #1a1a2e; }
.my-account__profile-email {
  font-size: 1.4rem; color: #7a7b8c;
  margin-top: 0.2rem; margin: 0;
  display: flex; align-items: center; gap: 10px;
}
.my-account__profile-email img { width: 16px}

/* ══ INFO CARD ══ */
.my-account__info-card {
  background: #fff;
  border-radius: 1.6rem;
  border: 1px solid #e8e9f0;
  margin-bottom: 2rem;
  overflow: hidden;
}
.my-account__info-card-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.8rem 2.4rem 1.4rem;
  border-bottom: 1px solid #f0f0f5;
}
.my-account__info-card-title {
  font-size: 1.3rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: #3b4a6b;
}
.my-account__info-card-body { padding: 2rem 2.4rem; }
.my-account__info-block-label {
  font-size: 1.1rem; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase; color: #9596a8;
  margin-bottom: 0.8rem;
}
.my-account__info-block-name { font-size: 1.5rem; font-weight: 600; color: #1a1a2e; }
.my-account__info-block-email { font-size: 1.4rem; color: #4a4b5e; margin-top: 0.2rem; }
.my-account__info-block-muted { font-size: 1.35rem; color: #9596a8; margin-bottom: 1.2rem; }
.my-account__info-block-actions {
  display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.4rem;
}
.my-account__btn-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 1.25rem; font-weight: 500;
  color: #2874f0;
  padding: 0.55rem 1.1rem;
  border-radius: 0.8rem;
  border: 1.5px solid #b3ccf8;
  background: #e8f1ff;
  cursor: pointer;
  transition: all 0.18s;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
}
.my-account__btn-link:hover { background: #d0e4ff; border-color: #2874f0; color: #1a5fd4; }
.my-account__btn-link img { width:14px }

/* ══ ADDRESS BOOK ══ */
.my-account__address-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.8rem 2.4rem 1.4rem;
  border-bottom: 1px solid #f0f0f5;
}
.my-account__address-title {
  font-size: 1.3rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: #3b4a6b;
}
.my-account__btn-manage {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 1.25rem; font-weight: 500;
  background: #2874f0; color: #fff;
  border: none; padding: 0.65rem 1.4rem;
  border-radius: 0.8rem; cursor: pointer;
  transition: background 0.18s;
  font-family: 'Inter', sans-serif;
}

.my-account__btn-manage img{
  width: 14px;
}

.my-account__btn-manage:hover { background: #1a5fd4; }
.my-account__address-empty { font-size: 1.35rem; color: #9596a8; margin-bottom: 1.4rem; }

/* ══════════════════════════════
   POPUP SYSTEM — all prefixed ma-popup__
══════════════════════════════ */
.ma-popup__backdrop {
  display: none;
  position: fixed; inset: 0;
  background: rgba(15,15,30,0.45);
  z-index: 1050;
  align-items: center; justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.ma-popup__backdrop.ma-popup__backdrop--open {
  display: flex;
  opacity: 1;
}
.ma-popup__backdrop.ma-popup__backdrop--closing { opacity: 0; }

.ma-popup__box {
  background: #fff;
  border-radius: 2rem;
  width: 100%; max-width: 50rem;
  box-shadow: 0 20px 60px rgba(15,15,30,0.18), 0 4px 16px rgba(15,15,30,0.08);
  transform: translateY(2rem) scale(0.97);
  transition: transform 0.28s cubic-bezier(0.4,0,0.2,1);
  max-height: 90vh;
  overflow-y: auto;
  display: flex; flex-direction: column;
}
.ma-popup__backdrop--open .ma-popup__box { transform: translateY(0) scale(1); }
.ma-popup__backdrop--closing .ma-popup__box { transform: translateY(2rem) scale(0.97); }

.ma-popup__box--wide { max-width: 64rem; }

.ma-popup__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 2rem 2.4rem 1.6rem;
  border-bottom: 1px solid #f0f0f5;
  position: sticky; top: 0;
  background: #fff; z-index: 1;
  flex-shrink: 0;
}
.ma-popup__title { font-size: 1.7rem; font-weight: 600; color: #1a1a2e; }
.ma-popup__close-btn {
  width: 3.2rem; height: 3.2rem;
  border-radius: 50%; background: #f5f6fa;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #4a4b5e; font-size: 1.4rem;
  transition: background 0.18s;
}
.ma-popup__close-btn:hover { background: #e8e9f0; }

.ma-popup__body { padding: 2.4rem; flex: 1; }

.ma-popup__field { margin-bottom: 2rem; }
.ma-popup__field:last-child { margin-bottom: 0; }

.ma-popup__label {
  display: block;
  font-size: 1.3rem; font-weight: 500; color: #3b4a6b;
  margin-bottom: 0.7rem;
}
.ma-popup__required { color: #e53e3e; margin-left: 0.2rem; }

.ma-popup__input,
.ma-popup__select {
  width: 100%;
  padding: 1.1rem 1.4rem;
  border: 1.5px solid #dde1ef;
  border-radius: 1rem;
  font-size: 1.45rem;
  font-family: 'Inter', sans-serif;
  color: #1a1a2e;
  background: #fafbff;
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
  -webkit-appearance: none; appearance: none;
}
.ma-popup__input:focus,
.ma-popup__select:focus {
  border-color: #2874f0;
  box-shadow: 0 0 0 3px rgba(59,91,219,0.1);
  background: #fff;
}
.ma-popup__input::placeholder { color: #b0b3c6; }
.ma-popup__input--gap { margin-bottom: 0.8rem; }

.ma-popup__select-wrap { position: relative; }
.ma-popup__select-wrap::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; right: 1.4rem; top: 50%;
  transform: translateY(-50%);
  color: #9596a8; pointer-events: none; font-size: 1.3rem;
}

.ma-popup__section-divider {
  font-size: 1.1rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: #9596a8;
  padding-bottom: 1rem;
  margin-bottom: 1.8rem; margin-top: 0.4rem;
  border-bottom: 1px solid #f0f0f5;
}

.ma-popup__checkbox-row {
  display: flex; align-items: center; gap: 1.2rem;
  padding: 1.4rem 1.6rem;
  background: #f7f8fc;
  border-radius: 1rem;
  border: 1.5px solid #e8e9f0;
  cursor: pointer;
  transition: border-color 0.18s;
}
.ma-popup__checkbox-row:hover { border-color: #b3ccf8; }
.ma-popup__checkbox {
  width: 1.8rem; height: 1.8rem;
  accent-color: #2874f0; cursor: pointer; flex-shrink: 0;
}
.ma-popup__checkbox-label {
  font-size: 1.4rem; font-weight: 500; color: #1a1a2e;
  cursor: pointer; user-select: none;
}

.ma-popup__footer {
  display: flex; gap: 1rem; justify-content: flex-end;
  padding: 1.6rem 2.4rem 2.2rem;
  border-top: 1px solid #f0f0f5;
  flex-shrink: 0;
}
.ma-popup__btn-save {
  padding: 1rem 2.2rem;
  background: #2874f0; color: #fff;
  border: none; border-radius: 1rem;
  font-size: 1.4rem; font-weight: 500;
  font-family: 'Inter', sans-serif;
  cursor: pointer; transition: background 0.18s;
}
.ma-popup__btn-save:hover { background: #1a5fd4; }
.ma-popup__btn-cancel {
  padding: 1rem 2.2rem;
  background: #f5f6fa; color: #4a4b5e;
  border: 1.5px solid #e8e9f0;
  border-radius: 1rem;
  font-size: 1.4rem; font-weight: 500;
  font-family: 'Inter', sans-serif;
  cursor: pointer; transition: background 0.18s;
}
.ma-popup__btn-cancel:hover { background: #e8e9f0; }

/* Manage Address items */
.ma-popup__address-item {
  border: 1.5px solid #e8e9f0;
  border-radius: 1.2rem;
  padding: 1.6rem;
  margin-bottom: 1.2rem;
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 1rem;
  transition: border-color 0.18s;
}
.ma-popup__address-item:hover { border-color: #b3ccf8; }
.ma-popup__address-item:last-child { margin-bottom: 0; }
.ma-popup__address-info { flex: 1; }
.ma-popup__address-tag {
  display: inline-block;
  font-size: 1.1rem; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: #2874f0; background: #e8f1ff;
  padding: 0.3rem 0.8rem; border-radius: 0.5rem;
  margin-bottom: 0.8rem;
}
.ma-popup__address-line { font-size: 1.35rem; color: #4a4b5e; line-height: 1.7; }
.ma-popup__address-actions { display: flex; gap: 0.8rem; flex-shrink: 0; padding-top: 0.2rem; }
.ma-popup__address-btn-edit,
.ma-popup__address-btn-del {
  padding: 0.55rem 1.1rem;
  border-radius: 0.8rem;
  font-size: 1.2rem; font-weight: 500;
  font-family: 'Inter', sans-serif;
  cursor: pointer; transition: all 0.18s;
  border: 1.5px solid;
  display: flex; align-items: center; gap: 0.4rem;
}
.ma-popup__address-btn-edit { background: #e8f1ff; color: #2874f0; border-color: #b3ccf8; }
.ma-popup__address-btn-edit:hover { background: #d0e4ff; }
.ma-popup__address-btn-del { background: #fff5f5; color: #d94040; border-color: #f5c6c6; }
.ma-popup__address-btn-del:hover { background: #fee2e2; }

.ma-popup__address-empty {
  text-align: center; padding: 3.2rem;
  color: #9596a8; font-size: 1.4rem;
}
.ma-popup__address-empty i {
  font-size: 3.2rem; display: block;
  margin-bottom: 1rem; color: #c5cae8;
}

/*......MY ACCOUNT ORDER.......*/
.order-section,
.order-detail {
  padding: 4rem 5%;
  margin: 0 auto;
  width: 100%;
  background: #fff;
  border-radius: 1.6rem;
  border: 1px solid #e8e9f0;
}


/* ============================================================
   3. SHARED BACK LINK
   ============================================================ */
.order-section__back-link,
.order-detail__back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.35rem;
  font-weight: 600;
  color: #2874f0;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.8rem;
  border: 1.5px solid #b3ccf8;
  background: #e8f1ff;
  transition: all 0.18s;
}
.order-section__back-link:hover,
.order-detail__back-link:hover {
  background: #d0e4ff;
  border-color: #2874f0;
  color: #1a5fd4;
}
.order-section__back-link i,
.order-detail__back-link i { font-size: 1.2rem; }


/* ============================================================
   4. SHARED PAGE TITLE & SUBTITLE
   ============================================================ */
.order-section__page-title,
.order-detail__page-title {
  font-weight: 700;
  font-family: var(--heading-font);
  color: #1a1a2e;
  letter-spacing: -0.04em;
}
.order-section__page-title { font-size: 2.6rem; }
.order-detail__page-title  { font-size: 2.4rem; }

.order-section__page-subtitle {
  font-size: 1.4rem;
  color: #7a7b8c;
  margin-top: 0.3rem;
  font-weight: 400;
}

.order-detail__page-meta {
  font-size: 1.35rem;
  color: #7a7b8c;
  margin-top: 0.3rem;
  font-weight: 400;
}
.order-detail__page-meta span { font-weight: 700; color: #1a1a2e; }


/* ============================================================
   5. SHARED STATUS BADGES
   ============================================================ */
.order-section__status,
.order-detail__status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.2rem;
  border-radius: 10rem;
  font-size: 1.2rem;
  font-weight: 700;
}
.order-section__status i,
.order-detail__status i { font-size: 0.9rem; }

.order-section__status--delivered,
.order-detail__status--delivered  { background: #e9faf2; color: #1a9456; border: 1px solid #b7edcf; }

.order-section__status--shipped,
.order-detail__status--shipped    { background: #e8f1ff; color: #2874f0; border: 1px solid #b3ccf8; }

.order-section__status--processing,
.order-detail__status--processing { background: #fff8e8; color: #b07800; border: 1px solid #fde68a; }

.order-section__status--cancelled,
.order-detail__status--cancelled  { background: #fff4f4; color: #d94040; border: 1px solid #f5c6c6; }


/* ============================================================
   6. SHARED CARD SHELL
   ============================================================ */
.order-section__card,
.order-detail__card {
  background: #fff;
  border-radius: 1.6rem;
  border: 1px solid #e4e7f0;
  overflow: hidden;
  margin-bottom: 1.8rem;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.order-section__card:hover {
  box-shadow: 0 8px 28px rgba(40,116,240,0.09);
  border-color: #b3ccf8;
}

.order-detail__card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.4rem 2.2rem;
  background: #f9fafe;
  border-bottom: 1px solid #eef0f8;
}

.order-detail__card-title {
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9596a8; margin: 0;
  font-family: var(--heading-font);
}

.order-detail__card-body { padding: 2rem 2.2rem; }

.order-detail__card-header-right {
  font-size: 1.25rem;
  font-weight: 500;
  color: #7a7b8c;
  font-family: var(--heading-font);
}
.order-detail__card-header-right--success {
  font-size: 1.25rem;
  font-family: var(--heading-font);
  font-weight: 600;
  color: #1a9456;
}


/* ============================================================
   7. SHARED PRODUCT ROW
   ============================================================ */
.order-section__product-row,
.order-detail__product-row {
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid #f4f5fb;
}
.order-section__product-row:first-child,
.order-detail__product-row:first-child { padding-top: 0; }

.order-section__product-row:last-child,
.order-detail__product-row:last-child  { border-bottom: none; padding-bottom: 0; }

.order-section__product-img-wrap,
.order-detail__product-img-wrap {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #e8e9f0;
  flex-shrink: 0;
  background: #f5f6fa;
}
.order-section__product-img-wrap { width: 7rem; height: 7rem; }
.order-detail__product-img-wrap  { width: 8rem; height: 8rem; }

.order-section__product-img,
.order-detail__product-img { width: 100%; height: 100%; object-fit: cover; }

.order-section__product-info,
.order-detail__product-info { flex: 1; min-width: 0; }

.order-section__product-name,
.order-detail__product-name {
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.4;
}
.order-section__product-name { font-size: 1.45rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.order-detail__product-name  { font-size: 1.5rem; }

.order-section__product-meta,
.order-detail__product-meta { font-size: 1.2rem; color: #9596a8; margin-top: 0.3rem; }

.order-section__product-qty,
.order-detail__product-qty  { font-size: 1.25rem; color: #4a4b5e; margin-top: 0.4rem; font-weight: 500; }

.order-section__product-price-wrap,
.order-detail__product-price-wrap { text-align: right; flex-shrink: 0; }

.order-section__product-price,
.order-detail__product-price { font-weight: 800; color: #1a1a2e; }
.order-section__product-price { font-size: 1.5rem; }
.order-detail__product-price  { font-size: 1.6rem; }

.order-section__product-original,
.order-detail__product-original { font-size: 1.2rem; color: #b0b3c6; text-decoration: line-through; margin-top: 0.2rem; }

.order-detail__product-saving  { font-size: 1.15rem; color: #1a9456; font-weight: 600; margin-top: 0.2rem; }
.order-detail__product-each    { font-size: 1.2rem; font-weight: 500; color: #7a7b8c; }


/* ============================================================
   8. SHARED TRACKER (PROGRESS BAR)
   ============================================================ */
.order-section__tracker-steps,
.order-detail__tracker-steps {
  display: flex;
  align-items: flex-start;
  position: relative;
  padding-bottom: 0.4rem;
}

.order-section__tracker-line,
.order-detail__tracker-line {
  position: absolute;
  top: 1.3rem;
  left: calc(10% + 0.5px);
  right: calc(10% + 0.5px);
  height: 2px;
  background: #e4e7f0;
  z-index: 0;
}

.order-section__tracker-line-fill,
.order-detail__tracker-line-fill {
  height: 100%;
  background: #2874f0;
  border-radius: 2px;
  transition: width 0.5s ease;
}

.order-section__tracker-step,
.order-detail__tracker-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.order-section__tracker-dot,
.order-detail__tracker-dot {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: #e4e7f0;
  border: 2px solid #e4e7f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #b0b3c6;
  transition: all 0.2s;
}

.order-section__tracker-dot--done,
.order-detail__tracker-dot--done { background: #2874f0; border-color: #2874f0; color: #fff; }

.order-section__tracker-dot--active,
.order-detail__tracker-dot--active {
  background: #fff;
  border-color: #2874f0;
  color: #2874f0;
  box-shadow: 0 0 0 5px rgba(40,116,240,0.14);
}

.order-section__tracker-label,
.order-detail__tracker-label {
  font-size: 1.2rem;
  font-weight: 500;
  color: #9596a8;
  font-family: var(--heading-font);
  margin-top: 0.8rem;
  text-align: center;
  line-height: 1.3;
}

.order-section__tracker-label--done,
.order-detail__tracker-label--done { color: var(--main-color); font-weight: 600; }

.order-section__tracker-label--active,
.order-detail__tracker-label--active { color: #2874f0; font-weight: 700; }

.order-detail__tracker-date {
  font-size: 1.1rem;
  color: #b0b3c6;
  margin-top: 0.3rem;
  font-weight: 500;
  text-align: center;
}


/* ============================================================
   9. SHARED BUTTONS
   ============================================================ */
.order-section__btn,
.order-detail__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 0.72rem 1.4rem;
  border-radius: 0.8rem;
  cursor: pointer;
  transition: all 0.18s;
  border: 1.5px solid;
  text-decoration: none;
  font-family: var(--heading-font);
  background: none;
}
.order-section__btn img,
.order-detail__btn img { width:16px }

.order-section__btn--primary,
.order-detail__btn--primary { background: #2874f0; border-color: #2874f0; color: #fff; }

.order-section__btn--primary:hover,
.order-detail__btn--primary:hover { background: #1a5fd4; border-color: #1a5fd4; color: #fff; }

.order-section__btn--outline,
.order-detail__btn--outline { background: #fff; border-color: #d8dce8; color: #4a4b5e; }

.order-section__btn--outline:hover,
.order-detail__btn--outline:hover { border-color: #2874f0; color: #2874f0; background: #e8f1ff; }

.order-section__btn--danger-outline,
.order-detail__btn--danger-outline { background: #fff; border-color: #f5c6c6; color: #d94040; }

.order-section__btn--danger-outline:hover,
.order-detail__btn--danger-outline:hover { background: #fff4f4; border-color: #d94040; }

.order-detail__btn--danger-outline:hover{
  color: #d94040;
}

/* ============================================================
   10. SHARED MODALS
   ============================================================ */
.mo-modal-overlay,
.od-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20,20,40,0.45);
  z-index: 1050;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  backdrop-filter: blur(3px);
}
.mo-modal-overlay.open,
.od-modal-overlay.open { display: flex; }

.mo-modal,
.od-modal {
  background: #fff;
  border-radius: 2rem;
  border: 1px solid #e4e7f0;
  width: 100%;
  max-width: 52rem;
  box-shadow: 0 24px 64px rgba(20,20,60,0.18);
  animation: mtvModalUp 0.22s ease;
  overflow: hidden;
}

@keyframes mtvModalUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mo-modal__header,
.od-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2.4rem 1.6rem;
  border-bottom: 1px solid #eef0f8;
}

.mo-modal__title,
.od-modal__title { font-size: 1.8rem; font-weight: 700; color: var(--black-color); letter-spacing: -0.02em; font-family: var(--heading-font);}

.mo-modal__close,
.od-modal__close {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  border: none;
  background: #f4f6fb;
  color: #7a7b8c;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}
.mo-modal__close:hover,
.od-modal__close:hover { background: #e4e7f0; color: #1a1a2e; }

.mo-modal__body,
.od-modal__body { padding: 2rem 2.4rem; 
    max-height: 450px;
    overflow-y: auto; }

.mo-modal__footer,
.od-modal__footer {
  padding: 1.4rem 2.4rem 2rem;
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  border-top: 1px solid #eef0f8;
}

/* Track modal wider */
.mo-modal--track { max-width: 54rem; }


/* ============================================================
   11. SHARED MODAL — INVOICE
   ============================================================ */
.mo-invoice__logo,
.od-invoice__logo { font-size: 2rem; font-weight: 800; color: #2874f0; letter-spacing: -0.04em; margin-bottom: 0.3rem; }

.mo-invoice__tagline,
.od-invoice__tagline { font-size: 1.1rem; color: #7a7b8c; margin-bottom: 1.6rem; }

.mo-invoice__row,
.od-invoice__row {
  display: flex;
  justify-content: space-between;
  padding: 0.7rem 0;
  border-bottom: 1px dashed #eef0f8;
  font-size: 1.3rem;
  gap: 1rem;
}
.mo-invoice__row:last-of-type,
.od-invoice__row:last-of-type { border-bottom: none; }

.mo-invoice__row-label,
.od-invoice__row-label { color: #7a7b8c; }

.mo-invoice__row-value,
.od-invoice__row-value { font-weight: 600; color: #1a1a2e; text-align: right; }

.mo-invoice__items,
.od-invoice__items { margin: 1.4rem 0; background: #f4f6fb; border-radius: 1rem; padding: 1.2rem 1.4rem; }

.mo-invoice__item,
.od-invoice__item { display: flex; justify-content: space-between; font-size: 1.25rem; padding: 0.4rem 0; }

.mo-invoice__item-name,
.od-invoice__item-name { color: #4a4b5e; flex: 1; padding-right: 1rem; }

.mo-invoice__item-price,
.od-invoice__item-price { font-weight: 600; color: #1a1a2e; }

.mo-invoice__total-row,
.od-invoice__total-row {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0 0;
  margin-top: 0.6rem;
  border-top: 2px solid #e4e7f0;
}

.mo-invoice__total-label,
.od-invoice__total-label { font-size: 1.5rem; font-weight: 700; }

.mo-invoice__total-value,
.od-invoice__total-value { font-size: 1.6rem; font-weight: 800; color: #2874f0; }


/* ============================================================
   12. SHARED MODAL — RETURN / EXCHANGE
   ============================================================ */
.mo-return__options,
.od-return__options { display: flex; gap: 1.2rem; margin-bottom: 1.8rem; }
.od-return__option img{width: 55px}
.mo-return__option,
.od-return__option {
  flex: 1;
  border: 2px solid #e4e7f0;
  border-radius: 1.2rem;
  padding: 1.4rem 1.2rem;
  cursor: pointer;
  text-align: center;
  transition: all 0.18s;
}

.mo-return__option img{
  width: 55px;
}
.mo-return__option:hover, .mo-return__option.selected,
.od-return__option:hover, .od-return__option.selected { border-color: #2874f0; background: #e8f1ff; }

.mo-return__option i,
.od-return__option i { font-size: 2.2rem; color: #2874f0; margin-bottom: 0.6rem; display: block; }

.mo-return__option-label,
.od-return__option-label { font-size: 1.4rem; font-weight: 600; color: #1a1a2e; font-family: var(--heading-font); margin-top: 1rem}

.mo-return__option-desc,
.od-return__option-desc { font-size: 1.1rem; color: #7a7b8c; margin-top: 0.2rem; }

.mo-return__label,
.od-return__label { font-size: 1.25rem; font-weight: 600; color: #1a1a2e; margin-bottom: 0.8rem; }

.mo-return__select,
.od-return__select {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1.5px solid #e4e7f0;
  border-radius: 0.8rem;
  font-size: 1.35rem;
  color: #1a1a2e;
  background: #fff;
  outline: none;
  margin-bottom: 1.4rem;
  transition: border-color 0.18s;
}
.mo-return__select:focus,
.od-return__select:focus { border-color: #2874f0; }

.mo-return__textarea,
.od-return__textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 1.5px solid #e4e7f0;
  border-radius: 0.8rem;
  font-size: 1.3rem;
  color: #1a1a2e;
  background: #fff;
  outline: none;
  resize: vertical;
  min-height: 8rem;
  transition: border-color 0.18s;
}
.mo-return__textarea:focus,
.od-return__textarea:focus { border-color: #2874f0; }


/* ============================================================
   13. SHARED MODAL — REVIEW / STARS
   ============================================================ */
.mo-review__product,
.od-review__product {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  margin-bottom: 1.8rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid #eef0f8;
}

.mo-review__product-img,
.od-review__product-img { width: 5.5rem; height: 5.5rem; border-radius: 0.8rem; object-fit: cover; border: 1px solid #e4e7f0; }

.mo-review__product-name,
.od-review__product-name { font-size: 1.35rem; font-weight: 700; color: #1a1a2e; }

.mo-review__product-sku,
.od-review__product-sku { font-size: 1.1rem; color: #7a7b8c; margin-top: 0.2rem; }

.mo-review__label,
.od-review__label { font-size: 1.25rem; font-weight: 600; color: #1a1a2e; margin-bottom: 0.8rem; }

.mo-review__stars-row,
.od-review__stars-row { display: flex; align-items: center; margin-bottom: 1.8rem; }

.mo-review__stars,
.od-review__stars { display: flex; gap: 0.6rem; }

.mo-review__star,
.od-review__star { font-size: 2.8rem; color: #e0e3f0; cursor: pointer; transition: color 0.12s, transform 0.12s; }

.mo-review__star:hover, .mo-review__star.active,
.od-review__star:hover, .od-review__star.active { color: #f5a623; transform: scale(1.12); }

.mo-review__rating-label,
.od-review__rating-label { font-size: 1.2rem; color: #7a7b8c; margin-left: 0.6rem; font-weight: 500; }

.mo-review__title-input,
.od-review__title-input {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1.5px solid #e4e7f0;
  border-radius: 0.8rem;
  font-size: 1.35rem;
  color: #1a1a2e;
  background: #fff;
  outline: none;
  margin-bottom: 1.2rem;
  transition: border-color 0.18s;
}
.mo-review__title-input:focus,
.od-review__title-input:focus { border-color: #2874f0; }

.mo-review__textarea,
.od-review__textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 1.5px solid #e4e7f0;
  border-radius: 0.8rem;
  font-size: 1.3rem;
  color: #1a1a2e;
  background: #fff;
  outline: none;
  resize: vertical;
  min-height: 9rem;
  transition: border-color 0.18s;
}
.mo-review__textarea:focus,
.od-review__textarea:focus { border-color: #2874f0; }


/* ============================================================
   14. SHARED TOAST
   ============================================================ */
.mo-toast,
.od-toast {
  position: fixed;
  bottom: 2.4rem;
  right: 2.4rem;
  background: #1a1a2e;
  color: #fff;
  padding: 1.2rem 2rem;
  border-radius: 1rem;
  font-size: 1.35rem;
  font-weight: 500;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  z-index: 9999;
  display: none;
  align-items: center;
  gap: 0.8rem;
  animation: mtvModalUp 0.22s ease;
}
.mo-toast.show,
.od-toast.show { display: flex; }

.mo-toast i,
.od-toast i { color: #4ade80; }





/* ============================================================
   ============================================================
   16. MY-ORDERS — PAGE SPECIFIC
   ============================================================
   ============================================================ */

/* Page Header */
.order-section__page-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin-bottom: 2.8rem;
}

/* Summary Strip */
.order-section__summary-strip {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 1.6rem;
  border: 1px solid #e4e7f0;
  margin-bottom: 2.4rem;
  overflow: hidden;
}
.order-section__summary-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1.8rem 2.4rem;
  flex: 1;
  min-width: 10rem;
  border-right: 1px solid #e4e7f0;
  transition: background 0.15s;
}
.order-section__summary-item:last-child { border-right: none; }
.order-section__summary-item:hover { background: #f4f6fb; }

.order-section__summary-count {
  font-size: 2.6rem;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1;
  letter-spacing: -0.03em;
}
.order-section__summary-count--delivered  { color: #1a9456; }
.order-section__summary-count--shipped    { color: #2874f0; }
.order-section__summary-count--processing { color: #b07800; }
.order-section__summary-count--cancelled  { color: #d94040; }

.order-section__summary-label {
  font-size: 1.2rem;
  color: #7a7b8c;
  font-weight: 500;
}

/* Bootstrap 5 Tabs Overrides */
.order-section__tabs { margin-bottom: 2.2rem; }

.order-section__tabs .nav-tabs {
  border-bottom: 2px solid #e4e7f0;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.order-section__tabs .nav-tabs .nav-link {
  font-size: 1.3rem;
  font-weight: 600;
  color: #4a4b5e;
  padding: 0.85rem 1.8rem;
  border: none;
  border-bottom: 2.5px solid transparent;
  border-radius: 0;
  background: none;
  transition: all 0.18s;
  margin-bottom: -2px;
}
.order-section__tabs .nav-tabs .nav-link:hover { color: #2874f0; border-bottom-color: #b3ccf8; }
.order-section__tabs .nav-tabs .nav-link.active {
  color: #2874f0;
  font-weight: 700;
  border-bottom-color: #2874f0;
  background: none;
}

/* Card Top Bar */
.order-section__card-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.4rem 2.2rem;
  background: #f9fafe;
  border-bottom: 1px solid #eef0f8;
}
.order-section__card-bar-meta {
  display: flex;
  align-items: center;
  gap: 2.8rem;
  flex-wrap: wrap;
}
.order-section__card-bar-label {
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9596a8;
}
.order-section__card-bar-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a2e;
  font-family: var(--heading-font);
  margin-top: 0.15rem;
}
.order-section__card-bar-value--accent { color: #2874f0; }
.order-section__card-bar-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }

/* Card Tracker Wrapper */
.order-section__tracker {
  padding: 1.8rem 2.2rem 1rem;
  border-bottom: 1px solid #eef0f8;
}
.order-section__tracker-title {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9596a8;
  margin-bottom: 1.6rem;
}

/* Card Body */
.order-section__card-body { padding: 1.6rem 2.2rem; }

/* Card Footer */
.order-section__card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.4rem 2.2rem;
  background: #f9fafe;
  border-top: 1px solid #eef0f8;
}
.order-section__total-wrap   { display: flex; align-items: center; gap: 0.8rem; }
.order-section__total-label  { font-size: 1.3rem; color: #7a7b8c; font-weight: 500; }
.order-section__total-amount { font-size: 1.8rem; font-weight: 700; color: #1a1a2e; font-family: var(--heading-font);}
.order-section__footer-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; }

.order-section__empty {
    background: #fff;
    border-radius: 1.6rem;
    border: 1px solid #e4e7f0;
    padding: 6rem 2rem;
    text-align: center;
}

.order-section__empty img {
    width: 100px; margin-bottom: 1rem;
}

.order-section__empty-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 0.8rem;
}

.order-section__empty-text {
    font-size: 1.4rem;
    color: #9596a8;
}

/* Track Order Modal */
.mo-track__info-row {
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
  background: #f9fafe;
  border: 1px solid #e4e7f0;
  border-radius: 1.2rem;
  padding: 1.4rem 1.6rem;
  margin-bottom: 1.4rem;
}
.mo-track__info-group  { flex: 1; min-width: 10rem; }
.mo-track__info-label  { font-size: 1.05rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: #9596a8; margin-bottom: 0.3rem; }
.mo-track__info-value  { font-size: 1.35rem; font-weight: 700; color: #1a1a2e; }
.mo-track__info-value--id { color: #2874f0; font-family: monospace; font-size: 1.3rem; letter-spacing: 0.03em; }

.mo-track__location-pill {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: #e8f1ff;
  border: 1px solid #b3ccf8;
  border-radius: 1.2rem;
  padding: 1.2rem 1.6rem;
  margin-bottom: 1.2rem;
}
.mo-track__location-icon  { font-size: 2rem; color: #2874f0; flex-shrink: 0; }
.mo-track__location-label { font-size: 1.05rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: #2874f0; margin-bottom: 0.2rem; }
.mo-track__location-value { font-size: 1.35rem; font-weight: 700; color: #1a1a2e; }

.mo-track__eta {
  font-size: 1.3rem;
  color: #7a7b8c;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.mo-track__eta i      { color: #1a9456; }
.mo-track__eta strong { color: #1a1a2e; }

.mo-track__timeline { display: flex; flex-direction: column; }
.mo-track__timeline-step {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
  position: relative;
  padding-bottom: 1.8rem;
}
.mo-track__timeline-step:last-child { padding-bottom: 0; }
.mo-track__timeline-step::before {
  content: '';
  position: absolute;
  left: 1.2rem; top: 2.8rem; bottom: 0;
  width: 2px;
  background: #e4e7f0;
}
.mo-track__timeline-step:last-child::before  { display: none; }
.mo-track__timeline-step--done::before       { background: #2874f0; }
.mo-track__timeline-step--active::before     { background: linear-gradient(to bottom, #2874f0, #e4e7f0); }

.mo-track__timeline-dot {
  width: 2.6rem; height: 2.6rem;
  border-radius: 50%;
  background: #e4e7f0;
  border: 2px solid #e4e7f0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: #b0b3c6;
  flex-shrink: 0; position: relative; z-index: 1;
}
.mo-track__timeline-step--done .mo-track__timeline-dot   { background: #2874f0; border-color: #2874f0; color: #fff; }
.mo-track__timeline-step--active .mo-track__timeline-dot { background: #fff; border-color: #2874f0; color: #2874f0; box-shadow: 0 0 0 4px rgba(40,116,240,0.15); }

.mo-track__timeline-content { flex: 1; padding-top: 0.2rem; }
.mo-track__timeline-event {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.3;
}
.mo-track__timeline-step--active .mo-track__timeline-event { color: #2874f0; }
.mo-track__timeline-time { font-size: 1.2rem; color: #7a7b8c; margin-top: 0.25rem; }


/* ============================================================
   ============================================================
   17. ORDER-DETAIL — PAGE SPECIFIC
   ============================================================
   ============================================================ */

/* Page Header */
.order-detail__page-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin-bottom: 2.8rem;
}
.order-detail__back-link { margin-bottom: 2rem; }

.order-detail__page-header-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

/* Reorder Banner */
.order-detail__reorder-banner {
  background: #e8f1ff;
  border: 1.5px solid #b3ccf8;
  border-radius: 1.4rem;
  padding: 1.6rem 2.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
}
.order-detail__reorder-title { font-size: 1.6rem; font-weight: 700; color: #1a1a2e; font-family:var(--heading-font); margin-bottom: 6px; }
.order-detail__reorder-sub   { font-size: 1.25rem; color: #7a7b8c; margin: 0}

/* Actions Bar */
.order-detail__actions-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.4rem 2.2rem;
  background: #f9fafe;
  border-top: 1px solid #eef0f8;
}
.order-detail__actions-total-label  { font-size: 1.3rem; color: #7a7b8c; font-weight: 500; }
.order-detail__actions-total-amount { font-size: 1.8rem; font-weight: 800; color: #1a1a2e; }
.order-detail__actions-right { display: flex; gap: 0.9rem; flex-wrap: wrap; }

/* Two Column Grid */
.order-detail__two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
}

/* Address Block */
.order-detail__address-block { display: flex; flex-direction: column; gap: 0.4rem; }
.order-detail__address-name  { font-size: 1.45rem; font-weight: 800; color: #1a1a2e; }
.order-detail__address-line  { font-size: 1.3rem; color: #4a4b5e; line-height: 1.5; }
.order-detail__address-phone { font-size: 1.4rem; color: #7a7b8c; margin-top: 0.4rem; }
.order-detail__address-phone img { margin-right: 0.4rem; width:16px; }

/* Payment Breakdown */
.order-detail__price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.35rem;
  padding: 0.8rem 0;
  border-bottom: 1px dashed #eef0f8;
}
.order-detail__price-row:last-child { border-bottom: none; }
.order-detail__price-label          { color: #7a7b8c; }
.order-detail__price-value          { font-weight: 600; color: #1a1a2e; }
.order-detail__price-value--green   { color: #1a9456; }
.order-detail__price-value--accent  { color: #2874f0; }

.order-detail__price-value img{
  width: 16px;
}

.order-detail__price-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0 0;
  margin-top: 0.6rem;
  border-top: 2px solid #e4e7f0;
}
.order-detail__price-total-label { font-size: 1.6rem; font-weight: 800; color: #1a1a2e; }
.order-detail__price-total-value { font-size: 1.8rem; font-weight: 800; color: #2874f0; }

/* Delivery Partner */
.order-detail__courier-wrap { display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; }
.order-detail__courier-icon {
  width: 5rem; height: 5rem;
  border-radius: 1rem;
  background: #e8f1ff;
  border: 1px solid #b3ccf8;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: #2874f0; flex-shrink: 0;
}

.order-detail__courier-icon img{width: 32px}
.order-detail__courier-name { font-size: 1.5rem; font-weight: 800; color: #1a1a2e; }
.order-detail__courier-meta { font-size: 1.25rem; color: #7a7b8c; margin-top: 0.2rem; }

.order-detail__courier-tracking {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.4rem;
  padding: 1.2rem 1.4rem;
  background: #f4f6fb;
  border-radius: 1rem;
  border: 1px solid #e4e7f0;
}
.order-detail__courier-tracking-label { font-size: 1.2rem; color: #7a7b8c; font-weight: 500; }
.order-detail__courier-tracking-id {
  font-size: 1.35rem; font-weight: 700; color: #1a1a2e;
  font-family: monospace; letter-spacing: 0.04em; flex: 1;
}
.order-detail__copy-btn {
  background: none;
  border: 1.5px solid #e4e7f0;
  border-radius: 0.6rem;
  padding: 0.4rem 0.9rem;
  font-size: 1.1rem; font-weight: 600; color: #2874f0;
  cursor: pointer; font-family: 'Plus Jakarta Sans', sans-serif;
  transition: all 0.15s; display: flex; align-items: center; gap: 0.4rem;
}
.order-detail__copy-btn:hover { background: #e8f1ff; border-color: #2874f0; }

/* Help Grid */
.order-detail__help-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.order-detail__help-item {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 1.6rem 1rem; border-radius: 1.2rem; border: 1.5px solid #e4e7f0;
  background: #fff; text-decoration: none; transition: all 0.18s; gap: 0.8rem; cursor: pointer;
}
.order-detail__help-item:hover { border-color: #2874f0; background: #e8f1ff; }
.order-detail__help-icon {
  width: 4.4rem; height: 4.4rem; border-radius: 50%;
  background: #e8f1ff; display: flex; align-items: center;
  justify-content: center; font-size: 1.8rem; color: #2874f0;
}

.order-detail__help-icon img{
  width: 22px;
}

.order-detail__help-label { font-size: 1.25rem; font-weight: 700; color: #1a1a2e; }
.order-detail__help-desc  { font-size: 1.1rem; color: #7a7b8c; line-height: 1.4; }
/*END MY ACCOUNT PAGE UI*/

/*START ABOUT US*/
/* ===== ABOUT US PAGE ===== */
.about-us-section { padding: 4rem 5%; }

.about-us__hero {
  background: url(../img/about-bg.jpg);
  background-size: cover; background-position: center;
  width: 100%;
  border-radius: var(--radius);
  padding: 6rem 4rem;
  color: white;
  margin-bottom: 6rem;
  position: relative;
  overflow: hidden;
}

.about-us__hero-tag {
  display: inline-block;
  background: rgba(40,116,240,0.2); border: 1px solid rgba(40,116,240,0.4);
  color: #7eb3f7; padding: 0.5rem 1.6rem; border-radius: 5rem;
  font-size: 1.3rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 2rem;
}
.about-us__hero-title {
  font-size: 4.5rem;
  font-weight: 700; line-height: 1.2;
  margin-bottom: 2rem;
  font-family: var(--heading-font);
}
.about-us__hero-title span { color: #7eb3f7; }
.about-us__hero-lead { font-size: 1.8rem; color: rgba(255,255,255,0.75); max-width: 64rem; line-height: 1.7; }

.about-us__stats {
  display: flex; flex-wrap: wrap; gap: 2rem;
  margin-bottom: 6rem;
}
.about-us__stat-card {
  flex: 1; min-width: 20rem;
  background: var(--bg-card); border-radius: var(--radius);
  padding: 3rem 2.4rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e0e0e0;
  display: flex; align-items: flex-start; gap: 1.8rem;
  transition: box-shadow 0.3s, transform 0.3s;
}
.about-us__stat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.about-us__stat-icon {
  width: 5rem; height: 5rem; min-width: 5rem;
  background: var(--accent-light); color: var(--accent);
  border-radius: 1.2rem; display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem;
}

.about-us__stat-icon img{
  width: 5rem;
}

.about-us__stat-num {  font-size: 2.8rem; font-weight: 700; color: var(--text-dark); }
.about-us__stat-label { font-size: 1.4rem; color: var(--text-light); margin-top: 0.2rem; }

.about-us__content { margin-bottom: 6rem; }
.about-us__content-title {
   font-size: 4rem; font-weight: 700;
    color: var(--black-color);
  margin-bottom: 1rem; font-family: var(--heading-font);
}
.about-us__content-title span { color: var(--accent); }
.about-us__content-divider {
  width: 5rem; height: 4px; background: var(--accent);
  border-radius: 2px; margin-bottom: 3rem;
}
.about-us__content p { font-size: 1.6rem; color: var(--text-mid); margin-bottom: 2rem; line-height: 1.85; }

.about-us__card {
  background: var(--bg-card); border-radius: var(--radius);
  padding: 3rem; box-shadow: var(--shadow-sm);
  border: 1px solid #e0e0e0;
  height: 100%;
}
.about-us__card-icon {
  width: 5rem; height: 5rem; background: var(--accent-light);
  border-radius: 1.2rem; display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 2rem; margin-bottom: 1.8rem;
}

.about-us__card-icon img{width: 5rem}
.about-us__card-title { font-size: 1.8rem; font-weight: 700; color: var(--black-color); margin-bottom: 1rem; font-family: var(--heading-font);}
.about-us__card-text { font-size: 1.5rem; color: var(--text-mid); line-height: 1.75; }

.about-us__address {
  background: var(--main-color);
  border-radius: 12px;
  padding: 3.6rem 4rem;
  color: white;
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.about-us__address-icon { font-size: 3.2rem; opacity: 0.9; }
.about-us__address-label { font-size: 1.4rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.8; margin-bottom: 0.4rem; }
.about-us__address-text { font-size: 1.8rem; font-weight: 600; }
.about-us__address-links { margin-left: auto; display: flex; gap: 1.2rem; flex-wrap: wrap; }
.about-us__address-links a {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.3);
  color: white; padding: 0.9rem 1.8rem; border-radius: 5rem;
  font-size: 1.4rem; font-weight: 600; transition: background 0.2s;
}
.about-us__address-links a:hover { background: rgba(255,255,255,0.35); }
/*END ABOUT US*/

/*START POPULAR SEARCH PAGE UI*/
/* ===== SEARCH TERMS PAGE ===== */
.search-terms-section { padding: 4rem 5%;  background:#f5f6fa }

.search-terms__header { margin-bottom: 4rem; text-align: center; }
.search-terms__header-tag {
  display: inline-block;
  background: var(--accent-light); color: var(--accent);
  padding: 0.5rem 1.6rem; border-radius: 5rem;
  font-size: 1.3rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 1.6rem;
}
.search-terms__header h1 {
   font-size: 4rem;
   font-family: var(--heading-font);
  font-weight: 700; color: var(--black-color); margin-bottom: 1.2rem;
}
.search-terms__header p { font-size: 1.7rem; color: var(--text-mid); max-width: 52rem; margin: 0 auto; }

.search-terms__search-bar {
  background: var(--white); border-radius: 5rem;
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1rem 1rem 2.4rem;
  border: 2px solid var(--border);
  max-width: 56rem; margin: 0 auto 5rem;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.search-terms__search-bar:focus-within { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(40,116,240,0.1); }
.search-terms__search-bar i { color: var(--text-light); font-size: 1.8rem; }
.search-terms__search-bar input {
  flex: 1; border: none; outline: none;
  font-size: 1.6rem; color: var(--text-dark); background: transparent;
}
.search-terms__search-bar input::placeholder { color: var(--text-light); }

.search-terms__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(32rem, 1fr)); gap: 2.4rem; }

.search-terms__group {
  background: var(--white); border-radius: 14px;
  border: 1px solid #e2e6f0;
  box-shadow: 0 2px 12px rgba(40,116,240,0.07);
  transition: box-shadow 0.3s, transform 0.3s;
}
.search-terms__group:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.search-terms__group-header {
  background:  var(--main-color);
  padding: 1.6rem 2.4rem; border-radius: 12px 12px 0 0;
  display: flex; align-items: center; gap: 1rem;
}
.search-terms__group-header i { color: rgba(255,255,255,0.8); font-size: 1.6rem; }
.search-terms__group-title {
   font-size: 1.9rem; font-weight: 700; color: white;
}

.search-terms__group-body { padding: 2rem 0; }
.search-terms__group-body ul li { margin-bottom: 0.6rem;  list-style: none;}
.search-terms__group-body ul li a {
  display: flex; align-items: center; gap: 0.8rem;
  font-size: 1.45rem; color: var(--text-mid);
  padding: 0.5rem 0.4rem; border-radius: 0.6rem;
  transition: color 0.2s, background 0.2s;
  white-space: normal; line-height: 1.7;
  word-break: break-word;

}
.search-terms__group-body ul li a::before {
  content: '→'; color: var(--accent); font-size: 1.2rem; opacity: 0;
  transition: opacity 0.2s, transform 0.2s; transform: translateX(-4px);
}
.search-terms__group-body ul li a:hover { color: var(--accent); background: var(--accent-light); padding-left: 0.8rem; }
.search-terms__group-body ul li a:hover::before { opacity: 1; transform: translateX(0); }
/*END POPULAR SEARCH PAGE UI*/

/*START CONTACT PAGE UI*/
.contact-us {
  padding: 4rem 5%;
/*  background: #f5f5f5;*/
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-us__heading {
  font-size: 4.2rem;
  font-weight: 700;
  letter-spacing: 0.18rem;
  color: #1a1a2e;
  text-align: center;
  margin-bottom: 0.6rem;
  position: relative;
}

.contact-us__heading span {
  color: #2874f0;
}

.contact-us__heading-line {
  display: block;
  width: 6rem;
  height: 0.4rem;
  background: #2874f0;
  border-radius: 0.4rem;
  margin: 1rem auto 4rem;
}

/* ========== CARD WRAPPER ========== */
.contact-us__card {
  background: #fff;
  border-radius: 2rem;
  box-shadow: 0 1.2rem 4rem rgba(40, 116, 240, 0.10), 0 0.2rem 0.8rem rgba(0,0,0,0.06);
  overflow: hidden;
  width: 100%;
  max-width: 110rem;
}

/* ========== LEFT INFO PANEL ========== */
.contact-us__info-panel {
  background: linear-gradient(160deg, #2874f0 0%, #1352c0 100%);
  padding: 5rem 4rem;
  color: #fff;
  background: url(../img/contact-left-bg.png);
  background-size: cover; background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.contact-us__info-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-us__info-subtitle {
  font-size: 1.4rem;
  opacity: 0.82;
  line-height: 1.7;
  margin-bottom: 3.5rem;
}

.contact-us__info-items {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.contact-us__info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
}

.contact-us__info-icon {
  width: 4.4rem;
  height: 4.4rem;
  background: rgba(255,255,255,0.18);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  flex-shrink: 0;
  transition: background 0.3s;
}

.contact-us__info-item:hover .contact-us__info-icon {
  background: rgba(255,255,255,0.32);
}

.contact-us__info-text {
  display: flex;
  flex-direction: column;
}

.contact-us__info-label {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 0.3rem;
}

.contact-us__info-value {
  font-size: 1.45rem;
  font-weight: 500;
  opacity: 0.95;
  line-height: 1.5;
}

.contact-us__social-links {
  display: flex;
  gap: 1.2rem;
  margin-top: 3.5rem;
}

.contact-us__social-link {
  width: 3.8rem;
  height: 3.8rem;
  background: rgba(255,255,255,0.14);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
  transition: background 0.3s, transform 0.25s;
}

.contact-us__social-link:hover {
  background: rgba(255,255,255,0.32);
  color: #fff;
  transform: translateY(-3px);
}

/* ========== RIGHT FORM PANEL ========== */
.contact-us__form-panel {
  padding: 5rem 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-us__form-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.4rem;
  letter-spacing: 0.05rem;
}

.contact-us__form-desc {
  font-size: 1.45rem;
  color: #666;
  margin-bottom: 3.2rem;
  line-height: 1.65;
}

/* ========== FORM FIELDS ========== */
.contact-us__field-group {
  margin-bottom: 2.2rem;
}

.contact-us__label {
  display: block;
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.7rem;
  letter-spacing: 0.02rem;
}

.contact-us__label .contact-us__required {
  color: #e53935;
  margin-left: 0.3rem;
}

.contact-us__input,
.contact-us__textarea {
  width: 100%;
  border: 0.15rem solid #e0e6f5;
  border-radius: 1rem;
  padding: 1.3rem 1.6rem;
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  color: #1a1a2e;
  background: #f7f9ff;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}

.contact-us__input:focus,
.contact-us__textarea:focus {
  border-color: #2874f0;
  background: #fff;
  box-shadow: 0 0 0 0.35rem rgba(40, 116, 240, 0.12);
}

.contact-us__input::placeholder,
.contact-us__textarea::placeholder {
  color: #b0b8cc;
  font-size: 1.4rem;
}

.contact-us__textarea {
  resize: vertical;
  min-height: 13rem;
}

/* Input with icon */
.contact-us__input-wrapper {
  position: relative;
}

.contact-us__input-icon {
  position: absolute;
  left: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  color: #b0b8cc;
  font-size: 1.5rem;
  pointer-events: none;
  transition: color 0.3s;
}

.contact-us__input-wrapper:focus-within .contact-us__input-icon {
  color: #2874f0;
}
/*
.contact-us__input-wrapper .contact-us__input {
  padding-left: 4.4rem;
}*/

/* ========== CAPTCHA PLACEHOLDER ========== */
.contact-us__captcha {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: #f7f9ff;
  border: 0.15rem solid #e0e6f5;
  border-radius: 1rem;
  padding: 1.4rem 1.8rem;
  margin-bottom: 2.6rem;
}

.contact-us__captcha-checkbox {
  width: 2rem;
  height: 2rem;
  accent-color: #2874f0;
  cursor: pointer;
  flex-shrink: 0;
}

.contact-us__captcha-text {
  font-size: 1.35rem;
  color: #555;
}

.contact-us__captcha-logo {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.contact-us__captcha-logo i {
  font-size: 2rem;
  color: #2874f0;
}

.contact-us__captcha-logo span {
  font-size: 0.95rem;
  color: #888;
  letter-spacing: 0.04rem;
}

/* ========== SUBMIT BUTTON ========== */
.contact-us__submit-btn {
  background: #2874f0;
  color: #fff;
  border: none;
  border-radius: 1rem;
  padding: 1.55rem 4rem;
  font-family: 'Inter', sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, transform 0.25s, box-shadow 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 0.6rem 2rem rgba(40, 116, 240, 0.28);
}

.contact-us__submit-btn:hover {
  background: #1352c0;
  transform: translateY(-2px);
  box-shadow: 0 1rem 2.8rem rgba(40, 116, 240, 0.36);
}

.contact-us__submit-btn:active {
  transform: translateY(0);
}

/*END CONTACT PAGE UI*/


/*START FAQ PAGE UI*/
.faq-section {
  padding: 6rem 5%;
  background-color: #f4f6fb;
  position: relative;
  overflow: hidden;
}

/* ---- badge ---- */
.faq-section__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6366f1;
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.2);
  padding: 0.5rem 1.4rem;
  border-radius: 10rem;
  margin-bottom: 1.8rem;
}

.faq-section__badge i {
  font-size: 1.1rem;
}

/* ---- headings ---- */
.faq-section__eyebrow {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6366f1;
  margin-bottom: 0.8rem;
}

.faq-section__heading {
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--black-color);
  letter-spacing: -0.02em;
  font-family: var(--heading-font);
  margin-bottom: 1.2rem;
}

.faq-section__heading span {
  color: var(--main-color);
}

.faq-section__subtext {
  font-size: 1.7rem;
  font-weight: 400;
  color: #64748b;
  line-height: 1.7;
  max-width: 50rem;
}

/* ---- left panel ---- */
.faq-section__left {
  padding-right: 4rem;
}

.faq-section__contact-card {
  margin-top: 4rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1.6rem;
  padding: 2.4rem;
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
  box-shadow: 0 2px 16px rgba(99, 102, 241, 0.06);
  transition: box-shadow 0.3s ease;
}

.faq-section__contact-card:hover {
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.13);
}

.faq-section__contact-icon {
  width: 4.8rem;
  height: 4.8rem;
  min-width: 4.8rem;
  border-radius: 1.2rem;
  background: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.9rem;
}

.faq-section__contact-text h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f0e17;
  margin-bottom: 0.3rem;
}

.faq-section__contact-text p {
  font-size: 1.35rem;
  color: #64748b;
  line-height: 1.5;
}

.faq-section__contact-text a {
  color: #6366f1;
  font-weight: 600;
  text-decoration: none;
}

.faq-section__contact-text a:hover {
  text-decoration: underline;
}

/* ---- stats strip ---- */
.faq-section__stats {
  display: flex;
  gap: 2.4rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.faq-section__stat {
  text-align: left;
}

.faq-section__stat-value {
  font-size: 2.6rem;
  font-weight: 700;
  font-family: var(--heading-font);
  color: #0f0e17;
  line-height: 1;
}

.faq-section__stat-label {
  font-size: 1.2rem;
  color: #94a3b8;
  margin-top: 0.3rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ---- accordion ---- */
.faq-accordion {
  --faq-border: #e2e8f0;
  --faq-bg: #ffffff;
  --faq-bg-open: #fafaff;
  --faq-accent: #6366f1;
  --faq-text: #0f0e17;
  --faq-muted: #64748b;
}

.faq-accordion .accordion-item {
  background: var(--faq-bg);
  border: 1px solid var(--faq-border);
  border-radius: 1.4rem !important;
  margin-bottom: 1.2rem;
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-accordion .accordion-item:hover {
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.1);
  border-color: rgba(99, 102, 241, 0.3);
}

.faq-accordion .accordion-item.faq-accordion__item--open {
  background: var(--faq-bg-open);
  border-color: rgba(99, 102, 241, 0.35);
  box-shadow: 0 6px 28px rgba(99, 102, 241, 0.12);
}

.faq-accordion .accordion-button {
  font-family: var(--heading-font);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--faq-text);
  background: transparent;
  padding: 2rem 2.2rem;
  box-shadow: none !important;
  border-radius: 1.4rem !important;
  transition: color 0.2s ease;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--main-color);
  background: transparent;
}

.faq-accordion .accordion-button::after {
  display: none;
}

.faq-accordion__toggle-icon {
  width: 3.4rem;
  height: 3.4rem;
  min-width: 3.4rem;
  border-radius: 50%;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #475569;
  margin-left: auto;
  flex-shrink: 0;
  transition: background 0.25s ease, color 0.25s ease, transform 0.3s ease, border-color 0.25s ease;
}

.faq-accordion .accordion-button:not(.collapsed) .faq-accordion__toggle-icon {
  background: var(--main-color);
  border-color: var(--faq-accent);
  color: #fff;
  transform: rotate(45deg);
}

.faq-accordion .accordion-body {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  color: var(--faq-muted);
  line-height: 1.75;
  padding: 0 2.2rem 2rem 2.2rem;
  border-top: 1px solid #f1f5f9;
}

.faq-accordion__num {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--main-color);
  background: rgb(99 119 241 / 8%);
  border-radius: 0.6rem;
  padding: 0.2rem 0.7rem;
  margin-right: 1rem;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
/*END CONTACT PAGE UI*/

.modal-header{
  border-bottom: none;
  padding: 2rem;
}

.btn-close{
  width: 2em; height: 2em;
  border: 1px solid #b7b9c8;
  border-radius: 10px;
}


 /* Desktop: hide mobile-only */
.mobile-only { display: none !important; 
/* Overlay on mobile for menu */
.mob-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
.mob-overlay.show { opacity: 1; pointer-events: all; }

/* Language select */
.hm-lang select {
  background: transparent;
  border: none;
  font-size: 1.3rem;
  color: #444;
  cursor: pointer;
  outline: none;
}

 /* ===========================
 ANIMATION
=========================== */
@keyframes fadeSlideUp {
from { opacity: 0; transform: translateY(20px); }
to   { opacity: 1; transform: translateY(0); }
}

.order-detail-section__card,
.order-detail-section__summary-card {
    animation: fadeSlideUp 0.5s ease both;
}

/* Stagger cards */
.order-detail-section__card:nth-child(2) { animation-delay: 0.1s; }
.order-detail-section__card:nth-child(3) { animation-delay: 0.2s; }

   
