﻿/* Base reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

:root {
  --color-background: #f5f5f5;
  --color-dark: #2b373a;
  --color-text: #2b373a;
  --color-footer-text: #bbb;
  --color-light: #666;
  --color-primary: #00856f;
  --color-border: #ebebeb;
  --color-highlighted: red;
  --color-favorite: #ff4136;
  --color-logo: #7bd6b2;
  --color-badge-featured: #ffc000;
  --color-badge-recommended: #0e800e;
  --color-badge-latest: #f02122;
  --color-badge-portable: #00d7b3;
  --color-badge-torrent: #1c55f9;
  --color-badge-pre-activated: #1cbdf9;
  --color-notification-success: #d4edda;
  --color-mac: #02adec;
  --color-windows: #02adec;
  --color-books: #02adec;
  --color-android: #3ddc84;
  --star-size: 16px;
  --color-disabled: #999999c7;
  --color-input-unchecked: #f5f5f5;
  --color-input-checked: #00d7b3;
  --input-size: 18px;
}

body {
  background-color: var(--color-background);
  color: var(--color-text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans",
    "Droid Sans", "Helvetica Neue", sans-serif;
}

.container {
  margin: 0 auto;
  max-width: 1240px;
  padding: 0 16px;
  width: 100%;
}

@media only screen and (min-width: 1200px) {
  .container {
    padding: 0 20px;
  }
}

li {
  list-style: none;
}

a {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}

img {
  max-width: 100%;
}

button,
input,
textarea {
  background-color: transparent;
  border: 0;
  color: inherit;
  font-family: inherit;
}

button:focus,
input:focus,
textarea:focus {
  outline: none;
}

button {
  cursor: pointer;
}

.icon {
  --icon-size: 20px;
  align-items: center;
  color: inherit;
  display: flex;
  fill: currentColor;
  height: var(--icon-size);
  justify-content: center;
  max-width: var(--icon-size);
  min-width: var(--icon-size);
  width: 100%;
}

/* Header */
.header_wrap__mGxe1 {
  background-color: #fff;
  position: relative;
  z-index: 3;
}

@media only screen and (max-width: 767px) {
  .header_wrap__mGxe1:after {
    background-color: #fff;
    content: "";
    display: block;
    height: 70px;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
  }
}

.header_nav__jqNm7 {
  align-items: center;
  display: flex;
  gap: 16px;
  height: 70px;
}

@media only screen and (min-width: 768px) {
  .header_nav__jqNm7 {
    gap: 24px;
  }
}

.header_logo__nodcL {
  align-items: center;
  background-color: var(--color-primary);
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  height: 36px;
  justify-content: center;
  max-width: 36px;
  width: 100%;
  z-index: 2;
}

@media only screen and (min-width: 768px) {
  .header_logo__nodcL {
    height: 40px;
    max-width: 40px;
  }
}

.header_logo__nodcL svg {
  fill: #fff;
}

.header_link__ohosR {
  align-items: center;
  display: none;
  font-size: 14px;
  font-weight: 500;
  gap: 8px;
  line-height: 1;
  margin-left: auto;
  padding: 0 24px;
}

@media only screen and (min-width: 768px) {
  .header_link__ohosR {
    display: flex;
  }
}

/* Search */
.search_wrap___OBMJ {
  max-width: 480px;
  position: relative;
  width: 100%;
  z-index: 2;
}

@media only screen and (min-width: 768px) {
  .search_wrap___OBMJ {
    width: 100%;
  }
}

.search_input__yIfS8 {
  background-color: #f9f9f9;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 400;
  padding: 8px 16px 8px 48px;
  text-transform: inherit;
  width: 100%;
}

.search_submit__JKzQE {
  background-color: var(--color-primary);
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px;
  color: #f7fdfc;
}

.search_close__AhKS9,
.search_submit__JKzQE {
  align-items: center;
  display: flex;
  height: 36px;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
}

.search_close__AhKS9 {
  opacity: 0;
  pointer-events: none;
  right: 0;
  transition: all 0.25s ease;
}

.search_close__AhKS9.search_active__R2hVk {
  opacity: 1;
  pointer-events: all;
  transition: all 0.25s ease;
}

