/* 
 * COMPILED CSS FROM SASS - Essential Template Styles
 * This replaces the basic custom styles with full template CSS
 */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

/* CSS Variables */
:root {
  --heading-font: "Jost", sans-serif;
  --body-font: "Inter", sans-serif;
  --heading-one: clamp(1.875rem, -2.0093rem + 8.3527vw, 4.25rem);
  --heading-two: clamp(1.75rem, -0.8115rem + 5.3364vw, 3.1875rem);
  --heading-three: clamp(1.5rem, -0.0592rem + 3.2483vw, 2.375rem);
  --heading-four: clamp(1.375rem, 0.7068rem + 1.3921vw, 1.75rem);
  --heading-five: clamp(1.125rem, 0.4568rem + 1.3921vw, 1.5rem);
  --heading-six: clamp(1rem, 0.7773rem + 0.464vw, 1.125rem);
  --gray-seven: 210 25% 97%;
  --white: 0 0% 100%;
  --static-white: 0 0% 100%;
  --black: 234 100% 7%;
  --black-two: 234 69% 9%;
  --black-three: 235 5% 43%;
  --heading-color: var(--black);
  --body-color: var(--black-three);
  --body-bg: 0 0% 100%;
  --border-color: 236 13% 77%;
  --section-bg: 210 25% 97%;
  --box-shadow: 0px 20px 30px 0px rgba(197, 196, 201, 0.25);
  --main: 253 88% 58%;
  --main-two: 184 96% 48%;
  --main-three: 306 100% 68%;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--body-font);
  color: hsl(var(--body-color));
  background-color: hsl(var(--body-bg));
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  color: hsl(var(--heading-color));
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 16px 0;
}

h1 { font-size: var(--heading-one); }
h2 { font-size: var(--heading-two); }
h3 { font-size: var(--heading-three); }
h4 { font-size: var(--heading-four); }
h5 { font-size: var(--heading-five); }
h6 { font-size: var(--heading-six); font-weight: 800; }

a {
  display: inline-block;
  transition: 0.2s linear;
  text-decoration: none;
  color: hsl(var(--main));
}

a:hover {
  color: hsl(253 88% 48%);
}

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

/* Utility Classes */
.container-full {
  max-width: 1792px;
}

@media (min-width: 1199px) {
  .container-two {
    max-width: 1296px;
  }
}

.section-bg {
  background-color: hsl(var(--section-bg)) !important;
}

.sales-offer-bg-two {
  background: linear-gradient(117deg, #F3FEFF 14.35%, #DACFFF 84.4%) !important;
}

.pill {
  border-radius: 40px !important;
}

.padding-y-120 {
  padding: 120px 0;
}

@media (max-width: 1199px) {
  .padding-y-120 {
    padding: 80px 0;
  }
}

.flx-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flx-align {
  display: flex;
  align-items: center;
}

.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }

.font-14 { font-size: 0.875rem; }
.font-16 { font-size: 1rem; }
.font-18 { font-size: 1.125rem; }

.fw-300 { font-weight: 300 !important; }
.fw-500 { font-weight: 500 !important; }
.fw-600 { font-weight: 600 !important; }
.fw-700 { font-weight: 700 !important; }

.text-heading {
  color: hsl(var(--heading-color)) !important;
}

.text-white { color: hsl(var(--static-white)) !important; }
.text-white-50 { color: rgba(255, 255, 255, 0.5) !important; }

.z-index-1 { z-index: 1; }
.z-index--1 { z-index: -1; }

.overflow-hidden { overflow: hidden; }
.position-relative { position: relative; }

/* Sale Offer */
.sale-offer {
  background: linear-gradient(117deg, #FEF0F8 14.35%, #DACFFF 84.4%);
  padding: 8px 0;
}

.sale-offer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  position: relative;
}

.sale-offer__countdown {
  display: flex;
  align-items: center;
}
.coupon-pill {
  border: 1px dashed rgba(79, 70, 229, 0.35);
  border-radius: 12px;
  padding: 10px 14px;
  background: rgba(250, 249, 255, 0.9);
  width: 100%;
}

