﻿:root {
  --c-orange: #f57c1f;
  --c-dark: #080812;
  --c-white: #ffffff;
  --c-offwhite: #f6f4ee;
  --font-main: "Inter", sans-serif;
  --font-display: "Syne", sans-serif;
  --font-ar: "IBM Plex Sans Arabic", sans-serif;
}

body {
  background-color: var(--c-dark);
  overflow-x: hidden;
  margin: 0;
  font-family: var(--font-main);
  -webkit-font-smoothing: antialiased;
}

.elementor-section,
.elementor-column,
.elementor-widget,
.elementor-widget-container,
.elementor-button-wrapper,
.elementor-button,
.elementor-element,
.elementor-heading-title,
.elementor-image,
.site-inner,
#page {
  transform-style: flat !important;
  isolation: auto !important;
  z-index: auto;
  transform: none !important;
  transition: none !important;
  background-blend-mode: normal !important;
}

.aa-header {
  z-index: 100000 !important;
  isolation: isolate !important;
}

/* Header padding removed to allow overlay */

*:focus {
  outline: none !important;
}

body.aa-theme-ui:not(.aa-store-context) button {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  cursor: pointer;
  outline: none !important;
}

#aa-cursor-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999999;
  overflow: hidden;
  mix-blend-mode: exclusion; /* Default: Exclusion for white-on-dark */
}

/* Inversion Mode: When over .cursor-invert elements */
body.is-inverted #aa-cursor-container {
  mix-blend-mode: exclusion !important;
}

/* Text Hover Mode: Container normal, cursor uses difference */
body.is-on-text #aa-cursor-container {
  mix-blend-mode: normal !important; /* Allow cursor's difference mode to work */
}

/* Normal Mode: When .cursor-normal is specified */
body.is-normal #aa-cursor-container {
  mix-blend-mode: normal !important;
}

/* Safe zones: Prevent cursor blending on specific elements */
.cursor-no-invert,
.cursor-orange-safe,
.cursor-color-safe,
.cursor-normal {
  isolation: isolate;
}

.aa-cursor {
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: var(--c-orange);
  border-radius: 50%;
  will-change: transform, width, height, opacity;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}

.cursor-click-ring {
  position: absolute;
  width: 60px;
  height: 60px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  box-shadow:
    0 0 20px rgba(255, 255, 255, 0.2),
    inset 0 0 10px rgba(255, 255, 255, 0.1);
  opacity: 0;
  pointer-events: none;
}

.aa-cursor-icon {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  color: var(--c-dark);
  width: 26px;
  height: 26px;
  z-index: 10;
}

.aa-cursor-circular-text {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  width: 160px;
  height: 160px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aa-cursor-circular-text svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.circular-text {
  fill: var(--c-dark);
  font-family: var(--font-main);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.8px;
  text-transform: uppercase;
}

/* Cursor Internal Dot - Only on Focus */
.is-focus .aa-cursor::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px; /* Slightly larger */
  height: 10px;
  background-color: #f8f8f8; /* Off-white pointer */
  border-radius: 50%;
  opacity: 1;
  pointer-events: none;
  box-shadow: 0 0 15px rgba(248, 248, 248, 0.3); /* Soft glow */
}

/* Classic Hover (Logo) */
body.is-hovering .aa-cursor {
  width: 32px;
  height: 32px;
  background-color: #ffffff;
  mix-blend-mode: exclusion;
  backdrop-filter: blur(0px);
}

/* New Focus Hover (Links) */
body.is-focus .aa-cursor {
  width: 60px !important;
  height: 60px !important;
  background-color: rgba(
    255,
    114,
    0,
    0.05
  ) !important; /* Extremely subtle orange tint */
  border: 1.5px solid var(--c-orange) !important; /* Orange Ring */
  backdrop-filter: blur(6px); /* Gaussian Blur */
  -webkit-backdrop-filter: blur(6px);
  mix-blend-mode: normal !important;
}

body.is-menu-hover .aa-cursor {
  width: 6px !important;
  height: 6px !important;
  background-color: var(--c-orange) !important;
  mix-blend-mode: normal !important;
  backdrop-filter: none;
}

/* Loader Refinements */
#loader-orange-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--c-orange);
  z-index: 9999;
  display: flex; /* Shown by default, hidden by JS on non-home pages */
  clip-path: circle(150% at 100% 0%);
}

#site-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw !important;
  height: 100vh !important;
  display: flex; /* Shown by default, hidden by JS on non-home pages */
  justify-content: center !important;
  align-items: center !important;
  padding: 0 !important;
  z-index: 10000; /* Above everything */
  background: transparent;
}

.loader-content {
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative; /* Context for absolute words */
}

.loader-text-area {
  width: 100%;
  height: 60px; /* Specific height to contain words */
  position: relative;
  margin-bottom: 5px; /* Tighten gap */
}

.loader-word {
  font-size: 32px;
  font-weight: 300;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Robust centering */
  white-space: nowrap;
  opacity: 0;
  width: auto; /* Let it shrink fit */
  text-align: center;
}

.loader-progress-bar {
  width: 100% !important;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.2) !important;
  position: relative !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  margin: 5px 0; /* Tighter Vertical spacing */
  overflow: hidden;
}

.loader-progress-fill {
  background-color: var(--c-orange) !important;
  background-image: none !important; /* Ensure no gradient */
  width: 100%;
  height: 100%;
}

.loader-counter {
  margin-top: 0; /* Pull closer */
  margin-bottom: 0;
  color: var(--c-orange) !important;
  font-size: 80px;
  font-weight: 300;
  line-height: 1;
}

body.is-on-text .aa-cursor {
  width: 40px !important; /* Larger for better text coverage */
  height: 40px !important;
  background-color: #ffffff !important;
  mix-blend-mode: exclusion !important; /* Inverts text underneath - like Irene Butenko */
  backdrop-filter: none !important;
  border: none !important;
  z-index: 9999999;
}

body.is-reading .aa-cursor,
body.is-reading-normal .aa-cursor {
  width: 90px;
  height: 90px;
  background-color: #ffffff;
  backdrop-filter: blur(10px);
}

body.is-reading .aa-cursor-icon,
body.is-reading-normal .aa-cursor-icon {
  opacity: 1;
  color: var(--c-dark);
  width: 28px;
  height: 28px;
}

body.is-reading .aa-cursor-circular-text,
body.is-reading-normal .aa-cursor-circular-text {
  opacity: 1;
}

body.is-reading .circular-text,
body.is-reading-normal .circular-text {
  fill: var(--c-dark);
}