/* Burger */
.burger-menu {
  --size: 32px;
  --color: #333;
  align-items: center;
  cursor: pointer;
  display: flex;
  height: var(--size);
  justify-content: center;
  margin-left: auto;
  width: var(--size);
  z-index: 2;
}

@media only screen and (min-width: 1024px) {
  .burger-menu {
    display: none;
  }
}

.burger-menu:focus {
  outline: none;
}

.burger-menu.open-menu span {
  background-color: transparent;
}

.burger-menu.open-menu span:after {
  top: 0;
  transform: rotate(45deg);
}

.burger-menu.open-menu span:before {
  top: 0;
  transform: rotate(-45deg);
}

.burger-menu span {
  height: 2px;
  position: relative;
  width: 24px;
}

.burger-menu span,
.burger-menu span:after,
.burger-menu span:before {
  background-color: var(--color);
  display: inline-block;
  transition: all 0.25s ease-in-out;
}

.burger-menu span:after,
.burger-menu span:before {
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  width: 100%;
}

.burger-menu span:before {
  top: -8px;
}

.burger-menu span:after {
  top: 8px;
}

/* Menu bar */
.menu_wrap__ntHWM {
  border-bottom: 1px solid var(--color-border);
  border-top: 1px solid var(--color-border);
}

.menu_menu__NlimN {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-left: auto;
}

@media only screen and (min-width: 1024px) {
  .menu_menu__NlimN {
    align-items: center;
    display: flex;
    flex-direction: row;
  }

  .menu_menu__NlimN .menu_link__lDtKC {
    height: 100%;
  }
}

@media only screen and (max-width: 1023px) {
  .menu_menu__NlimN {
    background-color: #fff;
    height: 100vh;
    left: 0;
    padding-top: 90px;
    position: absolute;
    top: 0;
    transform: translateY(-101%);
    transition: transform 0.25s ease-in-out;
    width: 100%;
  }

  .menu_menu__NlimN .menu_link__lDtKC {
    border-left: 0;
    padding: 12px 20px;
  }

  .menu_menu__NlimN:before {
    background-color: rgba(51, 51, 51, 0.561);
    transition: all 0.25s ease-in-out;
  }

  .menu_menu__NlimN:after,
  .menu_menu__NlimN:before {
    display: inline-block;
    height: 100vh;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
  }

  .menu_menu__NlimN:after {
    background-color: #fff;
  }
}

