@import "https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap";
/* [project]/src/app/(main)/components/styles/Drawer.module.css [app-client] (css) */
.Drawer-module__wI3TuG__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  opacity: 0;
  animation: .3s forwards Drawer-module__wI3TuG__fadeIn;
  z-index: 99;
}

.Drawer-module__wI3TuG__drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 30%;
  background: #fff;
  box-shadow: -10px 0 30px #00000026;
  transform: translateX(100%);
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 99999;
}

.Drawer-module__wI3TuG__drawer:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30%, #f74a4c08 0%, #0000 50%), radial-gradient(circle at 70%, #d03fc008 0%, #0000 50%);
  animation: 10s infinite Drawer-module__wI3TuG__pulseGradient;
}

.Drawer-module__wI3TuG__drawer.Drawer-module__wI3TuG__open {
  transform: translateX(0);
}

.Drawer-module__wI3TuG__header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem;
  border-bottom: 1px solid #0000001a;
  background: #fff;
}

.Drawer-module__wI3TuG__headerTitle {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.Drawer-module__wI3TuG__headerTitle h2 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  background: linear-gradient(to right, #f74a4c, #d03fc0);
  -webkit-background-clip: text;
  background-clip: text;
  color: #0000;
}

.Drawer-module__wI3TuG__closeButton {
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
  background: #0000000d;
}

.Drawer-module__wI3TuG__closeButton:hover {
  background: #f74a4c1a;
}

.Drawer-module__wI3TuG__closeIcon {
  color: #0000;
  stroke: #f74a4c;
  stroke-width: 2px;
  transition: transform .3s;
}

.Drawer-module__wI3TuG__closeButton:hover .Drawer-module__wI3TuG__closeIcon {
  transform: rotate(90deg);
}

.Drawer-module__wI3TuG__content {
  flex: 1;
  padding: 1.5rem;
  overflow-y: auto;
  position: relative;
}

.Drawer-module__wI3TuG__emptyStateContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 2rem;
}

.Drawer-module__wI3TuG__emptyIcon {
  color: #f74a4c;
  margin-bottom: 1.5rem;
  animation: 3s ease-in-out infinite Drawer-module__wI3TuG__float;
  stroke: #f74a4c;
  stroke-width: 2px;
  fill: none;
}

.Drawer-module__wI3TuG__emptyText {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: .5rem;
  background: linear-gradient(45deg, #f74a4c, #d03fc0);
  -webkit-background-clip: text;
  background-clip: text;
  color: #0000;
}

.Drawer-module__wI3TuG__emptySubtext {
  color: #666;
  line-height: 1.6;
}

.Drawer-module__wI3TuG__footer {
  position: relative;
  padding: 1.5rem;
  border-top: 1px solid #0000001a;
  margin-top: auto;
  background: #fff;
}

.Drawer-module__wI3TuG__viewCart {
  width: 100%;
  margin-bottom: 1rem;
  padding: 1rem;
  background: linear-gradient(45deg, #f74a4c, #d03fc0);
  color: #fff;
  border-radius: .5rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all .3s;
  box-shadow: 0 4px 6px #0000001a;
}

.Drawer-module__wI3TuG__viewCart:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px #f74a4c4d;
}

.Drawer-module__wI3TuG__checkout {
  width: 100%;
  margin-bottom: 1rem;
  padding: 1rem;
  background: #1f2937;
  color: #fff;
  border-radius: .5rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all .3s;
}

.Drawer-module__wI3TuG__checkout:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px #0003;
  background: #111827;
}

.Drawer-module__wI3TuG__returnShop {
  width: 100%;
  padding: 1rem;
  background: none;
  color: #333;
  border: 2px solid #f74a4c;
  border-radius: .5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s;
}

.Drawer-module__wI3TuG__returnShop:hover {
  background: #f74a4c1a;
  transform: translateY(-3px);
}

.Drawer-module__wI3TuG__loadingState {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 2rem;
}

.Drawer-module__wI3TuG__spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #f74a4c1a;
  border-top-color: #f74a4c;
  border-radius: 50%;
  animation: 1s linear infinite Drawer-module__wI3TuG__spin;
  margin-bottom: 1rem;
}

.Drawer-module__wI3TuG__errorState {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 2rem;
  text-align: center;
}

.Drawer-module__wI3TuG__errorIcon {
  color: #f74a4c;
  margin-bottom: 1rem;
  stroke: #f74a4c;
  stroke-width: 2px;
  fill: none;
}

.Drawer-module__wI3TuG__retryButton {
  margin-top: 1rem;
  padding: .75rem 1.5rem;
  background: linear-gradient(45deg, #f74a4c, #d03fc0);
  color: #fff;
  border: none;
  border-radius: .5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s;
}

.Drawer-module__wI3TuG__retryButton:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px #f74a4c33;
}

.Drawer-module__wI3TuG__cartItems {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.Drawer-module__wI3TuG__cartItem {
  display: flex;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #0000001a;
  transition: all .3s;
}

.Drawer-module__wI3TuG__cartItem:hover {
  background: #f74a4c05;
  border-radius: .5rem;
  padding: 1rem;
  margin: -.5rem;
  border-bottom: 1px solid #f74a4c1a;
}

.Drawer-module__wI3TuG__itemImageSection {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  flex-shrink: 0;
}

.Drawer-module__wI3TuG__imageContainer {
  width: 100px;
  height: 100px;
  position: relative;
  border-radius: .75rem;
  overflow: hidden;
  background: #f9fafb;
  box-shadow: 0 4px 12px #0000001a;
  transition: all .3s;
}

.Drawer-module__wI3TuG__imageContainer:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px #00000026;
}

.Drawer-module__wI3TuG__productImage {
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform .3s;
}

.Drawer-module__wI3TuG__imageContainer:hover .Drawer-module__wI3TuG__productImage {
  transform: scale(1.05);
}

.Drawer-module__wI3TuG__imageCount {
  position: absolute;
  bottom: 4px;
  right: 4px;
  background: #000000b3;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 10px;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.Drawer-module__wI3TuG__additionalImages {
  display: flex;
  gap: 4px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 100px;
}

.Drawer-module__wI3TuG__smallImage {
  width: 30px;
  height: 30px;
  border-radius: 4px;
  overflow: hidden;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  transition: all .2s;
}

.Drawer-module__wI3TuG__smallImage:hover {
  transform: scale(1.1);
  border-color: #f74a4c;
}

.Drawer-module__wI3TuG__smallProductImage {
  -o-object-fit: cover;
  object-fit: cover;
}