body.is-reading-orange .aa-cursor,
body.is-reading-orange-normal .aa-cursor {
  width: 90px;
  height: 90px;
  background-color: var(--c-orange);
  backdrop-filter: blur(10px);
}

body.is-reading-orange .aa-cursor-icon,
body.is-reading-orange-normal .aa-cursor-icon {
  opacity: 1;
  color: var(--c-offwhite);
  width: 28px;
  height: 28px;
}

body.is-reading-orange .aa-cursor-circular-text,
body.is-reading-orange-normal .aa-cursor-circular-text {
  opacity: 1;
}

body.is-reading-orange .circular-text,
body.is-reading-orange-normal .circular-text {
  fill: var(--c-offwhite);
}

body.is-reading-orange-normal #aa-cursor-container {
  mix-blend-mode: normal;
}

body.is-reading-normal #aa-cursor-container {
  mix-blend-mode: normal;
}

body.is-email .aa-cursor,
body.is-email-normal .aa-cursor {
  width: 90px;
  height: 90px;
  background-color: #ffffff;
  backdrop-filter: blur(10px);
}

body.is-email .aa-cursor-icon,
body.is-email-normal .aa-cursor-icon {
  opacity: 1;
  color: var(--c-dark);
  width: 30px;
  height: 30px;
}

body.is-email .aa-cursor-circular-text,
body.is-email-normal .aa-cursor-circular-text {
  opacity: 1;
}

body.is-email .circular-text,
body.is-email-normal .circular-text {
  fill: var(--c-dark);
}

body.is-email-orange .aa-cursor,
body.is-email-orange-normal .aa-cursor {
  width: 90px;
  height: 90px;
  background-color: var(--c-orange);
  backdrop-filter: blur(10px);
}

body.is-email-orange .aa-cursor-icon,
body.is-email-orange-normal .aa-cursor-icon {
  opacity: 1;
  color: var(--c-offwhite);
  width: 30px;
  height: 30px;
}

body.is-email-orange .aa-cursor-circular-text,
body.is-email-orange-normal .aa-cursor-circular-text {
  opacity: 1;
}

body.is-email-orange .circular-text,
body.is-email-orange-normal .circular-text {
  fill: var(--c-offwhite);
}

body.is-email-orange-normal #aa-cursor-container {
  mix-blend-mode: normal;
}

body.is-email-normal #aa-cursor-container {
  mix-blend-mode: normal;
}

body.is-view .aa-cursor,
body.is-view-normal .aa-cursor {
  width: 90px;
  height: 90px;
  background-color: #ffffff;
  backdrop-filter: blur(10px);
}

body.is-view .aa-cursor-icon,
body.is-view-normal .aa-cursor-icon {
  opacity: 1;
  color: var(--c-dark);
  width: 28px;
  height: 28px;
}

body.is-view .aa-cursor-circular-text,
body.is-view-normal .aa-cursor-circular-text {
  opacity: 1;
}

body.is-view .circular-text,
body.is-view-normal .circular-text {
  fill: var(--c-dark);
}

body.is-view-orange .aa-cursor,
body.is-view-orange-normal .aa-cursor {
  width: 90px;
  height: 90px;
  background-color: var(--c-orange);
  backdrop-filter: blur(10px);
}

body.is-view-orange .aa-cursor-icon,
body.is-view-orange-normal .aa-cursor-icon {
  opacity: 1;
  color: var(--c-offwhite);
  width: 28px;
  height: 28px;
}

body.is-view-orange .aa-cursor-circular-text,
body.is-view-orange-normal .aa-cursor-circular-text {
  opacity: 1;
}

body.is-view-orange .circular-text,
body.is-view-orange-normal .circular-text {
  fill: var(--c-offwhite);
}

body.is-view-orange-normal #aa-cursor-container {
  mix-blend-mode: normal;
}

body.is-view-normal #aa-cursor-container {
  mix-blend-mode: normal;
}

body.is-play .aa-cursor,
body.is-play-normal .aa-cursor {
  width: 90px;
  height: 90px;
  background-color: #ffffff;
  backdrop-filter: blur(10px);
}

body.is-play .aa-cursor-icon,
body.is-play-normal .aa-cursor-icon {
  opacity: 1;
  color: var(--c-dark);
  width: 28px;
  height: 28px;
}

body.is-play .aa-cursor-circular-text,
body.is-play-normal .aa-cursor-circular-text {
  opacity: 1;
}

body.is-play .circular-text,
body.is-play-normal .circular-text {
  fill: var(--c-dark);
}

body.is-play-orange .aa-cursor,
body.is-play-orange-normal .aa-cursor {
  width: 90px;
  height: 90px;
  background-color: var(--c-orange);
  backdrop-filter: blur(10px);
}

body.is-play-orange .aa-cursor-icon,
body.is-play-orange-normal .aa-cursor-icon {
  opacity: 1;
  color: var(--c-offwhite);
  width: 28px;
  height: 28px;
}

body.is-play-orange .aa-cursor-circular-text,
body.is-play-orange-normal .aa-cursor-circular-text {
  opacity: 1;
}

body.is-play-orange .circular-text,
body.is-play-orange-normal .circular-text {
  fill: var(--c-offwhite);
}

body.is-play-orange-normal #aa-cursor-container {
  mix-blend-mode: normal;
}

body.is-play-normal #aa-cursor-container {
  mix-blend-mode: normal;
}

body.is-play #aa-cursor-container,
body.is-play-orange #aa-cursor-container {
  mix-blend-mode: normal;
}

body.is-more .aa-cursor,
body.is-more-normal .aa-cursor {
  width: 90px;
  height: 90px;
  background-color: #ffffff;
  backdrop-filter: blur(10px);
}

body.is-more .aa-cursor-icon,
body.is-more-normal .aa-cursor-icon {
  opacity: 1;
  color: var(--c-dark);
  width: 26px;
  height: 26px;
}

body.is-more .aa-cursor-circular-text,
body.is-more-normal .aa-cursor-circular-text {
  opacity: 1;
}

body.is-more .circular-text,
body.is-more-normal .circular-text {
  fill: var(--c-dark);
}

body.is-more-orange .aa-cursor,
body.is-more-orange-normal .aa-cursor {
  width: 90px;
  height: 90px;
  background-color: var(--c-orange);
  backdrop-filter: blur(10px);
}

body.is-more-orange .aa-cursor-icon,
body.is-more-orange-normal .aa-cursor-icon {
  opacity: 1;
  color: var(--c-offwhite);
  width: 26px;
  height: 26px;
}