.menu_link__lDtKC {
  align-items: center;
  border-left: 1px solid var(--color-border, #ebebeb);
  color: var(--color-text, #2b373a);
  cursor: pointer;
  display: flex;
  font-size: 14px;
  font-weight: 600;
  gap: 16px;
  letter-spacing: 0.15px;
  line-height: 1.6;
  position: relative;
  text-transform: capitalize;
  transition: background-color 0.25s ease;
  white-space: nowrap;
}

@media only screen and (min-width: 1024px) {
  .menu_link__lDtKC {
    min-height: 70px;
    padding: 0 24px;
  }
}

@media only screen and (min-width: 1280px) {
  .menu_link__lDtKC {
    padding: 0 30px;
  }
}

.menu_link__lDtKC:last-of-type {
  border-right: 1px solid var(--color-border);
}

.menu_link__lDtKC:hover {
  background-color: var(--color-primary);
  color: #fff;
}

.menu_private__eB2_4 {
  position: absolute;
  right: 4px;
  top: 12px;
}

/* Layout */
.content {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: flex-start;
  margin-top: 40px;
  min-height: 100vh;
  width: 100%;
}

@media only screen and (min-width: 1200px) {
  .content {
    flex-direction: row;
    gap: 30px;
  }
}

.main {
  width: 100%;
}

@media only screen and (min-width: 1230px) {
  .main {
    max-width: 816px;
  }
}

.sidebar {
  align-self: stretch;
  max-width: 450px;
  min-width: 270px;
  width: 100%;
}

.sidebar.sticky {
  align-self: unset;
}

@media only screen and (min-width: 1024px) {
  .sidebar {
    max-width: 356px;
  }
}

/* Sections */
.products {
  margin-bottom: 40px;
}

.product-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}

@media only screen and (max-width: 1023px) {
  body.active-menu {
    overflow: hidden;
  }

  body.active-menu .menu {
    transform: translateY(0);
  }
}

.section-header {
  align-items: center;
  background-color: #fff;
  border: 1px solid var(--color-border);
  display: flex;
  height: 66px;
  justify-content: space-between;
  margin-bottom: 24px;
  padding: 0 22px 0 28px;
  position: relative;
}

.section-header h2,
.section-header h3,
.section-header h4 {
  color: var(--color-text);
  font-size: 20px;
  font-weight: 600;
  text-transform: inherit;
  width: 100%;
}

.section-header h2:first-letter,
.section-header h3:first-letter,
.section-header h4:first-letter {
  text-transform: capitalize;
}

.section-header h2 span,
.section-header h3 span,
.section-header h4 span {
  margin-left: 6px;
}

.section-header:before {
  background-color: var(--color-primary);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 6px;
}

.section-header .view-all {
  max-width: max-content;
  padding: 5px 16px;
  width: 100%;
}

.btn-transparent {
  background-color: transparent;
  border: 1px solid var(--color-text);
  border-radius: 4px;
  color: var(--color-text);
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  padding: 6px 16px;
  text-align: center;
  text-transform: inherit;
  transition: all 0.25s ease-in-out;
}

.btn-transparent:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

/* Badges */
.badge-featured:after,
.badge-latest:after,
.badge-portable:after,
.badge-pre-activated:after,
.badge-recommended:after,
.badge-torrent:after {
  border-radius: 2px;
  color: #fff;
  content: attr(data-badge);
  display: inline-block;
  font-size: 10px;
  left: 0;
  line-height: 1;
  padding: 4px 6px;
  position: absolute;
  text-transform: capitalize;
  top: 12px;
  z-index: 1;
}

@media only screen and (min-width: 750px) {
  .badge-featured:after,
  .badge-latest:after,
  .badge-portable:after,
  .badge-pre-activated:after,
  .badge-recommended:after,
  .badge-torrent:after {
    left: -10px;
    padding: 3px 6px 4px;
  }
}

.badge-featured:after {
  background-color: var(--color-badge-featured);
}

.badge-recommended:after {
  background-color: var(--color-badge-recommended);
}

.badge-latest:after {
  background-color: var(--color-badge-latest);
}

.badge-portable:after {
  background-color: var(--color-badge-portable);
}

.badge-torrent:after {
  background-color: var(--color-badge-torrent);
}

.badge-pre-activated:after {
  background-color: var(--color-badge-pre-activated);
}

/* Cards */
.card_desc__b66Ca,
.card_title__az7G7 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card_wrap__S35wt {
  align-items: flex-start;
  background-color: #fff;
  border: 1px solid var(--color-border);
  display: flex;
  flex-wrap: wrap;
  padding: 12px 18px 12px 12px;
  position: relative;
}

@media only screen and (min-width: 870px) {
  .card_wrap__S35wt {
    flex-wrap: nowrap;
  }
}

@media only screen and (min-width: 750px) {
  .card_wrap__S35wt .card_bordered__EbLSO {
    position: relative;
  }

  .card_wrap__S35wt .card_bordered__EbLSO:after {
    background-color: var(--color-border);
    content: "";
    height: 70px;
    left: 0;
    position: absolute;
    top: 0;
    width: 1px;
  }

  .card_wrap__S35wt .card_bordered__EbLSO:last-of-type:after {
    content: none;
  }
}

.card_icon__mmJ8V {
  aspect-ratio: 1 / 1;
  cursor: pointer;
  flex-shrink: 0;
  line-height: 0;
  margin: auto 0;
  overflow: hidden;
  position: relative;
  width: 62px;
}

.card_icon__mmJ8V img {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.card_info__LY5ob {
  padding: 4px 6px 0 12px;
  width: 80%;
}

@media only screen and (min-width: 750px) {
  .card_info__LY5ob {
    max-width: 360px;
    width: 33%;
  }
}

@media only screen and (min-width: 800px) {
  .card_info__LY5ob {
    width: 37%;
  }
}

@media only screen and (min-width: 840px) {
  .card_info__LY5ob {
    width: 40%;
  }
}

@media only screen and (min-width: 870px) {
  .card_info__LY5ob {
    width: 50%;
  }
}

.card_title__az7G7 {
  color: var(--color-text);
  cursor: pointer;
  display: block;
  font-size: 16px;
  font-weight: 600;
}

.card_desc__b66Ca {
  color: var(--color-light);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}

.card_category__4DBde {
  color: var(--color-primary);
  cursor: pointer;
  display: block;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
}

.card_data__R40qV {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 12px 0;
  padding: 7px 0;
  width: 100%;
}

@media only screen and (min-width: 500px) {
  .card_data__R40qV {
    align-items: flex-start;
    flex-direction: column;
    margin: 0;
    max-width: 140px;
    padding: 7px 20px 0;
    width: 40%;
  }
}

@media only screen and (min-width: 750px) {
  .card_data__R40qV {
    margin-left: auto;
  }
}

.card_rating__b5geG {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: max-content;
  padding: 12px 0 0;
  width: 100%;
}

@media only screen and (min-width: 750px) {
  .card_rating__b5geG {
    padding: 12px 16px 0;
  }
}

.card_rating__b5geG .card_rating-text__SvgeU {
  color: var(--color-text);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 8px;
  text-align: left;
}

@media only screen and (min-width: 500px) {
  .card_rating__b5geG .card_rating-text__SvgeU {
    text-align: center;
  }
}

.card_size__8bQyg {
  align-items: center;
  color: var(--color-text);
  display: flex;
  font-size: 22px;
  font-weight: 600;
  justify-content: flex-end;
  line-height: 36px;
  margin-left: auto;
  margin-top: auto;
  max-width: 90px;
  padding-left: 24px;
  text-align: right;
  text-transform: uppercase;
  width: 100%;
}

@media only screen and (min-width: 750px) {
  .card_size__8bQyg {
    line-height: 64px;
    margin-left: 0;
  }
}

.card_size__8bQyg span {
  font-size: 16px;
}

.card_primary__29Dv6 {
  align-items: center;
  cursor: pointer;
  display: flex;
  gap: 6px;
}

@media only screen and (min-width: 500px) {
  .card_primary__29Dv6 {
    margin-bottom: 6px;
  }
}

.card_primary__29Dv6.card_android-games__fFaK9,
.card_primary__29Dv6.card_android__vpTx_ {
  color: var(--color-android);
}

.card_primary__29Dv6.card_macos__hYQAr {
  color: var(--color-mac);
}

.card_primary__29Dv6.card_pc-games____Ew3,
.card_primary__29Dv6.card_windows__IDOFA {
  color: var(--color-windows);
}

.card_primary__29Dv6.card_ebooks__55OAG {
  color: var(--color-books);
}

.card_primary__29Dv6.card_video-courses__OPyQK {
  color: var(--color-android);
}

.card_primary-text__fEKA_ {
  color: var(--color-text);
  font-size: 12px;
  font-weight: 600;
  text-transform: capitalize;
  white-space: nowrap;
}

.card_primary-text__fEKA_:first-letter {
  text-transform: capitalize;
}

.card_meta-data__L5O0g,
.card_meta-item__TwrDI {
  align-items: center;
  display: flex;
}

.card_meta-item__TwrDI {
  margin-right: 12px;
}

.card_meta-item__TwrDI:last-child {
  margin-right: 0;
}

.card_meta-item__TwrDI span {
  color: var(--color-light);
  margin-right: 8px;
}

.card_meta-item__TwrDI span:last-child {
  margin-right: 0;
}

.card_meta-icon__nd_yu {
  --icon-size: 14px;
  color: #aaa;
  margin-right: 6px;
}

.card_meta-text__KdSKY {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.1;
  text-transform: inherit;
}

.card_bordered__EbLSO {
  position: relative;
}

/* Ratings */
.ratings {
  --star-size: 16px;
  --clr-star-default: #ccc;
  --clr-star-rated: #ffc107;
  align-items: center;
  display: inline-flex;
  gap: 4px;
  max-width: max-content;
  position: relative;
}

.ratings:after {
  bottom: -2px;
  content: "";
  left: -2px;
  position: absolute;
  right: -2px;
  top: -2px;
  z-index: 0;
}

.ratings.rated .rating-star {
  cursor: auto;
}

.rating-star {
  cursor: pointer;
  height: var(--star-size);
  min-width: var(--star-size);
  width: var(--star-size);
  z-index: 1;
}

.rating-star.disabled {
  pointer-events: none;
}

.rating-star svg {
  height: var(--star-size);
  width: var(--star-size);
}

.rating-star path {
  fill: var(--clr-star-default);
}

.half-star.faved,
.rating-star.faved path {
  fill: var(--clr-star-rated);
}

/* Sidebar widget */
.widget_wrap__lfits {
  background-color: #fff;
  border: 1px solid var(--color-border);
  flex-grow: 1;
  margin-bottom: 26px;
  padding: 20px 20px 26px;
  position: relative;
}

.widget_wrap__lfits p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
}

.widget_wrap__lfits p:not(:last-of-type) {
  margin-bottom: 12px;
}

@media only screen and (min-width: 768px) {
  .widget_wrap__lfits {
    border-radius: 8px;
    padding: 20px 26px 26px;
  }
}

.widget_header__vge_D {
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 16px;
  padding-bottom: 22px;
}

.widget_header__vge_D h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}

