@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  /* Brand & Accent Colors */
  --ui-brand-color: #f7bd00;          /* Yellow - Main brand */
  --ui-dark-accent-color: #eb6d2f;    /* Orange accent */
  --ui-link-hover-color: #ffd832;     /* Bright yellow hover */
  --ui-link-color: #ffd832;

  /* Text & Shades */
  --ui-dark-shade-color: #5a3733;     /* Dark brown */
  --ui-text-color: #939393;           /* Medium gray text */
  --ui-subtitle-color: #bcbcbc;       /* Light gray text */
  --ui-light-shade-color: #ffffff;    /* White */
  --ui-light-accent-color: #f9f4f0;   /* Off-white background */

  /* Additional Colors */
  --ui-media-bg: #d8d8d8;             /* Light gray background */
  --ui-text-color-light: #ebebeb;     /* Light text on dark */

  /* Layout & Spacing */
  --header-height: 80px;
  --container-max-width: 1200px;
  --container-padding: 20px;
  --border-radius: 8px;
  --transition-speed: 0.3s;
  --shadow-light: 0 2px 10px rgba(90, 55, 51, 0.1);
  --shadow-medium: 0 4px 20px rgba(90, 55, 51, 0.15);
}

/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--ui-text-color);
  background-color: var(--ui-light-shade-color);
  overflow-x: hidden;
}

/* ===== UTILITY CLASSES ===== */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ===== FONTAWESOME ICON STYLES ===== */
.fa, .fas, .far, .fal, .fab {
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== HEADER STYLES ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--ui-light-shade-color);
  box-shadow: var(--shadow-light);
  transition: all var(--transition-speed) ease;
  height: var(--header-height);
}

.header.menu-open {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(90, 55, 51, 0.15);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  position: relative;
}

/* ===== LOGO STYLES ===== */
.header__logo {
  flex-shrink: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform var(--transition-speed) ease;
}

.logo__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ui-brand-color), var(--ui-dark-accent-color));
  box-shadow: var(--shadow-medium);
  transition: all var(--transition-speed) ease;
  position: relative;
  overflow: hidden;
}

.logo__icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
}

.right-side {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

.logo:hover .logo__icon {
  transform: rotate(10deg) scale(1.05);
  box-shadow: 0 8px 30px rgba(247, 189, 0, 0.5);
}

.logo:hover .logo__icon::before {
  opacity: 1;
  animation: shimmer 1.5s ease-in-out infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
  100% { transform: translateX(200%) translateY(200%) rotate(45deg); }
}

.logo__icon i {
  font-size: 24px;
  color: var(--ui-dark-shade-color);
  filter: drop-shadow(0 2px 4px rgba(90, 55, 51, 0.2));
  z-index: 1;
  position: relative;
}

.logo__text {
  font-size: 24px;
  font-weight: 700;
  color: var(--ui-dark-shade-color);
  letter-spacing: -0.5px;
}

/* ===== NAVIGATION STYLES ===== */
.header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav__list {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
}

.nav__item {
  position: relative;
}

.nav__link {
  display: block;
  text-decoration: none;
  color: var(--ui-text-color);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 0;
  position: relative;
  transition: all var(--transition-speed) ease;
}

.nav__link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ui-brand-color), var(--ui-dark-accent-color));
  transition: all var(--transition-speed) ease;
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav__link::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 8px;
  opacity: 0;
  transition: all var(--transition-speed) ease;
  z-index: -1;
}

.nav__link:hover {
  color: var(--ui-dark-shade-color);
}

.nav__link:hover::before {
  width: 100%;
}

.nav__link:hover::after {
  opacity: 1;
}

/* ===== HEADER CART BUTTON ===== */
.header__cart {
  flex-shrink: 0;
}

.cart-btn {
  position: relative;
  background: linear-gradient(135deg, var(--ui-brand-color), var(--ui-dark-accent-color));
  border: none;
  border-radius: 12px;
  padding: 12px 16px;
  color: var(--ui-light-shade-color);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(247, 189, 0, 0.3);
}

.cart-btn:hover {
  box-shadow: 0 8px 25px rgba(247, 189, 0, 0.4);
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--ui-dark-accent-color);
  color: var(--ui-light-shade-color);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 6px;
  border-radius: 50%;
  min-width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ui-light-shade-color);
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}

.cart-count.active {
  opacity: 1;
  transform: scale(1);
}

/* ===== BUTTON STYLES ===== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: none;
  border-radius: var(--border-radius);
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  position: relative;
  overflow: hidden;
  min-width: 120px;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn--primary {
  background: linear-gradient(135deg, var(--ui-brand-color), var(--ui-dark-accent-color));
  color: var(--ui-light-shade-color);
  box-shadow: var(--shadow-medium);
  position: relative;
  overflow: hidden;
}

.btn--primary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  transition: all 0.6s ease;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.btn--primary:hover {
  box-shadow: 0 8px 30px rgba(247, 189, 0, 0.5);
}

.btn--primary:hover::after {
  width: 300px;
  height: 300px;
}

/* ===== MOBILE MENU TOGGLE ===== */
.header__menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 32px;
  height: 26px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
  border-radius: 6px;
  transition: all var(--transition-speed) ease;
  position: relative;
}

.header__menu-toggle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(247, 189, 0, 0.1), rgba(235, 109, 47, 0.1));
  border-radius: 6px;
  opacity: 0;
  transition: all var(--transition-speed) ease;
}

.header__menu-toggle:hover::before {
  opacity: 1;
}

.menu-toggle__line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--ui-dark-shade-color);
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center;
  position: relative;
}

.header__menu-toggle:hover .menu-toggle__line {
  background-color: var(--ui-dark-accent-color);
  box-shadow: 0 0 8px rgba(235, 109, 47, 0.3);
}

/* Mobile menu toggle animation */
.header__menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.header__menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(2) {
  opacity: 0;
}

.header__menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== MOBILE NAVIGATION ===== */
.header__mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, var(--ui-light-shade-color) 0%, var(--ui-light-accent-color) 100%);
  backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  z-index: 998;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.header__mobile-nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(247, 189, 0, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.header__mobile-nav.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: 300px;
}

.mobile-nav__item {
    width: 100%;
    position: relative;
    margin-bottom: 8px;
    opacity: 0;
    animation: fadeInUp 0.5s ease-out forwards;
}