body.is-more-orange .aa-cursor-circular-text,
body.is-more-orange-normal .aa-cursor-circular-text {
  opacity: 1;
}

body.is-more-orange .circular-text,
body.is-more-orange-normal .circular-text {
  fill: var(--c-offwhite);
}

body.is-more-orange-normal #aa-cursor-container {
  mix-blend-mode: normal;
}

body.is-more-normal #aa-cursor-container {
  mix-blend-mode: normal;
}

body.is-more #aa-cursor-container,
body.is-more-orange #aa-cursor-container {
  mix-blend-mode: normal;
}

/* Remove any transparent/blur look from Play & More cursor variants */
body.is-play .aa-cursor,
body.is-play-normal .aa-cursor,
body.is-play-orange .aa-cursor,
body.is-play-orange-normal .aa-cursor,
body.is-more .aa-cursor,
body.is-more-normal .aa-cursor,
body.is-more-orange .aa-cursor,
body.is-more-orange-normal .aa-cursor {
  opacity: 1 !important;
  backdrop-filter: blur(0px) !important;
  -webkit-backdrop-filter: blur(0px) !important;
}

body.is-click .aa-cursor {
  width: 50px;
  height: 50px;
  background-color: #ffffff;
}

body.is-drag .aa-cursor {
  width: 55px;
  height: 55px;
  background-color: #ffffff;
}

body.is-download .aa-cursor {
  width: 68px;
  height: 68px;
  background-color: #ffffff;
}

body.is-pointer .aa-cursor {
  width: 38px;
  height: 38px;
  background-color: #ffffff;
}

body.is-text-small .aa-cursor {
  width: 22px;
  height: 22px;
  background-color: #ffffff;
}

body.is-text-large .aa-cursor {
  width: 30px;
  height: 30px;
  background-color: #ffffff;
}

body.is-large .aa-cursor {
  width: 36px;
  height: 36px;
  background-color: var(--c-orange);
}

body.is-no-invert .aa-cursor {
  width: 12px;
  height: 12px;
  background-color: var(--c-orange);
}

body.is-no-invert #aa-cursor-container {
  mix-blend-mode: normal;
}

@media (hover: none) and (pointer: coarse) {
  #aa-cursor-container {
    display: none !important;
  }
}

@media (max-width: 1024px) {
  #aa-cursor-container {
    display: none !important;
  }
}

#site-loader {
  display: flex;
  position: fixed;
  inset: 0;
  background: var(--c-dark);
  z-index: 99999999;
  justify-content: center;
  align-items: center;
  clip-path: circle(150% at 100% 0%);
}

#loader-orange-bg {
  position: fixed;
  inset: 0;
  background: var(--c-orange);
  z-index: 99999998;
  clip-path: circle(150% at 100% 0%);
  pointer-events: none;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 20;
  gap: 30px;
}

.loader-text-area {
  position: relative;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
}

.loader-word {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 62px);
  font-weight: 800;
  color: var(--c-white);
  white-space: nowrap;
  opacity: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 15px;
}

.loader-word.ar-font {
  font-family: var(--font-ar) !important;
  font-weight: 700;
  flex-direction: row-reverse;
}

.loader-fixed-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: var(--c-orange);
  border-radius: 50%;
}

.loader-counter {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--c-white);
  opacity: 0;
}

.counter-number {
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1;
}

.counter-percent {
  font-size: clamp(18px, 3vw, 28px);
  opacity: 0.7;
}

.loader-progress-bar {
  width: clamp(200px, 40vw, 400px);
  height: 2px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.loader-progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--c-orange) 0%, #ffffff 100%);
  transform-origin: left;
  transform: scaleX(0);
}

/* Page Transition Loader - Dual Layer Effect */
/* Page Transition Loader - Dual Layer Effect */
#page-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--c-orange);
  z-index: 999998; /* Lower - orange is behind */
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  transform: translateX(-100%); /* Start from Left */
  will-change: transform;
}

#page-transition.active {
  pointer-events: all;
}

/* Second layer - Dark background ON TOP of orange */
#page-transition-dark {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--c-dark); /* Solid dark background */
  z-index: 999999; /* Higher - dark is in front */
  pointer-events: none;
  transform: translateX(-100%); /* Start from Left */
  will-change: transform;
}

.transition-content {
  display: none; /* Hidden by default */
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000000; /* Above both layers */
  pointer-events: none;
}

.transition-content.active {
  display: flex; /* Show immediately */
}

.transition-counter {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  color: var(--c-orange); /* Orange text to be visible on dark */
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.transition-number {
  font-size: clamp(32px, 5vw, 56px);
}

.transition-percent {
  font-size: clamp(20px, 3vw, 32px);
  opacity: 0.7;
}

.transition-progress-bar {
  width: clamp(200px, 30vw, 300px);
  height: 1px;
  background-color: rgba(255, 87, 87, 0.2); /* Orange faint background */
  position: relative;
  overflow: hidden;
}

.transition-progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--c-dark);
  transform-origin: left;
  transform: scaleX(0);
}

.aa-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 88px;
  margin: 0 !important;
  padding: 0 !important;
  z-index: 100000;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  transition: height 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.aa-header.aa-header-store .header-inner,
.aa-header.aa-header-store .aa-header-actions,
.aa-header.aa-header-store .aa-store-tools,
.aa-header.aa-header-store .aa-nav {
  align-items: center !important;
}

.aa-header.aa-header-store .aa-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding-bottom: 0;
}

.aa-header.aa-header-store .aa-nav a::after {
  bottom: 1px;
}

.aa-header.is-scrolled {
  height: 74px;
}

.header-bg {
  position: absolute;
  inset: 0;
  background: transparent;
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: all 0.5s ease;
  z-index: -1;
}

.is-scrolled .header-bg {
  background: rgba(8, 8, 18, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.header-inner {
  width: 75vw;
  max-width: min(75vw, 1320px);
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  column-gap: 28px;
  align-items: center;
}

.aa-logo {
  display: block;
  height: 40px;
  position: relative;
  z-index: 100005;
  cursor: pointer;
  justify-self: start;
}

.aa-logo img {
  height: 100%;
  width: auto;
  transition: transform 0.4s ease;
}

.aa-logo:hover img {
  transform: scale(1.05);
}

.aa-nav {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-self: center;
}

.aa-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  font-size: 15px !important;
  font-weight: 500 !important;
  color: var(--c-white);
  text-transform: capitalize;
  position: relative;
  padding: 0;
  padding-bottom: 4px;
  text-decoration: none;
  transition: color 0.3s ease;
  transform: none !important;
  font-family: var(--font-main) !important;
  line-height: 1 !important;
  opacity: 1;
}

.aa-nav a:hover {
  color: var(--c-orange) !important;
}

.aa-nav a::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--c-orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}