.card_card__Ik6jQ {
  align-items: flex-start;
  display: flex;
  gap: 12px;
  margin-bottom: 22px;
}

.card_card__Ik6jQ:last-child {
  margin-bottom: 0;
}

.card_icon__HHN_0 {
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  cursor: pointer;
  flex-shrink: 0;
  line-height: 0;
  margin: auto 0;
  overflow: hidden;
  padding: 5px;
  position: relative;
  width: 62px;
}

.card_icon__HHN_0 img {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.card_details__LB_UX {
  max-width: 230px;
  padding-top: 2px;
  width: 72%;
}

.card_title__c55k9 {
  display: block;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 2px;
  text-transform: inherit;
}

.card_category__eFAC2 {
  color: var(--color-primary);
  display: block;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 5px;
  text-transform: inherit;
}

.card_size__Th067 {
  align-items: center;
  display: flex;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
}

.card_size__Th067 span {
  font-size: 13px;
  text-transform: uppercase;
}

/* Footer */
.footer_container__TjI4Q {
  background-color: #1e2024;
  margin-top: 4rem;
}

@media only screen and (min-width: 768px) {
  .footer_container__TjI4Q {
    margin-top: 4rem;
  }
}

.footer_wrap__oayoq {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  padding: 68px 0 0;
}

@media only screen and (min-width: 768px) {
  .footer_wrap__oayoq {
    padding: 68px 0 40px;
  }
}

.footer_menu__K_4mw {
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .footer_menu__K_4mw {
    width: 50%;
  }
}

@media only screen and (min-width: 1024px) {
  .footer_menu__K_4mw {
    width: 22%;
  }
}

.footer_list__MPX79 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
  width: 100%;
}

