/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Page Container */
.page-container {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: -webkit-fill-available;
  overflow: hidden;
  background: radial-gradient(50% 50% at 50% 50%, #202020 0%, #131313 100%);
}

/* iOS safe area support */
@supports (padding: max(0px)) {
  .page-container {
    padding-left: max(0px, env(safe-area-inset-left));
    padding-right: max(0px, env(safe-area-inset-right));
  }
}

/* Category Navigation */
.category-nav {
  position: absolute;
  top: 4rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(19, 19, 19, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 50px;
}

@media (min-width: 768px) {
  .category-nav {
    top: 5rem;
    gap: 1rem;
    padding: 0.75rem 2rem;
  }
}

@media (min-width: 1024px) {
  .category-nav {
    gap: 2rem;
    background: transparent;
    backdrop-filter: none;
    border-radius: 0;
  }
}

.category-btn {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0.25rem 0.5rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .category-btn {
    font-size: 1.25rem;
    padding: 0.5rem 0.75rem;
  }
}

@media (min-width: 1024px) {
  .category-btn {
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
  }
}

.category-btn:hover {
  color: rgba(255, 255, 255, 0.7);
  transform: scale(1.05);
}

.category-btn.active {
  color: #ffffff;
}

/* Background Large ONI Text */
.background-text {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  overflow: hidden;
}

.oni-background {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(200px, 36vw, 696px);
  line-height: 1;
  text-align: center;
  color: rgba(238, 191, 230, 0.29);
  white-space: nowrap;
}

/* Main Content Container */
.main-content {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 7rem 1rem 2rem;
}

/* Desktop Grid Layout */
@media (min-width: 1024px) {
  .main-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    padding: 4rem 5rem;
  }
}

/* Left Column - Info Section */
.left-column {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 100%;
  padding: 0 1rem 6rem;
  order: 3;
}

@media (min-width: 768px) {
  .left-column {
    max-width: 40rem;
    padding: 0 1.5rem 7rem;
    order: 3;
  }
}

@media (min-width: 1024px) {
  .left-column {
    max-width: none;
    padding: 0;
    justify-content: space-between;
    order: 1;
  }
}

.logo-container {
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .logo-container {
    margin-bottom: 2rem;
  }
}

@media (min-width: 1024px) {
  .logo-container {
    margin-bottom: 0;
  }
}

.logo {
  width: 3rem;
  height: 3rem;
}

@media (min-width: 768px) {
  .logo {
    width: 4rem;
    height: 4rem;
  }
}

@media (min-width: 1024px) {
  .logo {
    width: 5rem;
    height: 5rem;
  }
}

.info-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .info-section {
    gap: 1.5rem;
  }
}

.info-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 8vw, 91px);
  line-height: 1;
  color: #ffffff;
}

.info-text {
  color: white;
  font-size: 0.875rem;
  line-height: 1.75;
  max-width: 610px;
  opacity: 0.95;
}

@media (min-width: 768px) {
  .info-text {
    font-size: 1rem;
    opacity: 1;
  }
}

@media (min-width: 1024px) {
  .info-text {
    font-size: 1.125rem;
  }
}

/* More Info Button - Desktop */
.more-info-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .more-info-desktop {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
  }
}

.arrow-button {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(32, 32, 32, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

@media (min-width: 1280px) {
  .arrow-button {
    width: 5rem;
    height: 5rem;
  }
}

.arrow-button:hover {
  background: rgba(32, 32, 32, 0.4);
}

.arrow-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: rgba(255, 255, 255, 0.25);
  transition: color 0.3s ease;
}

@media (min-width: 1280px) {
  .arrow-icon {
    width: 2rem;
    height: 2rem;
  }
}

.arrow-button:hover .arrow-icon {
  color: rgba(255, 255, 255, 0.4);
}

.more-info-text {
  font-family: 'Bebas Neue', sans-serif;
  color: white;
  font-size: 1.5rem;
  line-height: 1;
}

@media (min-width: 1280px) {
  .more-info-text {
    font-size: 2.188rem;
  }
}

/* Center Column - Main Video/Image */
.center-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
  order: 1;
  min-height: 80vw;
  margin: 0;
  padding: 0;
}