.Drawer-module__wI3TuG__itemDetails {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.Drawer-module__wI3TuG__itemName {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: .25rem;
  color: #1f2937;
  cursor: pointer;
  transition: color .2s;
}

.Drawer-module__wI3TuG__itemName:hover {
  color: #f74a4c;
}

.Drawer-module__wI3TuG__itemPrice {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .5rem;
}

.Drawer-module__wI3TuG__currentPrice {
  font-size: 1rem;
  font-weight: 600;
  background: linear-gradient(45deg, #f74a4c, #d03fc0);
  -webkit-background-clip: text;
  background-clip: text;
  color: #0000;
}

.Drawer-module__wI3TuG__originalPrice {
  font-size: .875rem;
  color: #9ca3af;
  text-decoration: line-through;
  font-weight: 400;
}

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

.Drawer-module__wI3TuG__quantityControls {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: .5rem;
  padding: .25rem .5rem;
}

.Drawer-module__wI3TuG__quantityButton {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: none;
  border-radius: .25rem;
  color: #4b5563;
  cursor: pointer;
  transition: all .2s;
}

.Drawer-module__wI3TuG__quantityButton:hover:not(:disabled) {
  background: #f74a4c1a;
  color: #f74a4c;
}

.Drawer-module__wI3TuG__quantityButton:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.Drawer-module__wI3TuG__quantity {
  font-size: .875rem;
  font-weight: 600;
  color: #1f2937;
  min-width: 1.5rem;
  text-align: center;
}

.Drawer-module__wI3TuG__removeButton {
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  transition: color .2s;
  padding: .25rem;
}

.Drawer-module__wI3TuG__removeButton:hover:not(:disabled) {
  color: #f74a4c;
}

.Drawer-module__wI3TuG__removeButton:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.Drawer-module__wI3TuG__itemTotal {
  font-size: 1rem;
  font-weight: 600;
  flex-shrink: 0;
  align-self: flex-start;
  background: linear-gradient(45deg, #f74a4c, #d03fc0);
  -webkit-background-clip: text;
  background-clip: text;
  color: #0000;
}

.Drawer-module__wI3TuG__cartSummary {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
}

.Drawer-module__wI3TuG__summaryRow {
  display: flex;
  justify-content: space-between;
  margin-bottom: .75rem;
  color: #4b5563;
  font-size: .875rem;
}

.Drawer-module__wI3TuG__summaryTotal {
  font-weight: 700;
  color: #1f2937;
  font-size: 1.125rem;
  padding-top: .75rem;
  margin-top: .75rem;
  border-top: 1px dashed #0000001a;
  display: flex;
  justify-content: space-between;
}

.Drawer-module__wI3TuG__summaryTotalValue {
  background: linear-gradient(45deg, #f74a4c, #d03fc0);
  -webkit-background-clip: text;
  background-clip: text;
  color: #0000;
  font-weight: 700;
}

.Drawer-module__wI3TuG__offlineMode {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #fff3cd;
  color: #856404;
  padding: 8px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
  font-size: 14px;
}

.Drawer-module__wI3TuG__errorMessage {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #f8d7da;
  color: #721c24;
  padding: 8px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
  font-size: 14px;
}

.Drawer-module__wI3TuG__itemBrand {
  font-size: 12px;
  color: #6b7280;
  margin-top: -4px;
  margin-bottom: 4px;
}

.Drawer-module__wI3TuG__unavailableWarning {
  background-color: #fef3c7;
  color: #92400e;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  margin-bottom: 8px;
  border-left: 3px solid #f59e0b;
}

.Drawer-module__wI3TuG__variantInfo {
  margin: 8px 0;
  background-color: #f9fafb;
  border-radius: 8px;
  padding: 8px 10px;
  position: relative;
  overflow: hidden;
}

.Drawer-module__wI3TuG__variantInfo:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(#f74a4c, #d03fc0);
  border-radius: 4px 0 0 4px;
}

.Drawer-module__wI3TuG__variantBadge {
  margin-bottom: 4px;
}

.Drawer-module__wI3TuG__variantLabel {
  font-size: 12px;
  font-weight: 600;
  color: #4b5563;
  letter-spacing: .02em;
}

.Drawer-module__wI3TuG__variantAttributes {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.Drawer-module__wI3TuG__colorVariant {
  display: flex;
  align-items: center;
  gap: 8px;
}

.Drawer-module__wI3TuG__colorInfo {
  display: flex;
  align-items: center;
  gap: 6px;
}

.Drawer-module__wI3TuG__colorSwatch {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #0000001a;
  box-shadow: 0 1px 3px #0000001a;
}

.Drawer-module__wI3TuG__colorName {
  font-size: 13px;
  font-weight: 600;
  color: #1f2937;
  text-transform: capitalize;
}

.Drawer-module__wI3TuG__sizeVariant {
  display: flex;
  align-items: center;
  gap: 8px;
}

.Drawer-module__wI3TuG__sizeBadge {
  display: inline-block;
  min-width: 30px;
  text-align: center;
  font-weight: 600;
  font-size: 13px;
  padding: 2px 8px;
  border-radius: 4px;
  background-color: #fff;
  border: 1px solid #d1d5db;
  color: #1f2937;
}

.Drawer-module__wI3TuG__attributeItem {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-bottom: 2px;
}

.Drawer-module__wI3TuG__attrLabel {
  font-size: 12px;
  color: #6b7280;
  text-transform: capitalize;
}

.Drawer-module__wI3TuG__attrValue {
  font-size: 13px;
  color: #1f2937;
  font-weight: 500;
}

.Drawer-module__wI3TuG__attributeTag {
  font-size: 11px;
  background-color: #e5e7eb;
  color: #1f2937;
  padding: 2px 8px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.Drawer-module__wI3TuG__attributeTag strong {
  margin-left: 3px;
  text-transform: capitalize;
}

.Drawer-module__wI3TuG__imageSkeleton {
  width: 80px;
  height: 80px;
  background: linear-gradient(90deg, #f3f4f6 0%, #e5e7eb 50%, #f3f4f6 100%);
  background-size: 200% 100%;
  animation: 1.5s infinite Drawer-module__wI3TuG__shimmer;
  border-radius: 4px;
}

.Drawer-module__wI3TuG__variantPrice {
  font-size: 11px;
  color: #6b7280;
  margin-left: 8px;
  font-weight: normal;
}

.Drawer-module__wI3TuG__otherAttributes {
  margin-top: 4px;
  border-top: 1px dashed #0000001a;
  padding-top: 6px;
}

@keyframes Drawer-module__wI3TuG__pulseGradient {
  0%, 100% {
    opacity: .3;
  }

  50% {
    opacity: .6;
  }
}

@keyframes Drawer-module__wI3TuG__float {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes Drawer-module__wI3TuG__fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes Drawer-module__wI3TuG__spin {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes Drawer-module__wI3TuG__shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

@media (width <= 1024px) {
  .Drawer-module__wI3TuG__drawer {
    width: 50%;
  }
}

@media (width <= 768px) {
  .Drawer-module__wI3TuG__drawer {
    width: 80%;
  }

  .Drawer-module__wI3TuG__itemControls {
    flex-direction: column;
    align-items: flex-start;
    gap: .75rem;
  }

  .Drawer-module__wI3TuG__imageContainer {
    width: 80px;
    height: 80px;
  }

  .Drawer-module__wI3TuG__additionalImages {
    max-width: 80px;
  }

  .Drawer-module__wI3TuG__smallImage {
    width: 24px;
    height: 24px;
  }
}

@media (width <= 480px) {
  .Drawer-module__wI3TuG__drawer {
    width: 100%;
  }

  .Drawer-module__wI3TuG__cartItem {
    flex-direction: column;
    gap: .75rem;
  }

  .Drawer-module__wI3TuG__itemImageSection {
    width: 100%;
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
  }

  .Drawer-module__wI3TuG__imageContainer {
    width: 120px;
    height: 120px;
  }

  .Drawer-module__wI3TuG__additionalImages {
    flex-direction: column;
    max-width: none;
  }

  .Drawer-module__wI3TuG__itemDetails {
    width: 100%;
  }

  .Drawer-module__wI3TuG__itemControls {
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
  }

  .Drawer-module__wI3TuG__itemTotal {
    align-self: flex-end;
    margin-top: .5rem;
  }
}

.Drawer-module__wI3TuG__itemControls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: .5rem;
}

.Drawer-module__wI3TuG__removeButton {
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  transition: all .2s;
  padding: .5rem;
  border-radius: .375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  flex-shrink: 0;
}

.Drawer-module__wI3TuG__removeButton:hover:not(:disabled) {
  color: #f74a4c;
  background: #f74a4c1a;
  transform: scale(1.05);
}

.Drawer-module__wI3TuG__removeButton:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.Drawer-module__wI3TuG__quantityControls {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: .5rem;
  padding: .25rem .5rem;
  flex-shrink: 0;
}

.Drawer-module__wI3TuG__itemControlsAlternative {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  align-items: flex-start;
  width: 100%;
}

.Drawer-module__wI3TuG__quantitySection {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.Drawer-module__wI3TuG__removeSection {
  align-self: flex-end;
}

@media (width <= 768px) {
  .Drawer-module__wI3TuG__itemControls {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }

  .Drawer-module__wI3TuG__removeButton {
    margin-left: 0;
  }
}

@media (width <= 480px) {
  .Drawer-module__wI3TuG__itemControls {
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    align-items: center;
  }

  .Drawer-module__wI3TuG__quantityControls {
    flex: none;
  }

  .Drawer-module__wI3TuG__removeButton {
    flex: none;
    margin-left: auto;
  }
}


/* [project]/src/app/(main)/components/styles/TopBar.module.css [app-client] (css) */
:root {
  --vibrant-orange: #ffbb4e;
  --vibrant-pink: #ff3f6c;
  --vibrant-purple: #d03fc0;
  --gradient-main: linear-gradient(135deg, #ffbb4e 0%, #ff3f6c 50%, #d03fc0 100%);
  --gradient-hover: linear-gradient(135deg, #e6a844 0%, #e91e63 50%, #b8359b 100%);
  --bg-primary: #000;
  --bg-secondary: #111;
  --bg-tertiary: #1a1a1a;
  --text-primary: #fff;
  --text-secondary: #ccc;
  --text-muted: #999;
  --border-dark: #ffbb4e1a;
  --border-hover: #ffbb4e4d;
  --shadow-dark: 0 4px 20px #00000080;
  --shadow-vibrant: 0 6px 24px #ffbb4e4d;
  --shadow-glow: 0 0 20px #ffbb4e33;
  --transition-fast: all .2s ease;
  --transition-smooth: all .3s cubic-bezier(.25, .46, .45, .94);
}

.TopBar-module__Qs8HAW__navigationWrapper {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-primary);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-dark);
  box-shadow: var(--shadow-dark);
}

.TopBar-module__Qs8HAW__topBarContainer {
  max-width: 1980px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 80px;
  gap: 20px;
  background: var(--bg-primary);
}

.TopBar-module__Qs8HAW__logo {
  flex-shrink: 0;
  position: relative;
  filter: drop-shadow(0 2px 8px #ffbb4e4d);
  transition: var(--transition-smooth);
}

.TopBar-module__Qs8HAW__logo:hover {
  filter: drop-shadow(0 4px 12px #ffbb4e80);
  transform: scale(1.02);
}

.TopBar-module__Qs8HAW__logoImage {
  display: flex;
  align-items: center;
  justify-content: center;
}

.TopBar-module__Qs8HAW__logoImg {
  height: 110px;
  width: 110px;
  transition: var(--transition-fast);
  filter: brightness(1.1);
}

.TopBar-module__Qs8HAW__mobileMenuButton {
  display: none;
  background: var(--bg-secondary);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  transition: var(--transition-smooth);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-dark);
}

.TopBar-module__Qs8HAW__mobileMenuButton:hover {
  background: var(--bg-tertiary);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-vibrant);
  transform: translateY(-2px);
}

.TopBar-module__Qs8HAW__menuIcon {
  position: relative;
  z-index: 1;
  stroke: var(--vibrant-orange);
  stroke-width: 2.5px;
  fill: none;
  transition: var(--transition-fast);
}

.TopBar-module__Qs8HAW__mobileMenuButton:hover .TopBar-module__Qs8HAW__menuIcon {
  transform: scale(1.1);
  stroke: var(--vibrant-pink);
}

.TopBar-module__Qs8HAW__menuWrapper {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
  margin-left: 20px;
}

.TopBar-module__Qs8HAW__menuItem {
  position: relative;
  display: flex;
  align-items: center;
}

.TopBar-module__Qs8HAW__menuLink {
  padding: 20px 16px;
  display: flex;
  align-items: center;
  color: #fff;
  font-family: Inter, sans-serif;
  font-weight: 600;
  font-size: 12px;
  transition: var(--transition-smooth);
  text-decoration: none;
  letter-spacing: .3px;
  white-space: nowrap;
  text-transform: uppercase;
  position: relative;
  border-radius: 8px;
}

.TopBar-module__Qs8HAW__menuLink:hover {
  color: var(--vibrant-orange);
  background: #ffbb4e1a;
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow);
}

.TopBar-module__Qs8HAW__menuLink:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-main);
  transition: var(--transition-smooth);
  transform: translateX(-50%);
  opacity: 0;
}

.TopBar-module__Qs8HAW__menuLink:hover:after {
  width: 80%;
  opacity: 1;
}

.TopBar-module__Qs8HAW__searchBar {
  flex: 1;
  max-width: 540px;
  position: relative;
  margin: 0 20px;
}

.TopBar-module__Qs8HAW__searchInputWrapper {
  position: relative;
  width: 100%;
  background: var(--bg-secondary);
  border-radius: 25px;
  border: 2px solid var(--border-dark);
  transition: var(--transition-smooth);
  overflow: hidden;
  height: 44px;
  display: flex;
  align-items: center;
  box-shadow: inset 0 2px 8px #0000004d;
}

.TopBar-module__Qs8HAW__searchInputWrapper:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-vibrant), inset 0 2px 8px #0000004d;
  transform: translateY(-2px);
}

.TopBar-module__Qs8HAW__searchInputWrapper:focus-within {
  border-color: var(--vibrant-orange);
  box-shadow: 0 8px 32px #ffbb4e66, inset 0 2px 8px #0000004d;
  transform: translateY(-2px);
}

.TopBar-module__Qs8HAW__searchIcon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  z-index: 3;
  pointer-events: none;
  transition: var(--transition-fast);
}

.TopBar-module__Qs8HAW__searchInputWrapper:focus-within .TopBar-module__Qs8HAW__searchIcon {
  color: var(--vibrant-orange);
}

.TopBar-module__Qs8HAW__searchInput {
  width: 100%;
  padding: 12px 20px 12px 44px;
  border: none;
  outline: none;
  font-family: Inter, sans-serif;
  font-size: 14px;
  color: var(--text-primary);
  background: none;
  position: relative;
  z-index: 2;
  font-weight: 400;
}

.TopBar-module__Qs8HAW__searchInput::-moz-placeholder {
  color: var(--text-muted);
  font-weight: 400;
  -moz-transition: opacity .3s;
  transition: opacity .3s;
}

.TopBar-module__Qs8HAW__searchInput::placeholder {
  color: var(--text-muted);
  font-weight: 400;
  transition: opacity .3s;
}

.TopBar-module__Qs8HAW__searchInput:focus::-moz-placeholder {
  opacity: 0;
}

.TopBar-module__Qs8HAW__searchInput:focus::placeholder {
  opacity: 0;
}

.TopBar-module__Qs8HAW__typingPlaceholder {
  position: absolute;
  top: 50%;
  left: 44px;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-family: Inter, sans-serif;
  font-size: 14px;
  pointer-events: none;
  z-index: 1;
  display: flex;
  align-items: center;
  font-weight: 400;
}

.TopBar-module__Qs8HAW__typingCursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--gradient-main);
  margin-left: 2px;
  animation: 1.2s infinite TopBar-module__Qs8HAW__blink;
}

@keyframes TopBar-module__Qs8HAW__blink {
  0%, 50% {
    opacity: 1;
  }

  51%, 100% {
    opacity: 0;
  }
}

.TopBar-module__Qs8HAW__searchResults {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--bg-secondary);
  border-radius: 8px;
  box-shadow: var(--shadow-dark);
  border: 1px solid var(--border-dark);
  z-index: 1001;
  overflow: hidden;
  max-height: 400px;
  overflow-y: auto;
}