.footer_list__MPX79 a {
  align-items: center;
  color: var(--color-footer-text);
  display: flex;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  text-transform: capitalize;
}

.footer_list__MPX79 a[target="_blank"]:after {
  aspect-ratio: 1 / 1;
  background-image: url("data:image/svg+xml,%3Csvg fill='%23bbb' height='512' viewBox='0 0 36 36' width='512' xmlns='http://www.w3.org/2000/svg' data-name='Layer 3'%3E%3Cpath d='M27.9 6.1H8.1a2 2 0 0 0 0 4h14.97L6.687 26.485a2 2 0 1 0 2.828 2.828L25.9 12.929V27.9a2 2 0 0 0 4 0V8.1a2 2 0 0 0-2-2z'/%3E%3C/svg%3E");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  margin-left: 6px;
  width: 12px;
}

.footer_list__MPX79 a:hover {
  color: #fff;
}

.footer_list__MPX79 a:hover[target="_blank"]:after {
  background-image: url("data:image/svg+xml,%3Csvg fill='%23fff' height='512' viewBox='0 0 36 36' width='512' xmlns='http://www.w3.org/2000/svg' data-name='Layer 3'%3E%3Cpath d='M27.9 6.1H8.1a2 2 0 0 0 0 4h14.97L6.687 26.485a2 2 0 1 0 2.828 2.828L25.9 12.929V27.9a2 2 0 0 0 4 0V8.1a2 2 0 0 0-2-2z'/%3E%3C/svg%3E");
}