.mobile-nav__item:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav__item:nth-child(2) { animation-delay: 0.15s; }
.mobile-nav__item:nth-child(3) { animation-delay: 0.2s; }
.mobile-nav__item:nth-child(4) { animation-delay: 0.25s; }
.mobile-nav__item:nth-child(5) { animation-delay: 0.3s; }
.mobile-nav__item:nth-child(6) { animation-delay: 0.35s; }

.mobile-nav__item:last-child {
  margin-top: 10px;
  margin-bottom: 0;
}

.mobile-nav__link {
  display: block;
  padding: 18px 24px;
  text-decoration: none;
  color: var(--ui-dark-shade-color);
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  position: relative;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(10px);
}

.btn--mobile {
  display: block;
  width: 100%;
  max-width: 250px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--ui-brand-color), var(--ui-dark-accent-color));
  color: var(--ui-light-shade-color);
  border: none;
  margin: auto;
  box-shadow: 0 8px 25px rgba(247, 189, 0, 0.4);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.btn--mobile::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.btn--mobile:hover::before {
  left: 100%;
}

.btn--mobile:hover {
  box-shadow: 0 12px 35px rgba(247, 189, 0, 0.5);
}

/* Mobile Navigation Backdrop */
.mobile-nav-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(90, 55, 51, 0.6);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 997;
}

.mobile-nav-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  :root {
    --container-padding: 16px;
    --header-height: 70px;
  }

  .header__nav {
    display: none;
  }

  .header__cart {
    order: 1;
  }
  
  .cart-btn {
    padding: 10px 12px;
    font-size: 1rem;
  }

  .header__menu-toggle {
    display: flex;
    order: 2;
  }

  .logo__text {
    font-size: 20px;
  }

  .logo__icon {
    width: 40px;
    height: 40px;
  }

  .nav__list {
    gap: 24px;
  }
}

@media (max-width: 480px) {
  :root {
    --container-padding: 12px;
  }

  .logo__text {
    font-size: 18px;
  }

  .logo__icon {
    width: 36px;
    height: 36px;
  }
  .cart-btn {
    padding: 8px 10px;
    font-size: 0.9rem;
  }
  
  .cart-count {
    min-width: 18px;
    height: 18px;
    font-size: 0.7rem;
    top: -6px;
    right: -6px;
  }

  .mobile-nav__link {
    font-size: 15px;
    padding: 14px var(--container-padding);
  }
}

/* ===== ACCESSIBILITY ENHANCEMENTS ===== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .header {
    border-bottom-width: 2px;
  }
  
  .nav__link::before {
    height: 3px;
  }
  
  .btn--primary {
    border: 2px solid var(--ui-dark-shade-color);
  }
}

/* ===== SCROLLED HEADER STATE ===== */
.header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(90, 55, 51, 0.1);
}

/* ===== LOADING ANIMATION ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(30px);
  }
}

.header__inner > * {
  animation: fadeInUp 0.6s ease forwards;
}

.header__logo {
  animation-delay: 0.1s;
}

.header__nav {
  animation-delay: 0.2s;
}

.header__cart {
  animation-delay: 0.3s;
}

/* ===== MAIN CONTENT ===== */
.main {
  margin-top: 0;
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--ui-light-accent-color) 0%, var(--ui-light-shade-color) 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 25% 50%, rgba(247, 189, 0, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content {
  animation: slideInLeft 1s ease-out;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(247, 189, 0, 0.1), rgba(235, 109, 47, 0.1));
  color: var(--ui-dark-accent-color);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(247, 189, 0, 0.2);
  backdrop-filter: blur(10px);
}

.hero__badge-icon {
  font-size: 16px;
  animation: buzz 2s ease-in-out infinite;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero__badge-icon i {
  color: var(--ui-dark-accent-color);
}

@keyframes buzz {
  0%, 50%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-5deg); }
  75% { transform: rotate(5deg); }
}

.hero__title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--ui-dark-shade-color);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -2px;
}