.TopBar-module__Qs8HAW__searchLoading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  color: var(--text-secondary);
}

.TopBar-module__Qs8HAW__searchSpinner {
  width: 16px;
  height: 16px;
  border: 2px solid #ffbb4e33;
  border-top: 2px solid var(--vibrant-orange);
  border-radius: 50%;
  animation: 1s linear infinite TopBar-module__Qs8HAW__spin;
}

@keyframes TopBar-module__Qs8HAW__spin {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

.TopBar-module__Qs8HAW__resultsList {
  list-style: none;
  padding: 0;
  margin: 0;
}

.TopBar-module__Qs8HAW__resultItem {
  border-bottom: 1px solid var(--border-dark);
}

.TopBar-module__Qs8HAW__resultItem:last-child {
  border-bottom: none;
}

.TopBar-module__Qs8HAW__resultLink {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  text-decoration: none;
  color: var(--text-primary);
  transition: var(--transition-fast);
}

.TopBar-module__Qs8HAW__resultLink:hover {
  background: var(--bg-tertiary);
}

.TopBar-module__Qs8HAW__resultImageWrapper {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-tertiary);
}

.TopBar-module__Qs8HAW__resultImage {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: var(--transition-fast);
}

.TopBar-module__Qs8HAW__resultLink:hover .TopBar-module__Qs8HAW__resultImage {
  transform: scale(1.1);
}

.TopBar-module__Qs8HAW__resultInfo {
  flex: 1;
  min-width: 0;
}

.TopBar-module__Qs8HAW__resultName {
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-primary);
  display: block;
  margin-bottom: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.TopBar-module__Qs8HAW__resultDetails {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}

.TopBar-module__Qs8HAW__resultPrice {
  color: var(--vibrant-orange);
  font-weight: 600;
}

.TopBar-module__Qs8HAW__viewAllResults {
  padding: 12px 16px;
  text-align: center;
  border-top: 1px solid var(--border-dark);
  background: #ffbb4e0d;
}

.TopBar-module__Qs8HAW__viewAllResults a {
  color: var(--vibrant-orange);
  text-decoration: none;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition-fast);
}

.TopBar-module__Qs8HAW__viewAllResults a:hover {
  color: var(--vibrant-pink);
}

.TopBar-module__Qs8HAW__noResults {
  padding: 20px 16px;
  text-align: center;
  color: var(--text-secondary);
  font-family: Inter, sans-serif;
  font-size: 14px;
}

.TopBar-module__Qs8HAW__userActions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.TopBar-module__Qs8HAW__userProfileSection {
  position: relative;
}

.TopBar-module__Qs8HAW__userProfileButton {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
  padding: 12px 16px;
  border-radius: 6px;
}

.TopBar-module__Qs8HAW__userProfileButton:hover {
  background: #ffbb4e1a;
  transform: translateY(-1px);
}

.TopBar-module__Qs8HAW__userProfileButton:hover .TopBar-module__Qs8HAW__profileIcon {
  color: var(--vibrant-orange);
}

.TopBar-module__Qs8HAW__userInfo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 0;
}

.TopBar-module__Qs8HAW__userName {
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: var(--transition-fast);
}

.TopBar-module__Qs8HAW__userProfileButton:hover .TopBar-module__Qs8HAW__userName {
  color: var(--vibrant-orange);
}

.TopBar-module__Qs8HAW__iconLink {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition-smooth);
  cursor: pointer;
  border-radius: 12px;
  padding: 12px 16px;
  font-family: Inter, sans-serif;
}

.TopBar-module__Qs8HAW__iconLink:hover {
  background: #ffbb4e1a;
  box-shadow: var(--shadow-vibrant);
  transform: translateY(-2px)scale(1.05);
}

