/* ========== Variables ========== */
:root {
  --color-header-bg: #081621;
  --color-body-bg: #F2F4F8;

  --color-primary: #f26522;      /* orange */
  --color-primary-soft: #ffe4d6;

  --color-accent: #00a2ff;       /* PC Builder gradient */
  --color-accent-2: #0062ff;

  --color-text-main: #111827;
  --color-text-light: #ffffff;
  --color-text-muted: #6b7280;
  --color-border-light: #e5e7eb;
  --color-border-subtle: #f3f4f6;
  --color-link-hover: #e11d1d;

  --color-pc-1: #00b2ff;
  --color-pc-2: #0062ff;
  --color-pc-3: #00ffe0;

  --radius-xs: 0.2rem;
  --radius-sm: 0.35rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-full: 999px;

  --shadow-soft: 0 16px 40px rgba(15, 23, 42, 0.18);
  --transition-fast: 0.17s ease-out;
  --transition-med: 0.22s ease;

   --color-search-panel-bg: #ffffff; /* চাইলে হালকা off‑white করতে পারেন */
  --color-search-tabs-bg: #f6f7fb;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: var(--color-body-bg);
  color: var(--color-text-main);
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

/* ========== Header ========== */

/* --- Desktop topbar --- */

.topbar {
  background-color: var(--color-header-bg);
  color: var(--color-text-light);
  padding-block: 6px;
  position: static;
}

.topbar-inner {
  min-height: 68px;
}

.topbar-logo img {
  height: 52px;
  display: block;
}

.topbar-search {
  position: relative;
}

.search-form {
  background-color: #ffffff;
  border-radius: 0.35rem;
  padding-inline: 18px;
  border: 1px solid transparent;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.topbar-search .search-input {
  border: 0;
  padding-left: 0;
  font-size: 15px;
}
.topbar-search .search-input::placeholder {
  color: #9ca3af;
}
.topbar-search .search-input:focus {
  box-shadow: none;
}

.search-btn {
  color: #111827;
  padding-left: 0;
  padding-right: 0;
}

.topbar-search:focus-within .search-form {
  border-color: #d1d5db;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.16);
}

/* --- Search dropdown --- */

.search-panel {
  position: absolute;
  inset-inline: 0;
  top: calc(100% + 8px);
  background-color: var(--color-search-panel-bg);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: none;
  z-index: 50;
}
.search-panel.active {
  display: block;
}

.search-tabs {
  background-color: var(--color-search-tabs-bg);
  padding: 8px 16px 0;
}
.search-tab {
  border: 0;
  background-color: var(--color-search-tabs-bg);
  color: #111827;
  padding: 8px 18px;
  margin-right: 6px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 0.5rem 0.5rem 0 0;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}
.search-tab.active {
  background-color: var(--color-primary);
  color: #ffffff;
}

.search-results-wrapper {
  max-height: 380px;
  overflow-y: auto;
  padding: 10px 18px 0;
}

.search-results {
  display: none;
}
.search-result-item:hover{
  background: rgba(55, 73, 187, 0.04);
}
.search-results.active {
  display: block;
}

.search-result-item {
  display: flex;
  align-items: center;
  padding-block: 8px;
  border-bottom: 1px solid var(--color-border-subtle);
  padding-left: 15px;
  padding-right: 15px;
}
.search-result-item:last-child {
  border-bottom: 0;
}

.search-result-thumb,
.search-result-category-logo {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  margin-right: 16px;
}
.search-result-thumb img,
.search-result-category-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.search-result-title {
  font-size: 14px;
  line-height: 1.35;
  color: var(--color-text-main);
}
.search-result-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  margin-top: 2px;
}

.search-see-all {
  width: 100%;
  border: 0;
  background-color: #ffffff;
  color: var(--color-primary);
  font-weight: 600;
  padding: 10px 18px 12px;
  border-top: 1px solid var(--color-border-subtle);
}

/* --- Header right actions --- */

.topbar-links {
  font-size: 14px;
}

.top-link {
  display: inline-flex;
  align-items: center;
  padding-inline: 6px;
  cursor: pointer;
  color: #ffffff;
}
.top-link .icon {
  font-size: 22px;
  margin-right: 8px;
}
.top-link .text .title {
  font-weight: 600;
  line-height: 1.1;
  white-space: nowrap;
}
.top-link .text .subtitle {
  font-size: 12px;
  color: #838383;
}

.top-link-offers .icon {
  color: var(--color-primary);
}

/* lightning animation */
.top-link-year .icon {
  color: #f97316;
  animation: yearEndFlicker 1.4s infinite ease-in-out;
}
@keyframes yearEndFlicker {
  0%,
  100% {
    opacity: 0.35;
    transform: translateY(0);
  }
  40% {
    opacity: 1;
    transform: translateY(-1px);
  }
  60% {
    opacity: 0.6;
    transform: translateY(0);
  }
}

.top-link-account .icon {
  color: var(--color-primary);
}
.top-link-account .subtitle a {
  color: #838383;
  font-size: 12px;
}
.top-link-account .subtitle a:hover {
  color: var(--color-primary);
}

/* PC Builder */
.btn-pc-builder {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 26px;
  border-radius: 0.5rem;
  border: 0;
  font-weight: 600;
  white-space: nowrap;
  color: #ffffff;
  background-image: linear-gradient(
    130deg,
    var(--color-pc-1),
    var(--color-pc-2),
    var(--color-pc-3)
  );
  background-size: 220% 220%;
  animation: pcBuilderGradient 4.5s ease-in-out infinite;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out;
}
.btn-pc-builder:hover {
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(37, 99, 235, 0.55);
}

/* gradient moves diagonally */
@keyframes pcBuilderGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* ========== Desktop main nav ========== */
.site-header {
  position: static;
  z-index: auto;
  background-color: var(--color-header-bg);
}
@media (max-width: 991.98px) {
  .topbar {
    display: none !important;
  }
  .main-nav {
    display: none !important;
  }
}
.main-nav .nav-list {
  margin-bottom: 0;
  padding-block: 4px;
  gap: 26px;
  font-size: 15px;
  font-weight: 500;
  list-style: none;   /* bullet off */
  padding-left: 0;    /* ডিফল্ট left padding remove */
}

.main-nav .nav-item {
  position: relative;
}

.main-nav .nav-link {
  position: relative;
  padding-block: 6px;
  color: var(--color-text-main);
}
.main-nav .nav-link:hover {
  color: var(--color-text-main);
}

/* .main-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background-color: var(--color-link-hover);
  transform-origin: center;
  transform: scaleX(0);
  transition: transform var(--transition-fast);
} */
.main-nav .nav-link.active::after,
.main-nav .nav-item:hover > .nav-link::after {
  transform: scaleX(1);
}

/* dropdown level 1 */
.main-nav .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0;
  min-width: 230px;
  padding: 8px 0;
  border-radius: 0 0 0.6rem 0.6rem;
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-soft);
  background-color: #ffffff;
  border-top: 3px solid var(--color-primary);
  display: block;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--transition-fast), transform var(--transition-fast),
    visibility var(--transition-fast);
}
.main-nav .nav-item:hover > .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.submenu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 18px;
  font-size: 14px;
  color: var(--color-text-main);
  white-space: nowrap;
}
.submenu-link:hover {
  background-color: #f3f4f6;
}
.submenu-link .chevron {
  font-size: 11px;
  color: #9ca3af;
}