.aa-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.aa-header-actions {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
}

/* Contact button: isolated style to avoid theme link overrides */
.aa-header a.aa-contact-btn,
.aa-header a.aa-contact-btn:link,
.aa-header a.aa-contact-btn:visited,
.aa-header a.aa-contact-btn:hover,
.aa-header a.aa-contact-btn:focus,
.aa-header a.aa-contact-btn:active {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 108px !important;
  height: 42px !important;
  padding: 0 20px !important;
  border-radius: 10px !important;
  background: #df6f1c !important;
  color: #ffffff !important;
  text-decoration: none !important;
  font-family: var(--font-main) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  opacity: 1 !important;
  transform: none !important;
  transition:
    background-color 0.25s ease,
    transform 0.25s ease !important;
  box-shadow: none !important;
  -webkit-tap-highlight-color: transparent !important;
}

.aa-header a.aa-contact-btn::after {
  content: none !important;
  display: none !important;
}

.aa-header a.aa-contact-btn:hover,
.aa-header a.aa-contact-btn:focus-visible {
  background: #c96418 !important;
  color: #ffffff !important;
  box-shadow: none !important;
  transform: none !important;
}

.aa-header .aa-header-actions .aa-auth-btn,
.aa-header .aa-header-actions .aa-auth-btn:link,
.aa-header .aa-header-actions .aa-auth-btn:visited,
.aa-header .aa-header-actions .aa-auth-btn:hover,
.aa-header .aa-header-actions .aa-auth-btn:focus,
.aa-header .aa-header-actions .aa-auth-btn:active {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 108px !important;
  height: 42px !important;
  padding: 0 20px !important;
  border-radius: 10px !important;
  text-decoration: none !important;
  font-family: var(--font-main) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  transform: none !important;
  transition: all 0.25s ease !important;
  box-shadow: none !important;
}

.aa-header .aa-header-actions .aa-auth-btn::after {
  display: none !important;
}

.aa-header .aa-header-actions .aa-auth-btn-login {
  background: transparent !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.8) !important;
}

.aa-header .aa-header-actions .aa-auth-btn-login:hover,
.aa-header .aa-header-actions .aa-auth-btn-login:focus-visible {
  border-color: var(--c-orange) !important;
  color: var(--c-orange) !important;
  background: rgba(245, 124, 31, 0.08) !important;
}

.aa-header .aa-header-actions .aa-auth-btn-signup {
  background: #df6f1c !important;
  color: #ffffff !important;
  border: 1px solid #df6f1c !important;
}

.aa-header .aa-header-actions .aa-auth-btn-signup:hover,
.aa-header .aa-header-actions .aa-auth-btn-signup:focus-visible {
  background: #c96418 !important;
  border-color: #c96418 !important;
}

.aa-store-tools {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.aa-icon-btn,
.aa-icon-btn:link,
.aa-icon-btn:visited,
.aa-icon-btn:hover,
.aa-icon-btn:focus,
.aa-icon-btn:active {
  width: 36px !important;
  height: 36px !important;
  border-radius: 8px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #ffffff !important;
  border: 1px solid transparent !important;
  background: transparent !important;
  text-decoration: none !important;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease !important;
}

.aa-icon-btn svg {
  width: 19px;
  height: 19px;
  display: block;
  flex-shrink: 0;
  stroke: currentColor !important;
  fill: none;
}

.aa-header .aa-store-tools .aa-icon-btn {
  opacity: 1 !important;
  visibility: visible !important;
  line-height: 0 !important;
  padding: 0 !important;
  vertical-align: middle !important;
}

.aa-header .aa-store-tools .aa-theme-toggle svg,
.aa-header .aa-store-tools .aa-search-link svg,
.aa-header .aa-store-tools .aa-cart-link svg,
.aa-header .aa-store-tools .aa-account-toggle svg {
  width: 20px !important;
  height: 20px !important;
}

.aa-cart-link {
  position: relative;
}

.aa-cart-count {
  position: absolute;
  top: -5px;
  right: -6px;
  min-width: 17px;
  height: 17px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--c-orange);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  border: 1px solid rgba(8, 8, 18, 0.65);
}

.aa-cart-count[hidden] {
  display: none !important;
}

.aa-icon-btn:hover,
.aa-icon-btn:focus-visible {
  color: var(--c-orange) !important;
  border-color: rgba(245, 124, 31, 0.4) !important;
  background: rgba(245, 124, 31, 0.08) !important;
}

.aa-account-menu {
  position: relative;
}

.aa-store-search-modal[hidden] {
  display: none !important;
}

body.aa-overlay-open {
  overflow: hidden !important;
  overscroll-behavior: none;
}

.aa-store-search-modal {
  position: fixed;
  inset: 0;
  z-index: 179500;
  display: grid;
  place-items: start center;
  padding: 24px;
}

.aa-store-search-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(6px);
}

.aa-store-search-dialog {
  position: relative;
  width: min(760px, 100%);
  margin-top: 6vh;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 8, 18, 0.96);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
  display: grid;
  gap: 12px;
}

.aa-store-search-form {
  display: grid;
  gap: 12px;
}

.aa-store-search-field {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 68px;
  padding: 0 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

.aa-store-search-field svg {
  width: 22px;
  height: 22px;
  color: rgba(255, 255, 255, 0.8);
  flex: 0 0 22px;
}

.aa-store-search-field input {
  flex: 1;
  min-width: 0;
  border: 0 !important;
  outline: none !important;
  background: transparent !important;
  color: #ffffff !important;
  font-family: var(--font-main);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.2;
  box-shadow: none !important;
}

.aa-store-search-field input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.aa-store-search-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.aa-store-search-submit,
.aa-store-search-close {
  min-height: 42px !important;
  border-radius: 12px !important;
  padding: 0 16px !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  color: #ffffff !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    background-color 0.2s ease !important;
}

.aa-store-search-submit {
  background: var(--c-orange) !important;
  border-color: var(--c-orange) !important;
}

.aa-store-search-submit:hover,
.aa-store-search-submit:focus-visible {
  background: #df6f1c !important;
  border-color: #df6f1c !important;
}

.aa-store-search-close:hover,
.aa-store-search-close:focus-visible {
  border-color: var(--c-orange) !important;
  color: var(--c-orange) !important;
  background: rgba(245, 124, 31, 0.1) !important;
}

.aa-store-search-suggestions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.aa-store-search-suggestions a,
.aa-store-search-suggestions a:link,
.aa-store-search-suggestions a:visited {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff !important;
  text-decoration: none !important;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    background-color 0.2s ease !important;
}

.aa-store-search-suggestions a:hover,
.aa-store-search-suggestions a:focus-visible {
  border-color: var(--c-orange);
  color: var(--c-orange) !important;
  background: rgba(245, 124, 31, 0.08);
}

.aa-account-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 220px;
  padding: 10px;
  border-radius: 10px;
  background: rgba(8, 8, 18, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 4px;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.45);
  z-index: 100050;
}