.TopBar-module__Qs8HAW__iconWrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.TopBar-module__Qs8HAW__iconLink svg, .TopBar-module__Qs8HAW__profileIcon {
  stroke-width: 2px;
  fill: none;
  transition: var(--transition-fast);
  stroke: var(--vibrant-orange) !important;
}

.TopBar-module__Qs8HAW__iconLink:hover svg, .TopBar-module__Qs8HAW__iconLink:hover .TopBar-module__Qs8HAW__profileIcon {
  transform: scale(1.1);
  stroke: var(--vibrant-pink) !important;
}

.TopBar-module__Qs8HAW__iconLabel {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  line-height: 1.2;
  white-space: nowrap;
  transition: var(--transition-fast);
}

.TopBar-module__Qs8HAW__iconLink:hover .TopBar-module__Qs8HAW__iconLabel {
  color: var(--vibrant-orange);
}

.TopBar-module__Qs8HAW__badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--gradient-main);
  color: var(--text-primary);
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  box-shadow: 0 2px 8px #ffbb4e80;
  border: 2px solid var(--bg-primary);
  animation: 2s infinite TopBar-module__Qs8HAW__pulse;
}

@keyframes TopBar-module__Qs8HAW__pulse {
  0%, 100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

.TopBar-module__Qs8HAW__userDropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 280px;
  background: var(--bg-secondary);
  border-radius: 8px;
  box-shadow: var(--shadow-dark);
  border: 1px solid var(--border-dark);
  z-index: 1001;
  overflow: hidden;
}

.TopBar-module__Qs8HAW__userDropdownHeader {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  background: #ffbb4e1a;
  border-bottom: 1px solid var(--border-dark);
}

.TopBar-module__Qs8HAW__userDropdownAvatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-main);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  flex-shrink: 0;
  box-shadow: 0 4px 12px #ffbb4e80;
}

.TopBar-module__Qs8HAW__userDropdownInfo {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.TopBar-module__Qs8HAW__userDropdownName {
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.TopBar-module__Qs8HAW__userDropdownEmail {
  font-family: Inter, sans-serif;
  font-size: 12px;
  color: var(--text-secondary);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.TopBar-module__Qs8HAW__userDropdownDivider {
  height: 1px;
  background: var(--border-dark);
}

.TopBar-module__Qs8HAW__userDropdownMenu {
  padding: 8px 0;
}

.TopBar-module__Qs8HAW__userDropdownMenuItem {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  text-decoration: none;
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 400;
  transition: var(--transition-fast);
}

.TopBar-module__Qs8HAW__userDropdownMenuItem:hover {
  background: var(--bg-tertiary);
  color: var(--vibrant-orange);
  transform: translateX(4px);
}

.TopBar-module__Qs8HAW__userDropdownMenuIcon {
  color: currentColor;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.TopBar-module__Qs8HAW__userDropdownLogout {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px 20px;
  background: none;
  border: none;
  color: var(--vibrant-pink);
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  text-align: left;
}

.TopBar-module__Qs8HAW__userDropdownLogout:hover {
  background: #ff3f6c1a;
  transform: translateX(4px);
}

.TopBar-module__Qs8HAW__megaMenu {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  width: 100%;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-dark);
  box-shadow: var(--shadow-dark);
  z-index: 999;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}

.TopBar-module__Qs8HAW__megaMenuContainer {
  max-width: 1980px;
  margin: 0 auto;
  padding: 40px;
  display: flex;
  gap: 40px;
}

.TopBar-module__Qs8HAW__megaMenuContent {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 100%;
}

.TopBar-module__Qs8HAW__menuColumn {
  display: flex;
  flex-direction: column;
}

.TopBar-module__Qs8HAW__columnTitle {
  margin: 0 0 20px;
  padding: 0;
}

.TopBar-module__Qs8HAW__columnTitleLink {
  color: var(--vibrant-orange);
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: var(--transition-fast);
  border-bottom: 2px solid #ffbb4e4d;
  padding-bottom: 8px;
}

.TopBar-module__Qs8HAW__columnTitleLink:hover {
  color: var(--vibrant-pink);
  border-bottom-color: var(--vibrant-pink);
  transform: translateX(4px);
}

.TopBar-module__Qs8HAW__subMenuList {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.TopBar-module__Qs8HAW__subLink {
  display: block;
  color: #fff;
  text-decoration: none;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 400;
  transition: var(--transition-fast);
  padding: 6px 0;
  line-height: 1.4;
  position: relative;
}

.TopBar-module__Qs8HAW__subLink:hover {
  color: var(--text-primary);
  padding-left: 12px;
}

.TopBar-module__Qs8HAW__subLink:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-main);
  transition: width .2s;
  transform: translateY(-50%);
  border-radius: 1px;
}

.TopBar-module__Qs8HAW__subLink:hover:before {
  width: 8px;
}

.TopBar-module__Qs8HAW__menuPreview {
  width: 280px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: var(--bg-secondary);
  box-shadow: var(--shadow-dark);
  border: 1px solid var(--border-dark);
}

.TopBar-module__Qs8HAW__previewImage {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform .5s;
}

.TopBar-module__Qs8HAW__menuItem:hover .TopBar-module__Qs8HAW__previewImage {
  transform: scale(1.05);
}

.TopBar-module__Qs8HAW__previewContent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, #000000e6, #0000);
  color: var(--text-primary);
}

.TopBar-module__Qs8HAW__previewTitle {
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: #0000;
}

.TopBar-module__Qs8HAW__previewText {
  color: #ffffffe6;
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 12px;
}

.TopBar-module__Qs8HAW__previewButton {
  display: inline-block;
  background: var(--gradient-main);
  color: var(--text-primary);
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 600;
  transition: var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: .5px;
  box-shadow: 0 2px 8px #ffbb4e80;
}

.TopBar-module__Qs8HAW__previewButton:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px #ffbb4e99;
  background: var(--gradient-hover);
}

.TopBar-module__Qs8HAW__sideDrawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(85vw, 380px);
  height: 100vh;
  background: var(--bg-primary);
  z-index: 9999;
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
  box-shadow: -10px 0 30px #00000080;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--border-dark);
}

.TopBar-module__Qs8HAW__sideDrawer.TopBar-module__Qs8HAW__open {
  right: 0;
}

.TopBar-module__Qs8HAW__sideDrawerOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000c;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
}

.TopBar-module__Qs8HAW__sideDrawerOverlay.TopBar-module__Qs8HAW__show {
  opacity: 1;
  visibility: visible;
}

.TopBar-module__Qs8HAW__sideDrawerHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--border-dark);
  background: var(--bg-secondary);
}

.TopBar-module__Qs8HAW__drawerTitle {
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: #0000;
}

.TopBar-module__Qs8HAW__closeButton {
  background: var(--bg-secondary);
  border: 1px solid var(--border-dark);
  color: var(--text-primary);
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.TopBar-module__Qs8HAW__closeButton:hover {
  background: #ffbb4e1a;
  border-color: var(--vibrant-orange);
  transform: scale(1.05);
}

.TopBar-module__Qs8HAW__closeIcon {
  stroke: var(--vibrant-orange);
  stroke-width: 2px;
  transition: var(--transition-fast);
  fill: none;
}

.TopBar-module__Qs8HAW__closeButton:hover .TopBar-module__Qs8HAW__closeIcon {
  transform: rotate(90deg);
  stroke: var(--vibrant-pink);
}

.TopBar-module__Qs8HAW__drawerContent {
  padding: 0;
  overflow-y: auto;
  flex: 1;
}

.TopBar-module__Qs8HAW__drawerMenu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.TopBar-module__Qs8HAW__drawerMenuItem {
  border-bottom: 1px solid var(--border-dark);
  overflow: hidden;
}

.TopBar-module__Qs8HAW__drawerMenuItemContent {
  display: flex;
  flex-direction: column;
}

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

.TopBar-module__Qs8HAW__drawerMenuLink {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  color: var(--text-primary);
  text-decoration: none;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 600;
  transition: var(--transition-fast);
  flex: 1;
  text-transform: uppercase;
  letter-spacing: .3px;
}

.TopBar-module__Qs8HAW__drawerMenuLink:hover {
  background: #ffbb4e1a;
  color: var(--vibrant-orange);
  transform: translateX(8px);
}

.TopBar-module__Qs8HAW__expandButton {
  background: none;
  border: none;
  padding: 16px 20px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  cursor: pointer;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.TopBar-module__Qs8HAW__expandButton:hover {
  color: var(--vibrant-orange);
  background: #ffbb4e1a;
}

.TopBar-module__Qs8HAW__expandIcon {
  transition: transform .3s cubic-bezier(.25, .46, .45, .94);
  stroke: currentColor;
  stroke-width: 2px;
  fill: none;
}

.TopBar-module__Qs8HAW__expandIcon.TopBar-module__Qs8HAW__rotate {
  transform: rotate(180deg);
  color: var(--vibrant-orange);
}

.TopBar-module__Qs8HAW__subMenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4, 0, .2, 1);
  background: #ffbb4e0d;
}