/* dropdown level 2 */
.dropdown-menu .has-children {
  position: relative;
}
.sub-dropdown-menu {
  position: absolute;
  top: 0;
  left: 100%;
  margin-left: -1px;
  min-width: 220px;
  padding: 8px 0;
  border-radius: 0 0.6rem 0.6rem 0.6rem;
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-soft);
  background-color: #ffffff;
  display: none;
}
.dropdown-menu .has-children:hover > .sub-dropdown-menu {
  display: block;
}

/* ========== Mobile / iPad header ========== */

.topbar-mobile {
  background-color: var(--color-header-bg);
  color: var(--color-text-light);
}

.mobile-header {
  min-height: 54px;
  padding-block: 6px;
}

.icon-btn {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: #ffffff;
}
.icon-btn:focus {
  outline: none;
  box-shadow: none;
}

.mobile-logo img {
  height: 40px;
  display: block;
}

/* cart badge */
.cart-badge {
  position: absolute;
  top: 3px;
  right: 4px;
  min-width: 18px;
  padding-inline: 4px;
  border-radius: 999px;
  background-color: var(--color-primary);
  color: #ffffff;
  font-size: 10px;
  line-height: 16px;
  text-align: center;
}

/* mobile search bar */
.mobile-search-bar {
  display: none;
  background-color: #ffffff;
  border-top: 1px solid #020b14;
  padding: 6px 10px 10px;
}
.mobile-search-bar.show {
  display: block;
}
.mobile-search-bar .search-form {
  padding-inline: 12px;
}
.mobile-search-bar .search-input {
  font-size: 14px;
}

/* search panel width on small screens */
@media (max-width: 1299.98px) {
  .topbar-search .search-panel {
    left: -10px;
    right: -10px;
    border-radius: 0 0 0.75rem 0.75rem;
    top: calc(100% + 4px);
  }
  .topbar-mobile .container-fluid {
    position: relative; 
  }

  .mobile-search-bar {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;                 
    z-index: 1040;
    display: none;
    background-color: #ffffff;
    border-top: 1px solid #020b14;
    padding: 6px 10px 10px;
  }

  .mobile-search-bar.show {
    display: block;           
  }
}

@media (max-width: 1299.98px) {
  .topbar-mobile {
    display: block !important;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1045;
    background-color: var(--color-header-bg);
  }
  .page-main {
    padding-top: 60px; 
  }
  .topbar,
  .main-nav {
    display: none !important;
  }
}
@media (min-width: 1300px) {
  .topbar {
    display: block !important;
  }
  .topbar-mobile {
    display: none !important;
    position: static !important;
  }

  .main-nav {
    display: block !important;
    position: sticky;
    top: 0;
    z-index: 46;
    background-color: #ffffff;
    border-bottom: 1px solid var(--color-border-light);
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
  }
}

/* ========== Mobile offcanvas menu ========== */

.offcanvas-mobile-menu {
  width: 82vw;
  max-width: 420px;
}
.offcanvas-mobile-menu .offcanvas-header {
  border-bottom: 1px solid var(--color-border-light);
}

.mobile-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-menu-item {
  border-bottom: 1px solid var(--color-border-subtle);
}

.mobile-menu-link {
  display: block;
  padding: 12px 18px;
  font-size: 15px;
}

.mobile-menu-toggle {
  width: 100%;
  padding: 12px 18px;
  border: 0;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
}
.mobile-menu-toggle .toggle-icon {
  font-size: 18px;
  color: #9ca3af;
}
.mobile-menu-toggle.active {
  color: var(--color-link-hover);
}

.mobile-submenu {
  padding: 0;
}
.mobile-submenu-link {
  display: block;
  padding: 9px 24px;
  font-size: 14px;
}
.mobile-submenu-toggle {
  padding-left: 24px;
}

.search-close-btn {
  border: 0;
  background: transparent;
  color: #9ca3af;
  font-size: 20px;
  padding: 0 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.search-close-btn:focus {
  outline: none;
  box-shadow: none;
}

.mobile-search-bar .search-close-btn {
  margin-right: 4px;
}

/* ========== Cart offcanvas (placeholder) ========== */

.offcanvas-cart {
  width: 90vw;
  max-width: 420px;
}
/* ========== Cart offcanvas ========== */

.offcanvas-cart {
  width: 90vw;
  max-width: 420px;
  background-color: #ffffff;
}

/* header */

.offcanvas-cart .cart-header {
  background-color: var(--color-header-bg);
  color: #ffffff;
  padding: 10px 16px;
  border-bottom: 0;
}

.cart-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.cart-header-close {
  border: 0;
  background: transparent;
  color: #ffffff;
  font-size: 22px;
  line-height: 1;
  padding: 0;
}
.cart-header-close:focus {
  outline: none;
  box-shadow: none;
}

/* body layout */

.offcanvas-cart .cart-body {
  padding: 0;
  height: calc(100% - 52px); /* header height roughly */
  display: flex;
  flex-direction: column;
}

/* scrollable items area */

.cart-items-wrapper {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 18px 16px 10px;
}

.cart-empty-text {
  text-align: center;
  font-size: 14px;
  color: var(--color-text-muted);
  margin-top: 40px;
}

/* single cart item */

.cart-item {
  display: flex;
  align-items: flex-start;
  padding: 10px 10px 10px 0;
  border-bottom: 1px solid var(--color-border-subtle);
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.18s ease-out, box-shadow 0.18s ease-out,
    transform 0.18s ease-out, border-color 0.18s ease-out;
}
.cart-item + .cart-item {
  margin-top: 4px;
}

/* premium hover effect */
.cart-item:hover {
  background-color: #f5f7ff;
  border-color: rgba(59, 130, 246, 0.35);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
  transform: translateY(-1px);
}
.cart-item:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.22);
}

.cart-item-thumb {
  flex: 0 0 50px;
  height: 50px;
  margin-right: 10px;
}
.cart-item-thumb img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 999px;
}

.cart-item-info {
  flex: 1 1 auto;
}

.cart-item-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.cart-item-variant {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}

.cart-item-price-row {
  font-size: 14px;
  font-weight: 600;
}
.cart-item-unit,
.cart-item-line-total {
  font-weight: 700;
}
.cart-item-multiply,
.cart-item-equals {
  margin-inline: 4px;
  font-weight: 500;
}

/* trash icon */

.cart-item-remove {
  border: 0;
  background: transparent;
  color: #9ca3af;
  font-size: 16px;
  margin-left: 6px;
  padding: 0;
  flex: 0 0 auto;
  transition: color 0.16s ease-out, transform 0.16s ease-out;
}
.cart-item-remove:hover {
  color: #ef4444;
  transform: scale(1.1);
}
.cart-item-remove:focus {
  outline: none;
  box-shadow: none;
}

/* footer */

.cart-footer {
  padding: 10px 14px 12px;
  border-top: 1px solid var(--color-border-subtle);
  background-color: #f8f9ff;
}

.cart-promo-row {
  gap: 8px;
}
.cart-promo-input {
  font-size: 13px;
  background-color: #ffffff;
  border-radius: 0.45rem;
  border-color: #e5e7f5;
}
.cart-promo-input:focus {
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.25);
}

.btn-cart-apply {
  padding-inline: 16px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 0.45rem;
  border: 0;
  background-color: #3654d3;
  color: #ffffff !important;
  transition: background-color 0.16s ease-out, box-shadow 0.16s ease-out,
    transform 0.16s ease-out;
}
.btn-cart-apply:hover {
  background-color: #2643c6;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.35);
  transform: translateY(-0.5px);
}

