@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap");
.hidden {
  display: none;
}

@media (min-width: 576px) {
  .sm-block {
    display: block;
  }
}

@media (min-width: 768px) {
  .md-block {
    display: block;
  }
}

@media (min-width: 992px) {
  .lg-block {
    display: block;
  }
}

@media (min-width: 768px) {
  .menu-container {
    display: none;
  }
}

.hamburger {
  display: inline-block;
  cursor: pointer;
  padding: 10px;
  border-radius: 5px;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 25px;
  margin-bottom: 5px;
  background-color: var(--bg-color, black);
  transition: transform 0.3s ease;
}

.hamburger span:last-child {
  margin-bottom: 0;
}

/* .active is added to the .hamburger element when it is clicked so
CSS to rotate and translate the lines of the icon to get X */
.hamburger.active span:first-child {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:last-child {
  transform: rotate(-45deg) translate(5px, -5px);
}

.cart-wrapperCHUPA {
  padding: -4px 104px 0 104px;
  /*max-width: 1350px;*/
}

.cart-item__wrapperCHUPA:not(:last-child) {
  margin-bottom: 12px;
}
.cart-item__wrapperCHUPA::after {
  content: "";
  display: block;
  margin-top: 4px;
  height: 2px;
  width: 100%;
  background-color: var(--second-color);
  opacity: 0.3;
}

.cart-item__titleCHUPA {
  font-weight: 400;
  font-size: 20px;
  line-height: 16px;
}

::-webkit-scrollbar {
  width: 0;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  scroll-behavior: smooth;
}

:root {
  --bg-color:#121212;
  --primary-color:#1a1a1a;
  --second-color:#FFD600;
  --text-color:#f5f5f5;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  min-width: 320px;
}

a {
  text-decoration: none;
  color: var(--text-color);
}

ul {
  list-style: none;
}

/* ------------ AUTH & REG ------------ */
.auth-wrapper {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.auth-wrapper__content {
  padding: 38px 50px 30px;
  background-color: var(--primary-color);
  box-shadow: 0px 0px 15px 1px rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.auth-wrapper__title h1 {
  font-style: normal;
  font-weight: 400;
  font-size: 36px;
  line-height: 47px;
  margin-bottom: 48px;
}

.auth-form__content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.auth-inputs__item {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
}
.auth-inputs__item:not(:last-child) {
  margin-bottom: 20px;
}
.auth-inputs__item p {
  margin-bottom: 4px;
}
.auth-inputs__item input {
  background: rgba(217, 217, 217, 0.1);
  border: none;
  padding: 4px;
  font-size: 18px;
  color: var(--text-color);
  width: 300px;
  height: 40px;
}

.auth-form__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  background: var(--second-color);
  margin-top: 24px;
  margin-bottom: 14px;
  padding: 2px 50px;
  transition: all 0.5s ease;
  font-weight: 400;
  font-size: 18px;
  line-height: 31px;
  color: var(--text-color);
  cursor: pointer;
}
.auth-form__btn:hover {
  background: #d34f40;
}
.auth-form__btn:active {
  transform: translateY(2px);
}

.reg-form__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  background: var(--second-color);
  margin-top: 24px;
  margin-bottom: 14px;
  padding: 2px 14px;
  transition: all 0.5s ease;
  font-weight: 400;
  font-size: 18px;
  line-height: 31px;
  color: var(--text-color);
  cursor: pointer;
}
.reg-form__btn:hover {
  background: #d34f40;
}
.reg-form__btn:active {
  transform: translateY(2px);
}

.auth-wrapper__info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
}
.auth-wrapper__info span {
  opacity: 0.5;
}
.auth-wrapper__info a:hover {
  text-decoration: underline;
  opacity: 1;
}
.auth-wrapper__info p:not(:last-child) {
  margin-bottom: 8px;
}

/* ------------ HEADER ------------ */
.header {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: space-between;
  padding: 8px 16px;
  background-color: var(--primary-color);
  z-index: 12;
}

.header-logo {
  font-weight: 400;
  font-size: 24px;
  line-height: 31px;
  display: flex;
  align-items: center;
  height: 46px;
}

.header-wrapper, .header-content__items {
  display: flex;
  align-items: center;
  position: relative;
}

.header-content__item img {
  height: 30px;
}