.hero__title-highlight {
  background: linear-gradient(135deg, var(--ui-brand-color), var(--ui-dark-accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero__title-highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, var(--ui-brand-color), var(--ui-dark-accent-color));
  border-radius: 2px;
  opacity: 0.3;
}

.hero__description {
  font-size: 1.2rem;
  color: var(--ui-text-color);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 500px;
}

.hero__cta {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.hero__btn--primary {
  background: linear-gradient(135deg, var(--ui-brand-color), var(--ui-dark-accent-color));
  color: var(--ui-light-shade-color);
  box-shadow: 0 8px 25px rgba(247, 189, 0, 0.4);
}

.hero__btn--primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.hero__btn--primary:hover::before {
  left: 100%;
}

.hero__btn--primary:hover {
  box-shadow: 0 12px 35px rgba(247, 189, 0, 0.5);
}

.hero__btn--secondary {
  background: transparent;
  color: var(--ui-dark-shade-color);
  border: 2px solid var(--ui-dark-shade-color);
}

.hero__btn--secondary:hover {
  background: var(--ui-dark-shade-color);
  color: var(--ui-light-shade-color);
}

.hero__btn-icon {
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero__btn-icon i {
  color: inherit;
}

.hero__image-wrapper {
  position: relative;
  animation: slideInRight 1s ease-out;
}

.hero__image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.hero__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Decorative elements */
.hero__decoration {
  position: absolute;
  pointer-events: none;
}

.hero__decoration--1 {
  top: 15%;
  right: 15%;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(247, 189, 0, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.hero__decoration--2 {
  bottom: 20%;
  left: 10%;
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, rgba(235, 109, 47, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

.hero__decoration--3 {
  top: 60%;
  left: 5%;
  width: 30px;
  height: 30px;
  background: radial-gradient(circle, rgba(247, 189, 0, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 7s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== HERO RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .hero__container {
    gap: 60px;
  }
  
  .hero__title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 0 40px;
    min-height: 100vh;
  }
  
  .hero__container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .hero__content {
    order: 1;
  }
  
  .hero__image-wrapper {
    order: 2;
  }
  
  .hero__badge {
    margin-bottom: 16px;
    padding: 6px 12px;
    font-size: 13px;
  }
  
  .hero__title {
    font-size: 2.2rem;
    margin-bottom: 16px;
  }
  
  .hero__description {
    font-size: 1rem;
    max-width: none;
    margin-bottom: 30px;
  }
  
  .hero__cta {
    justify-content: center;
    gap: 12px;
  }
  
  .hero__btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
  
  .hero__image-container {
    transform: none;
    border-radius: 16px;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .hero__image-container:hover {
    transform: scale(1.02);
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 40px 0 30px;
    min-height: 100vh;
  }
  
  .hero__container {
    gap: 24px;
  }
  
  .hero__badge {
    margin-bottom: 12px;
    padding: 5px 10px;
    font-size: 12px;
  }
  
  .hero__badge-icon {
    font-size: 14px;
  }
  
  .hero__title {
    font-size: 1.8rem;
    margin-bottom: 16px;
    letter-spacing: -1px;
  }
  
  .hero__description {
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.5;
  }
  
  .hero__cta {
    flex-direction: column;
    gap: 10px;
  }
  
  .hero__btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 0.9rem;
  }
  
  .hero__btn-icon {
    font-size: 1rem;
  }
  
  .hero__image-container {
    max-width: 320px;
    border-radius: 12px;
  }
}

/* Extra small mobile devices */
@media (max-width: 360px) {
  .hero {
    padding: 30px 0 25px;
    min-height: 100vh;
  }
  
  .hero__container {
    gap: 20px;
  }
  
  .hero__title {
    font-size: 1.6rem;
    margin-bottom: 14px;
  }
  
  .hero__description {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
  
  .hero__btn {
    padding: 12px 18px;
    font-size: 0.85rem;
  }
  
  .hero__image-container {
    max-width: 280px;
  }
}

/* ===== SERVICES SECTION ===== */
.services {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--ui-light-accent-color) 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 75% 25%, rgba(247, 189, 0, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.services__header {
  text-align: center;
  margin-bottom: 80px;
  animation: slideInUp 1s ease-out;
}

.services__badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(247, 189, 0, 0.1), rgba(235, 109, 47, 0.1));
  color: var(--ui-dark-accent-color);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  border: 1px solid rgba(247, 189, 0, 0.2);
  backdrop-filter: blur(10px);
}

.services__title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--ui-dark-shade-color);
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: -1px;
  position: relative;
}

.services__title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, var(--ui-brand-color), var(--ui-dark-accent-color));
  border-radius: 2px;
}

.services__description {
  font-size: 1.1rem;
  color: var(--ui-text-color);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== SERVICES GRID ===== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

/* ===== SERVICE CARDS ===== */
.service-card {
  background: var(--ui-light-shade-color);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(90, 55, 51, 0.08);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(216, 216, 216, 0.1);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(247, 189, 0, 0.02), rgba(235, 109, 47, 0.02));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 20px 60px rgba(90, 55, 51, 0.15);
  border-color: rgba(247, 189, 0, 0.3);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card__icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(249, 244, 240, 0.8), rgba(255, 255, 255, 0.9));
  border-radius: 50%;
  transition: all 0.3s ease;
  border: 3px solid rgba(247, 189, 0, 0.1);
}

.service-card:hover .service-card__icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(247, 189, 0, 0.1), rgba(235, 109, 47, 0.1));
  border-color: rgba(247, 189, 0, 0.3);
  box-shadow: 0 10px 30px rgba(247, 189, 0, 0.2);
}

.service-card__svg {
  width: 70px;
  height: 70px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(90, 55, 51, 0.1));
  transition: all 0.3s ease;
}

.service-card:hover .service-card__svg {
  filter: drop-shadow(0 6px 12px rgba(247, 189, 0, 0.3));
}

.service-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ui-dark-shade-color);
  margin-bottom: 16px;
  line-height: 1.3;
}

.service-card__description {
  font-size: 1rem;
  color: var(--ui-text-color);
  line-height: 1.6;
  margin-bottom: 30px;
  min-height: 50px;
}

.service-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ui-dark-accent-color);
  border: 2px solid var(--ui-dark-accent-color);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.service-card__btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--ui-brand-color), var(--ui-dark-accent-color));
  transition: left 0.4s ease;
  z-index: -1;
}

.service-card__btn:hover {
  color: var(--ui-light-shade-color);
  border-color: var(--ui-brand-color);
  box-shadow: 0 8px 25px rgba(235, 109, 47, 0.3);
}

.service-card__btn:hover::before {
  left: 0;
}

.service-card__btn i {
  transition: transform 0.3s ease;
}

.service-card__btn:hover i {
  transform: translateX(4px);
}



/* ===== DECORATIVE ELEMENTS ===== */
.services__decoration {
  position: absolute;
  pointer-events: none;
  opacity: 0.6;
}