.cart-summary {
  background-color: #ffffff;
  border-radius: 0.6rem;
  padding: 6px 10px;
  margin-top: 4px;
}
.cart-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  padding-block: 3px;
}
.cart-summary-row .label {
  color: #4b5563;
}
.cart-summary-row .value {
  font-weight: 700;
}

/* Checkout button */

.btn-cart-checkout {
  width: 100%;
  margin-top: 8px;
  background-color: var(--color-primary);
  border: 0;
  color: #ffffff;
  font-weight: 600;
  border-radius: 0.45rem;
  padding-block: 9px;
  transition: background-color 0.16s ease-out, box-shadow 0.16s ease-out,
    transform 0.16s ease-out;
}
.btn-cart-checkout:hover {
  background-color: #ea580c;
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(248, 113, 113, 0.45);
  transform: translateY(-0.5px);
}
.btn-cart-checkout:active {
  transform: translateY(0);
  box-shadow: 0 5px 14px rgba(248, 113, 113, 0.6);
}

/* Cart badge: আগে যে স্টাইল ছিল তার নিচে শুধু display যোগ করুন */
.cart-badge {
  display: none;
  align-items: center;
  justify-content: center;
}
.cart-badge.show {
  display: inline-flex;
}
/* ========== HOME HERO (MAIN SLIDER + SIDE BANNERS) ========== */
/* ========== Hero slider section ========== */

.hero-section {
  padding-top: 18px;
  padding-bottom: 26px;
}

/* main slider wrapper */

.hero-main-slider {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}

.hero-main-slider .carousel-item {
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
}

/* পুরো slide ক্লিকযোগ্য */

.hero-slide-link {
  display: block;
  height: 100%;
}
.hero-slide-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Indicators = reference-এর মত ছোট বার */

.hero-main-slider .hero-indicators {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.hero-main-slider .hero-indicators [data-bs-target] {
  width: 32px;
  height: 6px;
  border-radius: 999px;
  border: none;
  background-color: #d5d8e8; /* inactive bar */
  opacity: 1;
  transition: background-color var(--transition-fast),
    transform var(--transition-fast), box-shadow var(--transition-fast);
}

.hero-main-slider .hero-indicators .active {
  background-color: var(--color-primary); /* কমলা */
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(248, 113, 113, 0.7);
}

/* মোবাইলে slightly নিচে */

@media (max-width: 575.98px) {
  .hero-main-slider .hero-indicators {
    bottom: 10px;
  }
}

/* Side banners */

.hero-side-banners {
  height: 100%;
}

.hero-side-banner {
  position: relative;
  display: block;
  flex: 1 1 0;
  border-radius: 18px;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.22);
  transition: transform 0.22s ease-out, box-shadow 0.22s ease-out,
    filter 0.22s ease-out;
}

.hero-side-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* premium hover */

.hero-side-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(15, 23, 42, 0.32);
  filter: saturate(1.06);
}

/* Tablet & mobile : slider উপরে, দুই banner নিচে side‑by‑side */

@media (max-width: 991.98px) {
  .hero-side-banners {
    margin-top: 4px;
  }
}
/* Section: Notice + Laptop Finder + Featured Category */

.info-and-categories {
  padding-bottom: 40px;
}

.notice-strip-wrapper {
  margin-top: 4px;
  margin-bottom: 18px;
}

.notice-strip {
  background-color: #ffffff;
  border-radius: 999px;
  padding: 8px 18px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.notice-text {
  white-space: nowrap;
  font-size: 14px;
  color: #4b5563;
  animation: notice-marquee 35s linear infinite;
}

@keyframes notice-marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* laptop finder */

.laptop-finder-row {
  margin-bottom: 26px;
}

.finder-card {
  display: flex;
  align-items: center;
  gap: 14px;
  height: 100%;
  padding: 16px 20px;
  border-radius: 14px;
  background-color: #ffffff;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.14);
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out,
    background-color 0.18s ease-out;
}

.finder-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(15, 23, 42, 0.26);
  background-color: #f9fafb;
}

.finder-icon {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background-color: var(--color-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.finder-text {
  line-height: 1.2;
}

.finder-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
}

.finder-subtitle {
  font-size: 13px;
  color: var(--color-text-muted);
}

/* featured category */
.featured-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 4px;
}

.featured-subtitle {
  font-size: 14px;
  color: var(--color-text-muted);
}

.featured-grid {
  margin-top: 4px;
}

.featured-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  padding: 18px 10px 14px;
  border-radius: 18px;
  background-color: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out,
    background-color 0.18s ease-out;
}

.featured-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(15, 23, 42, 0.22);
  background-color: #f9fafb;
}

.featured-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  color: #4b5563;
  font-size: 26px;
}

.featured-name {
  font-size: 14px;
  font-weight: 500;
}

/* responsive tweaks */

@media (max-width: 767.98px) {
  .finder-card {
    padding: 14px 16px;
  }

  .featured-title {
    font-size: 20px;
  }
}

/* End: Notice + Laptop Finder + Featured Category */

/* Section: Physical Stores CTA */
.store-cta-card {
  border-radius: 18px;
  padding: 40px 30px;
  background-image: linear-gradient(90deg, #05c9ff, #2340d5, #002c8b);
  color: #ffffff;
}

.store-cta-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.store-cta-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 4px;
}

.store-cta-subtitle {
  font-size: 14px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.store-cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 32px;
  border-radius: 999px;
  background-color: #f59e0b;
  color: #111827;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.25);
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out;
}

.store-cta-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #f97316;
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 0.25s ease-out;
  z-index: 0;
}

.store-cta-btn-text,
.store-cta-btn i {
  position: relative;
  z-index: 1;
}

.store-cta-btn i {
  font-size: 18px;
}

.store-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 40px rgba(15, 23, 42, 0.32);
}

.store-cta-btn:hover::before {
  transform: scaleY(1);
}

@media (max-width: 991.98px) {
  .store-cta-card {
    padding: 20px 18px 22px;
  }

  .store-cta-text {
    flex-direction: row;
    text-align: left;
  }

  .store-cta-card {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .store-cta-title {
    font-size: 20px;
  }

  .store-cta-btn {
    width: 100%;
    justify-content: center;
  }
  .store-cta-text {
    flex-direction: column;
    text-align: center;
  }
}
/* End: Physical Stores CTA */

/* Section: Featured Products */

.featured-products-section {
  padding-bottom: 40px;
}

.featured-products-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 4px;
}

.featured-products-subtitle {
  font-size: 14px;
  color: var(--color-text-muted);
  margin: 0;
}

/* five columns around 20% at >=1200px */
@media (min-width: 1200px) {
  .col-xl-2-4 {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

.fp-card {
  position: relative;
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out,
    border-color 0.18s ease-out;
}

.fp-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.18);
  border-color: rgba(79, 70, 229, 0.4);
}

.fp-save-badge {
  position: absolute;
  top: 10px;
  left: 0;
  z-index: 0;
  padding: 4px 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 0;
  background-color: #7c3aed;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
}

/* link wraps image + name only */
.fp-link {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-decoration: none;
  color: inherit;
}

.fp-img-wrap {
  padding: 40px 18px 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fp-img-wrap img {
  max-width: 100%;
  max-height: 180px;
  object-fit: contain;
}

.fp-product-name {
  padding: 10px 14px 8px;
  font-size: 14px;
  font-weight: 500;
  min-height: 52px;
}
.fp-product-name:hover{
  text-decoration: underline;
  color: var(--color-link-hover);
}
.fp-price-row {
  padding: 0 14px 12px;
  font-size: 14px;
}

.fp-price-current {
  color: var(--color-primary);
  font-weight: 700;
  margin-right: 8px;
}

.fp-price-old {
  color: #9ca3af;
  text-decoration: line-through;
}

/* End: Featured Products */

/* Section: Bottom Description */
.bd-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 14px;
}