.footer_menu-title__cL4em {
  color: #d9d9d9;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 16px;
  text-transform: capitalize;
}

.footer_links___UBMh {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 0 0 40px;
}

@media only screen and (min-width: 768px) {
  .footer_links___UBMh {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

@media only screen and (min-width: 1024px) {
  .footer_links___UBMh {
    padding: 40px 0;
  }
}

.footer_links___UBMh .footer_list__MPX79 {
  align-items: center;
  display: flex;
  flex-basis: 100%;
  flex-direction: row;
  gap: 16px;
  margin-bottom: 0;
  max-width: max-content;
}

@media only screen and (min-width: 768px) {
  .footer_links___UBMh .footer_list__MPX79 {
    flex-wrap: wrap;
    order: 2;
  }
}

@media only screen and (min-width: 1024px) {
  .footer_links___UBMh .footer_list__MPX79 {
    order: 0;
  }
}

.footer_copyright-wrap__kvHSM {
  background-color: #21282a;
  padding: 20px 0;
}

.footer_copyright__FMN9Y {
  color: var(--color-footer-text);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  text-transform: inherit;
}

@media only screen and (max-width: 767px) {
  .footer_copyright__FMN9Y {
    text-align: center;
  }
}

.footer_copyright__FMN9Y span {
  color: #fff;
  font-weight: 600;
}

/* Lightweight stars (replaces repeated SVGs) */
.stars {
  --percent: 0%;
  display: inline-block;
  font-size: var(--star-size);
  letter-spacing: 4px;
  line-height: 1;
  position: relative;
  white-space: nowrap;
}

.stars:before {
  color: var(--clr-star-default, #ccc);
  content: "★★★★★";
}

.stars:after {
  color: var(--clr-star-rated, #ffc107);
  content: "★★★★★";
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: var(--percent);
}


/* Category + product pages */
.empty-state {
  background-color: #fff;
  border: 1px solid var(--color-border);
  color: var(--color-light);
  font-size: 14px;
  line-height: 1.6;
  padding: 32px;
  text-align: center;
}

.breadcrumbs {
  color: var(--color-light);
  font-size: 12px;
  margin-bottom: 16px;
}

.breadcrumbs a {
  color: var(--color-primary);
}

.product-page {
  background-color: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 24px;
}

.product-hero {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.product-icon {
  align-items: center;
  background-color: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  display: flex;
  flex-shrink: 0;
  height: 96px;
  justify-content: center;
  padding: 10px;
  width: 96px;
}

.product-summary {
  flex: 1;
  min-width: 240px;
}

.product-summary h1 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 6px;
}

.product-desc {
  color: var(--color-light);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.product-meta {
  color: var(--color-text);
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  gap: 16px;
}

.product-rating .ratings {
  margin-left: 6px;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.btn-primary {
  align-items: center;
  background-color: var(--color-primary);
  border-radius: 4px;
  color: #fff;
  display: inline-flex;
  font-size: 14px;
  font-weight: 600;
  justify-content: center;
  line-height: 1;
  padding: 10px 16px;
  text-transform: inherit;
}

.btn-primary:hover {
  filter: brightness(0.95);
}

.btn-outline {
  align-items: center;
  background-color: transparent;
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  color: var(--color-text);
  display: inline-flex;
  font-size: 14px;
  font-weight: 600;
  justify-content: center;
  line-height: 1;
  padding: 10px 16px;
  text-transform: inherit;
}

.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.product-badge {
  background-color: var(--color-badge-featured);
  border-radius: 2px;
  color: #fff;
  display: inline-block;
  font-size: 10px;
  margin-bottom: 10px;
  padding: 4px 6px;
  text-transform: uppercase;
}

.product-details {
  border-top: 1px solid var(--color-border);
  margin-top: 20px;
  padding-top: 16px;
}

.product-details h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.product-details p {
  color: var(--color-light);
  line-height: 1.7;
}
