:root {
  --toastify-color-light: #fff;
  --toastify-color-dark: #121212;
  --toastify-color-info: #3498db;
  --toastify-color-success: #07bc0c;
  --toastify-color-warning: #f1c40f;
  --toastify-color-error: hsl(6, 78%, 57%);
  --toastify-color-transparent: rgba(255, 255, 255, 0.7);

  --toastify-icon-color-info: var(--toastify-color-info);
  --toastify-icon-color-success: var(--toastify-color-success);
  --toastify-icon-color-warning: var(--toastify-color-warning);
  --toastify-icon-color-error: var(--toastify-color-error);

  --toastify-container-width: fit-content;
  --toastify-toast-width: 320px;
  --toastify-toast-offset: 16px;
  --toastify-toast-top: max(var(--toastify-toast-offset), env(safe-area-inset-top));
  --toastify-toast-right: max(var(--toastify-toast-offset), env(safe-area-inset-right));
  --toastify-toast-left: max(var(--toastify-toast-offset), env(safe-area-inset-left));
  --toastify-toast-bottom: max(var(--toastify-toast-offset), env(safe-area-inset-bottom));
  --toastify-toast-background: #fff;
  --toastify-toast-padding: 14px;
  --toastify-toast-min-height: 64px;
  --toastify-toast-max-height: 800px;
  --toastify-toast-bd-radius: 6px;
  --toastify-toast-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  --toastify-font-family: sans-serif;
  --toastify-z-index: 9999;
  --toastify-text-color-light: #757575;
  --toastify-text-color-dark: #fff;

  /* Used only for colored theme */
  --toastify-text-color-info: #fff;
  --toastify-text-color-success: #fff;
  --toastify-text-color-warning: #fff;
  --toastify-text-color-error: #fff;

  --toastify-spinner-color: #616161;
  --toastify-spinner-color-empty-area: #e0e0e0;
  --toastify-color-progress-light: linear-gradient(to right, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55);
  --toastify-color-progress-dark: #bb86fc;
  --toastify-color-progress-info: var(--toastify-color-info);
  --toastify-color-progress-success: var(--toastify-color-success);
  --toastify-color-progress-warning: var(--toastify-color-warning);
  --toastify-color-progress-error: var(--toastify-color-error);
  /* used to control the opacity of the progress trail */
  --toastify-color-progress-bgo: 0.2;
}

.Toastify__toast-container {
  z-index: var(--toastify-z-index);
  -webkit-transform: translate3d(0, 0, var(--toastify-z-index));
  position: fixed;
  width: var(--toastify-container-width);
  box-sizing: border-box;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.Toastify__toast-container--top-left {
  top: var(--toastify-toast-top);
  left: var(--toastify-toast-left);
}
.Toastify__toast-container--top-center {
  top: var(--toastify-toast-top);
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
}
.Toastify__toast-container--top-right {
  top: var(--toastify-toast-top);
  right: var(--toastify-toast-right);
  align-items: end;
}
.Toastify__toast-container--bottom-left {
  bottom: var(--toastify-toast-bottom);
  left: var(--toastify-toast-left);
}
.Toastify__toast-container--bottom-center {
  bottom: var(--toastify-toast-bottom);
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
}
.Toastify__toast-container--bottom-right {
  bottom: var(--toastify-toast-bottom);
  right: var(--toastify-toast-right);
  align-items: end;
}

.Toastify__toast {
  --y: 0;
  position: relative;
  touch-action: none;
  width: var(--toastify-toast-width);
  min-height: var(--toastify-toast-min-height);
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: var(--toastify-toast-padding);
  border-radius: var(--toastify-toast-bd-radius);
  box-shadow: var(--toastify-toast-shadow);
  max-height: var(--toastify-toast-max-height);
  font-family: var(--toastify-font-family);
  /* webkit only issue #791 */
  z-index: 0;
  /* inner swag */
  display: flex;
  flex: 1 auto;
  align-items: center;
  word-break: break-word;
}

@media only screen and (max-width: 480px) {
  .Toastify__toast-container {
    width: 100vw;
    left: env(safe-area-inset-left);
    margin: 0;
  }
  .Toastify__toast-container--top-left,
  .Toastify__toast-container--top-center,
  .Toastify__toast-container--top-right {
    top: env(safe-area-inset-top);
    transform: translateX(0);
  }
  .Toastify__toast-container--bottom-left,
  .Toastify__toast-container--bottom-center,
  .Toastify__toast-container--bottom-right {
    bottom: env(safe-area-inset-bottom);
    transform: translateX(0);
  }
  .Toastify__toast-container--rtl {
    right: env(safe-area-inset-right);
    left: initial;
  }
  .Toastify__toast {
    --toastify-toast-width: 100%;
    margin-bottom: 0;
    border-radius: 0;
  }
}

.Toastify__toast-container[data-stacked='true'] {
  width: var(--toastify-toast-width);
}

.Toastify__toast--stacked {
  position: absolute;
  width: 100%;
  transform: translate3d(0, var(--y), 0) scale(var(--s));
  transition: transform 0.3s;
}

.Toastify__toast--stacked[data-collapsed] .Toastify__toast-body,
.Toastify__toast--stacked[data-collapsed] .Toastify__close-button {
  transition: opacity 0.1s;
}

.Toastify__toast--stacked[data-collapsed='false'] {
  overflow: visible;
}

.Toastify__toast--stacked[data-collapsed='true']:not(:last-child) > * {
  opacity: 0;
}

.Toastify__toast--stacked:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: calc(var(--g) * 1px);
  bottom: 100%;
}