.services__decoration--1 {
  top: 10%;
  right: 5%;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(247, 189, 0, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.services__decoration--2 {
  bottom: 15%;
  left: 8%;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(235, 109, 47, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite reverse;
}

/* ===== SERVICES RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .services__grid {
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .services {
    padding: 80px 0;
  }
  
  .services__header {
    margin-bottom: 60px;
  }
  
  .services__title {
    font-size: 2.5rem;
  }
  
  .services__description {
    font-size: 1rem;
  }
  
  .services__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .service-card {
    padding: 30px 25px;
  }
  
  .service-card__icon {
    width: 100px;
    height: 100px;
    margin-bottom: 25px;
  }
  
  .service-card__svg {
    width: 60px;
    height: 60px;
  }
  
  .service-card__title {
    font-size: 1.3rem;
  }
  
  .service-card__description {
    min-height: auto;
    margin-bottom: 25px;
  }
}

@media (max-width: 480px) {
  .services {
    padding: 60px 0;
  }
  
  .services__title {
    font-size: 2rem;
  }
  
  .services__grid {
    gap: 15px;
  }
  
  .service-card {
    padding: 25px 20px;
  }
  
  .service-card__icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
  }
  
  .service-card__svg {
    width: 50px;
    height: 50px;
  }
  
  .service-card__title {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }
  
  .service-card__description {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  
  .service-card__btn {
    padding: 10px 20px;
    font-size: 13px;
  }
}

/* ===================================
   PRODUCTS SECTION
   =================================== */
.products {
  padding: 120px 0;
  position: relative;
  background: linear-gradient(135deg, var(--ui-light-accent-color) 0%, var(--ui-light-shade-color) 100%);
  overflow: hidden;
}

/* ===== PRODUCTS HEADER ===== */
.products__header {
  text-align: center;
  margin-bottom: 80px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.products__badge {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(135deg, var(--ui-brand-color), var(--ui-dark-accent-color));
  color: var(--ui-light-shade-color);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.products__title {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--ui-dark-shade-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.products__description {
  font-size: 1.1rem;
  color: var(--ui-text-color);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== PRODUCTS GRID ===== */
.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}

/* ===== PRODUCT CARDS ===== */
.product-card {
  background: var(--ui-light-shade-color);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(90, 55, 51, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  border: 1px solid rgba(216, 216, 216, 0.1);
}

.product-card:hover {
  box-shadow: 0 25px 70px rgba(90, 55, 51, 0.15);
}

/* ===== PRODUCT IMAGE SECTION ===== */
.product-card__image-wrapper {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: linear-gradient(45deg, #f9f9f9, #ffffff);
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.product-card:hover .product-card__image {
  transform: scale(1.1);
}

.product-card__badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 6px 12px;
  background: linear-gradient(135deg, var(--ui-brand-color), var(--ui-dark-accent-color));
  color: var(--ui-light-shade-color);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 5;
}

.product-card__badge--premium {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.product-card__badge--exclusive {
  background: linear-gradient(135deg, #ef4444, #f97316);
}

.product-card__overlay {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.3s ease;
  z-index: 5;
}

.product-card:hover .product-card__overlay {
  opacity: 1;
  transform: translateX(0);
}

.product-card__quick-view,
.product-card__favorite {
  width: 40px;
  height: 40px;
  background: var(--ui-light-shade-color);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.product-card__quick-view:hover,
.product-card__favorite:hover {
  background: var(--ui-brand-color);
  color: var(--ui-light-shade-color);
  transform: scale(1.1);
}

.product-card__favorite.active {
  background: var(--ui-dark-accent-color);
  color: var(--ui-light-shade-color);
}

.product-card__favorite.active i {
  font-weight: 900;
}

/* ===== PRODUCT CONTENT ===== */
.product-card__content {
  padding: 25px;
}

.product-card__title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ui-dark-shade-color);
  margin-bottom: 10px;
  line-height: 1.3;
}

.product-card__description {
  font-size: 0.95rem;
  color: var(--ui-text-color);
  line-height: 1.6;
  margin-bottom: 15px;
}

/* ===== RATING SYSTEM ===== */
.product-card__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.rating-stars {
  display: flex;
  gap: 2px;
}

.rating-stars i {
  font-size: 0.9rem;
  color: var(--ui-brand-color);
}

.rating-count {
  font-size: 0.85rem;
  color: var(--ui-text-color);
}

/* ===== PRICE DISPLAY ===== */
.product-card__price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}

.price-current {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ui-dark-shade-color);
}

.price-original {
  font-size: 1.1rem;
  color: var(--ui-text-color);
  text-decoration: line-through;
  opacity: 0.7;
}

/* ===== PRODUCT ACTIONS ===== */
.product-card__actions {
  display: block;
}

.product-card__add-to-cart {
  width: 100%;
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--ui-brand-color), var(--ui-dark-accent-color));
  color: var(--ui-light-shade-color);
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.product-card__add-to-cart::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.product-card__add-to-cart:hover {
  box-shadow: 0 8px 25px rgba(247, 189, 0, 0.4);
}

.product-card__add-to-cart:hover::before {
  left: 100%;
}

.product-card__add-to-cart:active {
  transform: translateY(0);
}

.product-card__add-to-cart i {
  font-size: 0.9rem;
}



/* ===== PRODUCTS CTA ===== */
.products__cta {
  text-align: center;
}

.products__view-all-btn {
  padding: 16px 32px;
  background: transparent;
  border: 2px solid var(--ui-brand-color);
  color: var(--ui-brand-color);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.products__view-all-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--ui-brand-color), var(--ui-dark-accent-color));
  transition: left 0.3s ease;
  z-index: -1;
}

.products__view-all-btn:hover {
  color: var(--ui-light-shade-color);
  box-shadow: 0 10px 30px rgba(247, 189, 0, 0.3);
}

.products__view-all-btn:hover::before {
  left: 0;
}

.products__view-all-btn i {
  transition: transform 0.3s ease;
}

.products__view-all-btn:hover i {
  transform: translateX(4px);
}

/* ===== DECORATIVE ELEMENTS ===== */
.products__decoration {
  position: absolute;
  pointer-events: none;
  opacity: 0.6;
  z-index: 1;
}

.products__decoration--1 {
  top: 10%;
  left: -5%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(247, 189, 0, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.products__decoration--2 {
  bottom: 15%;
  right: -3%;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(235, 109, 47, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite reverse;
}

/* ===== PRODUCTS RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .products__grid {
    gap: 30px;
  }
  
  .product-card__content {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .products {
    padding: 80px 0;
  }
  
  .products__header {
    margin-bottom: 60px;
  }
  
  .products__title {
    font-size: 2.5rem;
  }
  
  .products__description {
    font-size: 1rem;
  }
  
  .products__grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .product-card__overlay {
    opacity: 1;
    transform: translateX(0);
    position: static;
    flex-direction: row;
    justify-content: flex-end;
    margin-top: 10px;
  }
  

}

@media (max-width: 480px) {
  .products {
    padding: 60px 0;
  }
  
  .products__header {
    margin-bottom: 40px;
  }
  
  .products__title {
    font-size: 2rem;
  }
  
  .products__grid {
    gap: 20px;
  }
  
  .product-card__content {
    padding: 15px;
  }
  
  .product-card__title {
    font-size: 1.2rem;
  }
  
  .product-card__description {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }
  
  .product-card__rating {
    margin-bottom: 15px;
  }
  
  .product-card__price {
    margin-bottom: 20px;
  }
  
  .price-current {
    font-size: 1.3rem;
  }
  
  .products__view-all-btn {
    padding: 14px 24px;
    font-size: 0.9rem;
  }
}

/* ===================================
   NOTIFICATION SYSTEM
   =================================== */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--ui-light-shade-color);
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border-left: 4px solid var(--ui-brand-color);
  opacity: 0;
  transform: translateX(400px);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1000;
  max-width: 350px;
  min-width: 250px;
}

.notification--show {
  opacity: 1;
  transform: translateX(0);
}

.notification--success {
  border-left-color: #10b981;
}

.notification--success .notification__content i {
  color: #10b981;
}

.notification--error {
  border-left-color: #ef4444;
}

.notification--error .notification__content i {
  color: #ef4444;
}

.notification--info {
  border-left-color: #3b82f6;
}

.notification--info .notification__content i {
  color: #3b82f6;
}

.notification__content {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--ui-dark-shade-color);
  font-weight: 500;
}

.notification__content i {
  font-size: 1.1rem;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .notification {
    top: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
    transform: translateY(-100px);
  }
  
  .notification--show {
    transform: translateY(0);
  }
}

/* ===================================
   CART SIDEBAR
   =================================== */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -450px;
  width: 420px;
  height: 100vh;
  background: var(--ui-light-shade-color);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.cart-sidebar.open {
  right: 0;
}

.cart-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.cart-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* ===== CART SIDEBAR HEADER ===== */
.cart-sidebar__header {
  padding: 20px 25px;
  border-bottom: 1px solid rgba(216, 216, 216, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--ui-light-accent-color);
}

.cart-sidebar__title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ui-dark-shade-color);
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.cart-sidebar__title i {
  color: var(--ui-brand-color);
}

.cart-sidebar__close {
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--ui-text-color);
}

.cart-sidebar__close:hover {
  background: var(--ui-brand-color);
  color: var(--ui-light-shade-color);
  transform: scale(1.1);
}

/* ===== CART SIDEBAR CONTENT ===== */
.cart-sidebar__content {
  flex: 1;
  overflow-y: auto;
  padding: 20px 0;
}

.cart-items {
  padding: 0 25px;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(216, 216, 216, 0.1);
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item__image {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
  background: #f5f5f5;
  flex-shrink: 0;
}

.cart-item__info {
  flex: 1;
  min-width: 0;
}

.cart-item__title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ui-dark-shade-color);
  margin-bottom: 5px;
  line-height: 1.3;
}

.cart-item__price {
  font-size: 0.9rem;
  color: var(--ui-brand-color);
  font-weight: 600;
}

.cart-item__controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.cart-item__quantity {
  display: flex;
  align-items: center;
  border: 1px solid rgba(216, 216, 216, 0.3);
  border-radius: 6px;
  overflow: hidden;
}

.cart-quantity-btn {
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--ui-text-color);
  font-size: 0.8rem;
}