.aa-account-dropdown a,
.aa-account-dropdown button {
  display: block;
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.35;
  font-family: var(--font-main);
  text-decoration: none;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.aa-account-dropdown a:hover,
.aa-account-dropdown a:focus-visible,
.aa-account-dropdown button:hover,
.aa-account-dropdown button:focus-visible {
  background: rgba(245, 124, 31, 0.12);
  color: var(--c-orange);
}

.aa-account-dropdown .aa-account-mobile-only {
  display: none;
}

.aa-account-dropdown .aa-account-mobile-separator {
  display: none;
  width: 100%;
  height: 1px;
  margin: 4px 0;
  background: rgba(255, 255, 255, 0.12);
}

.aa-license-modal {
  position: fixed;
  inset: 0;
  z-index: 180000;
  display: grid;
  place-items: center;
  padding: 24px;
}

.aa-license-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.56);
  backdrop-filter: blur(5px);
}

.aa-license-modal-dialog {
  position: relative;
  width: min(560px, 96vw);
  padding: 22px;
  border-radius: 16px;
  background: #111121;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.45);
  color: #ffffff;
}

.aa-license-modal-dialog h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.1;
}

.aa-license-modal-dialog p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.6;
}

.aa-license-key-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.aa-license-key-row code {
  flex: 1;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(245, 124, 31, 0.08);
  color: #ffffff;
  font-size: 13px;
  font-family: "Courier New", Courier, monospace;
  letter-spacing: 0.2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.aa-copy-key-btn {
  height: 40px !important;
  min-width: 82px !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 10px !important;
  padding: 0 14px !important;
  color: #ffffff !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    background-color 0.2s ease !important;
}

.aa-copy-key-btn:hover,
.aa-copy-key-btn:focus-visible {
  border-color: var(--c-orange) !important;
  color: var(--c-orange) !important;
  background: rgba(245, 124, 31, 0.1) !important;
}

.aa-license-link,
.aa-license-link:link,
.aa-license-link:visited,
.aa-license-link:hover,
.aa-license-link:focus,
.aa-license-link:active {
  color: var(--c-orange) !important;
  text-decoration: none !important;
  font-size: 14px !important;
  font-weight: 600 !important;
}

.aa-license-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px !important;
  height: 36px !important;
  border-radius: 8px !important;
  color: rgba(255, 255, 255, 0.82) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  background: transparent !important;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease !important;
}

.aa-license-close svg {
  width: 16px;
  height: 16px;
}

.aa-license-close:hover,
.aa-license-close:focus-visible {
  color: #ffffff !important;
  border-color: var(--c-orange) !important;
  background: rgba(245, 124, 31, 0.1) !important;
}

body.aa-store-context .aa-header.aa-header-store:not(.is-scrolled) .header-bg {
  background: transparent !important;
  border-bottom-color: transparent !important;
  backdrop-filter: blur(0px) !important;
  -webkit-backdrop-filter: blur(0px) !important;
}