.Toastify__toast--stacked[data-pos='top'] {
  top: 0;
}

.Toastify__toast--stacked[data-pos='bot'] {
  bottom: 0;
}

.Toastify__toast--stacked[data-pos='bot'].Toastify__toast--stacked:before {
  transform-origin: top;
}

.Toastify__toast--stacked[data-pos='top'].Toastify__toast--stacked:before {
  transform-origin: bottom;
}

.Toastify__toast--stacked:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  transform: scaleY(3);
  z-index: -1;
}

.Toastify__toast--rtl {
  direction: rtl;
}

.Toastify__toast--close-on-click {
  cursor: pointer;
}

.Toastify__toast-icon {
  margin-inline-end: 10px;
  width: 22px;
  flex-shrink: 0;
  display: flex;
}

.Toastify--animate {
  animation-fill-mode: both;
  animation-duration: 0.5s;
}

.Toastify--animate-icon {
  animation-fill-mode: both;
  animation-duration: 0.3s;
}

.Toastify__toast-theme--dark {
  background: var(--toastify-color-dark);
  color: var(--toastify-text-color-dark);
}

.Toastify__toast-theme--light {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}

.Toastify__toast-theme--colored.Toastify__toast--default {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}

.Toastify__toast-theme--colored.Toastify__toast--info {
  color: var(--toastify-text-color-info);
  background: var(--toastify-color-info);
}

.Toastify__toast-theme--colored.Toastify__toast--success {
  color: var(--toastify-text-color-success);
  background: var(--toastify-color-success);
}

.Toastify__toast-theme--colored.Toastify__toast--warning {
  color: var(--toastify-text-color-warning);
  background: var(--toastify-color-warning);
}

.Toastify__toast-theme--colored.Toastify__toast--error {
  color: var(--toastify-text-color-error);
  background: var(--toastify-color-error);
}

.Toastify__progress-bar-theme--light {
  background: var(--toastify-color-progress-light);
}

.Toastify__progress-bar-theme--dark {
  background: var(--toastify-color-progress-dark);
}

.Toastify__progress-bar--info {
  background: var(--toastify-color-progress-info);
}

.Toastify__progress-bar--success {
  background: var(--toastify-color-progress-success);
}

.Toastify__progress-bar--warning {
  background: var(--toastify-color-progress-warning);
}

.Toastify__progress-bar--error {
  background: var(--toastify-color-progress-error);
}

.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--success,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
  background: var(--toastify-color-transparent);
}

.Toastify__close-button {
  color: #fff;
  position: absolute;
  top: 6px;
  right: 6px;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  z-index: 1;
}

.Toastify__toast--rtl .Toastify__close-button {
  left: 6px;
  right: unset;
}

.Toastify__close-button--light {
  color: #000;
  opacity: 0.3;
}

.Toastify__close-button > svg {
  fill: currentColor;
  height: 16px;
  width: 14px;
}

.Toastify__close-button:hover,
.Toastify__close-button:focus {
  opacity: 1;
}

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}

.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.7;
  transform-origin: left;
}

.Toastify__progress-bar--animated {
  animation: Toastify__trackProgress linear 1 forwards;
}

.Toastify__progress-bar--controlled {
  transition: transform 0.2s;
}

.Toastify__progress-bar--rtl {
  right: 0;
  left: initial;
  transform-origin: right;
  border-bottom-left-radius: initial;
}

.Toastify__progress-bar--wrp {
  position: absolute;
  overflow: hidden;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  border-bottom-left-radius: var(--toastify-toast-bd-radius);
  border-bottom-right-radius: var(--toastify-toast-bd-radius);
}

.Toastify__progress-bar--wrp[data-hidden='true'] {
  opacity: 0;
}

.Toastify__progress-bar--bg {
  opacity: var(--toastify-color-progress-bgo);
  width: 100%;
  height: 100%;
}

.Toastify__spinner {
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  border: 2px solid;
  border-radius: 100%;
  border-color: var(--toastify-spinner-color-empty-area);
  border-right-color: var(--toastify-spinner-color);
  animation: Toastify__spin 0.65s linear infinite;
}

@keyframes Toastify__bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, var(--y), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, var(--y), 0);
  }
}

@keyframes Toastify__bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, var(--y), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, var(--y), 0);
  }
}

@keyframes Toastify__bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, calc(var(--y) - 10px), 0);
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, calc(var(--y) + 20px), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes Toastify__bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, calc(var(--y) - 10px), 0);
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, calc(var(--y) + 20px), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.Toastify__bounce-enter--top-left,
.Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft;
}