.TopBar-module__Qs8HAW__subMenu.TopBar-module__Qs8HAW__open {
  max-height: 1000px;
}

.TopBar-module__Qs8HAW__subMenuInner {
  padding: 12px 0;
}

.TopBar-module__Qs8HAW__subMenuGroup {
  margin-bottom: 8px;
}

.TopBar-module__Qs8HAW__subMenuHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffbb4e1a;
}

.TopBar-module__Qs8HAW__subMenuTitle {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: var(--text-primary);
  text-decoration: none;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition-fast);
  flex: 1;
}

.TopBar-module__Qs8HAW__subMenuTitle:hover {
  color: var(--vibrant-orange);
  background: #ffbb4e26;
  transform: translateX(8px);
}

.TopBar-module__Qs8HAW__subSubMenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s cubic-bezier(.4, 0, .2, 1);
  background: #ffbb4e08;
}

.TopBar-module__Qs8HAW__subSubMenu.TopBar-module__Qs8HAW__open {
  max-height: 500px;
}

.TopBar-module__Qs8HAW__subSubMenuGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 8px;
}

.TopBar-module__Qs8HAW__subMenuLink {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: var(--text-secondary);
  text-decoration: none;
  font-family: Inter, sans-serif;
  font-size: 14px;
  transition: var(--transition-fast);
  border-radius: 4px;
  background: #ffffff05;
  border-left: 3px solid #0000;
}

.TopBar-module__Qs8HAW__subMenuLink:hover {
  color: var(--vibrant-orange);
  background: #ffbb4e1a;
  border-left-color: var(--vibrant-orange);
  transform: translateX(8px);
}

.TopBar-module__Qs8HAW__drawerFooter {
  padding: 20px;
  border-top: 1px solid var(--border-dark);
  background: var(--bg-secondary);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: sticky;
  bottom: 0;
}

.TopBar-module__Qs8HAW__drawerContact {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-family: Inter, sans-serif;
  font-size: 14px;
  padding: 8px;
  border-radius: 4px;
  transition: var(--transition-fast);
}

.TopBar-module__Qs8HAW__drawerContact:hover {
  background: #ffbb4e1a;
  color: var(--text-primary);
}

.TopBar-module__Qs8HAW__contactIcon {
  color: var(--vibrant-orange);
  stroke-width: 2px;
  flex-shrink: 0;
}

.TopBar-module__Qs8HAW__drawerSocial {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  justify-content: center;
}

.TopBar-module__Qs8HAW__socialLink {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  text-decoration: none;
}

.TopBar-module__Qs8HAW__socialLink:hover {
  background: #ffbb4e1a;
  border-color: var(--vibrant-orange);
  transform: translateY(-2px)scale(1.05);
  box-shadow: var(--shadow-vibrant);
}

.TopBar-module__Qs8HAW__socialIcon {
  stroke: var(--vibrant-orange);
  stroke-width: 2px;
  fill: none;
  transition: var(--transition-fast);
}

.TopBar-module__Qs8HAW__socialLink:hover .TopBar-module__Qs8HAW__socialIcon {
  stroke: var(--vibrant-pink);
}

.TopBar-module__Qs8HAW__loadingContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  background: var(--bg-primary);
  color: var(--text-primary);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border-dark);
  box-shadow: var(--shadow-dark);
}

.TopBar-module__Qs8HAW__loadingSpinner {
  animation: 1s linear infinite TopBar-module__Qs8HAW__spin;
  color: var(--vibrant-orange);
}

.TopBar-module__Qs8HAW__loadingText {
  color: var(--text-secondary);
  font-family: Inter, sans-serif;
  font-size: 14px;
}

.TopBar-module__Qs8HAW__errorBanner {
  background: #f4433633;
  border: 1px solid #f4433680;
  color: #ff6b6b;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: Inter, sans-serif;
  font-size: 14px;
}

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

.TopBar-module__Qs8HAW__bannerButton {
  background: var(--bg-secondary);
  border: 1px solid var(--vibrant-orange);
  color: var(--vibrant-orange);
  padding: 6px 12px;
  border-radius: 4px;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}

.TopBar-module__Qs8HAW__bannerButton:hover {
  background: var(--vibrant-orange);
  color: var(--bg-primary);
}

.TopBar-module__Qs8HAW__retryIcon {
  animation: 1s linear infinite TopBar-module__Qs8HAW__spin;
}

@media (width <= 1200px) {
  .TopBar-module__Qs8HAW__topBarContainer {
    padding: 0 30px;
    gap: 15px;
  }

  .TopBar-module__Qs8HAW__searchBar {
    max-width: 450px;
    margin: 0 15px;
  }

  .TopBar-module__Qs8HAW__menuLink {
    padding: 20px 15px;
    font-size: 13px;
  }

  .TopBar-module__Qs8HAW__userActions {
    gap: 15px;
  }

  .TopBar-module__Qs8HAW__megaMenuContainer {
    padding: 30px;
    gap: 30px;
  }

  .TopBar-module__Qs8HAW__megaMenuContent {
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }

  .TopBar-module__Qs8HAW__menuPreview {
    width: 250px;
  }
}

@media (width <= 1024px) {
  .TopBar-module__Qs8HAW__topBarContainer {
    gap: 12px;
    padding: 0 20px;
  }

  .TopBar-module__Qs8HAW__searchBar {
    max-width: 350px;
    margin: 0 12px;
  }

  .TopBar-module__Qs8HAW__menuLink {
    padding: 20px 12px;
    font-size: 12px;
  }

  .TopBar-module__Qs8HAW__userActions {
    gap: 12px;
  }

  .TopBar-module__Qs8HAW__megaMenuContainer {
    padding: 20px;
    gap: 20px;
  }

  .TopBar-module__Qs8HAW__megaMenuContent {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
  }

  .TopBar-module__Qs8HAW__menuPreview {
    width: 220px;
  }

  .TopBar-module__Qs8HAW__previewImage {
    height: 160px;
  }
}