.coupon-pill .badge {
  letter-spacing: 0.5px;
}

.coupon-pill__copy {
  white-space: nowrap;
}

.coupon-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.coupon-badge__label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.countdown {
  display: flex;
  align-items: center;
  gap: 16px;
}

.countdown > div {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-direction: row-reverse;
}

.countdown .num {
  font-weight: 500;
  color: hsl(var(--heading-color));
  font-size: 14px;
}

.countdown .word {
  font-weight: 500;
  color: hsl(var(--heading-color));
  font-size: 14px;
}

.sale-offer__discount {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sale-offer__text {
  color: hsl(var(--heading-color));
  text-transform: capitalize;
}

.sale-offer__qty {
  color: hsl(var(--heading-color));
  font-family: var(--heading-font);
}

.sale-offer__close {
  position: absolute;
  right: 0;
  top: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  z-index: 1;
  transition: .2s linear;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  color: hsl(var(--heading-color));
}

.sale-offer__close:hover {
  color: hsl(var(--main));
}

/* Banner Two */
.banner-two {
  background-color: hsl(var(--gray-seven));
  padding: 80px 0;
  position: relative;
}

@media (max-width: 1199px) {
  .banner-two {
    padding: 80px 0;
  }
}

@media (max-width: 991px) {
  .banner-two {
    padding: 70px 0;
  }
}

@media (max-width: 767px) {
  .banner-two {
    padding: 60px 0;
  }
}

.banner-two__content {
  max-width: 880px;
  margin: 0 auto;
}

.banner-two__title {
  font-size: var(--heading-one);
  text-align: center;
  margin-bottom: 24px;
}

@media (min-width: 992px) and (max-width: 1299px) {
  .banner-two__title {
    font-size: 60px;
  }
}

.banner-two__desc {
  margin-bottom: 32px;
  max-width: 590px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Search Box */
.search-box {
  position: relative;
  max-width: 636px;
  margin: 0 auto;
}

.search-box.style-two {
  max-width: 636px;
  margin: 0 auto;
}

.search-box input {
  background-color: hsl(var(--white)) !important;
  border: 0;
  padding-right: 70px;
  padding-left: 170px;
  border-radius: 40px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  width: 100%;
}

.search-box__select {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
}

.search-box__select select {
  border: 0;
  background: transparent;
  padding-right: 19px;
  padding-left: 12px;
  color: hsl(var(--black-three));
  font-size: 0.875rem;
}

.search-box .btn-icon {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  padding: 0;
}

.popular-search {
  margin-top: 32px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  justify-content: center;
}

.popular-search__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0;
  margin-top: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.search-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.search-list__item {
  list-style: none;
}

.search-list__link {
  padding: 3px 10px;
  border-radius: 50px;
  border: 1px solid hsl(var(--border-color));
  outline: 1px solid transparent;
  text-decoration: none;
  transition: .2s linear;
  font-size: 0.875rem;
  color: hsl(var(--heading-color));
}

.search-list__link:hover {
  color: hsl(var(--main)) !important;
  font-weight: 600;
  border-color: hsl(var(--main));
  background-color: hsl(253 88% 58% / 0.08);
  outline-color: hsl(var(--main));
}

/* Statistics */
.statistics-wrapper {
  display: flex;
  align-items: center;
  gap: 36px;
  justify-content: flex-end;
  padding-inline: 24px;
}

@media (max-width: 1399px) {
  .statistics-wrapper {
    display: inline-grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    gap: 24px;
    justify-content: center;
    padding-inline: 0;
  }
}

.statistics-wrapper.style-right {
  justify-content: flex-start;
}

.statistics-wrapper.style-right .statistics:nth-child(1) {
  margin-top: 0;
}

.statistics-wrapper .statistics:nth-child(2) {
  margin-top: 0;
}

.statistics {
  background-color: hsl(var(--white));
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
  position: relative;
}

.statistics.style-three {
  position: relative;
  left: 0;
  top: 0;
}

.statistics__amount {
  font-size: 2rem;
  font-weight: 700;
  color: hsl(var(--heading-color));
  margin-bottom: 8px;
}

.statistics__amount-two {
  font-size: 2rem;
}

.statistics__text {
  font-size: 0.875rem;
  color: hsl(var(--body-color));
}

/* Section Heading */
.section-heading {
  text-align: center;
  margin-bottom: 48px;
  max-width: 630px;
  margin-left: auto;
  margin-right: auto;
}

.section-heading.style-left {
  text-align: left;
  margin-left: 0;
}

.section-heading.style-white .section-heading__title {
  color: hsl(var(--static-white));
}

.section-heading.style-white .section-heading__desc {
  color: #bdbecc;
  font-weight: 300;
}

.section-heading.style-flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: unset;
  align-items: center;
}

.section-heading__title {
  position: relative;
  margin-bottom: 16px;
  text-transform: capitalize;
}

.section-heading__desc {
  margin-top: 24px;
  font-size: 1.125rem;
  max-width: 634px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
}

/* Product Item */
.product-item {
  border-radius: 8px;
  background-color: hsl(var(--white));
  overflow: hidden;
  transition: .2s linear;
}

.product-item.overlay-none .product-item__thumb::before {
  display: none;
}

.product-item:hover {
  box-shadow: 0px 20px 30px 0px rgba(197, 196, 201, 0.25);
}

.product-item__thumb {
  margin: 8px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  max-height: 156px;
}

.product-item__thumb.max-h-unset {
  max-height: unset !important;
}

.product-item__thumb img {
  width: 100%;
  height: auto;
  transition: .2s linear;
}

.product-item__content {
  padding: 24px 16px;
  padding-top: 16px;
}

.product-item__title {
  margin-bottom: 8px;
  text-transform: capitalize;
  font-weight: 600;
}

.product-item__title .link {
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-decoration: none;
  color: hsl(var(--heading-color));
}

.product-item__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.product-item__author {
  font-size: 0.875rem;
  font-weight: 400;
  color: hsl(var(--black-three));
}

.product-item__bottom {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid hsl(var(--border-color));
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.product-item__sales {
  font-size: 1rem;
  color: hsl(var(--body-color));
  margin-bottom: 8px;
  display: block;
}

/* Popular Item Card Section */
.popular-item-card-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.popular-item-card-section.padding-y-120 {
  padding-top: 60px;
}

.selling-product.padding-y-120 {
  padding-top: 60px;
}

.arrival-product.padding-y-120 {
  padding-top: 60px;
}

.categories-section.padding-y-120 {
  padding-top: 60px;
}

/* Selling Product */
.selling-product {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 120px 0;
}

.selling-product::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 62%;
  background-color: hsl(var(--black));
  left: 0;
  top: 0;
  z-index: -1;
}

.selling-product .product-item {
  background-color: hsl(var(--white));
  border: 1px solid hsl(var(--border-color));
}

.selling-product .product-item__content,
.selling-product .product-item__title a {
  color: hsl(var(--black));
}

.selling-product .product-item__content .text-white,
.selling-product .product-item__content .text-white-50,
.selling-product .product-item__sales {
  color: hsl(var(--body-color)) !important;
}

.selling-product .product-item__bottom .btn {
  color: hsl(var(--main));
  border-color: hsl(var(--main));
}

.selling-product .product-item__bottom .btn:hover {
  background-color: hsl(var(--main));
  color: hsl(var(--white));
}

/* Arrival Product */
.arrival-product {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

/* Header */
.header {
  background-color: hsl(var(--white));
  transition: .2s linear;
  padding: 20px 0;
}

.header.fixed-header {
  position: sticky;
  left: 0;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 9;
  backdrop-filter: blur(24px);
  animation: slideDown 0.35s ease-out;
  background-color: hsl(0 0% 100% / 0.9) !important;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  max-width: 224px;
}

.header-menu {
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 24px;
}

.nav-menu__item {
  list-style: none;
}

.nav-menu__link {
  text-decoration: none;
  color: hsl(var(--heading-color));
  font-weight: 500;
  transition: .2s linear;
}

.nav-menu__link:hover {
  color: hsl(var(--main));
}

.header-action {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-search {
  display: block;
}

.header-search__input {
  padding: 8px 40px 8px 16px;
  border: 1px solid hsl(var(--border-color));
  border-radius: 40px;
  font-size: 0.875rem;
}

.header-search__button {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
}

.header-action__link {
  text-decoration: none;
  color: hsl(var(--heading-color));
  font-size: 1.25rem;
}

/* Footer Two */
.footer-two {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.footer-inner {
  padding: 120px 0;
}

.footer-widget {
  margin-bottom: 30px;
}

.footer-widget__logo img {
  max-width: 200px;
  margin-bottom: 24px;
}

.footer-widget__title {
  color: hsl(var(--heading-color));
  margin-bottom: 24px;
  font-weight: 600;
}

.footer-widget__desc {
  color: hsl(var(--black-three));
  margin-bottom: 24px;
}

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

.footer-lists__item {
  margin-bottom: 12px;
}

.footer-lists__link {
  color: hsl(var(--black-three));
  text-decoration: none;
  transition: .2s linear;
}

.footer-lists__link:hover {
  color: hsl(var(--main));
}

.social-icon-list {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-icon-list__item {
  list-style: none;
}

.social-icon-list__link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: hsl(var(--section-bg));
  color: hsl(var(--black));
  text-decoration: none;
  transition: .2s linear;
}

.social-icon-list__link:hover {
  background-color: hsl(var(--main));
  color: hsl(var(--static-white));
}

.bottom-footer-two {
  border-top: 1px solid hsl(var(--border-color));
  padding: 24px 0;
}

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

.bottom-footer__text {
  color: hsl(var(--black-three));
  font-weight: 300;
  margin: 0;
  font-size: 0.875rem;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-link {
  color: hsl(var(--black-three));
  text-decoration: none;
  transition: .2s linear;
  font-size: 0.875rem;
}

.footer-link:hover {
  color: hsl(var(--main));
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: .2s linear;
  border: none;
  cursor: pointer;
  font-weight: 500;
}

.btn-main {
  background-color: hsl(var(--main));
  color: hsl(var(--static-white));
}

.btn-main:hover {
  background-color: hsl(253 88% 48%);
  color: hsl(var(--static-white));
}

.btn-outline-light {
  border: 1px solid hsl(var(--static-white));
  color: hsl(var(--static-white));
  background: transparent;
}

.btn-outline-light:hover {
  background-color: hsl(var(--static-white));
  color: hsl(var(--black));
}

.btn-outline-main {
  border: 1px solid hsl(var(--main));
  color: hsl(var(--main));
  background: transparent;
}

.btn-outline-main:hover {
  background-color: hsl(var(--main));
  color: hsl(var(--static-white));
}

.btn-white {
  background-color: hsl(var(--static-white));
  color: hsl(var(--black));
}

.btn-white:hover {
  background-color: hsl(var(--section-bg));
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.btn-icon {
  padding: 12px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-icon.icon {
  padding: 0;
  width: auto;
  height: auto;
}

/* Responsive */
@media (max-width: 991px) {
  .header-menu {
    display: none;
  }
}

@media (max-width: 767px) {
  .banner-two__title {
    font-size: 2rem;
  }
  
  .section-heading {
    margin-bottom: 32px;
  }
  
  .padding-y-120 {
    padding: 60px 0;
  }
  
  .popular-search__title span.d-md-flex {
    display: none;
  }
}

/* Dark version helpers */
.dark-version {
  display: none !important;
}

.white-version {
  display: block !important;
}

/* Additional utility classes */
.mb-0 { margin-bottom: 0 !important; }
.mb-2 { margin-bottom: 8px !important; }
.mb-3 { margin-bottom: 16px !important; }
.mb-4 { margin-bottom: 24px !important; }
.mb-5 { margin-bottom: 32px !important; }

.mt-1 { margin-top: 4px !important; }
.mt-2 { margin-top: 8px !important; }
.mt-5 { margin-top: 32px !important; }

.text-center { text-align: center !important; }
.text-capitalize { text-transform: capitalize !important; }

.d-none { display: none !important; }
.d-block { display: block !important; }
.d-flex { display: flex !important; }

@media (min-width: 768px) {
  .d-md-flex {
    display: flex !important;
  }
}

.shadow-sm {
  box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
}

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

.max-h-unset {
  max-height: unset !important;
}

.w-100 {
  width: 100% !important;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.start-0 {
  left: 0;
}

.top-0 {
  top: 0;
}

.end-0 {
  right: 0;
}

.bg-white {
  background-color: hsl(var(--white)) !important;
}

.small {
  font-size: 0.875rem;
}

/* Gradient backgrounds */
.bg--gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
}

.element {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

/* Common input */
.common-input {
  width: 100%;
  padding: 16px 24px;
  border: 1px solid hsl(var(--border-color));
  border-radius: 8px;
  font-size: 1rem;
  transition: .2s linear;
}

.common-input--lg {
  padding: 20px 24px;
  font-size: 1.125rem;
}

.common-input:focus {
  outline: none;
  border-color: hsl(var(--main));
  box-shadow: 0 0 0 3px hsl(253 88% 58% / 0.1);
}

/* Form control */
.form-control {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid hsl(var(--border-color));
  border-radius: 4px;
  font-size: 1rem;
}

.form-control:focus {
  outline: none;
  border-color: hsl(var(--main));
  box-shadow: 0 0 0 3px hsl(253 88% 58% / 0.1);
}

/* Select */
.select-has-icon {
  position: relative;
}

.select-has-icon::before {
  content: "▼";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 0.75rem;
  color: hsl(var(--body-color));
}

/* Legacy styles for compatibility */
.card {
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.badge {
  font-size: 0.75rem;
}

.alert {
  margin-bottom: 0;
  border-radius: 0;
}

.navbar-brand {
  font-weight: bold;
  font-size: 1.5rem;
}

footer {
  margin-top: auto;
}

.product-card {
  height: 100%;
}

.product-card img {
  max-height: 200px;
  object-fit: contain;
}

.pagination {
  margin-top: 2rem;
}

.breadcrumb {
  background-color: transparent;
  padding: 0;
}

.table-responsive {
  border-radius: 0.375rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  
  .card {
    margin-bottom: 1rem;
  }
}

.category-card {
  border-radius: 18px;
  overflow: hidden;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(27, 46, 94, 0.12);
}

.category-card__thumb {
  position: relative;
  width: 100%;
  padding-top: 65%;
  background: linear-gradient(135deg, #eef2ff, #f7f7ff);
  overflow: hidden;
}

.category-card__thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.category-card__thumb--placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7780a1;
  font-size: 1.25rem;
}

.category-card__body {
  padding: 24px 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.category-card__icon .icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f1f5ff;
  color: #5c6bc0;
  font-size: 1.2rem;
  box-shadow: inset 0 0 0 1px rgba(92, 107, 192, 0.15);
}

.category-card__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
}

.category-card__meta .badge {
  font-weight: 500;
}

.dark-theme .category-card {
  background-color: #131822;
}

.dark-theme .category-card__body {
  color: #b9c2d6;
}

.dark-theme .category-card__thumb {
  background: linear-gradient(135deg, #1f2a3c, #121829);
}

.dark-theme .category-card__thumb--placeholder {
  color: #9aa4bf;
}

.dark-theme .category-card__icon .icon-circle {
  background: rgba(255, 255, 255, 0.04);
  color: #b9c2d6;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}