.Toastify__bounce-enter--top-right,
.Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight;
}

.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown;
}

.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp;
}

.Toastify__bounce-exit--top-left,
.Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft;
}

.Toastify__bounce-exit--top-right,
.Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight;
}

.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp;
}

.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown;
}

@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

@keyframes Toastify__zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: translate3d(0, var(--y), 0) scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}

.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn;
}

.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut;
}

@keyframes Toastify__flipIn {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}

@keyframes Toastify__flipOut {
  from {
    transform: translate3d(0, var(--y), 0) perspective(400px);
  }
  30% {
    transform: translate3d(0, var(--y), 0) perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: translate3d(0, var(--y), 0) perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.Toastify__flip-enter {
  animation-name: Toastify__flipIn;
}

.Toastify__flip-exit {
  animation-name: Toastify__flipOut;
}

@keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}

@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}

@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}

@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}

@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(110%, var(--y), 0);
  }
}

@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-110%, var(--y), 0);
  }
}

@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}

@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}

.Toastify__slide-enter--top-left,
.Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft;
}

.Toastify__slide-enter--top-right,
.Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight;
}

.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown;
}

.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp;
}

.Toastify__slide-exit--top-left,
.Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

.Toastify__slide-exit--top-right,
.Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

@keyframes Toastify__spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.search-container {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.search-input {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 20px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}

.search-input:focus {
  border-color: #0066cc;
}

.search-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  margin-top: 5px;
  overflow: hidden;
}

.search-dropdown-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-bottom: 1px solid #eee;
  font-size: 13px;
  color: #666;
}

.search-results-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 300px;
  overflow-y: auto;
}

.search-result-item {
  padding: 10px 15px;
  cursor: pointer;
  transition: background-color 0.2s;
  border-bottom: 1px solid #f0f0f0;
}

.search-result-item:hover {
  background-color: #f8f8f8;
}

.search-dropdown-footer {
  padding: 10px 15px;
  text-align: center;
  background-color: #f5f5f5;
  border-top: 1px solid #eee;
}

.search-dropdown-footer a {
  color: #0066cc;
  text-decoration: none;
  font-size: 13px;
}

.search-dropdown-footer a:hover {
  text-decoration: underline;
}

.category-dropdown {
  position: relative;
  display: inline-block;
  height: 100%;
}

.dropdown-toggle {
  padding: 0;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 1rem;
  font-family: monospace;
  height: 100%;
  display: flex;
  align-items: center;
  transition: background-color 0.3s;
}

.dropdown-toggle:hover {
  background-color: #555;
  border-radius: 4px;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: -20px;
  background-color: white;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  display: flex;
  width: 600px;
  min-height: 400px;
  color: #333;
}

.main-categories {
  min-width: 200px;
  background-color: #f8f8f8;
  border-right: 1px solid #eee;
  padding: 15px 0;
}

.main-category {
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.2s;
  position: relative;
}

.main-category:hover,
.main-category.active {
  background-color: #e9e9e9;
}

.main-category-link {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  flex-grow: 1;
}

.arrow {
  color: #666;
  font-size: 18px;
  margin-left: 10px;
}

.subcategories-panel {
  flex-grow: 1;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  background-color: white;
}

.subcategories-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.subcategory-group {
  min-width: 200px;
  margin-bottom: 20px;
}

.subcategory-title {
  margin: 0 0 10px 0;
  font-size: 16px;
}

.subcategory-title .subcategory-link {
  color: #0066cc;
  text-decoration: none;
  font-weight: 500;
}

.subcategory-item {
  display: block;
  color: #555;
  text-decoration: none;
  padding: 5px 0;
  font-size: 14px;
  transition: color 0.2s;
}

.subcategory-item:hover {
  color: #0066cc;
}

@media screen and (max-width: 768px) {
  .mega-menu {
    width: 100%;
    left: 0;
    top: calc(100%);
  }
}

/* Mobile-specific styles */
@media (max-width: 600px) {
  .category-dropdown {
    width: 100%;
  }

  .mega-menu.mobile-view {
    position: fixed;
    top: var(--header-height, 60px);
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    min-height: auto;
    flex-direction: column;
    overflow-y: auto;
    background: white;
    z-index: 1000;
  }

  .main-categories {
    width: 100%;
    padding: 0;
  }

  .main-category {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
  }

  .main-category-link {
    color: #333;
    text-decoration: none;
  }

  .subcategories-panel {
    width: 100%;
    padding: 15px;
  }

  .subcategories-columns {
    display: block;
  }

  .subcategory-group {
    width: 100%;
    margin-bottom: 20px;
  }
}

.header {
  background-color: #333;
  height: 55px;
  width: 100%;
  display: flex;
  align-items: center;
  /* position: relative; */
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 0 5px;
}

/* .nav-container ul {
  display: flex;
  flex-direction: row;
  align-items: center;
} */

.nav-item {
  position: static;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  flex-direction: row;
  list-style: none;
  gap: 1rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  transition: background-color 0.3s;
}