.cart-quantity-btn:hover {
  background: var(--ui-light-accent-color);
  color: var(--ui-brand-color);
}

.cart-quantity-display {
  width: 35px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ui-dark-shade-color);
  border-left: 1px solid rgba(216, 216, 216, 0.3);
  border-right: 1px solid rgba(216, 216, 216, 0.3);
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item__remove {
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--ui-text-color);
}

.cart-item__remove:hover {
  background: #ef4444;
  color: var(--ui-light-shade-color);
}

/* ===== EMPTY CART STATE ===== */
.cart-empty {
  text-align: center;
  padding: 60px 25px;
  color: var(--ui-text-color);
}

.cart-empty i {
  font-size: 3rem;
  color: var(--ui-media-bg);
  margin-bottom: 20px;
}

.cart-empty h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--ui-dark-shade-color);
}

.cart-empty p {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ===== CART SIDEBAR FOOTER ===== */
.cart-sidebar__footer {
  border-top: 1px solid rgba(216, 216, 216, 0.2);
  padding: 20px 25px;
  background: var(--ui-light-accent-color);
}

.cart-total {
  margin-bottom: 20px;
}

.cart-total__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: var(--ui-text-color);
}

.cart-total__row--total {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ui-dark-shade-color);
  padding-top: 8px;
  border-top: 1px solid rgba(216, 216, 216, 0.3);
  margin-bottom: 0;
}

.cart-total__amount {
  font-weight: 600;
  color: var(--ui-brand-color);
}

.cart-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-btn-checkout,
.cart-btn-clear {
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cart-btn-checkout {
  background: linear-gradient(135deg, var(--ui-brand-color), var(--ui-dark-accent-color));
  color: var(--ui-light-shade-color);
}

.cart-btn-checkout:hover {
  box-shadow: 0 5px 15px rgba(247, 189, 0, 0.4);
}

.cart-btn-clear {
  background: transparent;
  color: var(--ui-text-color);
  border: 1px solid rgba(216, 216, 216, 0.3);
}

.cart-btn-clear:hover {
  background: #ef4444;
  color: var(--ui-light-shade-color);
  border-color: #ef4444;
}

/* ===== CART RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .cart-sidebar {
    width: 100%;
    right: -100%;
  }
  
  .cart-sidebar.open {
    right: 0;
  }
  
  .cart-item {
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .cart-item__controls {
    width: 100%;
    justify-content: space-between;
    margin-top: 10px;
  }
}

@media (max-width: 480px) {
  .cart-sidebar__header {
    padding: 15px 20px;
  }
  
  .cart-items {
    padding: 0 20px;
  }
  
  .cart-sidebar__footer {
    padding: 15px 20px;
  }
  
  .cart-item__image {
    width: 50px;
    height: 50px;
  }
  
  .cart-item__title {
    font-size: 0.9rem;
  }
}

/* ===================================
   REVIEWS SECTION
   =================================== */
.reviews {
  padding: 120px 0 80px;
  position: relative;
  background: linear-gradient(135deg, var(--ui-light-shade-color) 0%, var(--ui-light-accent-color) 100%);
  overflow: hidden;
}

/* ===== REVIEWS HEADER ===== */
.reviews__header {
  text-align: center;
  margin-bottom: 80px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.reviews__badge {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(135deg, var(--ui-brand-color), var(--ui-dark-accent-color));
  color: var(--ui-light-shade-color);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.reviews__title {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--ui-dark-shade-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.reviews__description {
  font-size: 1.1rem;
  color: var(--ui-text-color);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== REVIEWS CONTAINER ===== */
.reviews__container {
  position: relative;
  overflow: hidden;
}

.reviews__container::before,
.reviews__container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 10;
  pointer-events: none;
}

.reviews__container::before {
  left: 0;
  background: linear-gradient(to right, var(--ui-light-shade-color), transparent);
}

.reviews__container::after {
  right: 0;
  background: linear-gradient(to left, var(--ui-light-shade-color), transparent);
}

.reviews__row {
  display: flex;
  margin-bottom: 30px;
  position: relative;
  width: 100%;
}

.reviews__row:last-child {
  margin-bottom: 0;
}

.reviews__track {
  display: flex;
  gap: 30px;
  will-change: transform;
  min-width: 300%; /* Wider track for seamless loop */
}

/* ===== SEAMLESS INFINITE SCROLL ANIMATIONS ===== */
/* 
  Creates truly endless card animation:
  - Cards are duplicated 3x total (original + 2 clones) 
  - Animation moves exactly 33.333% (1/3 of track width)
  - When animation loops, next set appears seamlessly
  - No visible reset point or gap between cards
*/
.reviews__row--ltr .reviews__track {
  animation: scrollLeft 60s linear infinite;
}

.reviews__row--rtl .reviews__track {
  animation: scrollRight 60s linear infinite;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-33.333%);
  }
}

@keyframes scrollRight {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(33.333%);
  }
}

/* ===== HOVER PAUSE FUNCTIONALITY ===== */
.reviews__row:hover .reviews__track {
  animation-play-state: paused;
}

/* ===== REVIEW CARDS ===== */
.review-card {
  min-width: 380px;
  background: var(--ui-light-shade-color);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(90, 55, 51, 0.08);
  border: 1px solid rgba(216, 216, 216, 0.1);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--ui-brand-color), var(--ui-dark-accent-color));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.review-card:hover::before {
  opacity: 1;
}