.header-items__wrapper {
  display: flex;
  align-items: center;
}
@media (max-width: 767.98px) {
  .header-items__wrapper {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: -190px;
    right: 0;
    width: 100%;
    height: 250px;
    margin-right: 0 !important;
    transition: top ease 0.5s 0.05s;
    justify-content: space-between;
    padding: 16px 16px;
    background-color: var(--primary-color);
    z-index: 11;
  }
}
.header-items__wrapper.active {
  display: flex;
  top: 60px;
}

.header-content__items div:not(:last-child) {
  margin-right: 24px;
}
.header-item__cart {
  position: relative;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-item__cart a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.header-item__cart p {
  margin-left: 10px;
}

@media (min-width: 768px) {
  .header-item__info {
    display: none;
  }
}

.header-cart__amount {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 20px;
  width: 20px;
  position: absolute;
  top: -5px;
  left: 22px;
  padding: 8px;
  background: var(--second-color);
  border-radius: 50%;
  font-size: 14px;
}

.header-item__avatar {
  width: 40px;
  height: 40px;
  background: var(--text-color);
  border-radius: 50%;
}

/* ------------ ASIDE ------------ */
.aside {
  transition: left ease 0.5s 0.05s;
  z-index: 11;
  width: 240px;
  height: calc(100vh - 60px);
  position: fixed;
  bottom: 0;
  left: 0;
  background: var(--primary-color);
  padding-top: 104px;
}
@media (max-width: 767.98px) {
  .aside {
    left: -240px;
  }
}

.aside.active {
  display: block;
  left: 0px;
}

.aside-navbar__items {
  font-weight: 700;
  font-size: 20px;
  line-height: 31px;
}

.aside-navbar__item {
  padding: 10px 10px 10px 16px;
  display: flex;
  align-items: center;
  position: relative;
  opacity: 0.5;
  transition: all 0.3s;
  position: relative;
}
.aside-navbar__item:hover {
  background-color: rgba(250, 87, 69, 0.05);
  opacity: 0.7;
}

.aside-item__link {
  width: 100%;
  height: 100%;
}

.aside-link-content {
  max-width: 200px;
  display: flex;
  align-items: center;
  position: relative;
}

.aside-item__icon {
  margin-right: 10px;
  height: 20px;
}

.aside-item__active {
  opacity: 1;
  background-color: rgba(250, 87, 69, 0.05);
}
.aside-item__active:hover {
  opacity: 1;
  background-color: rgba(250, 87, 69, 0.05);
}
.aside-item__active::before {
  content: "";
  height: 100%;
  width: 4px;
  background: var(--second-color);
  position: absolute;
  left: 0;
}

/* ------------ PRODUCTS ------------ */
.product, .profile, .cart {
  margin: 60px 16px 0 240px;
}
@media (max-width: 767.98px) {
  .product, .profile, .cart {
    margin: 60px 0px 0 0;
  }
}

.product-wrapper {
  margin: 1px 104px 0 104px;
}
@media (max-width: 575.98px) {
  .product-wrapper {
    margin: 1px auto 0;
  }
}

.product-wrapper__title {
  font-weight: 400;
  font-size: 34px;
  line-height: 49px;
  margin-bottom: 50px;
}

.product-wrapper__items {
  /*max-width: 1350px;*/
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 767.98px) {
  .product-wrapper__items {
    justify-content: center;
  }
}

.product-item__wrapper {
  margin: 0 18px 36px;
}
@media (max-width: 575.98px) {
  .product-item__wrapper {
    justify-content: center;
  }
}

.product-items__item {
  width: 300px;
  height: 440px;
  background-color: var(--primary-color);
  box-shadow: 0px 0px 15px 1px rgba(0, 0, 0, 0.25);
  padding: 14px;
  position: relative;
}
@media (max-width: 575.98px) {
  .product-items__item {
    margin-right: 0;
  }
}

.product-item__img {
  height: 70%;
  border-radius: 2px;
  position: relative;
  display: flex;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 16px;
}
.product-item__img img {
  height: 100%;
}

.product-item__info {
  margin-bottom: 20px;
}

.product-info__title {
  font-weight: 700;
}

.product-info__description {
  opacity: 0.5;
  max-height: 36px;
  overflow: hidden;
}

.product-item__footer {
  display: flex;
  justify-content: end;
  align-items: center;
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-weight: 700;
}

.product-info__price {
  margin-right: 14px;
}

.item-btn {
  border: 1px solid var(--second-color);
  background: none;
  padding: 8px;
  color: var(--text-color);
  cursor: pointer;
  transition: all 0.3s;
}
.item-btn:hover {
  background: rgba(255, 214, 0, 0.25);
}
.item-btn:active {
  transform: translateY(2px);
}

/* ------------ CART ------------ */
.cart-wrapper {
  margin: 1px 104px 0 104px;
  /*max-width: 1350px;*/
}
@media (max-width: 575.98px) {
  .cart-wrapper {
    margin: 1px 16px 0;
  }
}

.cart-wrapper__title {
  font-weight: 400;
  font-size: 34px;
  line-height: 49px;
  margin-bottom: 50px;
}
@media (max-width: 575.98px) {
  .cart-wrapper__title {
    font-size: 24px;
  }
}

.cart-item__wrapper:not(:last-child) {
  margin-bottom: 20px;
}
.cart-item__wrapper::after {
  content: "";
  display: block;
  margin-top: 20px;
  height: 2px;
  width: 100%;
  background-color: var(--second-color);
  opacity: 0.3;
}

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

.cart-item__title {
  font-weight: 400;
  font-size: 32px;
  line-height: 41px;
}
@media (max-width: 575.98px) {
  .cart-item__title {
    font-size: 24px;
  }
}

.cart-item__info {
  width: 400px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-info__amount {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 20px;
}

.cart-amount__remove {
  margin-right: 24px;
  border: none;
  background: none;
  color: var(--text-color);
  font-weight: 400;
  font-size: 40px;
  line-height: 50px;
  transition: opacity 0.1s ease-in;
  cursor: pointer;
  opacity: 0.5;
}

.cart-amount__add {
  margin-left: 24px;
  border: none;
  background: none;
  color: var(--text-color);
  font-weight: 400;
  font-size: 40px;
  line-height: 50px;
  transition: opacity 0.1s ease-in;
  cursor: pointer;
  opacity: 0.5;
}
.cart-amount__add:hover {
  opacity: 1;
}

.cart-amount__remove:hover {
  opacity: 1;
}

.cart-amount__input {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px 8px;
  border: none;
  background: none;
  width: 68px;
  color: var(--text-color);
  font-weight: 400;
  font-size: 40px;
  line-height: 52px;
}

.cart-info__price {
  margin-left: 14px;
  font-weight: 400;
  font-size: 32px;
  line-height: 41px;
}

.cart-wrapper__purchase {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin: 58px 0 84px;
  margin-bottom: 84px;
}

.cart-promo__title {
  margin-bottom: 4px;
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  opacity: 0.5;
}

.cart-promo__content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}

.cart-promo__input {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
  border: none;
  padding: 4px;
  background: rgba(217, 217, 217, 0.1);
  height: 44px;
  font-weight: 400;
  font-size: 24px;
  line-height: 31px;
  color: var(--text-color);
}
.cart-promo__input:focus {
  outline: none;
}

.cart-promo__btn {
  border: none;
  padding: 6px 14px;
  background: var(--second-color);
  transition: all 0.5s ease;
  font-weight: 400;
  font-size: 24px;
  line-height: 31px;
  color: var(--text-color);
  cursor: pointer;
}
@media (max-width: 575.98px) {
  .cart-promo__btn {
    font-size: 18px;
  }
}
.cart-promo__btn:hover {
  background: #d34f40;
}

.cart-purchase__buy {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
@media (max-width: 575.98px) {
  .cart-purchase__buy {
    width: 100%;
    justify-content: space-between;
  }
}

.cart-buy__price {
  margin-right: 18px;
  margin-bottom: 16px;
  font-weight: 400;
  font-size: 34px;
  line-height: 31px;
}

.cart-buy__btn {
  border: none;
  margin-bottom: 16px;
  padding: 6px 66px;
  background: var(--second-color);
  transition: all 0.5s ease;
  font-weight: 400;
  font-size: 24px;
  line-height: 31px;
  color: var(--text-color);
  cursor: pointer;
}
@media (max-width: 575.98px) {
  .cart-buy__btn {
    font-size: 18px;
  }
}
.cart-buy__btn:hover {
  background: #d34f40;
}
.cart-buy__btn:active {
  transform: translateY(2px);
}

/* ------------ PROFILE ------------ */
.profile-wrapper {
  margin: 1px 104px 0 104px;
  /*max-width: 1350px;*/
}
@media (max-width: 575.98px) {
  .profile-wrapper {
    margin: 1px 16px 0;
  }
}

.profile-wrapper__title {
  font-weight: 400;
  font-size: 34px;
  line-height: 49px;
  margin-bottom: 50px;
}
@media (max-width: 575.98px) {
  .profile-wrapper__title {
    font-size: 24px;
  }
}

.profile-tabs__nav {
  margin-bottom: 54px;
}

.tabs__nav-btn {
  margin-bottom: 16px;
  border: none;
  background: none;
  position: relative;
  color: var(--text-color);
  font-weight: 500;
  font-size: 24px;
  line-height: 31px;
  cursor: pointer;
}
.tabs__nav-btn:not(:last-child) {
  margin-right: 48px;
}
.tabs__nav-btn::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 4px;
}
.tabs__nav-btn:hover::after, .tabs__nav-btn.active::after {
  background-color: var(--second-color);
}

.tabs__item {
  display: none;
}
.tabs__item.active {
  display: block;
}

.tabs-item__static {
  font-size: 18px;
  margin-bottom: 32px;
}

.tabs-static__item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
}
.tabs-static__item p:not(:last-child) {
  margin-right: 8px;
}