.bd-subtitle {
  font-size: 18px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 8px;
}

.bottom-description-section p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 10px;
}

.bottom-description-section a {
  color: #e11d1d;
  font-weight: 500;
  text-decoration: none;
}

.bottom-description-section a:hover {
  text-decoration: underline;
}

/* End: Bottom Description */
/* Footer */

.site-footer {
  background-color: var(--color-header-bg);
  color: rgba(243, 244, 246, 0.9);
  font-size: 14px;
  padding-top: 40px;
  padding-bottom: 30px;
}

.site-footer a {
  color: rgba(243, 244, 246, 0.9);
  text-decoration: none;
}
.site-footer a:hover {
  color: #f97316;
}

.footer-top-row {
  margin-bottom: 18px;
}

.footer-heading {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 18px;
  color: rgba(249, 250, 251, 0.96);
}

/* support cards */

.footer-support-card {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  color: rgba(243, 244, 246, 0.96);
  margin-bottom: 14px;
  max-width: 390px;
  text-decoration: none;
  background-color: transparent;
  transition: border-color 0.18s ease-out, background-color 0.18s ease-out,
    transform 0.18s ease-out, box-shadow 0.18s ease-out;
}
.footer-support-card:hover {
  border-color: rgba(248, 113, 113, 0.8);
  background-color: rgba(15, 23, 42, 0.9);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.35);
}

.support-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  font-size: 20px;
}

.support-text {
  line-height: 1.2;
}
.support-label {
  font-size: 12px;
  opacity: 0.75;
}
.support-value {
  font-size: 20px;
  font-weight: 700;
  color: #f97316;
}

.support-link-text {
  font-size: 16px;
  font-weight: 600;
  color: #f97316;
}
.support-link {
  font-size: 16px;
  font-weight: 600;
  color: #f97316;
}

/* about columns */

.footer-about-columns {
  display: flex;
  gap: 30px;
  justify-content: space-between;
}
.footer-about-columns ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-about-columns li {
  margin-bottom: 6px;
}
.footer-about-columns a {
  font-size: 13px;
}

/* stay connected */

.footer-contact {
  font-size: 13px;
}
.footer-company {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}
.footer-address {
  margin-bottom: 12px;
  line-height: 1.6;
}
.footer-email-label {
  opacity: 0.8;
  margin-bottom: 2px;
}
.footer-email {
  color: #f97316;
  font-weight: 500;
}

/* app + social */
hr{
  border-top:rgba(255, 255, 255, 0.21) solid !important;
}
.footer-app-area {
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
}

.footer-app-text {
  font-size: 13px;
  margin-bottom: 10px;
  opacity: 0.9;
}

.footer-app-buttons {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.app-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 9px;
  border: 1px solid #111827;
  background-color: #020617;
  color: #f9fafb;
  font-size: 11px;
}
.app-btn .app-icon {
  font-size: 18px;
}
.app-btn .app-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.app-btn .small {
  font-size: 10px;
  opacity: 0.8;
}
.app-btn .big {
  font-size: 12px;
  font-weight: 600;
}

.footer-social {
  margin-top: 8px;
}
.footer-social .social-circle {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background-color: rgba(15, 23, 42, 0.8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 4px;
  font-size: 18px;
}

/* bottom row */

.footer-bottom {
  font-size: 12px;
  color: rgba(148, 163, 184, 0.9);
  margin-top: 4px;
}
.footer-powered span {
  color: rgba(243, 244, 246, 0.96);
}

/* responsive */

@media (max-width: 991.98px) {
  .site-footer {
    text-align: center;
  }

  .footer-support-card {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-about-columns {
    flex-direction: column;
    align-items: center;
  }
  .footer-about-columns ul {
    text-align: center;
  }

  .footer-contact {
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }
}

/* End: Footer */

/* Floating Compare & Cart Buttons */

.floating-actions {
  position: fixed;
  right: 20px;
  z-index: 1040;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.floating-btn {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: #020b14;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  padding: 6px 4px 8px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.45);
}
.floating-btn:hover {
  background-color: #3749bb;
}
.floating-btn .icon {
  font-size: 20px;
}

.floating-btn .label {
  font-size: 11px;
  margin-top: 2px;
}

.floating-btn .badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  background-color: #f97316;
  color: #ffffff;
  font-size: 11px;
  line-height: 18px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* position relative to viewport height */
@media (min-width: 1300px) {
  .floating-actions {
    bottom: 40px;
  }
}

@media (max-width: 1299.98px) {
  .floating-actions {
    display: none;
  }
}

/* Compare panel (triggered from floating Compare button) */
/* Compare panel always near bottom-right, close to Compare buttons */

.compare-offcanvas {
  position: fixed !important;
  z-index: 1050;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.45);
  display: flex;
  flex-direction: column;
  visibility: hidden;
  transform: none !important;
}

/* Default position: bottom-right, small card */
.compare-offcanvas.offcanvas-end {
  top: auto !important;
  left: auto !important;
  height: auto !important;
  max-height: 60vh;

  width: 420px !important;
  max-width: calc(100vw - 40px);
}

/* 1300px+ : শুধু floating compare/cart এর একটু উপরে রাখি */
@media (min-width: 1300px) {
  .compare-offcanvas.offcanvas-end {
    right: 24px !important;
    bottom: 80px !important;  /* ডানদিকের vertical compare/cart এর ঠিক উপরে */
  }
}

/* 0–1299.98px : bottom quick bar এর ঠিক উপরে থাকবে */
@media (max-width: 1299.98px) {
  .compare-offcanvas.offcanvas-end {
    right: 16px !important;
    bottom: 80px !important;  /* bottom quick nav এর উপরে */
  }
}

/* show হলে visible হবে */
.compare-offcanvas.show {
  visibility: visible;
}

/* Header */

.compare-header {
  background-color: var(--color-header-bg);
  color: #ffffff;
  padding: 10px 18px;
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
}

.compare-header .offcanvas-title {
  font-size: 15px;
  font-weight: 600;
}

.compare-close {
  border: 0;
  background: transparent;
  color: #ffffff;
  font-size: 22px;
  line-height: 1;
}

/* Body */

.compare-body {
  padding: 12px 16px 14px;
  display: flex;
  flex-direction: column;
}

/* Empty vs list state */

.compare-state-empty,
.compare-state-list {
  width: 100%;
}

.compare-state-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 130px;
  font-size: 14px;
  color: #4b5563;
}

.compare-offcanvas.has-items .compare-state-empty {
  display: none;
}
.compare-offcanvas.has-items .compare-state-list {
  display: block;
}

.compare-offcanvas.empty .compare-state-empty {
  display: flex;
}
.compare-offcanvas.empty .compare-state-list {
  display: none;
}

/* Product list */

.compare-items-wrapper {
  max-height: 220px;
  overflow-y: auto;
  margin-bottom: 10px;
  padding-right: 4px;
}

.compare-item {
  display: flex;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #e5e7eb;
}
.compare-item:last-child {
  border-bottom: 0;
}

.compare-thumb {
  flex: 0 0 60px;
  height: 60px;
  margin-right: 12px;
}
.compare-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.compare-info {
  flex: 1 1 auto;
}

.compare-title {
  font-size: 14px;
  line-height: 1.35;
  word-break: normal;
}

/* remove icon */

.compare-remove {
  border: 0;
  background: transparent;
  color: #9ca3af;
  font-size: 18px;
  padding-left: 6px;
}

/* Bottom buttons */

.compare-footer {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.btn-compare-clear {
  flex: 1 1 0;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background-color: #ffffff;
  font-size: 14px;
}

.btn-compare-now {
  flex: 1 1 0;
  border-radius: 999px;
  border: 0;
  background-color: #3654d3;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
}

/* End: Compare panel */

/* Bottom Quick Nav (0–1299.98px) */

.bottom-quick-nav {
  display: none;
}

@media (max-width: 1299.98px) {
  .bottom-quick-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background-color: var(--color-header-bg);
    border-top: 1px solid rgba(15, 23, 42, 0.75);
    padding: 6px 8px 4px;

    display: flex;
    justify-content: space-between;
  }

  .bq-item {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

    color: #ffffff;
    text-decoration: none;
    font-size: 11px;
    gap: 2px;
  }

  .bq-item .icon {
    font-size: 18px;
  }

  .bq-item .label {
    white-space: nowrap;
  }

  .bq-item:hover {
    color: #f97316;
  }
  .site-footer {
    padding-bottom: 80px;
  }
}

/* ========== Offer Page Style Start ========== */
/* Offers header strip */
.offers-header-strip {
  background-color: #ffffff;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
  padding: 20px 0;
  margin-bottom: 18px;
}

.offers-breadcrumb .breadcrumb {
  font-size: 14px;
  align-items: center;
}

.offers-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  color: #9ca3af;
  padding: 0 6px;
}