.review-card:hover {
  box-shadow: 0 20px 60px rgba(90, 55, 51, 0.15);
  border-color: rgba(247, 189, 0, 0.3);
}

.review-card__content {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.review-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.review-card__stars i {
  color: var(--ui-brand-color);
  font-size: 1rem;
}

.review-card__text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ui-dark-shade-color);
  margin-bottom: 25px;
  flex: 1;
  font-style: italic;
  position: relative;
}

.review-card__text::before {
  content: '"';
  font-size: 4rem;
  color: var(--ui-brand-color);
  position: absolute;
  top: -20px;
  left: -10px;
  font-family: serif;
  opacity: 0.3;
  line-height: 1;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.review-card__avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--ui-brand-color);
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--ui-brand-color), var(--ui-dark-accent-color));
  color: var(--ui-light-shade-color);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.review-card__avatar::before {
  content: attr(data-initials);
  position: absolute;
  z-index: 1;
}

.review-card__avatar.has-image::before {
  display: none;
}

.review-card__avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

.review-card__info {
  flex: 1;
}

.review-card__name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ui-dark-shade-color);
  margin-bottom: 4px;
}

.review-card__location {
  font-size: 0.9rem;
  color: var(--ui-text-color);
}

/* ===== DECORATIVE ELEMENTS ===== */
.reviews__decoration {
  position: absolute;
  pointer-events: none;
  opacity: 0.5;
  z-index: 1;
}

.reviews__decoration--1 {
  top: 15%;
  left: -3%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(247, 189, 0, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite;
}

.reviews__decoration--2 {
  bottom: 20%;
  right: -2%;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(235, 109, 47, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

/* ===== REVIEWS RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .reviews {
    padding: 100px 0 60px;
  }
  
  .reviews__header {
    margin-bottom: 60px;
  }
  
  .review-card {
    min-width: 320px;
    padding: 25px;
  }
  

}

@media (max-width: 768px) {
  .reviews {
    padding: 80px 0 40px;
  }
  
  .reviews__title {
    font-size: 2.5rem;
  }
  
  .reviews__description {
    font-size: 1rem;
  }
  
  .review-card {
    min-width: 280px;
    padding: 20px;
  }
  
  .review-card__text {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  
  .review-card__avatar {
    width: 45px;
    height: 45px;
  }
  
  .review-card__name {
    font-size: 1rem;
  }
  
  .review-card__location {
    font-size: 0.85rem;
  }
  

  
  .reviews__row {
    margin-bottom: 25px;
  }
  
  .reviews__track {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .reviews {
    padding: 60px 0 30px;
  }
  
  .reviews__header {
    margin-bottom: 40px;
  }
  
  .reviews__title {
    font-size: 2rem;
  }
  
  .review-card {
    min-width: 250px;
    padding: 18px;
  }
  
  .review-card__text {
    font-size: 0.9rem;
    margin-bottom: 18px;
  }
  
  .review-card__avatar {
    width: 40px;
    height: 40px;
  }
  
  .review-card__name {
    font-size: 0.95rem;
  }
  
  .review-card__location {
    font-size: 0.8rem;
  }
  

  
  .reviews__row {
    margin-bottom: 20px;
  }
  
  .reviews__track {
    gap: 15px;
  }
}

/* ===== CONTACT SECTION ===== */
.contact {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--ui-light-accent-color) 0%, var(--ui-light-shade-color) 100%);
  position: relative;
  overflow: hidden;
}

.contact__header {
  text-align: center;
  margin-bottom: 80px;
}

.contact__title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--ui-dark-shade-color);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.contact__title i {
  color: var(--ui-brand-color);
  font-size: 2.5rem;
}

.contact__subtitle {
  font-size: 1.2rem;
  color: var(--ui-text-color);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact__content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

/* Contact Info Styles */
.contact__info {
  background: var(--ui-light-shade-color);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(90, 55, 51, 0.08);
  border: 1px solid rgba(247, 189, 0, 0.1);
}

.contact__info-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--ui-dark-shade-color);
  margin-bottom: 30px;
  text-align: center;
}

.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.contact__item:hover {
  background: var(--ui-light-accent-color);
  transform: translateX(5px);
}

.contact__item:last-child {
  margin-bottom: 0;
}

.contact__item-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--ui-brand-color), var(--ui-dark-accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(247, 189, 0, 0.3);
}

.contact__item-icon i {
  color: var(--ui-light-shade-color);
  font-size: 1.2rem;
}

.contact__item-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ui-dark-shade-color);
  margin-bottom: 5px;
}

.contact__item-content p {
  color: var(--ui-text-color);
  line-height: 1.6;
  margin: 0;
}

.contact__social {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(216, 216, 216, 0.3);
  text-align: center;
}

.contact__social h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ui-dark-shade-color);
  margin-bottom: 20px;
}