@media (width <= 768px) {
  .TopBar-module__Qs8HAW__topBarContainer {
    padding: 0 15px;
    gap: 10px;
    height: 70px;
  }

  .TopBar-module__Qs8HAW__logoImg {
    height: 32px;
    width: 45px;
  }

  .TopBar-module__Qs8HAW__menuWrapper {
    display: none;
  }

  .TopBar-module__Qs8HAW__mobileMenuButton {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .TopBar-module__Qs8HAW__searchBar {
    margin: 0 10px;
  }

  .TopBar-module__Qs8HAW__searchInputWrapper {
    height: 40px;
  }

  .TopBar-module__Qs8HAW__searchInput {
    padding: 10px 16px 10px 40px;
    font-size: 13px;
  }

  .TopBar-module__Qs8HAW__searchIcon {
    left: 14px;
  }

  .TopBar-module__Qs8HAW__typingPlaceholder {
    left: 40px;
    font-size: 13px;
  }

  .TopBar-module__Qs8HAW__userActions {
    gap: 10px;
  }

  .TopBar-module__Qs8HAW__iconLink, .TopBar-module__Qs8HAW__userProfileButton {
    padding: 8px 10px;
  }

  .TopBar-module__Qs8HAW__iconLabel, .TopBar-module__Qs8HAW__userName {
    font-size: 11px;
  }

  .TopBar-module__Qs8HAW__badge {
    top: -4px;
    right: -4px;
    min-width: 16px;
    height: 16px;
    font-size: 9px;
  }

  .TopBar-module__Qs8HAW__userDropdown {
    width: 260px;
    right: -10px;
  }
}

@media (width <= 480px) {
  .TopBar-module__Qs8HAW__topBarContainer {
    padding: 0 12px;
    gap: 8px;
    height: 64px;
  }

  .TopBar-module__Qs8HAW__logoImg {
    height: 28px;
    width: 40px;
  }

  .TopBar-module__Qs8HAW__searchBar {
    margin: 0 8px;
  }

  .TopBar-module__Qs8HAW__searchInputWrapper {
    height: 36px;
  }

  .TopBar-module__Qs8HAW__searchInput {
    padding: 8px 14px 8px 36px;
    font-size: 12px;
  }

  .TopBar-module__Qs8HAW__searchIcon {
    left: 12px;
    width: 14px;
    height: 14px;
  }

  .TopBar-module__Qs8HAW__typingPlaceholder {
    left: 36px;
    font-size: 12px;
  }

  .TopBar-module__Qs8HAW__userActions {
    gap: 8px;
  }

  .TopBar-module__Qs8HAW__iconLink, .TopBar-module__Qs8HAW__userProfileButton {
    padding: 6px 8px;
    gap: 3px;
  }

  .TopBar-module__Qs8HAW__iconLabel, .TopBar-module__Qs8HAW__userName {
    font-size: 10px;
  }

  .TopBar-module__Qs8HAW__badge {
    top: -3px;
    right: -3px;
    min-width: 14px;
    height: 14px;
    font-size: 8px;
  }

  .TopBar-module__Qs8HAW__userDropdown {
    width: 240px;
    right: -15px;
  }

  .TopBar-module__Qs8HAW__sideDrawer {
    width: min(90vw, 320px);
  }
}

@media (width <= 360px) {
  .TopBar-module__Qs8HAW__topBarContainer {
    height: 60px;
    padding: 0 10px;
    gap: 6px;
  }

  .TopBar-module__Qs8HAW__logoImg {
    height: 24px;
    width: 35px;
  }

  .TopBar-module__Qs8HAW__searchInputWrapper {
    height: 32px;
  }

  .TopBar-module__Qs8HAW__searchInput {
    padding: 6px 12px 6px 32px;
    font-size: 11px;
  }

  .TopBar-module__Qs8HAW__searchIcon {
    left: 10px;
    width: 12px;
    height: 12px;
  }

  .TopBar-module__Qs8HAW__typingPlaceholder {
    left: 32px;
    font-size: 11px;
  }

  .TopBar-module__Qs8HAW__iconLink, .TopBar-module__Qs8HAW__userProfileButton {
    padding: 4px 6px;
  }

  .TopBar-module__Qs8HAW__iconLabel, .TopBar-module__Qs8HAW__userName {
    font-size: 9px;
  }

  .TopBar-module__Qs8HAW__badge {
    top: -2px;
    right: -2px;
    min-width: 12px;
    height: 12px;
    font-size: 7px;
  }

  .TopBar-module__Qs8HAW__sideDrawer {
    width: 95vw;
  }
}

.TopBar-module__Qs8HAW__searchResults::-webkit-scrollbar, .TopBar-module__Qs8HAW__sideDrawer::-webkit-scrollbar, .TopBar-module__Qs8HAW__megaMenu::-webkit-scrollbar {
  width: 4px;
}

.TopBar-module__Qs8HAW__searchResults::-webkit-scrollbar-track, .TopBar-module__Qs8HAW__sideDrawer::-webkit-scrollbar-track, .TopBar-module__Qs8HAW__megaMenu::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

.TopBar-module__Qs8HAW__searchResults::-webkit-scrollbar-thumb, .TopBar-module__Qs8HAW__sideDrawer::-webkit-scrollbar-thumb, .TopBar-module__Qs8HAW__megaMenu::-webkit-scrollbar-thumb {
  background: #ffbb4e80;
  border-radius: 2px;
}

.TopBar-module__Qs8HAW__searchResults::-webkit-scrollbar-thumb:hover, .TopBar-module__Qs8HAW__sideDrawer::-webkit-scrollbar-thumb:hover, .TopBar-module__Qs8HAW__megaMenu::-webkit-scrollbar-thumb:hover {
  background: #ffbb4eb3;
}

@media (prefers-contrast: high) {
  .TopBar-module__Qs8HAW__navigationWrapper {
    border-bottom: 2px solid var(--vibrant-orange);
  }

  .TopBar-module__Qs8HAW__searchInputWrapper {
    border-width: 2px;
    border-color: var(--vibrant-orange);
  }

  .TopBar-module__Qs8HAW__iconLink, .TopBar-module__Qs8HAW__userProfileButton, .TopBar-module__Qs8HAW__mobileMenuButton {
    border: 2px solid #0000;
  }

  .TopBar-module__Qs8HAW__iconLink:focus, .TopBar-module__Qs8HAW__userProfileButton:focus, .TopBar-module__Qs8HAW__mobileMenuButton:focus {
    border-color: var(--vibrant-orange);
  }
}

@media (prefers-reduced-motion: reduce) {
  .TopBar-module__Qs8HAW__logo, .TopBar-module__Qs8HAW__searchInputWrapper, .TopBar-module__Qs8HAW__userProfileButton, .TopBar-module__Qs8HAW__iconLink, .TopBar-module__Qs8HAW__menuLink, .TopBar-module__Qs8HAW__megaMenu, .TopBar-module__Qs8HAW__sideDrawer, .TopBar-module__Qs8HAW__sideDrawerOverlay, .TopBar-module__Qs8HAW__expandIcon, .TopBar-module__Qs8HAW__closeIcon, .TopBar-module__Qs8HAW__mobileMenuButton, .TopBar-module__Qs8HAW__drawerMenuLink, .TopBar-module__Qs8HAW__subMenuLink, .TopBar-module__Qs8HAW__socialLink, .TopBar-module__Qs8HAW__typingCursor, .TopBar-module__Qs8HAW__searchSpinner, .TopBar-module__Qs8HAW__loadingSpinner, .TopBar-module__Qs8HAW__retryIcon, .TopBar-module__Qs8HAW__badge {
    transition: none !important;
    animation: none !important;
  }

  .TopBar-module__Qs8HAW__logo:hover, .TopBar-module__Qs8HAW__iconLink:hover, .TopBar-module__Qs8HAW__userProfileButton:hover, .TopBar-module__Qs8HAW__menuLink:hover, .TopBar-module__Qs8HAW__mobileMenuButton:hover {
    transform: none !important;
  }
}

@media print {
  .TopBar-module__Qs8HAW__navigationWrapper, .TopBar-module__Qs8HAW__sideDrawer, .TopBar-module__Qs8HAW__sideDrawerOverlay, .TopBar-module__Qs8HAW__megaMenu {
    display: none !important;
  }
}

.TopBar-module__Qs8HAW__sideDrawer, .TopBar-module__Qs8HAW__megaMenu {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

@supports (-webkit-touch-callout: none) {
  .TopBar-module__Qs8HAW__sideDrawer {
    height: -webkit-fill-available;
  }
}

.TopBar-module__Qs8HAW__menuItem:hover .TopBar-module__Qs8HAW__menuLink {
  background: #ffbb4e1a;
}

.TopBar-module__Qs8HAW__menuItem:nth-child(2) .TopBar-module__Qs8HAW__menuLink:hover {
  color: var(--vibrant-pink);
}

.TopBar-module__Qs8HAW__menuItem:nth-child(2) .TopBar-module__Qs8HAW__menuLink:hover:after {
  background: var(--vibrant-pink);
}

.TopBar-module__Qs8HAW__menuItem:nth-child(3) .TopBar-module__Qs8HAW__menuLink:hover {
  color: var(--vibrant-pink);
}

.TopBar-module__Qs8HAW__menuItem:nth-child(3) .TopBar-module__Qs8HAW__menuLink:hover:after {
  background: var(--gradient-main);
}

.TopBar-module__Qs8HAW__navigationWrapper {
  z-index: 1000;
}

.TopBar-module__Qs8HAW__megaMenu {
  z-index: 999;
}

.TopBar-module__Qs8HAW__searchResults, .TopBar-module__Qs8HAW__userDropdown {
  z-index: 1001;
}

.TopBar-module__Qs8HAW__sideDrawer {
  z-index: 9999;
}

.TopBar-module__Qs8HAW__sideDrawerOverlay {
  z-index: 9998;
}

.TopBar-module__Qs8HAW__logo:hover {
  filter: drop-shadow(0 4px 12px #ffbb4e80) brightness(1.2);
}

.TopBar-module__Qs8HAW__searchInputWrapper:focus-within {
  box-shadow: 0 0 0 1px var(--vibrant-orange), 0 0 20px #ffbb4e4d, inset 0 2px 8px #0000004d;
}

.TopBar-module__Qs8HAW__badge {
  box-shadow: 0 0 10px #ffbb4e99, 0 2px 8px #ffbb4e80;
}

.TopBar-module__Qs8HAW__userDropdownAvatar {
  box-shadow: 0 0 15px #ffbb4e99, 0 4px 12px #ffbb4e80;
}

.TopBar-module__Qs8HAW__previewButton {
  box-shadow: 0 0 10px #ffbb4e66, 0 2px 8px #ffbb4e80;
}

.TopBar-module__Qs8HAW__previewButton:hover {
  box-shadow: 0 0 20px #ffbb4eb3, 0 8px 20px #ffbb4e99;
}

.TopBar-module__Qs8HAW__iconLink:hover {
  box-shadow: 0 0 15px #ffbb4e66;
}

.TopBar-module__Qs8HAW__socialLink:hover {
  box-shadow: 0 0 15px #ffbb4e80;
}


/* [project]/src/app/(main)/components/styles/Header.module.css [app-client] (css) */
.Header-module__cpsXdG__header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fffffff2;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 6px #0000000d;
  z-index: 1000;
  transition: all .3s;
}

.Header-module__cpsXdG__topBar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  border-bottom: 1px solid #0000000d;
}

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

.Header-module__cpsXdG__logoText {
  font-weight: 600;
  font-size: 1.5rem;
  color: #333;
}

.Header-module__cpsXdG__searchBar {
  position: relative;
  flex-grow: 1;
  max-width: 500px;
  margin: 0 2rem;
}

.Header-module__cpsXdG__searchBar input {
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid #0000001a;
  border-radius: 30px;
  font-size: .95rem;
  transition: all .3s;
  outline: none;
}

.Header-module__cpsXdG__searchBar input:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 3px #007bff1a;
}

.Header-module__cpsXdG__searchButton {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .3s;
}