.tabs-inputs__item {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
}
.tabs-inputs__item:not(:last-child) {
  margin-bottom: 20px;
}
.tabs-inputs__item label {
  display: block;
  margin-bottom: 0.5rem;
}
.tabs-inputs__item input {
  background: rgba(217, 217, 217, 0.1);
  border: none;
  padding: 4px;
  font-size: 18px;
  color: var(--text-color);
  width: 300px;
  height: 40px;
}
@media (max-width: 575.98px) {
  .tabs-inputs__item input {
    width: 100%;
  }
}

.tabs-form__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  background: var(--second-color);
  margin-top: 48px;
  margin-bottom: 14px;
  padding: 2px 50px;
  transition: all 0.3s ease;
  font-weight: 400;
  font-size: 18px;
  line-height: 31px;
  color: var(--text-color);
  cursor: pointer;
}
@media (max-width: 575.98px) {
  .tabs-form__btn {
    margin: 48px auto 14px;
  }
}
.tabs-form__btn:active {
  transform: translateY(2px);
}

.profile-tabs__content {
  overflow-x: scroll;
  width: 100%;
}

/*# sourceMappingURL=style.css.map */


/* ======== Rebrand Enhancements (2025-08) ======== */
.header {
  backdrop-filter: saturate(140%) blur(6px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-items__item a,
.header-content__items a {
  transition: color .2s ease, transform .2s ease;
}
.header-items__item a:hover,
.header-content__items a:hover {
  color: var(--second-color);
  transform: translateY(-1px);
}

/* Profile dropdown in top menu */
.profile-menu {
  position: relative;
}
.profile-dropdown {
  position: absolute;
  top: 48px;
  right: 0;
  width: 280px;
  background: #191919;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 10px 30px rgba(0,0,0,.5);
  border-radius: 14px;
  padding: 14px;
  display: none;
  z-index: 100;
}
.profile-dropdown.show { display: block; }
.profile-dropdown .pd-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
}
.profile-dropdown .pd-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}
.profile-dropdown .pd-actions a {
  display: inline-block;
  text-align: center;
  padding: 10px 12px;
  border-radius: 10px;
  background: #222;
  border: 1px solid rgba(255,255,255,.06);
  color: var(--text-color);
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.profile-dropdown .pd-actions a:hover {
  background: var(--second-color);
  color: #111;
  transform: translateY(-1px);
}

/* Product & package cards hover */
.product-items__item,
.package-items__item,
.cart-item,
.action-item {
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  border-color: rgba(255,214,0,0.12) !important;
}
.product-items__item:hover,
.package-items__item:hover,
.cart-item:hover,
.action-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(0,0,0,.45);
}

/* Buttons */
.item-btn, .tabs-form__btn, .btn, .buy-btn {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--second-color);
  color: #111;
  background: var(--second-color);
  border-radius: 12px;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.item-btn:hover, .tabs-form__btn:hover, .btn:hover, .buy-btn:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(255,214,0,.2);
}
.item-btn:active, .tabs-form__btn:active, .btn:active, .buy-btn:active {
  transform: translateY(0) scale(.98);
}

/* Cart counter bump animation */
@keyframes bump {
  0% { transform: scale(1); }
  20% { transform: scale(1.15); }
  40% { transform: scale(0.95); }
  60% { transform: scale(1.05); }
  100% { transform: scale(1); }
}
#cart_count.bump {
  animation: bump .5s ease;
}

/* Fly-to-cart helper */
.fly-dot {
  position: fixed;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--second-color);
  pointer-events: none;
  z-index: 9999;
  box-shadow: 0 0 0 4px rgba(255,214,0,0.2);
  transform: translate(-50%, -50%);
}