@media (min-width: 768px) {
  .center-column {
    order: 2;
    min-height: 60vh;
    z-index: 20;
  }
}

@media (min-width: 1024px) {
  .center-column {
    min-height: auto;
    margin-bottom: 0;
  }
}

.main-image-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100vh;
  max-width: none;
  z-index: -1;
  transition: transform 0.1s ease-out;
}

/* Loading Animation */
.loading-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  z-index: 2;
  opacity: 1;
  transition: opacity 0.3s ease-out;
  pointer-events: none;
}

.loading-container.hidden {
  opacity: 0;
  pointer-events: none;
}

.loading-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (min-width: 768px) {
  .loading-container {
    width: 300px;
    height: 300px;
  }
}

@media (min-width: 1024px) {
  .loading-container {
    width: 400px;
    height: 400px;
  }
}

/* 3D Model Container */
.model-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90vw;
  height: 40vh;
  max-height: 350px;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-mask-image: linear-gradient(
    to bottom,
    black 0%,
    black 85%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    black 0%,
    black 85%,
    transparent 100%
  );
}

@media (min-width: 768px) {
  .model-container {
    width: 100vw;
    height: 80vh;
    max-height: none;
    z-index: 15;
    -webkit-mask-image: linear-gradient(
      to right,
      transparent 0%,
      black 5%,
      black 95%,
      transparent 100%
    );
    mask-image: linear-gradient(
      to right,
      transparent 0%,
      black 5%,
      black 95%,
      transparent 100%
    );
  }
}

@media (min-width: 1024px) {
  .model-container {
    width: 50vw;
    height: 100vh;
    -webkit-mask-image: linear-gradient(
      to right,
      transparent 0%,
      black 10%,
      black 90%,
      transparent 100%
    );
    mask-image: linear-gradient(
      to right,
      transparent 0%,
      black 10%,
      black 90%,
      transparent 100%
    );
  }
}

.model-container.visible {
  opacity: 1;
}

.model-container canvas {
  display: block;
  width: 100%;
  height: 100%;
  cursor: grab;
  pointer-events: auto;
}

.model-container canvas:active {
  cursor: grabbing;
}

.main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

/* Video specific styles */
video.main-image {
  background: transparent;
}

/* Video transition animations */
.main-image.fade-out {
  opacity: 0;
  transform: scale(0.85);
}

.main-image.fade-in {
  opacity: 1;
  transform: scale(1);
}

.buy-button-container {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  padding: 0 1rem;
  width: calc(100% - 2rem);
  max-width: 500px;
}

/* iOS safe area for buy button */
@supports (padding: max(0px)) {
  .buy-button-container {
    bottom: max(1.5rem, calc(1.5rem + env(safe-area-inset-bottom)));
  }
}

@media (min-width: 768px) {
  .buy-button-container {
    position: absolute;
    bottom: 3rem;
    padding: 0;
    width: auto;
    max-width: none;
  }

  @supports (padding: max(0px)) {
    .buy-button-container {
      bottom: max(3rem, calc(3rem + env(safe-area-inset-bottom)));
    }
  }
}