.nav-link:hover {
  background-color: #555;
  border-radius: 4px;
}

.auth-buttons {
  display: flex;
  gap: 1rem;
}

.auth-button {
  color: white;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s;
}

.auth-buttons .login-button {
  background-color: transparent;
  border: 1px solid white;
}

.auth-buttons .login-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.auth-buttons .register-button {
  background-color: #4caf50;
  border: 1px solid #4caf50;
}

.auth-buttons .register-button:hover {
  background-color: #45a049;
}

.welcome-message {
  margin-right: 1rem;
  color: white;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.logout-button {
  background-color: #dc3545;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.logout-button:hover {
  background-color: #c82333;
}

.search-wrapper {
  max-width: 500px;
  margin: 0 10px;
}

.mobile-search-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Mobile Controls */
.mobile-controls {
  display: none;
}

.mobile-menu-button,
.mobile-search-button {
  display: flex;
  align-items: center;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  background: #2c3e50;
  position: absolute;
  top: 45px;
  left: 0;
  right: 0;
  z-index: 1000;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-link,
.mobile-auth-button {
  font-size: 1rem;
  display: block;
  padding: 1rem;
  color: white;
  text-decoration: none;
}

.mobile-auth-button {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.cart-icon,
.cart-icon_desktop {
  display: flex;
  align-items: center;
  padding: 0 1rem 0 0.3rem;
}

.cart-link {
  display: flex;
  align-items: center;
  color: #ffffff;
  font-size: 2rem;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.cart-link:hover {
  color: #007bff;
  transform: scale(1.1);
  cursor: pointer;
}

.nav-icons {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 1rem;
}

.search-container {
  display: flex;
  align-items: center;
  justify-content: right;
  flex-direction: row;
}

.cart-count {
  background-color: #ff0000;
  color: white;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 0.8rem;
}

@media screen and (max-width: 550px) {
  .header {
    height: 85px;
  }

  .nav-container {
    padding: 0;
    margin: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .auth-buttons {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 5px 0;
  }
}

/* Responsive Styles */
@media (max-width: 850px) {
  .mobile-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .nav-list li,
  .desktop-search,
  .desktop-auth {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .mobile-search {
    display: block;
  }

  .cart-icon_desktop {
    display: none;
  }
}

.footer {
  background-color: #333;
  color: white;
  height: 55px;
  width: 100%;
  display: flex;
  align-items: center;
  margin-top: auto;
}

.footer-content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 0 20px;
}

.footer-link {
  color: white;
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}

.social-items {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.social-item,
.year {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.5s;
}

.social-item-link {
  color: white;
  transition: all 0.5s;
  text-decoration: none;
}

.social-item-link svg {
  margin-left: 20px;
  width: 30px;
  height: 30px;
  transition: all 0.5s;
}

.rs-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 95px;
  height: 40px;
}

.rsschool-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: url(../fd13004015948dfff4c7.png) center / 80% 80%
    no-repeat;
  transition: all 0.5s;
}

/* HOVER */
@media (hover: hover) and (pointer: fine) {
  .social-item:hover {
    cursor: pointer;
    transform: scale(1.1);
  }

  .social-item:hover svg {
    fill: rgb(152, 194, 196);
  }
}

@media screen and (max-width: 300px) {
  .rs-icon-wrap {
    display: none;
  }

  .social-item-link svg {
    margin: 0 2px 0 5px;
  }

  .footer-content {
    padding: 0;
  }

  .social-items {
    padding: 0 5px;
  }
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  background-color: #ffffff;
  font-family: monospace;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.app-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
}

a {
  text-decoration: none;
  color: black;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section__product-catalog {
  margin: 20px;
  background-color: #f4f4f4;
  border-radius: 20px;
}

.no-found {
  font-family: monospace;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
  text-align: center;
}

.cards-container {
  display: grid;
  gap: 20px;
  grid-template: auto / repeat(auto-fit, minmax(280px, 300px));
  justify-content: center;
  padding: 20px;
}

.cards-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  padding: 10px;
}

.cards-item:hover {
  cursor: pointer;
  transform: translateY(-5px);
}

.cards-item-img img {
  width: 100%;
  height: 100px;
  object-fit: contain;
  object-position: center;
}

.cards-item-card {
  display: flex;
  justify-content: center;
  padding: 10px;
}

.cards-item-name {
  text-align: center;
  font-size: 1rem;
}

.cards-item-desc {
  padding: 5px 15px;
}

.product-price-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.price-with-discount {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.price-discounted {
  color: #e53935;
  font-weight: bold;
  font-size: 1.5rem;
}

.price-original {
  color: #888;
  text-decoration: line-through;
  font-size: 1rem;
}

.price-regular {
  color: #333;
  font-weight: bold;
  font-size: 1.5rem;
}

.button__addToCart,
.button__removeFromCart {
  color: rgb(255, 255, 255);
  background-color: rgba(76, 176, 76, 0.8);
  border: none;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 500;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.button__addToCart {
  background-color: rgba(76, 176, 76, 0.8);
}

.button__removeFromCart {
  background-color: rgba(244, 67, 54, 0.8);
}

.button__addToCart:hover {
  cursor: pointer;
  background-color: #45a049;
}

.button__removeFromCart:hover {
  cursor: pointer;
  background-color: #c82333;
}

.product-catalog-container {
  display: flex;
  flex-direction: column;
}

.pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0;
  gap: 15px;
}

.pagination-button {
  padding: 8px 12px;
  border: 1px solid #ddd;
  background-color: white;
  color: #333;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination-button:hover:not(:disabled) {
  background-color: #f0f0f0;
}

.pagination-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.current-page-indicator {
  padding: 8px 12px;
  font-size: 14px;
  color: #555;
}

.cards-container {
  flex: 1;
}

@media (max-width: 768px) {
  .cards-container {
    padding: 0;
    margin: 0;
  }
  .category-products-container {
    padding: 0;
    margin: 0;
  }
}

.shop-page {
  font-family: monospace;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
  text-align: center;
}

.loading-container {
  width: 100%;
  height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px 0;
}

.section__header {
  text-align: center;
  margin-bottom: 20px;
  font-size: 20px;
  color: #333;
}
.section__footer {
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
}
.section__footer:hover {
  background-color: rgba(192, 192, 192, 0.5);
  border-radius: 0px 0px 20px 20px;
}

section {
  margin: 0 20px;
  background-color: #f4f4f4;
  border-radius: 20px;
}

.section__categories {
  margin: 20px;
  background-color: #f4f4f4;
  border-radius: 20px;
}

.category-cards-item {
  display: flex;
  width: 100%;
  height: 200px;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  background-color: rgb(232, 228, 228);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.category-cards-item:hover {
  background-color: #f8f8f8;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.category-cards-item h2 {
  margin-top: 15px;
  font-size: 18px;
  color: #333;
}

.cards-item-img {
  height: 120px;
  display: flex;
  justify-content: center;
  object-fit: cover;
}

.img__category {
  width: 32px;
  height: 32px;
}

.login-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.login-container {
  width: 100%;
  max-width: 400px;
  padding: 20px 0;
}

.login-card {
  background: rgb(219, 209, 209);
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 40px;
}

.login-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
  text-align: center;
}

.login-subtitle {
  color: #666;
  text-align: center;
  margin-bottom: 30px;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  color: #555;
  font-weight: 500;
}

.form-group input {
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.3s;
}

.form-group input:focus {
  outline: none;
  border-color: #4caf50;
}

.input-error {
  border-color: #e74c3c !important;
}

.error-message {
  color: #e74c3c;
  font-size: 12px;
  margin-top: 4px;
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #555;
}

.forgot-password {
  color: #4caf50;
  text-decoration: none;
}

.forgot-password:hover {
  text-decoration: underline;
}

.login-form .login-button {
  background-color: #4caf50;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
}

.login-button:hover {
  background-color: #45a049;
}

.signup-link {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #666;
}

.signup-link a {
  color: #4caf50;
  text-decoration: none;
  font-weight: 500;
}

.signup-link a:hover {
  text-decoration: underline;
}

.password-input-container {
  position: relative;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrapper input {
  padding-right: 40px;
  width: 100%;
}

.password-toggle {
  position: absolute;
  right: 10px;
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: right 0.2s ease;
}

.password-toggle:hover {
  color: #333;
}

.password-toggle svg {
  font-size: 18px;
}

.error-icon {
  position: absolute;
  right: 15px;
  color: #e74c3c;
  font-size: 18px;
  pointer-events: none;
}

@media (max-width: 480px) {
  .login-container {
    padding: 10px 0;
    width: 100%;
  }

  .login-card {
    padding: 30px 20px;
  }
}

.password-hints {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 8px;
  font-size: 12px;
  color: #e74c3c;
}

select {
  padding: 12px;
  border-radius: 6px;
}

.password-hints span {
  transition: color 0.3s;
}

.password-hints .valid {
  color: #4caf50;
}

.input-wrapper input[type="date"] {
  padding-right: 10px;
}

.input-wrapper input[type="date"].input-error {
  padding-right: 40px;
}

.input-wrapper select {
  width: 100%;
  padding-right: 40px;
  height: 44px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  background-color: white;
  appearance: auto;
}

.input-wrapper select.input-error {
  margin-right: 40px;
}
.input-wrapper input {
  padding-right: 30px;
}

.input-wrapper.has-error .password-toggle {
  right: 36px;
}

.input-wrapper input {
  padding-right: 60px;
}

.checkbox-group {
  margin: 10px 0;
}

.checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  line-height: 1.4;
}

.checkbox-label input {
  margin-right: 10px;
  width: 18px;
  height: 18px;
}

.address-section {
  padding: 26px;
  background: rgb(185, 185, 183);
  border-radius: 6px;
}
.address-section h3 {
  padding: 0;
  margin: 0;
}

.address-section-title {
  font-size: 16px;
  margin-bottom: 15px;
  color: #333;
  font-weight: 600;
  align-items: center;
  text-align: center;
}
.address-section label {
  padding-top: 16px;
}

.address-section-shipping {
  background: rgba(182, 204, 181, 0.5);
}
.address-section-billing {
  background: rgba(192, 192, 187, 0.5);
}

@media (max-width: 480px) {
  .checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    line-height: 1.4;
  }

  .checkbox-label input {
    margin-right: 10px;
    width: 18px;
    height: 18px;
  }

  .input-wrapper input {
    padding-right: 40px;
  }
}

.team-container {
  max-width: 800px;
  padding: 2rem;
  font-family: monospace;
}

#about {
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 1.4rem;
}

#about h2 {
  text-align: center;
  padding-top: 1em;
  margin: 0;
}

.cards-wrapper {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  gap: 2rem;
}

.team-card {
  display: flex;
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 2rem;
  background-color: #f9f9f9;
  box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.05);
}

.photo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 120px;
}