.offers-breadcrumb a {
  color: #4b5563;
  text-decoration: none;
}

.offers-breadcrumb a:hover {
  color: #2563eb;
}

/* End: Offers header strip */
.offers-page {
  background-color: #f5f6f9;
}

.offers-breadcrumb .breadcrumb {
  font-size: 14px;
}

.offers-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "/";
}

.offer-card {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
  padding: 18px 18px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.offer-image-link {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
}

.offer-image-link img {
  width: 100%;
  height: auto;
  display: block;
}

.offer-meta {
  font-size: 13px;
  color: #6b7280;
  border-top: 1px solid #e5e7eb;
  padding-top: 8px;
  margin-top: 8px;
}

.offer-meta i {
  font-size: 16px;
  color: #4b5563;
}

.offer-title {
  font-size: 18px;
  font-weight: 600;
  margin-top: 14px;
  margin-bottom: 4px;
}

.offer-title a {
  color: #111827;
  text-decoration: none;
}

.offer-title a:hover {
  color: #2563eb;
}

.offer-desc {
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 16px;
}

.offer-footer {
  margin-top: auto;
}

.offer-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 30px;
  border-radius: 999px;
  background-color: #2563eb;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  overflow: hidden;
}

.offer-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #1d4ed8;
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 0.25s ease-out;
  z-index: 0;
}

.offer-btn .text {
  position: relative;
  z-index: 1;
}

.offer-btn:hover::before {
  transform: scaleY(1);
}

@media (max-width: 767.98px) {
  .offer-card {
    padding: 14px 14px 18px;
  }

  .offer-title {
    font-size: 16px;
  }
}
/* ========== Offer Page Style End ========== */

/* ========== Offer Details Page Style Start ========== */
/* Offer Details Page */
.offer-details-page {
  background-color: #f5f6f9;
}

.offer-details-wrapper {
  max-width: 650px;
}

.offer-details-card {
  background-color: #ffffff;
  border-radius: 18px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.12);
  padding: 20px 22px 24px;
}

/* top row */
.offer-details-top {
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e7eb;
}

.offer-back-link {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  color: #111827;
  text-decoration: none;
  background-color: #f3f4f6;
}

.offer-back-link i {
  font-size: 18px;
}

.offer-details-heading {
  font-size: 18px;
  font-weight: 600;
}

.offer-countdown-wrapper {
  font-size: 11px;
}

.offer-countdown-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 2px;
  color: #6b7280;
}

.offer-countdown {
  display: inline-flex;
  align-items: stretch;
  background-color: #f97316;
  border-radius: 6px;
  overflow: hidden;
}

.offer-countdown .cd-box {
  padding: 4px 6px 2px;
  text-align: center;
  color: #ffffff;
  min-width: 30px;
}

.offer-countdown .cd-box + .cd-box {
  border-left: 1px solid rgba(255, 255, 255, 0.35);
}

.offer-countdown .cd-value {
  display: block;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.1;
}

.offer-countdown .cd-label {
  display: block;
  font-size: 9px;
  opacity: 0.85;
}

.offer-countdown-expired-text {
  margin-top: 4px;
  font-size: 11px;
  color: #ef4444;
}

/* hero image */
.offer-details-hero {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}

.offer-hero-link {
  display: block;
  border-radius: 12px;
  overflow: hidden;
}

.offer-hero-link img {
  width: 100%;
  height: auto;
  display: block;
}

/* content */
.offer-details-content {
  margin-top: 20px;
}

.offer-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
}

.offer-meta-row {
  font-size: 13px;
  color: #4b5563;
}

.offer-meta-item i {
  color: #4b5563;
  font-size: 15px;
}

.offer-body-text {
  font-size: 14px;
  color: #111827;
}

.offer-table-wrapper {
  margin-top: 10px;
}

.offer-table {
  background-color: #ffffff;
  border: 1px solid #9ca3af;
}

.offer-table th,
.offer-table td {
  padding: 6px 10px;
  font-size: 14px;
}

.offer-section-subtitle {
  font-size: 15px;
  font-weight: 600;
}

.offer-terms {
  padding-left: 18px;
  margin-bottom: 0;
}

.offer-link-highlight {
  color: #f97316;
  font-weight: 600;
  text-decoration: none;
}

.offer-link-highlight:hover {
  text-decoration: underline;
}

.offer-share-row {
  font-size: 14px;
}

.offer-share-icon {
  display: inline-flex;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background-color: #111827;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
}

/* responsive */
@media (max-width: 767.98px) {
  .offer-details-card {
    padding: 16px 14px 20px;
  }

  .offer-details-top {
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
  }

  .offer-countdown-wrapper {
    align-self: flex-end;
  }

  .offer-title {
    font-size: 20px;
  }
}
/* ========== Offer Details Page Style End ========== */

/* ========== Year End Mega Sale Banner Style Start ========== */
.yearend-countdown-section {
  background-color: #f5f6f9;
}

.yearend-card {
  max-width: 1180px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 26px 30px 30px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
}

.yearend-title {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
}

.yearend-text {
  font-size: 15px;
  line-height: 1.8;
  color: #111827;
}

.yearend-countdown-wrapper {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-top: 4px;
}

.yearend-countdown-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 4px;
}

.yearend-countdown {
  display: inline-flex;
  border-radius: 4px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  background-color: #ffffff;
}

.ye-box {
  min-width: 50px;
  padding: 6px 10px 4px;
  text-align: center;
}

.ye-box + .ye-box {
  border-left: 1px solid #e5e7eb;
}

.ye-value {
  display: block;
  background-color: #f97316;
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  padding: 4px 6px;
  border-radius: 4px;
  margin-bottom: 2px;
}

.ye-unit {
  display: block;
  font-size: 11px;
  color: #6b7280;
}