html[data-aa-theme="light"] .aa-header.aa-header-store.is-scrolled .header-bg {
  background: rgba(246, 244, 238, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

html[data-aa-theme="light"]
  .aa-header.aa-header-store:not(.is-scrolled)
  .aa-nav
  a {
  color: #ffffff;
}

html[data-aa-theme="light"]
  .aa-header.aa-header-store:not(.is-scrolled)
  .aa-icon-btn,
html[data-aa-theme="light"]
  .aa-header.aa-header-store:not(.is-scrolled)
  .aa-icon-btn:link,
html[data-aa-theme="light"]
  .aa-header.aa-header-store:not(.is-scrolled)
  .aa-icon-btn:visited {
  color: #ffffff !important;
}

html[data-aa-theme="light"]
  .aa-header.aa-header-store:not(.is-scrolled)
  .aa-header-actions
  .aa-auth-btn-login {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.75) !important;
}

html[data-aa-theme="light"] .aa-header.aa-header-store.is-scrolled .aa-nav a {
  color: #141421;
}

html[data-aa-theme="light"] .aa-header.aa-header-store.is-scrolled .aa-icon-btn,
html[data-aa-theme="light"]
  .aa-header.aa-header-store.is-scrolled
  .aa-icon-btn:link,
html[data-aa-theme="light"]
  .aa-header.aa-header-store.is-scrolled
  .aa-icon-btn:visited {
  color: #141421 !important;
}

html[data-aa-theme="light"] .aa-store-search-dialog {
  background: rgba(246, 244, 238, 0.96);
  border-color: rgba(20, 20, 33, 0.12);
}

html[data-aa-theme="light"] .aa-store-search-field {
  border-color: rgba(20, 20, 33, 0.12);
  background: rgba(20, 20, 33, 0.03);
}

html[data-aa-theme="light"] .aa-store-search-field svg,
html[data-aa-theme="light"] .aa-store-search-suggestions,
html[data-aa-theme="light"] .aa-store-search-close {
  color: #141421 !important;
}

html[data-aa-theme="light"] .aa-store-search-field input {
  color: #141421 !important;
}

html[data-aa-theme="light"] .aa-store-search-field input::placeholder {
  color: rgba(20, 20, 33, 0.45);
}

html[data-aa-theme="light"] .aa-store-search-suggestions a,
html[data-aa-theme="light"] .aa-store-search-suggestions a:link,
html[data-aa-theme="light"] .aa-store-search-suggestions a:visited {
  color: #141421 !important;
  border-color: rgba(20, 20, 33, 0.14);
}

html[data-aa-theme="light"]
  .aa-header.aa-header-store.is-scrolled
  .aa-header-actions
  .aa-auth-btn-login {
  color: #141421 !important;
  border-color: rgba(20, 20, 33, 0.42) !important;
}

html[data-aa-theme="light"] .aa-footer {
  background: #f6f4ee;
  border-top-color: rgba(20, 20, 33, 0.12);
  color: #141421;
}

html[data-aa-theme="light"] .aa-footer .aa-footer-title,
html[data-aa-theme="light"] .aa-footer .aa-footer-name {
  color: #141421;
}

html[data-aa-theme="light"] .aa-footer .aa-footer-text {
  color: #5a5f6f;
}

html[data-aa-theme="light"] .aa-footer a.aa-footer-link,
html[data-aa-theme="light"] .aa-footer a.aa-footer-link:link,
html[data-aa-theme="light"] .aa-footer a.aa-footer-link:visited,
html[data-aa-theme="light"] .aa-footer a.aa-footer-link:hover,
html[data-aa-theme="light"] .aa-footer a.aa-footer-link:focus,
html[data-aa-theme="light"] .aa-footer a.aa-footer-link:active {
  color: #2c3242 !important;
}

html[data-aa-theme="light"] .aa-footer a.aa-footer-link:hover,
html[data-aa-theme="light"] .aa-footer a.aa-footer-link:focus-visible {
  color: #f57c1f !important;
}

html[data-aa-theme="light"] .aa-footer .aa-footer-social-icon,
html[data-aa-theme="light"] .aa-footer .aa-footer-social-name {
  color: #2c3242;
}

html[data-aa-theme="light"] .aa-footer .aa-footer-bottom {
  border-top-color: rgba(20, 20, 33, 0.12);
}

html[data-aa-theme="light"] .aa-footer .aa-footer-bottom p {
  color: #666d7d;
}

.aa-burger {
  display: none;
  width: 50px;
  height: 50px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 6px;
  cursor: pointer;
  z-index: 100005;
  background: transparent !important;
  justify-self: end;
}

.bar {
  width: 30px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
  border-radius: 4px;
}

.bar.short {
  width: 20px;
}

.aa-burger:hover .bar {
  background: var(--c-orange);
}

.aa-burger:hover .bar.short {
  width: 30px;
}

.aa-mob-layer-orange {
  position: fixed;
  inset: 0;
  background-color: var(--c-orange);
  z-index: 149998;
  clip-path: circle(0% at 100% 0%);
  pointer-events: none;
}

.aa-mob-layer-content {
  position: fixed;
  inset: 0;
  background-color: var(--c-dark);
  z-index: 149999;
  clip-path: circle(0% at 100% 0%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

.aa-close-btn {
  position: fixed;
  top: 35px;
  right: 5vw;
  width: 50px;
  height: 50px;
  background: transparent !important;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 150002;
  transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transform-origin: center center;
}

.x-wrapper {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.x-bar {
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: #fff;
  transition: background-color 0.3s;
  left: 50%;
  top: 50%;
  transform-origin: center center;
}

.x-bar:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.x-bar:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.aa-close-btn:hover {
  transform: rotate(90deg);
}

.aa-close-btn:hover .x-bar {
  background-color: var(--c-orange);
}

.aa-links-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2vh;
}

.m-link-container {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  height: clamp(50px, 9vh, 80px);
}

.m-link-text {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(40px, 8vh, 72px);
  font-weight: 700;
  color: #fff;
  text-transform: capitalize;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  text-align: center;
}

.m-link-text.hover-clone {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  color: var(--c-orange);
}

.m-link-container:hover .m-link-text {
  transform: translateY(-100%);
}

/* =====================================================
   AA Footer (Custom)
   ===================================================== */
.aa-footer {
  position: relative;
  z-index: 20;
  background: #080812;
  border-top: 1px solid #2e2e46;
  color: #f5f2ea;
  margin-top: 120px;
}

.aa-footer .aa-footer-container {
  width: min(75vw, 1280px);
  max-width: calc(100% - 32px);
  margin: 0 auto;
}

.aa-footer .aa-footer-main {
  padding: 48px 0 36px;
}

.aa-footer .aa-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.aa-footer .aa-footer-col {
  min-width: 0;
}

.aa-footer .aa-footer-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none !important;
  margin-bottom: 14px;
}

.aa-footer .aa-footer-logo img {
  height: 40px;
  width: auto;
}

.aa-footer .aa-footer-title {
  margin: 0 0 10px;
  color: #f5f2ea;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.aa-footer .aa-footer-name {
  margin: 0 0 6px;
  color: #f5f2ea;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.aa-footer .aa-footer-text {
  margin: 0 0 8px;
  color: #a8a49a;
  font-size: 14px;
  line-height: 1.45;
}

.aa-footer .aa-footer-text:last-child {
  margin-bottom: 0;
}

.aa-footer .aa-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 4px;
}

.aa-footer .aa-footer-links li {
  margin: 0;
}

.aa-footer a.aa-footer-link,
.aa-footer a.aa-footer-link:link,
.aa-footer a.aa-footer-link:visited,
.aa-footer a.aa-footer-link:hover,
.aa-footer a.aa-footer-link:focus,
.aa-footer a.aa-footer-link:active {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  width: fit-content !important;
  padding-bottom: 4px !important;
  color: #d9d4c8 !important;
  text-decoration: none !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 1.45 !important;
  transition: color 0.2s ease !important;
}

.aa-footer a.aa-footer-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--c-orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}

.aa-footer a.aa-footer-link:hover,
.aa-footer a.aa-footer-link:focus-visible {
  color: #f57c1f !important;
}

.aa-footer a.aa-footer-link:hover::after,
.aa-footer a.aa-footer-link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.aa-footer .aa-footer-links-social {
  gap: 6px;
}

.aa-footer .aa-footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.aa-footer .aa-footer-social-link .aa-footer-social-icon {
  transform: translateY(-1px);
}

.aa-footer .aa-footer-social-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
}

.aa-footer .aa-footer-social-icon svg {
  width: 16px;
  height: 16px;
  display: block;
  fill: currentColor;
}

.aa-footer .aa-footer-social-name {
  font-size: 14px;
  font-family: var(--font-main);
  font-weight: 500;
  line-height: 1.35;
}

.aa-footer .aa-footer-bottom {
  border-top: 1px solid #242437;
  padding: 14px 0;
}

.aa-footer .aa-footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: center;
}