.team-photo {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

.member-badge {
  margin-top: 10px;
  width: 64px;
  height: 64px;
}

.team-info {
  flex: 1;
  padding: 0 0.8em;
}

.team-info h3 {
  margin: 0 0 0.5rem;
}

.team-info .role {
  font-size: 0.9em;
  color: #666;
}

.bio,
.contributions {
  margin: 0.5rem 0;
}

.github-link {
  display: inline-block;
  margin-top: 0.5rem;
  color: #0366d6;
  text-decoration: none;
}

.github-link:hover {
  text-decoration: underline;
}

.logo-wrapper {
  display: flex;
  justify-content: center;
  padding-bottom: 2rem;
}

.rss-logo {
  max-width: 160px;
  height: auto;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.rss-logo:hover {
  opacity: 1;
  cursor: pointer;
}

@media screen and (max-width: 500px) {
  .team-container {
    padding: 0;
  }

  .team-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
    margin: 0;
  }
  
  .cards-wrapper {
    padding: 0;
  }

  .photo-wrapper {
    margin-bottom: 1rem;
  }

  .team-info {
    padding: 0;
  }
}

.not-found-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.not-found-container h1 {
  font-size: 5rem;
  margin: 0;
  color: #276abc;
}

.home-link {
  margin-top: 2rem;
  padding: 0.5rem 1rem;
  background: #007bff;
  color: white;
  border-radius: 4px;
  text-decoration: none;
}

.profile-page {
  width: 100%;
  margin: 0 auto;
  font-family: Arial, sans-serif;
  padding: 20px;
  box-sizing: border-box;
}

section.personal-info {
  border: 1.6px solid #333;
}

section.addresses {
  border: 1.6px solid #333;
}

.p-text {
  font-size: 12px;
  color: #333;
  margin-bottom: 1rem;
}

.p-text-personal {
  font-size: 12px;
  color: #333;
  margin-top: 0px;
  margin-bottom: 7px;
}

.p-text-address {
  font-size: 12px;
  color: #333;
  margin-top: 0px;
  margin-bottom: 0px;
}

.personal-info,
.addresses {
  margin-bottom: 2rem;
  padding: 1rem;
  background-color: #f7f7f7;
  border-radius: 8px;
}

.address-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 1rem;
  margin-top: 12px;
}
.h3-addresses {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}