.yearend-live-text {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #16a34a;
}

@media (max-width: 991.98px) {
  .yearend-card {
    padding: 18px 14px 22px;
  }

  .yearend-text {
    font-size: 14px;
  }
}

@media (max-width: 575.98px) {
  .yearend-card {
    border-radius: 0;
  }
}
/* ========== Year End Mega Sale Page Style End ========== */
/* ========== Login Page Style Start ========== */
.account-login-page {
  background-color: #f5f6f9;
}

.login-card-wrapper {
  max-width: 520px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 28px 30px 32px;
  margin-bottom: 40px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
}

.login-heading {
  font-size: 22px;
  font-weight: 600;
}

.login-label {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}

.form-control {
  border-radius: 6px;
  border-color: #e5e7eb;
  font-size: 14px;
  padding: 10px 12px;
}

.form-control:focus,
.form-check-input:focus {
  border-color: #4f46e5;
  box-shadow: 0 0 0 1px rgba(79, 70, 229, 0.35);
}

.login-forgot-link {
  font-size: 13px;
  color: #ef4444;
  text-decoration: none;
}

.login-forgot-link:hover {
  text-decoration: underline;
}
.login-btn-primary {
  background-color: #3b4bd8;
  border: 0;
  border-radius: 6px;
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  padding-block: 10px;
}

.login-btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #4f61f2;
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 0.25s ease-out;
  z-index: 0;
}
.login-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
}

.divider-line {
  flex: 1;
  height: 1px;
  background-color: #e5e7eb;
}

.divider-text {
  padding-inline: 10px;
  font-size: 14px;
  color: #6b7280;
}

.login-btn-outline {
  border-radius: 6px;
  border: 1px solid #3241c9;
  color: #3241c9;
  font-weight: 600;
  font-size: 15px;
  padding-block: 10px;
  background-color: #ffffff;
  text-decoration: none;
  text-align: center;
}

.login-btn-outline::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #3241c9;
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 0.25s ease-out;
  z-index: 0;
}

.login-btn-outline:hover::before,
.login-btn-primary:hover::before {
  transform: scaleY(1);
}

.login-btn-outline:hover,
.login-btn-primary:hover {
  color: #ffffff;
}

.login-btn-outline span,
.login-btn-outline,
.login-btn-primary span,
.login-btn-primary {
  position: relative;
  z-index: 1;
}

/* mobile */
@media (max-width: 575.98px) {
  .login-card-wrapper {
    padding: 22px 16px 26px;
    border-radius: 0;
    box-shadow: none;
  }
}
/* ========== Login Page Style Start ========== */

/* ========== PC Builder Page Style Start ========== */
.pcbuilder-page {
  background-color: #f5f6f9;
}

.pcb-wrapper {
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background-color: #ffffff;
  padding: 14px 18px 26px;
}

/* header top */
.pcb-header-top {
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 10px;
  margin-bottom: 14px;
}

.pcb-logo-link img {
  height: 50px;
}

.pcb-header-actions {
  gap: 6px;
}

.pcb-header-btn {
  min-width: 78px;
}

/* header main */
.pcb-header-main {
  margin-bottom: 16px;
}

.pcb-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.pcb-hide-toggle {
  font-size: 14px;
  color: #111827;
}

/* summary cards */
.pcb-head-right {
  align-items: stretch;
}

.pcb-wattage-card {
  position: relative;
  border-radius: 10px;
  border: 1px dashed #f97316;
  padding: 10px 20px 8px;
  min-width: 150px;
  text-align: center;
}

.pcb-wattage-value {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.1;
  margin-bottom: 2px;
  color: #111827;
}

.pcb-wattage-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pcb-beta {
  font-size: 10px;
  text-transform: uppercase;
  color: #f97316;
}

.pcb-wattage-label {
  font-size: 11px;
  color: #6b7280;
}
.pcb-beta-badge {
  position: absolute;
  top: 6px;
  right: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2563eb;
}
.pcb-items-card {
  border-radius: 10px;
  background-color: #3241c9;
  color: #ffffff;
  padding: 8px 20px;
  min-width: 140px;
  text-align: center;
}

.pcb-items-value {
  font-size: 18px;
  font-weight: 700;
}

.pcb-items-label {
  font-size: 12px;
}

/* categories */
.pcb-category-header {
  background-color: #6b7280;
  color: #ffffff;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 600;
}

/* rows */
.pcb-row {
  display: grid;
  grid-template-columns: 64px 1.8fr 1fr auto;
  align-items: center;
  column-gap: 16px;
  padding: 14px 14px 14px 20px;
  border-bottom: 1px solid #eef0f4;
}

.pcb-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background-color: #f3f5ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pcb-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.pcb-info {
  min-width: 0;
}

.pcb-name {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
}

.pcb-required-badge {
  display: inline-block;
  margin-left: 6px;
  font-size: 11px;
  padding: 1px 6px;
  border-radius: 999px;
  background-color: #4b5563;
  color: #ffffff;
}

.pcb-skeleton {
  height: 10px;
  border-radius: 999px;
  background-color: #f1f3f7;
}

.pcb-skeleton.small {
  width: 80px;
  margin-left: auto;
}

/* choose button container */
.pcb-action {
  text-align: right;
}

/* bottom banner */
.pcb-bottom-banner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

/* generic animated button */
.btn-cta {
  --btn-cta-bg: #3b4bd8;
  --btn-cta-bg-hover: #2433ba;
  --btn-cta-text: #ffffff;
  --btn-cta-text-hover: #ffffff;
  --btn-cta-border: 0;

  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 6px;
  border: var(--btn-cta-border);
  background-color: var(--btn-cta-bg);
  color: var(--btn-cta-text);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  box-shadow: var(--btn-cta-shadow);
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, color 0.18s ease-out,
    border-color 0.18s ease-out;
}

.btn-cta span,
.btn-cta i {
  position: relative;
  z-index: 2;
}

.btn-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--btn-cta-bg-hover);
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 0.25s ease-out;
  z-index: 1;
}

.btn-cta:hover::before {
  transform: scaleY(1);
}

.btn-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--btn-cta-shadow-hover);
  color: var(--btn-cta-text-hover);
}

/* outline variant */
.btn-cta--outline {
  --btn-cta-bg: #ffffff;
  --btn-cta-bg-hover: #3241c9;
  --btn-cta-text: #3241c9;
  --btn-cta-text-hover: #ffffff;
  --btn-cta-border: 1px solid #3241c9;
  --btn-cta-shadow: none;
  --btn-cta-shadow-hover: 0 14px 30px rgba(37, 99, 235, 0.35);
}

/* top header icon style */
.btn-cta--iconstack {
  flex-direction: column;
  padding: 6px 14px;
  font-size: 12px;
}

.btn-cta--iconstack i {
  font-size: 20px;
  margin-bottom: 2px;
}

/* choose button size */
.pcb-choose-btn {
  min-width: 110px;
}

/* responsive */
@media (max-width: 991.98px) {
  .pcb-wrapper {
    padding-inline: 10px;
  }

  .pcb-row {
    grid-template-columns: 56px 1.6fr auto;
    grid-template-rows: auto auto;
    row-gap: 8px;
  }

  .pcb-price {
    display: none;
  }

  .pcb-action {
    justify-self: end;
  }
}
@media (max-width: 768px) {
  .pcb-title,
    .hidden-mobile{
    display: none;
  }
  .pcb-head-right{
    flex-direction: row !important;
  }
  .pcb-header-btn span{
    display: none;
  }
}
@media (max-width: 575.98px) {
  .pcb-header-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .pcb-header-actions {
    margin-left: 0;
  }

  .pcb-header-main {
    margin-top: 6px;
  }
}
/* ========== PC Builder Page Style End ========== */