.Header-module__cpsXdG__searchButton:hover {
  background-color: #0056b3;
}

.Header-module__cpsXdG__userActions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.Header-module__cpsXdG__iconLink {
  text-decoration: none;
  color: #333;
  transition: color .3s;
}

.Header-module__cpsXdG__iconLink:hover {
  color: #007bff;
}

.Header-module__cpsXdG__mobileMenuButton {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}

.Header-module__cpsXdG__mobileMenu {
  display: none;
  padding: 1rem;
  background-color: #fff;
}

.Header-module__cpsXdG__mobileSearch {
  margin-bottom: 1rem;
  position: relative;
}

@media (width <= 1200px) {
  .Header-module__cpsXdG__topBar {
    flex-direction: column;
    align-items: center;
  }

  .Header-module__cpsXdG__searchBar {
    margin: 1rem 0;
    width: 100%;
    max-width: 100%;
  }

  .Header-module__cpsXdG__mobileMenuButton {
    display: block;
    position: absolute;
    right: 2rem;
    top: 1.5rem;
  }

  .Header-module__cpsXdG__userActions {
    margin-top: 1rem;
  }

  .Header-module__cpsXdG__mobileMenu {
    display: block;
  }
}

@keyframes Header-module__cpsXdG__fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* [project]/src/app/(main)/components/styles/Footer.module.css [app-client] (css) */
.Footer-module__yc7xOW__footer {
  width: 100%;
  background-color: #000;
  color: #fff;
  color: #1a1a1a;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #ffbb4e1a;
  margin-top: auto;
}

.Footer-module__yc7xOW__footer:before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .02;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle at 20% 80%, #ffbb4e0f 0%, #0000 50%), radial-gradient(circle at 80% 20%, #f74a4c0a 0%, #0000 50%), radial-gradient(circle, #d03fc008 0%, #0000 50%);
}

.Footer-module__yc7xOW__footerContainer {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 1.5rem 0;
  position: relative;
  z-index: 2;
}

.Footer-module__yc7xOW__footerGrid {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
  align-items: start;
}

.Footer-module__yc7xOW__logoContainer {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  margin-top: -1rem;
}