.address-card {
  border-bottom: 1px solid #ccc;
}

.address-card:last-child {
  border-bottom: none;
}

.address-label {
  font-size: 12px;
  font-weight: bold;
  margin: 2px 0;
}

.address-label.default {
  color: #0070f3;
}

.address-label.not-default {
  color: red;
}

.error-message {
  color: red;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.edit-form-container .error-message {
  margin-top: 0px;
}

.edit-button {
  background-color: #333;
  color: white;
  border: none;
  padding: 5px 10px;
  margin-right: 6px;
  border-radius: 4px;
  cursor: pointer;
  transition:
    background-color 0.3s,
    padding 0.3s;
}

.edit-button:hover {
  background-color: #555;
  padding: 5px 12px;
}

.edit-button-address {
  background-color: #333;
  margin: 5px 0px 6px 0px;
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
  transition:
    background-color 0.3s,
    padding 0.3s;
}

.edit-button-address:hover {
  background-color: #555;
  padding: 5px 12px;
}

.add-address-button {
  margin-top: 10px;
  background-color: #0070f3;
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
  transition:
    background-color 0.3s,
    padding 0.3s;
}

.add-address-button:hover {
  background-color: rgb(12, 106, 199);
  padding: 5px 12px;
}

.address-edit-form {
  padding: 10px;
  transition: all 0.3s ease-in-out;
}

.personal-info {
  transition: all 0.3s ease-in-out;
}

.edit-buttons-container {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 10px;
  box-sizing: border-box;
}

.edit-button-row {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin: 10px 0px 10px 0px;
}

.edit-input {
  width: 97.5%;
  padding: 5px;
  margin-bottom: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.save-button {
  background-color: rgb(7, 131, 7);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.close-button {
  background-color: #dc3545;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.label-container {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

.default-billing-checkbox {
  font-size: 14px;
}

.checkbox-toggle {
  display: flex;
  align-items: center;
  gap: 2px;
  font-weight: 500;
  font-size: 12px;
  color: #444;
  transition: color 0.3s ease;
}

.checkbox-toggle input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: gray;
  cursor: pointer;
  transition: accent-color 0.3s ease;
}

.checkbox-toggle.active {
  color: green;
}

.checkbox-toggle.active input[type="checkbox"] {
  accent-color: green;
}

.button-container {
  margin-top: 10px;
}

.edit-form-container .error-icon {
  top: 5px;
  right: 10px;
}

.save-button:disabled {
  background-color: #ccc;
  color: #666;
  cursor: not-allowed;
  opacity: 0.7;
  transition: all 0.2s ease-in-out;
}

.p-text-password {
  margin: 0px 0px 5px 0px;
  font-size: 12px;
}

.password-input-wrapper {
  position: relative;
}

.eye-icon {
  position: absolute;
  right: 4%;
  top: 59%;
  transform: translateY(-45%);
  cursor: pointer;
  color: #666;
}

.product-detail-container {
  display: flex;
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
  gap: 3rem;
}
/* PRODUCT IMAGES */
.product-gallery {
  flex: 1;
}

.slider-container {
  position: relative;
  margin-bottom: 1rem;
}

.main-image {
  border: 1px solid #eee;
  padding: 1rem;
  border-radius: 8px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background-color: #f9f9f9; */
}

.main-image img {
  max-width: 100%;
  max-height: 500px;
  object-fit: contain;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.7);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-50%) scale(1.05);
}

.slider-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.left-arrow {
  left: 15px;
}

.right-arrow {
  right: 15px;
}

.thumbnail-container {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1rem;
}

.thumbnail {
  width: 80px;
  height: 80px;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 0.25rem;
  cursor: pointer;
  transition: all 0.2s ease;
  background-color: #f9f9f9;
}

.thumbnail:hover {
  border-color: #888;
  transform: scale(1.05);
}

.thumbnail.active {
  border-color: #0066cc;
  transform: scale(1.05);
  box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.2);
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* PRODUCT INFO */
.product-info {
  flex: 1;
  padding: 0 1rem;
}

/* PRODUCT NAME */
.product-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #333;
}