.buy-button {
  padding: 1rem 2rem;
  border-radius: 9999px;
  border: 2px solid white;
  background: rgba(19, 19, 19, 0.9);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

@media (min-width: 768px) {
  .buy-button {
    padding: 1.5rem 4rem;
    background: transparent;
    backdrop-filter: none;
    width: auto;
  }
}

.buy-button:hover {
  background: rgba(255, 255, 255, 0.1);
}

.buy-button:active {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(0.95);
}

.buy-button-text {
  font-family: 'Bebas Neue', sans-serif;
  color: white;
  font-size: 1.5rem;
  line-height: 1;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .buy-button-text {
    font-size: 2.188rem;
  }
}

/* Right Column - Navigation and Labels */
.right-column {
  display: flex;
  order: 2;
  width: calc(100% - 2rem);
  overflow-x: hidden;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0;
  background: rgba(19, 19, 19, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  margin: 0 1rem 1rem;
  flex-shrink: 0;
  min-height: auto;
  z-index: 10;
  position: relative;
  justify-content: center;
}

.right-column .arrow-button {
  display: none;
}

.right-column::-webkit-scrollbar {
  display: none;
}

@media (min-width: 768px) {
  .right-column {
    padding: 0;
    margin: 0 1.5rem 2rem;
    width: calc(100% - 3rem);
    order: 2;
  }
}

@media (min-width: 1024px) {
  .right-column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    right: 10rem;
    top: 50%;
    transform: translateY(-50%);
    height: 80vh;
    width: auto;
    z-index: 30;
    overflow: visible;
    padding: 0;
    margin: 0;
    background: transparent;
    backdrop-filter: none;
    border-radius: 0;
    order: 3;
  }

  .right-column .arrow-button {
    display: block;
  }
}

.navigation-labels {
  text-align: center;
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  padding: 1rem;
  align-items: center;
  flex-shrink: 0;
  min-height: fit-content;
  position: relative;
  justify-content: center;
}

/* Smooth scroll animation for navigation */
.navigation-labels.smooth-scroll {
  animation: smooth-slide 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes smooth-slide {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  20% {
    opacity: 0.3;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@media (min-width: 1024px) {
  @keyframes smooth-slide {
    0% {
      transform: translateY(100px);
      opacity: 0;
    }
    20% {
      opacity: 0.3;
    }
    80% {
      opacity: 1;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }
}

@media (min-width: 1024px) {
  .navigation-labels {
    flex-direction: column;
    gap: 1rem;
    padding: 0;
  }
}

.nav-label {
  font-family: 'Bebas Neue', sans-serif;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.nav-label:hover {
  transform: scale(1.1);
}

/* Fade effect for navigation items - mobile and tablet */
.nav-label:nth-child(1) {
  opacity: 0.2;
}
.nav-label:nth-child(2) {
  opacity: 0.4;
}
.nav-label:nth-child(3) {
  opacity: 0.6;
}
.nav-label:nth-child(4) {
  opacity: 0.8;
}

/* Center item - full opacity */
.nav-label:nth-child(5) {
  opacity: 1;
}

/* Fade right items */
.nav-label:nth-child(6) {
  opacity: 0.8;
}
.nav-label:nth-child(7) {
  opacity: 0.6;
}
.nav-label:nth-child(8) {
  opacity: 0.4;
}
.nav-label:nth-child(9) {
  opacity: 0.2;
}

/* Desktop fade effect - stronger fade */
@media (min-width: 1024px) {
  .nav-label:nth-child(1) {
    opacity: 0.1;
  }
  .nav-label:nth-child(2) {
    opacity: 0.3;
  }
  .nav-label:nth-child(3) {
    opacity: 0.5;
  }
  .nav-label:nth-child(4) {
    opacity: 0.7;
  }

  .nav-label:nth-child(5) {
    opacity: 1;
  }

  .nav-label:nth-child(6) {
    opacity: 0.7;
  }
  .nav-label:nth-child(7) {
    opacity: 0.5;
  }
  .nav-label:nth-child(8) {
    opacity: 0.3;
  }
  .nav-label:nth-child(9) {
    opacity: 0.1;
  }
}

.nav-label-inactive {
  font-size: 1.75rem;
  color: rgba(252, 203, 244, 0.5);
}

@media (min-width: 768px) {
  .nav-label-inactive {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .nav-label-inactive {
    font-size: 4.438rem;
    color: rgba(252, 203, 244, 0.17);
  }
}

.nav-label-inactive:hover {
  color: rgba(252, 203, 244, 0.4);
}

.nav-label-active {
  font-size: 2.25rem;
  color: #fccbf4;
}

@media (min-width: 768px) {
  .nav-label-active {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .nav-label-active {
    font-size: 4.438rem;
  }
}

/* Mobile Navigation Labels - Hidden (using right-column instead) */
.mobile-navigation {
  display: none;
}

.mobile-nav-label {
  font-family: 'Bebas Neue', sans-serif;
  line-height: 1;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  padding: 0.5rem;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.mobile-nav-label:active {
  transform: scale(0.95);
}

.mobile-nav-inactive {
  font-size: 1.5rem;
  color: rgba(252, 203, 244, 0.5);
}

@media (min-width: 768px) {
  .mobile-nav-inactive {
    font-size: 2.5rem;
  }
}

.mobile-nav-active {
  font-size: 2rem;
  color: #fccbf4;
}

@media (min-width: 768px) {
  .mobile-nav-active {
    font-size: 3rem;
  }
}

/* Mobile More Info Button */
.mobile-more-info {
  display: flex;
  justify-content: center;
  padding-bottom: 2rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 1024px) {
  .mobile-more-info {
    display: none;
  }
}

.mobile-info-button {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(32, 32, 32, 0.25);
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  min-height: 44px;
}

.mobile-info-button:hover {
  background: rgba(32, 32, 32, 0.4);
}

.mobile-info-button:active {
  transform: scale(0.95);
}

.mobile-info-text {
  font-family: 'Bebas Neue', sans-serif;
  color: white;
  font-size: 1.25rem;
  line-height: 1;
}

@media (min-width: 768px) {
  .mobile-info-text {
    font-size: 1.5rem;
  }
}

/* Details Section */
.details-section {
  width: 100%;
  min-height: 100vh;
  background: radial-gradient(50% 50% at 50% 50%, #202020 0%, #131313 100%);
  padding: 6rem 1.5rem;
  position: relative;
  overflow-x: hidden;
}

.details-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

.details-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: 100%;
}

.details-block {
  background: rgba(32, 32, 32, 0.4);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out, background-color 0.3s ease, border-color 0.3s ease;
}

.details-block.visible {
  opacity: 1;
  transform: translateY(0);
}

.details-block:hover {
  border-color: rgba(238, 191, 230, 0.2);
  background: rgba(32, 32, 32, 0.5);
}

.details-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #fccbf4;
  margin-bottom: 1.5rem;
  letter-spacing: 0.08em;
  line-height: 1;
}

.details-block p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.faq-item {
  margin-bottom: 2rem;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-item h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: rgba(238, 191, 230, 0.9);
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.faq-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-list li {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.6;
}

.contact-list strong {
  color: rgba(238, 191, 230, 0.9);
  font-weight: 600;
}

.contact-list a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-list a:hover {
  color: rgba(238, 191, 230, 1);
}

@media (min-width: 768px) {
  .details-section {
    padding: 8rem 3rem;
  }

  .details-container {
    padding: 0 2rem;
  }

  .details-content {
    gap: 4rem;
  }

  .details-block {
    padding: 3rem;
  }

  .details-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 2rem;
  }

  .details-block p {
    font-size: 1.1rem;
    line-height: 2;
  }

  .contact-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .details-section {
    padding: 10rem 4rem;
  }

  .details-container {
    padding: 0 3rem;
  }

  .details-content {
    gap: 5rem;
  }

  .details-block {
    padding: 3.5rem;
  }
}

/* Footer */
.footer {
  background: #0a0a0a;
  border-top: 1px solid rgba(238, 191, 230, 0.2);
  padding: 3rem 1.5rem 2rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Footer Top */
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
  }
}

/* Footer Brand */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  width: 120px;
  height: auto;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  max-width: 250px;
}

/* Footer Links */
.footer-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 480px) {
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-links {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  color: rgba(238, 191, 230, 0.8);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-list li {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-list a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-list a:hover {
  color: rgba(238, 191, 230, 0.9);
}

/* Footer Social */
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: rgba(238, 191, 230, 0.2);
  color: rgba(238, 191, 230, 0.9);
  transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding-top: 2rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-copyright {
    text-align: left;
  }
}

.footer-badge {
  display: flex;
  align-items: center;
}

.footer-badge-img {
  width: 60px;
  height: 60px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-badge-img:hover {
  opacity: 1;
}

.footer-legal {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 0.875rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: rgba(238, 191, 230, 0.9);
}

.footer-legal .separator {
  color: rgba(255, 255, 255, 0.3);
}