.Footer-module__yc7xOW__footerLogo {
  display: block;
  text-decoration: none;
  transition: all .3s cubic-bezier(.25, .46, .45, .94);
  filter: drop-shadow(0 2px 8px #ffbb4e1f);
}

.Footer-module__yc7xOW__footerLogo:hover {
  transform: scale(1.02);
  filter: drop-shadow(0 4px 12px #ffbb4e33);
}

.Footer-module__yc7xOW__logoImage {
  display: block;
  width: auto;
  height: auto;
}

.Footer-module__yc7xOW__logoImg {
  height: 150px;
  width: auto;
  max-width: 220px;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
}

.Footer-module__yc7xOW__footerAbout {
  font-family: Inter, sans-serif;
  font-size: .9rem;
  line-height: 1.6;
  color: #fff;
  text-align: center;
  margin: 0;
  max-width: 170px;
  margin-top: -2.5rem;
}

.Footer-module__yc7xOW__socialLinks {
  display: flex;
  gap: 1rem;
  margin-top: .5rem;
}

.Footer-module__yc7xOW__socialLink {
  position: relative;
  width: 35px;
  height: 35px;
  background: #fff;
  border: 1px solid #ffbb4e33;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all .3s cubic-bezier(.25, .46, .45, .94);
  box-shadow: 0 2px 8px #0000000a;
  overflow: hidden;
}

.Footer-module__yc7xOW__socialLink:hover {
  transform: translateY(-2px)scale(1.05);
  border-color: #ffbb4e66;
  box-shadow: 0 6px 20px #ffbb4e26;
}

.Footer-module__yc7xOW__linkOverlay {
  position: relative;
  z-index: 2;
  color: #666;
  transition: color .3s;
}

.Footer-module__yc7xOW__socialLink:hover .Footer-module__yc7xOW__linkOverlay {
  color: #fff;
}

.Footer-module__yc7xOW__linkBackground {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .3s;
  z-index: 1;
}

.Footer-module__yc7xOW__socialLink:hover .Footer-module__yc7xOW__linkBackground {
  opacity: 1;
}

.Footer-module__yc7xOW__linkIcon {
  width: 20px;
  height: 20px;
  stroke-width: 2px;
}

.Footer-module__yc7xOW__facebookBg {
  background: linear-gradient(135deg, #1877f2 0%, #42a5f5 100%);
}

.Footer-module__yc7xOW__instagramBg {
  background: linear-gradient(135deg, #e91e63 0%, #f06292 50%, #ffb74d 100%);
}

.Footer-module__yc7xOW__linkedinBg {
  background: linear-gradient(135deg, #0077b5 0%, #0099d4 100%);
}

.Footer-module__yc7xOW__footerLinksSection {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.Footer-module__yc7xOW__footerTitle {
  font-family: Inter, sans-serif;
  font-size: .8rem;
  font-weight: 600;
  color: #ffbb4e;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 1rem;
  position: relative;
  padding-bottom: .5rem;
}

.Footer-module__yc7xOW__footerTitle:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 25px;
  height: 2px;
  background: linear-gradient(135deg, #ffbb4e 0%, #f74a4c 100%);
}

.Footer-module__yc7xOW__footerLinks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.Footer-module__yc7xOW__footerLink {
  font-family: Inter, sans-serif;
  font-size: .85rem;
  color: #fff;
  text-decoration: none;
  transition: all .3s cubic-bezier(.25, .46, .45, .94);
  position: relative;
  padding-left: 0;
  display: inline-block;
}

.Footer-module__yc7xOW__footerLink:hover {
  color: #ffbb4e;
  padding-left: .5rem;
}

.Footer-module__yc7xOW__footerLink:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #ffbb4e 0%, #f74a4c 100%);
  transition: width .2s;
  transform: translateY(-50%);
}

.Footer-module__yc7xOW__footerLink:hover:before {
  width: 6px;
}

.Footer-module__yc7xOW__usersSection {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.Footer-module__yc7xOW__sellerButtonsContainer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.Footer-module__yc7xOW__becomeSellerBtnEnhanced {
  position: relative;
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #ffbb4e 0%, #f74a4c 60%, #d03fc0 100%);
  border-radius: 16px;
  text-decoration: none;
  color: #fff;
  overflow: hidden;
  transition: all .4s cubic-bezier(.25, .46, .45, .94);
  box-shadow: 0 4px 16px #ffbb4e40;
  border: none;
}

.Footer-module__yc7xOW__becomeSellerBtnEnhanced:hover {
  transform: translateY(-3px)scale(1.02);
  box-shadow: 0 12px 32px #ffbb4e59;
}

.Footer-module__yc7xOW__btnBackground {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ffffff26 0%, #0000 100%);
  opacity: 0;
  transition: opacity .3s;
}

.Footer-module__yc7xOW__becomeSellerBtnEnhanced:hover .Footer-module__yc7xOW__btnBackground {
  opacity: 1;
}

.Footer-module__yc7xOW__btnContent {
  display: flex;
  align-items: center;
  gap: .8rem;
  width: 100%;
  position: relative;
  z-index: 2;
}

.Footer-module__yc7xOW__btnIconContainer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Footer-module__yc7xOW__btnIcon {
  width: 20px;
  height: 20px;
  stroke-width: 2px;
}

.Footer-module__yc7xOW__sparkleIcon {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 12px;
  height: 12px;
  color: #fffc;
  animation: 2s ease-in-out infinite Footer-module__yc7xOW__sparkleAnimation;
}

@keyframes Footer-module__yc7xOW__sparkleAnimation {
  0%, 100% {
    opacity: .6;
    transform: scale(1)rotate(0);
  }

  50% {
    opacity: 1;
    transform: scale(1.2)rotate(180deg);
  }
}

.Footer-module__yc7xOW__btnTextContainer {
  flex: 1;
}

.Footer-module__yc7xOW__btnMainText {
  font-family: Inter, sans-serif;
  font-size: .9rem;
  font-weight: 600;
}

.Footer-module__yc7xOW__btnArrowContainer {
  display: flex;
  align-items: center;
  justify-content: center;
}

.Footer-module__yc7xOW__arrowIcon {
  width: 16px;
  height: 16px;
  stroke-width: 2.5px;
  transition: transform .3s;
}

.Footer-module__yc7xOW__becomeSellerBtnEnhanced:hover .Footer-module__yc7xOW__arrowIcon {
  transform: translateX(4px);
}

.Footer-module__yc7xOW__btnShine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, #0000, #ffffff4d, #0000);
  transform: translateX(-100%);
  transition: transform .6s;
}

.Footer-module__yc7xOW__becomeSellerBtnEnhanced:hover .Footer-module__yc7xOW__btnShine {
  transform: translateX(100%);
}

.Footer-module__yc7xOW__loginSellerBtn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .8rem 1.2rem;
  background: #fff;
  border: 1px solid #ffbb4e4d;
  border-radius: 12px;
  text-decoration: none;
  color: #1a1a1a;
  font-family: Inter, sans-serif;
  font-size: .85rem;
  font-weight: 500;
  transition: all .3s cubic-bezier(.25, .46, .45, .94);
  overflow: hidden;
  box-shadow: 0 2px 8px #0000000a;
}

.Footer-module__yc7xOW__loginSellerBtn:hover {
  background: #ffbb4e14;
  border-color: #ffbb4e80;
  color: #ffbb4e;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px #ffbb4e26;
}

.Footer-module__yc7xOW__loginSellerBtn .Footer-module__yc7xOW__btnContent {
  display: flex;
  align-items: center;
  gap: .6rem;
  position: relative;
  z-index: 2;
}

.Footer-module__yc7xOW__loginSellerBtn .Footer-module__yc7xOW__btnIcon {
  width: 16px;
  height: 16px;
  stroke-width: 2px;
  color: #ffbb4e;
}

.Footer-module__yc7xOW__btnText {
  font-weight: 500;
}

.Footer-module__yc7xOW__btnRipple {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, #ffbb4e1a 0%, #0000 70%);
  opacity: 0;
  transform: scale(0);
  transition: all .3s;
}

.Footer-module__yc7xOW__loginSellerBtn:hover .Footer-module__yc7xOW__btnRipple {
  opacity: 1;
  transform: scale(1);
}

.Footer-module__yc7xOW__footerBottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0;
  border-top: 1px solid #ffbb4e1a;
  margin-top: 2rem;
}

.Footer-module__yc7xOW__copyright {
  font-family: Inter, sans-serif;
  font-size: .75rem;
  color: #999;
  margin: 0;
  letter-spacing: .3px;
}

.Footer-module__yc7xOW__paymentMethods {
  display: flex;
  align-items: center;
  gap: .8rem;
  flex-wrap: wrap;
}

.Footer-module__yc7xOW__paymentIcon {
  width: 42px;
  height: 30px;
  background: #fff;
  border: 1px solid #ffbb4e26;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all .3s cubic-bezier(.25, .46, .45, .94);
  box-shadow: 0 2px 6px #0000000a;
}

.Footer-module__yc7xOW__paymentIcon:hover {
  transform: translateY(-2px)scale(1.05);
  border-color: #ffbb4e4d;
  box-shadow: 0 6px 16px #ffbb4e1f;
}

.Footer-module__yc7xOW__paymentIcon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  padding: 3px;
}

@media (width <= 1024px) {
  .Footer-module__yc7xOW__footerContainer {
    padding: 2.5rem 1rem 0;
  }

  .Footer-module__yc7xOW__footerGrid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.5rem;
  }

  .Footer-module__yc7xOW__logoContainer {
    grid-column: 1 / -1;
    align-items: center;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
  }

  .Footer-module__yc7xOW__logoImage {
    display: flex;
    justify-content: center;
  }

  .Footer-module__yc7xOW__footerAbout {
    text-align: center;
    max-width: 400px;
  }

  .Footer-module__yc7xOW__socialLinks {
    justify-content: center;
  }

  .Footer-module__yc7xOW__usersSection {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (width <= 768px) {
  .Footer-module__yc7xOW__footerContainer {
    padding: 2rem .8rem 0;
  }

  .Footer-module__yc7xOW__footerGrid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .Footer-module__yc7xOW__logoContainer {
    grid-column: 1 / -1;
  }

  .Footer-module__yc7xOW__usersSection {
    grid-column: 1 / -1;
  }

  .Footer-module__yc7xOW__footerBottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    padding: 1.5rem 0;
  }

  .Footer-module__yc7xOW__paymentMethods {
    justify-content: center;
  }

  .Footer-module__yc7xOW__becomeSellerBtnEnhanced, .Footer-module__yc7xOW__loginSellerBtn {
    padding: .9rem 1.3rem;
  }

  .Footer-module__yc7xOW__btnMainText {
    font-size: .85rem;
  }
}

@media (width <= 480px) {
  .Footer-module__yc7xOW__footerContainer {
    padding: 1.8rem .6rem 0;
  }

  .Footer-module__yc7xOW__footerGrid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .Footer-module__yc7xOW__logoContainer {
    align-items: center;
  }

  .Footer-module__yc7xOW__logoImg {
    height: 90px;
    max-width: 200px;
  }

  .Footer-module__yc7xOW__footerAbout {
    text-align: center;
    max-width: 100%;
  }

  .Footer-module__yc7xOW__socialLinks {
    justify-content: center;
    gap: .8rem;
  }

  .Footer-module__yc7xOW__socialLink {
    width: 42px;
    height: 42px;
  }

  .Footer-module__yc7xOW__linkIcon {
    width: 18px;
    height: 18px;
  }

  .Footer-module__yc7xOW__footerLinksSection {
    gap: 1.2rem;
  }

  .Footer-module__yc7xOW__footerTitle {
    text-align: center;
    font-size: .75rem;
  }

  .Footer-module__yc7xOW__footerTitle:after {
    left: 50%;
    transform: translateX(-50%);
  }

  .Footer-module__yc7xOW__footerLinks {
    gap: .7rem;
    align-items: center;
  }

  .Footer-module__yc7xOW__footerLink {
    font-size: .8rem;
  }

  .Footer-module__yc7xOW__sellerButtonsContainer {
    gap: .8rem;
  }

  .Footer-module__yc7xOW__becomeSellerBtnEnhanced {
    padding: .8rem 1.2rem;
  }

  .Footer-module__yc7xOW__btnMainText {
    font-size: .8rem;
  }

  .Footer-module__yc7xOW__loginSellerBtn {
    padding: .7rem 1rem;
    font-size: .8rem;
  }

  .Footer-module__yc7xOW__paymentIcon {
    width: 38px;
    height: 26px;
  }

  .Footer-module__yc7xOW__copyright {
    font-size: .7rem;
    text-align: center;
  }
}

@media (width <= 360px) {
  .Footer-module__yc7xOW__footerContainer {
    padding: 1.5rem .5rem 0;
  }

  .Footer-module__yc7xOW__footerGrid {
    gap: 1.5rem;
  }

  .Footer-module__yc7xOW__logoImg {
    height: 35px;
    max-width: 180px;
  }

  .Footer-module__yc7xOW__socialLink {
    width: 38px;
    height: 38px;
  }

  .Footer-module__yc7xOW__linkIcon {
    width: 16px;
    height: 16px;
  }

  .Footer-module__yc7xOW__footerLink {
    font-size: .75rem;
  }

  .Footer-module__yc7xOW__becomeSellerBtnEnhanced {
    padding: .7rem 1rem;
  }

  .Footer-module__yc7xOW__btnMainText {
    font-size: .75rem;
  }

  .Footer-module__yc7xOW__loginSellerBtn {
    padding: .6rem .9rem;
    font-size: .75rem;
  }

  .Footer-module__yc7xOW__paymentIcon {
    width: 34px;
    height: 22px;
  }
}

@media (prefers-contrast: high) {
  .Footer-module__yc7xOW__footer {
    background: #fff;
    border-top: 3px solid #ffbb4e;
  }

  .Footer-module__yc7xOW__footerLink, .Footer-module__yc7xOW__socialLink, .Footer-module__yc7xOW__becomeSellerBtnEnhanced, .Footer-module__yc7xOW__loginSellerBtn {
    border-width: 2px;
    border-color: #ffbb4e;
  }
}

@media (prefers-reduced-motion: reduce) {
  .Footer-module__yc7xOW__footerLogo, .Footer-module__yc7xOW__socialLink, .Footer-module__yc7xOW__footerLink, .Footer-module__yc7xOW__becomeSellerBtnEnhanced, .Footer-module__yc7xOW__loginSellerBtn, .Footer-module__yc7xOW__paymentIcon, .Footer-module__yc7xOW__sparkleIcon, .Footer-module__yc7xOW__btnShine, .Footer-module__yc7xOW__btnRipple {
    transition: none !important;
    animation: none !important;
  }

  .Footer-module__yc7xOW__footerLogo:hover, .Footer-module__yc7xOW__socialLink:hover, .Footer-module__yc7xOW__becomeSellerBtnEnhanced:hover, .Footer-module__yc7xOW__loginSellerBtn:hover, .Footer-module__yc7xOW__paymentIcon:hover {
    transform: none !important;
  }
}

.Footer-module__yc7xOW__youtubeBg {
  background: linear-gradient(45deg, red, #c4302b);
}


/* [project]/src/app/Main.module.css [app-client] (css) */
.Main-module__oCypza__mainContent {
  width: 100%;
  flex: 1;
  position: relative;
  margin-top: 5rem !important;
}

@media (width <= 768px) {
  .Main-module__oCypza__mainContent {
    margin-top: 5rem;
  }
}

@media (width <= 480px) {
  .Main-module__oCypza__mainContent {
    margin-top: 4rem;
  }
}


/*# sourceMappingURL=src_app_00c7a3._.css.map*/