/* PRODUCT VARIANTS */
.variants-section {
  margin: 1.5rem 0;
}

.variants-section h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.variant-thumbnails {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.variant-thumbnail {
  width: 60px;
  height: 60px;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 0.25rem;
  cursor: pointer;
}

.variant-thumbnail.active {
  border-color: #0066cc;
}

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

/* PRODUCT DESCRIPTION */

.product-description {
  margin: 1.5rem 0;
  line-height: 1.6;
}

.product-description h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.description-content {
  line-height: 1.6;
}

.description-content p {
  margin-bottom: 1rem;
}

.description-content ul,
.description-content ol {
  margin: 1rem 0;
  padding-left: 2rem;
}

.description-content li {
  margin-bottom: 0.5rem;
}
.show-more-btn-container {
  text-align: center;
}

.show-more-btn {
  background: none;
  border: none;
  color: #a5afb9;
  cursor: pointer;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  text-align: left;
  display: inline-block;
}

.show-more-btn:hover {
  text-decoration: underline;
  color: #102d49;
}
/* PRODUCT PRICE */
.price-section {
  margin: 1.5rem 0;
  text-align: center;
}

.product-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: #0066cc;
}

/* ADD TO CART BUTTON */
.buy-section {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

/* PAGE ERRORS */
.product-loading,
.product-error,
.product-not-found {
  text-align: center;
  padding: 2rem;
  font-size: 1.2rem;
}

.back-button {
  background-color: #0066cc;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 1rem;
}

/* IMAGE MODAL */
.image-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(5px);
}

.modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content img {
  max-height: 80vh;
  max-width: 80vw;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.close-modal {
  position: absolute;
  top: -40px;
  right: -40px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  transition: all 0.2s ease;
}

.close-modal:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}
.modal-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  transition: all 0.2s ease;
  z-index: 1001;
}

.modal-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
}

.left-arrow {
  left: 30px;
}

.right-arrow {
  right: 30px;
}

.modal-image-counter {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  z-index: 1001;
}
/* PRODUCT MAIN IMAGE */
.main-image {
  cursor: zoom-in;
  transition: transform 0.2s ease;
}

.main-image:hover {
  transform: scale(1.01);
}

@media (max-width: 768px) {
  .product-detail-container {
    flex-direction: column;
  }

  .product-info {
    padding: 0;
  }

  .modal-content img {
    max-width: 95vw;
    max-height: 95vh;
  }

  .close-modal {
    top: -50px;
    right: 0;
  }

  .modal-arrow {
    width: 40px;
    height: 40px;
  }

  .modal-image-counter {
    bottom: 10px;
  }
}


.sort-controls {
  margin: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0;
}

.sort-select {
  padding: 8px 12px;
  border-radius: 4px;
  border: 1px solid #ddd;
  background-color: white;
  font-size: 14px;
  transition: all 0.2s;
}