.contact__social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.contact__social-link {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--ui-brand-color), var(--ui-dark-accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ui-light-shade-color);
  transition: all 0.3s ease;
  text-decoration: none;
}

.contact__social-link:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 25px rgba(247, 189, 0, 0.4);
}

/* Contact Form Styles */
.contact__form-container {
  background: var(--ui-light-shade-color);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(90, 55, 51, 0.08);
  border: 1px solid rgba(247, 189, 0, 0.1);
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-label {
  font-size: 1rem;
  font-weight: 500;
  color: var(--ui-dark-shade-color);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.form-input,
.form-select,
.form-textarea {
  padding: 15px 20px;
  border: 2px solid var(--ui-light-shade-color);
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: var(--ui-light-shade-color);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--ui-brand-color);
  box-shadow: 0 0 0 3px rgba(247, 189, 0, 0.1);
  transform: translateY(-1px);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23939393' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px;
  appearance: none;
}

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  position: relative;
}

.form-checkbox input[type="checkbox"] {
  opacity: 0;
  position: absolute;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(216, 216, 216, 0.5);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-top: 2px;
}

.form-checkbox input[type="checkbox"]:checked + .checkmark {
  background: linear-gradient(135deg, var(--ui-brand-color), var(--ui-dark-accent-color));
  border-color: var(--ui-brand-color);
}

.form-checkbox input[type="checkbox"]:checked + .checkmark::after {
  content: '✓';
  color: var(--ui-light-shade-color);
  font-size: 12px;
  font-weight: bold;
}

.checkbox-text {
  color: var(--ui-text-color);
  font-size: 0.95rem;
  line-height: 1.5;
}

.form-actions {
  margin-top: 20px;
}

.contact__submit-btn {
  width: 100%;
  padding: 18px 30px;
  background: linear-gradient(135deg, var(--ui-brand-color), var(--ui-dark-accent-color));
  color: var(--ui-light-shade-color);
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.contact__submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(247, 189, 0, 0.4);
}

.contact__submit-btn:active {
  transform: translateY(0);
}

/* Decorative Elements */
.contact__decoration {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ui-brand-color), var(--ui-dark-accent-color));
  opacity: 0.1;
  z-index: 1;
}

.contact__decoration--1 {
  top: 10%;
  left: 5%;
  animation: float 6s ease-in-out infinite;
}

.contact__decoration--2 {
  bottom: 15%;
  right: 8%;
  animation: float 8s ease-in-out infinite reverse;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact__title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .contact {
    padding: 80px 0 60px;
  }
  
  .contact__header {
    margin-bottom: 60px;
  }
  
  .contact__title {
    font-size: 2rem;
    flex-direction: column;
    gap: 10px;
  }
  
  .contact__title i {
    font-size: 2rem;
  }
  
  .contact__info,
  .contact__form-container {
    padding: 30px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .contact__item {
    padding: 15px;
  }
  
  .contact__item-icon {
    width: 45px;
    height: 45px;
  }
  
  .contact__social-links {
    gap: 12px;
  }
  
  .contact__social-link {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .contact {
    padding: 60px 0 40px;
  }
  
  .contact__title {
    font-size: 1.8rem;
  }
  
  .contact__info,
  .contact__form-container {
    padding: 20px;
  }
  
  .form-input,
  .form-select,
  .form-textarea {
    padding: 12px 15px;
  }
  
  .contact__submit-btn {
    padding: 15px 25px;
    font-size: 1rem;
  }
  
  .contact__item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .contact__item-content {
    text-align: center;
  }
}

/* ===== CONTACT FORM VALIDATION STYLES ===== */
.field-error {
  display: none;
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 5px;
  font-weight: 500;
}

.form-input.field-invalid,
.form-select.field-invalid,
.form-textarea.field-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.1);
}

.form-group.field-focused .form-label {
  color: var(--ui-brand-color);
}

/* ===== CONTACT NOTIFICATIONS ===== */
.contact-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  max-width: 400px;
  background: var(--ui-light-shade-color);
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(90, 55, 51, 0.15);
  border: 1px solid rgba(216, 216, 216, 0.2);
  z-index: 1000;
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-notification--show {
  transform: translateX(0);
  opacity: 1;
}

.contact-notification--success {
  border-left: 4px solid #28a745;
}

.contact-notification--error {
  border-left: 4px solid #dc3545;
}

.contact-notification--info {
  border-left: 4px solid var(--ui-brand-color);
}

.contact-notification__content {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  position: relative;
}

.contact-notification__content i {
  flex-shrink: 0;
  font-size: 1.2rem;
  margin-top: 2px;
}

.contact-notification--success .contact-notification__content i {
  color: #28a745;
}

.contact-notification--error .contact-notification__content i {
  color: #dc3545;
}

.contact-notification--info .contact-notification__content i {
  color: var(--ui-brand-color);
}

.contact-notification__content span {
  flex: 1;
  color: var(--ui-dark-shade-color);
  font-size: 0.95rem;
  line-height: 1.4;
}

.contact-notification__close {
  background: none;
  border: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ui-text-color);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.contact-notification__close:hover {
  background: rgba(216, 216, 216, 0.2);
  color: var(--ui-dark-shade-color);
}

@media (max-width: 768px) {
  .contact-notification {
    left: 15px;
    right: 15px;
    top: 15px;
    max-width: none;
  }
}

/* ===== FOOTER SECTION ===== */
.footer {
  background: linear-gradient(135deg, var(--ui-dark-shade-color) 0%, #4a2e2b 100%);
  color: var(--ui-text-color-light);
  position: relative;
  overflow: hidden;
  margin-top: auto;
}

.footer__content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  padding: 80px 0 60px;
  align-items: start;
  justify-content: start;
}

/* Company Section */
.footer__section--company {
  padding-right: 20px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
}

.footer__logo i {
  font-size: 2rem;
  color: var(--ui-brand-color);
  filter: drop-shadow(0 2px 8px rgba(247, 189, 0, 0.3));
}

.footer__logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ui-light-shade-color);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.footer__description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ui-subtitle-color);
  margin-bottom: 30px;
}

.footer__social {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.footer__social-link {
  width: 44px;
  height: 44px;
  background: rgba(247, 189, 0, 0.1);
  border: 1px solid rgba(247, 189, 0, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ui-brand-color);
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer__social-link:hover {
  background: var(--ui-brand-color);
  color: var(--ui-dark-shade-color);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 25px rgba(247, 189, 0, 0.4);
}

/* Footer Sections */
.footer__title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ui-light-shade-color);
  margin-bottom: 25px;
  position: relative;
}