/* ========== PC Builder Choose Page Style Start ========== */
.cpu-toolbar {
  background-color: #f9fafb;
  border-radius: 6px;
  padding: 8px 12px;
  border: 1px solid #e5e7eb;
}

.cpu-back-btn {
  border-radius: 999px;
  border: 0;
  background-color: #ffffff;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cpu-filter-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 4px;
  border: 1px solid #e5e7eb;
  background-color: #ffffff;
  font-size: 14px;
  padding-inline: 10px;
}

.cpu-sort-label {
  font-size: 13px;
  color: #6b7280;
}

.cpu-sort-select {
  min-width: 170px;
}

/* Filter panel */
.cpu-filter-panel {
  background-color: #ffffff;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
  padding: 10px 12px 12px;
}

.cpu-filter-title {
  font-size: 15px;
  font-weight: 600;
}

.cpu-hide-all {
  font-size: 12px;
  color: #4b5563;
}

.cpu-filter-groups {
  margin-top: 8px;
}

.filter-group {
  border-radius: 4px;
  border: 1px solid #e5e7eb;
  margin-bottom: 8px;
  overflow: hidden;
}

.filter-group-header {
  width: 100%;
  padding: 8px 10px;
  border: 0;
  background-color: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
}

.filter-group-header .chevron i {
  font-size: 14px;
}

.filter-group-body {
  padding: 8px 10px 10px;
  background-color: #ffffff;
}

.filter-group.collapsed .filter-group-body {
  display: none;
}

.filter-group.collapsed .filter-group-header .chevron i {
  transform: rotate(180deg);
}

.filter-scroll {
  max-height: 190px;
  overflow-y: auto;
}

.filter-check {
  display: flex;
  align-items: center;
  font-size: 13px;
  margin-bottom: 4px;
  padding: 5px;
}
.filter-check:hover {
  background: #f2f4f8;
  cursor: pointer;
}
.filter-check input {
  margin-right: 6px;
}

.price-slider-placeholder {
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f97316, #f97316);
}

/* CPU item cards */
.cpu-item-card {
  position: relative;
  background-color: #ffffff;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
  padding: 10px 16px 12px;
  margin-bottom: 12px;
}

.cpu-item-layout {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) auto;
  column-gap: 16px;
  align-items: stretch;
}

.cpu-save-badge {
  position: absolute;
  top: 8px;
  left: 0;
  background-color: #7c3aed;
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 0 999px 999px 0;
  font-size: 12px;
  font-weight: 600;
}

.cpu-thumb a {
  display: block;
  border-radius: 6px;
  overflow: hidden;
  background-color: #ffffff;
}

.cpu-thumb img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.cpu-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.cpu-title a {
  color: #111827;
  text-decoration: none;
}

.cpu-title a:hover {
  color: #2563eb;
}

.cpu-spec-list {
  padding-left: 16px;
  margin-bottom: 0;
  font-size: 13px;
  color: #4b5563;
}

.cpu-price-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
}

.cpu-price-current {
  font-weight: 700;
  font-size: 18px;
}

.cpu-price-old {
  font-size: 13px;
  color: #9ca3af;
  text-decoration: line-through;
}

/* Add button uses existing .btn-cta design */
.cpu-add-btn {
  min-width: 96px;
}

/* Offcanvas */
.cpu-filter-offcanvas {
  width: 320px;
  max-width: 86vw;
}

/* responsive */
@media (max-width: 991.98px) {
  .cpu-item-layout {
    grid-template-columns: 130px minmax(0, 1fr);
    grid-template-rows: auto auto;
    row-gap: 10px;
  }

  .cpu-price-action {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .cpu-price {
    align-items: flex-start;
  }
}

@media (max-width: 575.98px) {
  .cpu-toolbar {
    padding-inline: 8px;
  }

  .cpu-item-layout {
    grid-template-columns: 110px minmax(0, 1fr);
  }
}
/* ========== PC Builder Choose Page Style End ========== */

/* ========== Carrer Page Style Start ========== */
.career-detail-page {
  background-color: #f5f6f9;
}

.career-card {
  max-width: 1180px;
  background-color: #ffffff;
  border-radius: 18px;
  margin: 0 auto;
  padding: 26px 32px 30px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

.career-title {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 12px;
}

.career-separator {
  margin: 10px 0 14px;
  border: #02102d72 solid 1px;
}

.career-block {
  margin-bottom: 4px;
}
.career-block a{
  color: var(--color-primary);
}
.career-block a:hover{
  text-decoration: underline;
}
.career-heading {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
}

.career-text {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 0;
}

.career-list {
  padding-left: 22px;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.7;
}

.career-list li {
  margin-bottom: 4px;
}

/* mobile */
@media (max-width: 767.98px) {
  .career-card {
    padding: 20px 16px 24px;
    border-radius: 12px;
  }

  .career-title {
    font-size: 20px;
  }
}
/* ========== Carrer Page Style End ========== */

/* ========== Product Details Page Style Start ========== */
/* Product gallery */
/* Share bar */
.pd-share-bar {
  background-color: #ffffff;
  border-radius: 999px;
  padding: 6px 16px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
  margin-bottom: 14px;
}

.pd-share-label {
  font-size: 13px;
  color: #111827;
}

.pd-share-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background-color: #f3f4ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111827;
  text-decoration: none;
  font-size: 16px;
}

.pd-head-action {
  font-size: 13px;
  color: #111827;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.pd-head-action i {
  font-size: 16px;
}

/* Main info */
.pd-main-info {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 16px 18px 20px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
}

.pd-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Chips */
.pd-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pd-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 999px;
  background-color: #f3f4ff;
  font-size: 12px;
}

.pd-chip .label {
  color: #6b7280;
}

.pd-chip .value {
  font-weight: 600;
  color: #111827;
}

.pd-chip .strike {
  font-size: 11px;
  color: #9ca3af;
  text-decoration: line-through;
}

/* Key features */
.pd-subheading {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.pd-key-features ul {
  padding-left: 18px;
  margin-bottom: 4px;
  font-size: 14px;
  color: #111827;
}

.pd-view-more {
  font-size: 14px;
  color: #ef4444;
  text-decoration: none;
}

/* Payment options */
.pd-payment-options {
  margin-top: 14px;
}

.pd-payment-cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pd-pay-card {
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background-color: #ffffff;
  display: flex;
  align-items: stretch;
  padding: 10px 12px;
  cursor: pointer;
  position: relative;
}

.pd-pay-card input {
  margin-right: 10px;
  margin-top: 3px;
}

.pd-pay-body {
  flex: 1 1 auto;
}

.pd-pay-amount-row {
  font-size: 16px;
  font-weight: 700;
}

.pd-pay-amount {
  margin-right: 6px;
}

.pd-pay-strike {
  font-size: 13px;
  color: #9ca3af;
  text-decoration: line-through;
}

.pd-pay-label {
  font-size: 13px;
  margin-top: 2px;
}

.pd-pay-note {
  font-size: 12px;
  color: #6b7280;
}

.pd-pay-card.active {
  border-color: #3b4bd8;
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.35);
}

/* Qty + Buy Now */
.pd-qty-stepper {
  border-radius: 6px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
}