.aa-footer .aa-footer-bottom p {
  margin: 0;
  color: #a8a49a;
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .header-inner {
    display: flex;
    justify-content: space-between;
    width: 90vw;
    max-width: none;
    gap: 16px;
  }

  .aa-nav {
    display: none;
  }

  .aa-header-actions {
    display: none !important;
  }

  .aa-header-cta {
    display: none !important;
  }

  .aa-burger {
    display: flex;
  }

  .aa-header.aa-header-store[data-aa-user-auth="1"] .aa-header-actions {
    display: inline-flex !important;
    align-items: center;
    justify-self: end;
  }

  .aa-header.aa-header-store[data-aa-user-auth="1"] .aa-store-tools {
    gap: 0;
  }

  .aa-header.aa-header-store[data-aa-user-auth="1"]
    .aa-store-tools
    > .aa-theme-toggle,
  .aa-header.aa-header-store[data-aa-user-auth="1"]
    .aa-store-tools
    > .aa-cart-link,
  .aa-header.aa-header-store[data-aa-user-auth="1"]
    .aa-store-tools
    > .aa-search-link {
    display: none !important;
  }

  .aa-header.aa-header-store[data-aa-user-auth="1"]
    .aa-store-tools
    > .aa-account-menu {
    display: inline-flex;
  }

  .aa-header.aa-header-store[data-aa-user-auth="1"] .aa-account-dropdown {
    min-width: min(290px, calc(100vw - 24px));
    right: 0;
  }

  .aa-header.aa-header-store[data-aa-user-auth="1"]
    .aa-account-dropdown
    .aa-account-mobile-only {
    display: block;
  }

  .aa-header.aa-header-store[data-aa-user-auth="1"]
    .aa-account-dropdown
    .aa-account-mobile-separator {
    display: block;
  }

  .aa-mobile-account-action {
    display: inline-flex;
    align-items: center;
    margin-left: auto;
  }

  .aa-mobile-account-action .aa-icon-btn {
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: transparent;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
  }

  html[data-aa-theme="light"]
    .aa-header.aa-header-store.is-scrolled
    .aa-mobile-account-action
    .aa-icon-btn {
    color: #141421 !important;
    border-color: rgba(20, 20, 33, 0.15) !important;
  }

  .aa-footer .aa-footer-container {
    width: min(90vw, 1280px);
    max-width: calc(100% - 24px);
  }

  .aa-store-search-dialog {
    width: 100%;
    margin-top: 4vh;
    padding: 14px;
    border-radius: 16px;
  }

  .aa-store-search-field {
    min-height: 58px;
    padding: 0 14px;
  }

  .aa-store-search-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .aa-store-search-submit,
  .aa-store-search-close {
    width: 100% !important;
  }

  .aa-license-modal {
    padding: 14px;
  }

  .aa-license-modal-dialog {
    padding: 18px;
  }

  .aa-license-key-row {
    flex-direction: column;
    align-items: stretch;
  }

  .aa-copy-key-btn {
    width: 100% !important;
  }

  .aa-footer {
    margin-top: 80px;
  }

  .aa-footer .aa-footer-main {
    padding: 36px 0 26px;
  }

  .aa-footer .aa-footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .aa-footer .aa-footer-links {
    gap: 3px;
  }

  .aa-footer a.aa-footer-link,
  .aa-footer a.aa-footer-link:link,
  .aa-footer a.aa-footer-link:visited,
  .aa-footer a.aa-footer-link:hover,
  .aa-footer a.aa-footer-link:focus,
  .aa-footer a.aa-footer-link:active {
    padding-bottom: 3px !important;
  }

  .aa-footer .aa-footer-social-name {
    font-size: 13px;
  }
}

.m-link-container--button {
  display: block;
  width: 100%;
  text-align: left;
}

.grecaptcha-badge {
  visibility: collapse !important;
}

.page-id-4848,
.postid-24924,
.postid-24924 .site-content,
.postid-24924 .site-inner,
.postid-24924 .wrap,
.postid-24924 #page {
  background-color: #f6f4ee !important;
}

.page-id-6577,
.page-id-26859,
.page-id-198,
.page-id-107,
.page-id-27615,
.page-id-202,
.page-id-178 {
  background-color: #080812 !important;
}

/* ===================================
   PORTFOLIO VIDEO POPUP SYSTEM
   Added: Interactive Gradient + Sticky Video
   =================================== */

/* Portfolio Container Ù…Ø¹ Gradient ØªÙØ§Ø¹Ù„ÙŠ */
.aa-portfolio-container {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 80px auto;
  padding: 60px 40px;
}

.aa-gradient-bg {
  position: relative;
  background: linear-gradient(
    135deg,
    #ff6b35 0%,
    #ff8c42 25%,
    #ffa726 50%,
    #ffb347 100%
  );
  background-size: 200% 200%;
  border-radius: 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

/* ØªØ£Ø«ÙŠØ± Ø§Ù„Ù…Ø§ÙˆØ³ Ø¹Ù„Ù‰ Ø§Ù„Ù€ Background */
.aa-gradient-bg::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
  transform: translate(var(--mouse-x, 50%), var(--mouse-y, 50%));
}

.aa-gradient-bg:hover::before {
  opacity: 1;
}

.aa-gradient-bg:hover {
  background-position: 100% 100%;
  box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
  transform: translateY(-4px);
}

/* Section Header */
.aa-section-header {
  text-align: center;
  margin-bottom: 48px;
}

.aa-section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.title-icon {
  font-size: 3rem;
  animation: aa-float 3s ease-in-out infinite;
}

.title-separator {
  font-size: 1.2rem;
  opacity: 0.8;
}

@keyframes aa-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Portfolio Header */
.aa-portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding: 0 8px;
}

.aa-portfolio-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: #ffffff;
}

.aa-show-all {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.aa-show-all:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(-4px);
}

/* Portfolio Grid */
.aa-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  position: relative;
  z-index: 1;
}

/* Portfolio Card Ù…Ø¹ Hover Gradient */
.aa-portfolio-card {
  position: relative;
  background: #1a1a1a;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.05);
  animation: aa-slideUp 0.6s ease backwards;
}

@keyframes aa-slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.aa-portfolio-card:nth-child(1) {
  animation-delay: 0.1s;
}
.aa-portfolio-card:nth-child(2) {
  animation-delay: 0.2s;
}
.aa-portfolio-card:nth-child(3) {
  animation-delay: 0.3s;
}
.aa-portfolio-card:nth-child(4) {
  animation-delay: 0.4s;
}
.aa-portfolio-card:nth-child(5) {
  animation-delay: 0.5s;
}
.aa-portfolio-card:nth-child(6) {
  animation-delay: 0.6s;
}

/* Interactive Gradient Ø¹Ù„Ù‰ Ø§Ù„Ù€ Hover */
.aa-gradient-hover {
  position: relative;
}

.aa-gradient-hover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ff6b35 0%, #ffa726 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
  border-radius: 24px;
}

.aa-gradient-hover:hover::before {
  opacity: 0.15;
}

.aa-gradient-hover:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 20px 60px rgba(255, 107, 53, 0.4),
    0 0 0 1px rgba(255, 139, 66, 0.3);
  border-color: #ff8c42;
}