.footer__title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--ui-brand-color), var(--ui-dark-accent-color));
  border-radius: 1px;
}





/* Newsletter Section */
.footer__newsletter-text {
  color: var(--ui-subtitle-color);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 25px;
}

.footer__newsletter-form {
  margin-bottom: 30px;
}

.footer__newsletter-input-group {
  display: flex;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.footer__newsletter-input-group:focus-within {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--ui-brand-color);
  box-shadow: 0 0 0 3px rgba(247, 189, 0, 0.1);
}

.footer__newsletter-input {
  flex: 1;
  background: var(--ui-light-accent-color);
  border: 1px solid var(--ui-light-accent-color);
  padding: 15px 20px;
  color: var(--ui-light-accent-color);
  font-size: 0.95rem;
  outline: none;
}

.footer__newsletter-input::placeholder {
  color: var(--ui-subtitle-color);
}

.footer__newsletter-btn {
  background: linear-gradient(135deg, var(--ui-brand-color), var(--ui-dark-accent-color));
  border: none;
  border-radius: 50px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ui-dark-shade-color);
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.footer__newsletter-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(247, 189, 0, 0.4);
}

.footer__newsletter-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--ui-subtitle-color);
}

.footer__feature i {
  color: var(--ui-brand-color);
  font-size: 1rem;
  width: 16px;
  text-align: center;
}

/* Footer Bottom */
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
}

.footer__bottom-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer__legal {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.footer__legal-link {
  color: var(--ui-subtitle-color);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer__legal-link:hover {
  color: var(--ui-brand-color);
}

.footer__separator {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.8rem;
}

.footer__copyright {
  color: var(--ui-subtitle-color);
  font-size: 0.9rem;
}

.footer__copyright p {
  margin: 0;
}

/* Decorative Elements */
.footer__decoration {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ui-brand-color), var(--ui-dark-accent-color));
  opacity: 0.05;
  z-index: 1;
}

.footer__decoration--1 {
  width: 120px;
  height: 120px;
  top: 15%;
  left: 5%;
  animation: float 8s ease-in-out infinite;
}

.footer__decoration--2 {
  width: 80px;
  height: 80px;
  top: 60%;
  right: 8%;
  animation: float 10s ease-in-out infinite reverse;
}

.footer__decoration--3 {
  width: 100px;
  height: 100px;
  bottom: 10%;
  left: 15%;
  animation: float 12s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer__content {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 60px 0 50px;
  }
  
  .footer__description {
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .footer__content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 50px 0 40px;
    text-align: left;
  }
  
  .footer__section--company {
    margin-bottom: 20px;
  }
  
  .footer__social {
    justify-content: flex-start;
  }
  
  .footer__title {
    text-align: left;
    font-size: 1.2rem;
  }
  
  .footer__title::after {
    left: 0;
    transform: none;
  }
  
  .footer__newsletter-features {
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  
  .footer__bottom-content {
    flex-direction: row;
    text-align: left;
    gap: 15px;
  }
  
  .footer__legal {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .footer__content {
    padding: 40px 0 30px;
    gap: 30px;
  }
  
  .footer__logo {
    justify-content: flex-start;
  }
  
  .footer__logo i {
    font-size: 1.8rem;
  }
  
  .footer__logo-text {
    font-size: 1.6rem;
  }
  
  .footer__social-link {
    width: 40px;
    height: 40px;
  }
  
  .footer__newsletter-input-group {
    padding: 3px;
  }
  
  .footer__newsletter-input {
    padding: 12px 18px;
    font-size: 0.9rem;
  }
  
  .footer__newsletter-btn {
    width: 44px;
    height: 44px;
  }
  
  .footer__newsletter-features {
    gap: 15px;
    justify-content: flex-start;
  }
  
  .footer__feature {
    font-size: 0.85rem;
    gap: 10px;
  }
  
  .footer__legal {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  
  .footer__separator {
    display: none;
  }
  
  .footer__copyright {
    font-size: 0.65rem;
    text-align: left;
  }
}

/* ===== FOOTER NOTIFICATIONS ===== */
.footer-notification {
  position: fixed;
  bottom: 30px;
  right: 30px;
  max-width: 400px;
  background: var(--ui-light-shade-color);
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(90, 55, 51, 0.15);
  border: 1px solid rgba(216, 216, 216, 0.2);
  z-index: 1000;
  transform: translateY(100px) translateX(50px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer-notification--show {
  transform: translateY(0) translateX(0);
  opacity: 1;
}

.footer-notification--success {
  border-left: 4px solid #28a745;
}

.footer-notification--error {
  border-left: 4px solid #dc3545;
}

.footer-notification--info {
  border-left: 4px solid var(--ui-brand-color);
}

.footer-notification__content {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  position: relative;
}

.footer-notification__content i {
  flex-shrink: 0;
  font-size: 1.2rem;
  margin-top: 2px;
}

.footer-notification--success .footer-notification__content i {
  color: #28a745;
}

.footer-notification--error .footer-notification__content i {
  color: #dc3545;
}

.footer-notification--info .footer-notification__content i {
  color: var(--ui-brand-color);
}

.footer-notification__content span {
  flex: 1;
  color: var(--ui-dark-shade-color);
  font-size: 0.95rem;
  line-height: 1.4;
}

.footer-notification__close {
  background: none;
  border: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ui-text-color);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.footer-notification__close:hover {
  background: rgba(216, 216, 216, 0.2);
  color: var(--ui-dark-shade-color);
}

/* Floating Animation for Celebration */
@keyframes floatUp {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
  50% {
    transform: translateY(-50vh) rotate(180deg);
    opacity: 0.8;
  }
  100% {
    transform: translateY(-100vh) rotate(360deg);
    opacity: 0;
  }
}

/* Newsletter Input Enhancement */
.footer__newsletter-input-group {
  transition: all 0.3s ease, transform 0.2s ease;
}

.footer__newsletter-input-group:hover {
  transform: scale(1.01);
}

@media (max-width: 768px) {
  .footer-notification {
    bottom: 20px;
    right: 20px;
    left: 20px;
    max-width: none;
  }
}