.pd-qty-btn {
  border: 0;
  background-color: #ffffff;
  width: 36px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.pd-qty-input {
  width: 48px;
  height: 38px;
  border: 0;
  text-align: center;
  font-size: 14px;
}

.pd-buy-btn {
  min-width: 140px;
}

/* reuse existing .btn-cta design for pd-buy-btn */
/* Responsive */
@media (max-width: 991.98px) {
  .pd-main-info {
    margin-top: 10px;
  }
}

@media (max-width: 575.98px) {
  .pd-qty-buy {
    flex-direction: column;
    align-items: stretch;
  }

  .pd-buy-btn {
    width: 100%;
    justify-content: center;
  }
}
/* ========== Product Details Page Style End ========== */

/* ========== Contact Page Style Start ========== */
/* Contact page */
.contact-page {
  background-color: #f5f6f9;
}

/* top contact cards */
.contact-top-card {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  text-decoration: none;
  color: inherit;
}

.contact-top-card + .contact-top-card {
  margin-top: 10px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: #f3f4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3241c9;
  font-size: 22px;
  margin-right: 12px;
}

.contact-icon-mail {
  background-color: #fef3c7;
  color: #ea580c;
}

.contact-title {
  font-size: 13px;
  color: #6b7280;
}

.contact-value {
  font-size: 16px;
  font-weight: 600;
}

/* complaint / support cards */
.contact-action-card {
  padding: 34px 18px;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.contact-action-img {
  flex: 0 0 84px;
  margin-right: 14px;
}

.contact-action-img img {
  width: 84px;
  height: 84px;
  object-fit: contain;
}

.contact-action-text {
  flex: 1 1 auto;
}

.contact-action-label {
  font-size: 13px;
  color: #6b7280;
}

.contact-action-title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-action-link {
  font-size: 14px;
  color: #3241c9;
  text-decoration: none;
}

/* outlet header */
.contact-outlet-header {
  margin-top: 4px;
}

.contact-outlet-title {
  font-size: 18px;
  font-weight: 600;
}

.contact-outlet-search {
  min-width: 260px;
  max-width: 340px;
  width: 100%;
}

.contact-city-input {
  border-radius: 999px 0 0 999px;
  border-right: 0;
  font-size: 14px;
}

.contact-city-icon {
  border-radius: 0 999px 999px 0;
  background-color: #ffffff;
  border-left: 0;
}

/* branch cards */
.branch-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 16px 18px 14px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.branch-name {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
}

.branch-section-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.branch-address {
  font-size: 14px;
  margin-bottom: 6px;
}

.branch-phone-label {
  font-size: 12px;
  color: #6b7280;
}

.branch-phone-value {
  font-size: 14px;
}

.branch-footer {
  margin-top: auto;           
  border-top: 1px solid #e5e7eb;
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* use btn-cta variants for status and get direction */
.branch-status-btn {
  --btn-cta-bg: #f3f4f6;
  --btn-cta-bg-hover: #e5e7eb;
  --btn-cta-text: #374151;
  --btn-cta-text-hover: #111827;
  --btn-cta-border: 1px solid #e5e7eb;
  --btn-cta-shadow: none;
  --btn-cta-shadow-hover: 0 6px 16px rgba(15, 23, 42, 0.16);
  padding-inline: 14px;
  font-size: 13px;
}

.branch-direction-btn {
  --btn-cta-bg: #f97316;
  --btn-cta-bg-hover: #ea580c;
  --btn-cta-text: #ffffff;
  --btn-cta-text-hover: #ffffff;
  --btn-cta-border: 1px solid #f97316;
  --btn-cta-shadow: none;
  --btn-cta-shadow-hover: 0 10px 24px rgba(248, 113, 113, 0.45);
  padding-inline: 16px;
  font-size: 14px;
}

/* bottom description */
.contact-bottom-panel {
  margin-top: 8px;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 18px 20px 22px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
  font-size: 14px;
  line-height: 1.7;
}

.contact-bottom-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-bottom-sub {
  font-size: 15px;
  font-weight: 600;
  margin-top: 12px;
  margin-bottom: 4px;
}

.contact-bottom-panel a {
  color: #ef4444;
  text-decoration: none;
}

/* responsive */
@media (max-width: 991.98px) {
  .contact-outlet-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .contact-outlet-search {
    max-width: 100%;
  }
}

@media (max-width: 575.98px) {
  .contact-top-card {
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  }

  .branch-card {
    padding-inline: 14px;
  }
}
/* ========== Contact Page Style End ========== */

/* ========== Star Point Policy Page Style Start ========== */
.video-card .ratio {
  border-radius: 8px;
  overflow: hidden;
}
/* ========== Star Point Policy Page Style End ========== */

/* ========== EMI Terms Page Style Start ========== */
.emi-section {
  background-color: #f5f6f9;
}

.emi-header {
  margin-bottom: 10px;
}

.emi-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}
/* we reuse .branch-card as base card style */
.emi-card {
  padding-top: 14px;
  padding-bottom: 16px;
  border: 1px solid #e5e7eb;
}

/* top dots row over logo */
.emi-dot-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.emi-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background-color: #d1d5db;
}

.emi-dot--active {
  background-color: #22c55e;
}

/* logo + divider */
.emi-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70px;
}

.emi-logo {
  max-width: 200px;
  max-height: 120px;
  object-fit: contain;
}
/* text content */
.emi-bank-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.emi-line {
  font-size: 14px;
  margin-bottom: 4px;
}

.emi-label {
  font-weight: 600;
}

.emi-value {
  font-weight: 400;
}
/* ========== EMI Terms Page Style End ========== */

/* ========== Blog Page Style Start ========== */
/* Featured Categories + Articles */
.blog-featured-section {
  background-color: #f5f6f9;
}

.blog-section-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
}

.blog-section-subtitle {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 0;
}

/* category cards (entire card is link) */
.blog-cat-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 12px 18px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  text-decoration: none;
  color: #111827;
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out, color 0.15s ease-out;
}

.blog-cat-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background-color: #f3f4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.blog-cat-icon img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.blog-cat-title {
  font-size: 15px;
  font-weight: 600;
}

.blog-cat-count {
  font-size: 13px;
  color: #6b7280;
}

/* hover: whole card clickable, text color changes */
.blog-cat-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.16);
}

.blog-cat-card:hover .blog-cat-title {
  color: #2563eb;
}

/* article cards */
.blog-article-card {
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-article-thumb {
  position: relative;
}

.blog-article-img-link {
  display: block;
}

.blog-article-img-link img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.blog-article-badge {
  position: absolute;
  left: 20px;
  bottom: 16px;
  padding: 4px 12px;
  border-radius: 999px;
  background-color: rgba(15, 23, 42, 0.8);
  color: #ffffff;
  font-size: 13px;
}

.blog-article-body {
  padding: 14px 18px 16px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-article-meta {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 8px;
}

.blog-article-title {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 30px;
}

.blog-article-title a {
  color: #111827;
  text-decoration: none;
}

.blog-article-title a:hover {
  color: #2563eb;
}

.blog-article-excerpt {
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 10px;
}

.blog-read-more {
  margin-top: auto;
  align-self: flex-start;
  padding-inline: 14px;
  font-size: 14px;
}

/* responsive */
@media (max-width: 991.98px) {
  .blog-article-img-link img {
    height: 190px;
  }
}

@media (max-width: 575.98px) {
  .blog-cat-card {
    padding: 10px 14px;
  }

  .blog-article-img-link img {
    height: 170px;
  }
}
/* ========== Blog Page Style End ========== */