.aa-portfolio-card > * {
  position: relative;
  z-index: 1;
}

/* Card Thumbnail */
.aa-card-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.aa-card-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.aa-portfolio-card:hover .aa-card-thumbnail img {
  transform: scale(1.1);
}

.aa-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.aa-portfolio-card:hover .aa-play-overlay {
  opacity: 1;
}

.aa-play-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #ff6b35, #ffa726);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.5);
  animation: aa-pulse 2s ease-in-out infinite;
}

@keyframes aa-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Card Info */
.aa-card-info {
  padding: 24px;
}

.aa-card-info h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #ffffff;
}

.aa-card-subtitle {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}

.aa-software-icons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.aa-software-icons span {
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.icon-ai {
  background: linear-gradient(135deg, #ff9a00, #ff7700);
}
.icon-ps {
  background: linear-gradient(135deg, #31a8ff, #0078d4);
}
.icon-ae {
  background: linear-gradient(135deg, #9999ff, #6666cc);
}
.icon-pr {
  background: linear-gradient(135deg, #9999ff, #ea77ff);
}

.aa-software-icons span:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* View Button */
.aa-view-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #ff6b35, #ffa726);
  border: none;
  border-radius: 0 0 24px 24px;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.aa-view-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ffa726, #ff6b35);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.aa-view-btn:hover::before {
  opacity: 1;
}

.aa-view-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.5);
}

.aa-view-btn > * {
  position: relative;
  z-index: 1;
}

.btn-icon {
  font-size: 1.2rem;
}

/* =========================================
   Video Cursor - EXACT COPY of is-play-orange-normal
   ========================================= */

body[class*="is-video-"] .aa-cursor {
  width: 90px !important;
  height: 90px !important;
  background-color: var(--c-orange) !important;
  border-radius: 50% !important;
  backdrop-filter: blur(10px) !important;
  box-shadow: none !important;
  mix-blend-mode: normal !important;
  overflow: visible !important;
  border: none !important;
  margin: 0 !important;
}

body[class*="is-video-"] #aa-cursor-container {
  mix-blend-mode: normal !important;
}

body[class*="is-video-"] .aa-cursor::before {
  display: none;
}

body[class*="is-video-"] .aa-cursor-icon {
  opacity: 1;
  color: var(--c-offwhite);
  width: 28px;
  height: 28px;
  z-index: 20;
}

body[class*="is-video-"] .aa-cursor-circular-text {
  opacity: 1;
}

body[class*="is-video-"] .circular-text {
  fill: var(--c-offwhite);
}

/* Ensure text doesn't clip */
.aa-cursor-circular-text svg {
  overflow: visible;
}

/* Video Cursor - Orange Variant */
body.is-video-play-orange .aa-cursor {
  width: 90px !important;
  height: 90px !important;
  background-color: var(--c-orange) !important;
  border-radius: 50% !important;
  backdrop-filter: blur(0px) !important;
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.4) !important;
  mix-blend-mode: normal !important;
  overflow: visible !important;
  border: none !important;
  margin: 0 !important;
}

body.is-video-play-orange .aa-cursor::before {
  display: none;
}

body.is-video-play-orange .aa-cursor-icon {
  opacity: 1;
  color: #fff;
  width: 28px;
  height: 28px;
  z-index: 20;
}

body.is-video-play-orange .aa-cursor-circular-text {
  opacity: 1;
  width: 140px;
  height: 140px;
  z-index: 10;
}

body.is-video-play-orange .circular-text {
  fill: #fff;
  font-size: 8.5px;
  letter-spacing: 2.8px;
  font-weight: 700;
}

/* Video Cursor - White/Off-White Variant */
body.is-video-play-white .aa-cursor {
  width: 90px !important;
  height: 90px !important;
  background-color: #f5f5f5 !important;
  border-radius: 50% !important;
  backdrop-filter: blur(0px) !important;
  box-shadow: 0 0 20px rgba(245, 245, 245, 0.3) !important;
  mix-blend-mode: normal !important;
  overflow: visible !important;
  border: none !important;
  margin: 0 !important;
}

body.is-video-play-white .aa-cursor::before {
  display: none;
}

body.is-video-play-white .aa-cursor-icon {
  opacity: 1;
  color: var(--c-orange);
  width: 28px;
  height: 28px;
  z-index: 20;
}

body.is-video-play-white .aa-cursor-circular-text {
  opacity: 1;
  width: 140px;
  height: 140px;
  z-index: 10;
}

body.is-video-play-white .circular-text {
  fill: var(--c-orange);
  font-size: 8.5px;
  letter-spacing: 2.8px;
  font-weight: 700;
}

/* =========================================
   VIDEO POPUP - Clean Minimal
   ========================================= */
.aa-video-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.aa-video-popup.active {
  opacity: 1;
}

.aa-popup-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
}

.aa-popup-container {
  position: relative;
  width: 70vw;
  max-width: 1000px;
  aspect-ratio: 16 / 9;
  z-index: 10001;
}

.aa-video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  background: transparent !important;
  border: none !important;
  border-radius: 12px !important;
  outline: 2px solid #282f3a !important;
  outline-offset: 0px;
  overflow: hidden;
}

.aa-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* Close Button - Simple X */
.aa-popup-close {
  position: absolute;
  top: -50px;
  left: 0;
  background: transparent !important;
  border: none !important;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 10002;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 0;
  box-shadow: none !important;
}

.aa-popup-close svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
  transition: all 0.3s ease;
}

.aa-popup-close:hover svg {
  stroke: var(--c-orange);
  transform: rotate(90deg);
}

/* Responsive */
@media (max-width: 1024px) {
  .aa-popup-container {
    width: 80vw;
  }
}

@media (max-width: 768px) {
  .aa-popup-container {
    width: 90vw;
  }

  .aa-popup-close {
    top: -45px;
  }
}

.aa-simple-loader {
  position: fixed;
  inset: 0;
  background-color: var(--c-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999999;
  opacity: 1;
  transition: opacity 0.6s ease;
}

.aa-simple-loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.aa-loading-text {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 48px);
  font-weight: 400;
  color: var(--c-white);
  letter-spacing: 0.05em;
}

.aa-loading-text::after {
  content: "";
  display: inline-block;
  animation: loadingDots 1.5s infinite;
}

@keyframes loadingDots {
  0%,
  20% {
    content: "";
  }
  40% {
    content: ".";
  }
  60% {
    content: "..";
  }
  80%,
  100% {
    content: "...";
  }
}