.sort-select:disabled {
  opacity: 0.7;
  background-color: #f5f5f5;
}

.sort-select:focus {
  outline: none;
  border-color: #4a90e2;
  box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
}

.filter-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  align-items: center;
}

.price-filter label {
  display: flex;
  flex-direction: column;
  margin-right: 1rem;
}

.price-input {
  width: 100px;
  padding: 0.25rem;
  border-radius: 4px;
}

.discount-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.products-filters {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.reset-button {
  width: 150px;
  background-color: #9e9999;
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 4px;
  cursor: pointer;
  margin: 10px 0;
  font-weight: 600;
  transition: background 0.2s;
}
.reset-button:hover {
  background-color: #4b4747;
}

.applied-filters-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.applied-filters {
  width: 200px;
  margin: 10px 0 20px 0;
  padding: 10px 16px;
  background: #f5f5f5;
  border-radius: 4px;
  font-size: 15px;
}
.applied-filters ul {
  margin: 0;
}
.applied-filters li {
  margin-bottom: 2px;
}

@media (max-width: 350px) {
  .filter-controls {
    display: flex;
    flex-direction: column;
  }
}

.search-results-title {
  margin-bottom: 20px;
  color: #333;
  text-align: center;
}

.category-products-container {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.category-title {
  margin-bottom: 20px;
  color: #333;
  font-size: 28px;
  text-align: center;
}

.loading-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
  font-size: 18px;
  color: #666;
}

.cart-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f0f0f0;
  padding: 15px;
}

.cart-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  margin: 10px 0;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.cart-items-list {
  list-style: none;
  padding: 0;
}

.cart-item-details {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  margin: 0 15px;
  align-items: left;
  gap: 10px;
}

.button__remove-item {
  background-color: transparent;
  color: #f44336;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1.3rem;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.button__remove-item:hover {
  transform: scale(1.1);
}

.cart-item-image {
  max-width: 100px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.button__continue-shopping {
  text-align: center;
  background-color: #4caf50;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.button__continue-shopping:hover {
  background-color: #45a049;
}

.button__clear-all {
  font-family: monospace;
  padding: 10px 15px;
  background-color: #ff4444;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  transition: background-color 0.3s;
}

.button__clear-all:hover {
  background-color: #cc0000;
}

.button__checkout {
  padding: 10px 15px;
  background-color: #736e6e;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s;
  margin-left: auto;
  font-family: monospace;
}

.button__checkout:hover {
  background-color: #8c8b8b;
}

.cart-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  align-items: center;
}

.empty-cart {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.quantity-controls {
  display: flex;
  align-items: center;
  margin: 10px 0;
}

.quantity-controls button {
  background: #f0f0f0;
  border: none;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 4px;
}

.quantity-controls button:hover {
  background: #e0e0e0;
}

.quantity-controls input {
  width: 50px;
  text-align: center;
  margin: 0 5px;
  padding: 5px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.promo-code-section {
  margin: 20px 0;
  padding: 15px;
  background-color: #f8f9fa;
  border-radius: 5px;
}

.promo-code-input {
  display: flex;
  align-items: center;
  gap: 10px;
}

.promo-code-input input {
  flex: 1;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.promo-code-input button {
  padding: 8px 15px;
  background-color: #4caf50;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.promo-code-input button:hover {
  background-color: #45a049;
}

.promo-message {
  margin-top: 8px;
  padding: 8px;
  border-radius: 4px;
}

.promo-message.success {
  background-color: #d4edda;
  color: #155724;
}

.promo-message.error {
  background-color: #f8d7da;
  color: #721c24;
}

.total-price {
  text-align: center;
  font-size: 1.1rem;
  font-weight: bold;
  color: #333;
  background-color: #c1e8c1;
  padding: 5px;
  border-radius: 4px;
}

.discount-info {
  color: red;
}

.checkout-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 16px;
}

.checkout-modal {
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
  padding: 24px;
  text-align: center;
  animation: checkoutModalIn 0.2s ease-out;
}

.checkout-modal h3 {
  margin: 0 0 8px;
  font-size: 1.4rem;
  color: #2a2a2a;
}

.checkout-modal p {
  margin: 0;
  color: #5d5d5d;
}

.checkout-modal-actions {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.checkout-modal-close {
  border: none;
  border-radius: 8px;
  background: #4caf50;
  color: #fff;
  padding: 10px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.checkout-modal-close:hover {
  background: #3f9243;
}

@keyframes checkoutModalIn {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media screen and (max-width: 500px) {
  .cart-page {
    padding: 0;
  }

  .cart-item {
    flex-direction: column;
    align-items: center;
  }

  .cart-item-details {
    margin-top: 10px;
  }

  .cart-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .button__remove-item {
    margin-top: 15px;
  }
  .promo-code-section {
    padding: 10px 0;
  }

  .promo-code-input input {
    width: 100%;
  }

  .checkout-modal {
    padding: 20px;
  }
}


/*# sourceMappingURL=main.908629ed.css.map*/