@charset "UTF-8";
/* =======

	Template Name: Play Bootstrap
	Author: UIdeck
	Author URI: https://uideck.com/
	Support: https://github.com/uideck/
	Version: 1.0

======== */
/*===========================
  COMMON css 
===========================*/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800;900&display=swap");
:root {
  --font: "Inter", sans-serif;
  --body-color: #637381;
  --heading-color: #212b36;
  --primary-color: #212b36;
  --white: #ffffff;
}

body {
  font-family: var(--font);
  font-weight: normal;
  font-style: normal;
  color: var(--body-color);
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

a,
button,
input,
textarea {
  transition: all 0.3s ease-out 0s;
}

a,
a:focus,
input:focus,
textarea:focus,
button:focus,
.navbar-toggler:focus {
  text-decoration: none;
  outline: none;
  box-shadow: none;
}

a:focus,
a:hover {
  text-decoration: none;
}

i,
span,
a {
  display: inline-block;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: var(--heading-color);
  margin: 0px;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

ul,
ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--body-color);
  margin: 0px;
}

.bg_cover {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

/*===== All Button Style =====*/
.ud-main-btn {
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  font-weight: 500;
  font-size: 16px;
  border-radius: 5px;
  padding: 15px 25px;
  border: 1px solid transparent;
  color: var(--white);
  cursor: pointer;
  z-index: 5;
  transition: all 0.4s ease-out 0s;
  background: var(--primary-color);
}
.ud-main-btn:hover {
  color: var(--white);
  background: var(--heading-color);
}

@media (max-width: 767px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.back-to-top {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: var(--primary-color);
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  text-align: center;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 99;
  color: var(--white);
}
.back-to-top:hover {
  color: var(--white);
  background: var(--heading-color);
}

/* ===== Header CSS ===== */
.ud-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  transition: all 0.3s ease-out 0s;
}

.sticky {
  position: fixed;
  z-index: 99;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-out 0s;
}
.sticky .navbar {
  padding: 0;
}

.navbar {
  padding: 0px 0;
  border-radius: 5px;
  position: relative;
  transition: all 0.3s ease-out 0s;
}

.navbar-brand {
  padding: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-brand {
    padding: 5px 0px;
  }
}
.navbar-brand img {
  max-width: 160px;
}

.navbar-toggler {
  padding: 0;
}
.navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: var(--white);
  display: block;
  margin: 5px 0;
  position: relative;
  transition: all 0.3s ease-out 0s;
}
.navbar-toggler.active .toggler-icon:nth-of-type(1) {
  transform: rotate(45deg);
  top: 7px;
}
.navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}
.navbar-toggler.active .toggler-icon:nth-of-type(3) {
  transform: rotate(135deg);
  top: -7px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    right: 0;
    max-width: 300px;
    width: 100%;
    background-color: var(--white);
    z-index: 9;
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 0px;
    display: none;
    border-radius: 5px;
  }
  .navbar-collapse.show {
    display: block;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav {
    padding: 20px 30px;
  }
}
.navbar-nav .nav-item {
  position: relative;
  padding: 0px 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .navbar-nav .nav-item {
    padding: 0px 12px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item {
    padding: 0px;
  }
}
.navbar-nav .nav-item > a {
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  transition: all 0.3s ease-out 0s;
  padding: 25px 8px;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item > a {
    display: block;
    padding: 8px 0;
    color: var(--heading-color);
  }
}
.navbar-nav .nav-item > a:hover, .navbar-nav .nav-item > a.active {
  color: var(--white);
  opacity: 0.5;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item > a:hover, .navbar-nav .nav-item > a.active {
    color: var(--primary-color);
    opacity: 1;
  }
}
.navbar-nav .nav-item .ud-submenu {
  position: absolute;
  width: 250px;
  background: var(--white);
  top: 110%;
  padding: 20px 30px;
  box-shadow: 0 15px 44px rgba(140, 140, 140, 0.18);
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item .ud-submenu {
    position: static;
    box-shadow: none;
    width: 100%;
    padding: 0px;
    opacity: 1;
    visibility: visible;
    display: none;
  }
}
.navbar-nav .nav-item .ud-submenu.show {
  display: block;
}
.navbar-nav .nav-item .ud-submenu .ud-submenu-link {
  padding: 7px 0;
  color: var(--heading-color);
  font-size: 14px;
}
.navbar-nav .nav-item .ud-submenu .ud-submenu-link:hover {
  color: var(--primary-color);
}
.navbar-nav .nav-item:hover > a {
  color: var(--white);
  opacity: 0.5;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item:hover > a {
    color: var(--primary-color);
    opacity: 1;
  }
}
.navbar-nav .nav-item:hover > .ud-submenu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.navbar-nav .nav-item.nav-item-has-children > a {
  position: relative;
}
.navbar-nav .nav-item.nav-item-has-children > a::after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid;
  border-right: 2px solid;
  transform: rotate(45deg) translateY(-50%);
  right: -15px;
  top: 50%;
  margin-top: -2px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item.nav-item-has-children > a::after {
    right: 5px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-btn {
    position: absolute;
    top: 50%;
    right: 50px;
    transform: translateY(-50%);
  }
}
.navbar-btn .ud-main-btn {
  padding: 8px 16px;
  background: transparent;
}
.navbar-btn .ud-login-btn:hover {
  opacity: 0.5;
}
.navbar-btn .ud-white-btn {
  background: rgba(255, 255, 255, 0.2);
}
.navbar-btn .ud-white-btn:hover {
  background: rgb(255, 255, 255);
  color: var(--heading-color);
}

.sticky .navbar-toggler .toggler-icon {
  background-color: var(--heading-color);
}
.sticky .navbar-nav .nav-item:hover > a {
  color: var(--primary-color);
  opacity: 1;
}
.sticky .navbar-nav .nav-item a {
  color: var(--heading-color);
}
.sticky .navbar-nav .nav-item a.active, .sticky .navbar-nav .nav-item a:hover {
  color: var(--primary-color);
  opacity: 1;
}
.sticky .navbar-btn .ud-main-btn.ud-login-btn {
  color: var(--heading-color);
}
.sticky .navbar-btn .ud-main-btn.ud-login-btn:hover {
  color: var(--primary-color);
  opacity: 1;
}
.sticky .navbar-btn .ud-white-btn {
  background: var(--primary-color);
  color: var(--white);
}
.sticky .navbar-btn .ud-white-btn:hover {
  background: var(--heading-color);
}
.sticky .navbar-btn .ud-shop-btn {
  background: var(--white);
  color: var(--heading-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.sticky .navbar-btn .ud-shop-btn:hover {
  background: var(--white);
  color: var(--primary-color);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}
.sticky .navbar-btn .ud-shop-btn i {
  color: #FF6B00;
}

.navbar-auth {
  gap: 20px;
}
@media (max-width: 767px) {
  .navbar-auth {
    display: none !important;
  }
}

/* Cart Icon Button */
.cart-icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-right: 10px;
}

.cart-icon-btn:hover {
  background: #FF6B00;
  color: #ffffff;
  transform: translateY(-2px);
}

.cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 10px;
  background: #FF6B00;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sticky .cart-icon-btn {
  background: rgba(47, 50, 58, 0.08);
  color: #2F323A;
}

.sticky .cart-icon-btn:hover {
  background: #FF6B00;
  color: #ffffff;
}

.navbar-auth .user-menu {
  position: relative;
}
.navbar-auth .user-menu .user-menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}
.navbar-auth .user-menu .user-menu-toggle .user-logo {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.navbar-auth .user-menu .user-menu-toggle .user-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.navbar-auth .user-menu .user-menu-toggle .user-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ff6b00;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0c0c0c;
  font-size: 18px;
}
.navbar-auth .user-menu .user-menu-toggle .chevron {
  font-size: 12px;
  opacity: 0.65;
}
.navbar-auth .user-menu .user-menu-toggle:hover, .navbar-auth .user-menu .user-menu-toggle.is-active {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.12);
}
.navbar-auth .user-menu .user-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 14px);
  width: 260px;
  padding: 18px;
  background: #0f1014;
  border-radius: 18px;
  box-shadow: 0 25px 70px rgba(3, 3, 3, 0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 99;
}
.navbar-auth .user-menu .user-dropdown .dropdown-heading {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 6px;
}
.navbar-auth .user-menu .user-dropdown .dropdown-email {
  font-size: 15px;
  color: #fff;
  margin-bottom: 14px;
}
.navbar-auth .user-menu .user-dropdown .dropdown-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  color: #fff;
  font-weight: 600;
  transition: background 0.2s ease;
  border: none;
  width: 100%;
  text-align: left;
  background: transparent;
  cursor: pointer;
}
.navbar-auth .user-menu .user-dropdown .dropdown-link i {
  color: #ff6b00;
  font-size: 18px;
}
.navbar-auth .user-menu .user-dropdown .dropdown-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.navbar-auth .user-menu .user-dropdown .dropdown-description {
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
}
.navbar-auth .user-menu .user-dropdown .dropdown-link-danger i {
  color: #ff4d4f;
}
.navbar-auth .user-menu .user-dropdown .dropdown-link-danger:hover {
  background: rgba(255, 77, 79, 0.15);
}
.navbar-auth .user-menu.open .user-menu-toggle {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.15);
}
.navbar-auth .user-menu.open .user-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-auth-mobile {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 12px;
}
.nav-auth-mobile a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}
.sticky .navbar-auth .user-menu-toggle {
  border-color: rgba(33, 43, 54, 0.2);
  background: rgba(33, 43, 54, 0.05);
  color: var(--heading-color);
}
.sticky .navbar-auth .user-menu-toggle .user-icon {
  color: #fff;
  background: #ff6b00;
}
.sticky .navbar-auth .user-menu-toggle .user-logo {
  background: rgba(33, 43, 54, 0.08);
}
.sticky .navbar-auth .user-dropdown {
  background: #ffffff;
  color: var(--heading-color);
  border-color: rgba(33, 43, 54, 0.08);
}
.sticky .navbar-auth .user-dropdown .dropdown-link {
  color: var(--heading-color);
}
.sticky .navbar-auth .user-dropdown .dropdown-link:hover {
  background: rgba(33, 43, 54, 0.08);
}
.sticky .navbar-auth .user-dropdown .dropdown-email {
  color: var(--heading-color);
}
.sticky .navbar-auth .user-dropdown .dropdown-description {
  color: rgba(33, 43, 54, 0.7);
}

.logout-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: 20px;
}
.logout-modal[hidden] {
  display: none;
}
.logout-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 13, 18, 0.75);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
.logout-modal-content {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  width: 100%;
  max-width: 460px;
  box-shadow: 0 30px 80px rgba(5, 5, 10, 0.25);
  z-index: 2;
}
.logout-modal-header {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}
.logout-modal-header .logout-modal-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(255, 77, 79, 0.15);
  color: #ff4d4f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.logout-modal-header h3 {
  margin-bottom: 6px;
}
.logout-modal-header p {
  margin: 0;
  color: var(--body-color);
}
.logout-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
.logout-modal-actions .btn-outline,
.logout-modal-actions .btn-danger {
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 600;
  border: 2px solid transparent;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}
.logout-modal-actions .btn-outline {
  border-color: #e5e7eb;
  color: var(--heading-color);
}
.logout-modal-actions .btn-outline:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}
.logout-modal-actions .btn-danger {
  background: #ff4d4f;
  border-color: #ff4d4f;
  color: #fff;
}
.logout-modal-actions .btn-danger:hover {
  filter: brightness(0.95);
}

/* ===== Session Timeout Modal ===== */
.session-timeout-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}
.session-timeout-modal[hidden] {
  display: none;
}
.session-timeout-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 13, 18, 0.85);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}
.session-timeout-content {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 30px 80px rgba(5, 5, 10, 0.35);
  z-index: 2;
  animation: sessionModalAppear 0.3s ease-out;
}
@keyframes sessionModalAppear {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(-10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.session-timeout-header {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}
.session-timeout-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(251, 146, 60, 0.15);
  color: #f97316;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}
.session-timeout-header h3 {
  margin-bottom: 6px;
  font-size: 20px;
  font-weight: 700;
}
.session-timeout-header p {
  margin: 0;
  color: var(--body-color);
  font-size: 15px;
  line-height: 1.5;
}
.session-timeout-header [data-session-countdown] {
  font-weight: 700;
  color: #f97316;
  font-variant-numeric: tabular-nums;
}
.session-timeout-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
.session-timeout-actions .btn-outline,
.session-timeout-actions .btn-primary {
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 600;
  border: 2px solid transparent;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 15px;
}
.session-timeout-actions .btn-outline {
  border-color: #e5e7eb;
  color: var(--heading-color);
}
.session-timeout-actions .btn-outline:hover {
  border-color: #ff4d4f;
  color: #ff4d4f;
}
.session-timeout-actions .btn-primary {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}
.session-timeout-actions .btn-primary:hover {
  filter: brightness(1.1);
}

/* ===== Hero CSS ===== */
.ud-hero {
  background: #000000;
  padding-top: 140px;
  padding-bottom: 60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ud-hero {
    padding-top: 120px;
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .ud-hero {
    padding-top: 100px;
    padding-bottom: 40px;
  }
}

.ud-hero-content {
  max-width: 780px;
  margin: auto;
  margin-bottom: 30px;
}
.ud-hero-content .ud-hero-title {
  color: var(--white);
  font-weight: 700;
  font-size: 45px;
  line-height: 60px;
  text-align: center;
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ud-hero-content .ud-hero-title {
    font-size: 38px;
    line-height: 50px;
  }
}
@media (max-width: 767px) {
  .ud-hero-content .ud-hero-title {
    font-size: 26px;
    line-height: 38px;
  }
}
.ud-hero-content .ud-hero-desc {
  font-weight: normal;
  font-size: 20px;
  line-height: 35px;
  text-align: center;
  color: var(--white);
  opacity: 0.8;
  max-width: 600px;
  margin: auto;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .ud-hero-content .ud-hero-desc {
    font-size: 16px;
    line-height: 30px;
  }
}

.ud-hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ud-hero-buttons .ud-main-btn {
  margin: 8px;
}
@media (max-width: 767px) {
  .ud-hero-buttons .ud-main-btn {
    margin: 5px;
  }
}
@media (max-width: 767px) {
  .ud-hero-buttons .ud-main-btn {
    padding: 12px 16px;
  }
}
.ud-hero-buttons .ud-white-btn {
  background: var(--white);
  color: var(--heading-color);
}
.ud-hero-buttons .ud-white-btn:hover {
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.2);
  background: #fefefe;
  color: var(--primary-color);
}
.ud-hero-buttons .ud-link-btn:hover {
  color: var(--white);
  background: transparent;
  opacity: 0.5;
}

.ud-hero-brands-wrapper {
  text-align: center;
  margin-bottom: 40px;
}
.ud-hero-brands-wrapper img {
  transition: all 0.3s;
  opacity: 0.5;
  max-width: 250px;
}
.ud-hero-brands-wrapper img:hover {
  opacity: 1;
}

/* Hero Brands Section (similar to ruemue.de) */
.ud-hero-brands {
  margin-top: 80px;
  padding-bottom: 60px;
  overflow: hidden;
}

.ud-hero-brands-wrapper {
  background: transparent;
  backdrop-filter: none;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  border: none;
}

.ud-brands-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 30px;
}

.ud-brands-logos {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 60px;
  animation: scroll-brands 20s linear infinite;
  width: max-content;
}

@keyframes scroll-brands {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.ud-brands-logos:hover {
  animation-play-state: paused;
}

.ud-brand-logo {
  transition: all 0.3s ease;
  opacity: 0.7;
  filter: grayscale(100%) brightness(0) invert(1);
  flex-shrink: 0;
}

.ud-brand-logo:hover {
  opacity: 1;
  transform: translateY(-5px);
  filter: grayscale(0%) brightness(1) invert(0);
}

.ud-brand-logo img {
  height: 40px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}

@media (max-width: 767px) {
  .ud-hero-brands {
    margin-top: 60px;
    padding-bottom: 40px;
  }
  
  .ud-hero-brands-wrapper {
    padding: 30px 20px;
  }
  
  .ud-brands-logos {
    gap: 25px;
  }
  
  .ud-brand-logo img {
    height: 30px;
    max-width: 90px;
  }
}

.ud-hero-image {
  max-width: 845px;
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.ud-hero-image img {
  max-width: 100%;
  text-align: center;
}
.ud-hero-image .shape {
  position: absolute;
  z-index: -1;
}
.ud-hero-image .shape.shape-1 {
  bottom: 0;
  left: -30px;
}
.ud-hero-image .shape.shape-2 {
  top: -20px;
  right: -20px;
}

/* ===== Features CSS ===== */
.ud-features {
  padding-top: 120px;
  padding-bottom: 90px;
}
@media (max-width: 767px) {
  .ud-features {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}

.ud-section-title {
  max-width: 620px;
  margin-bottom: 70px;
}
.ud-section-title span {
  font-weight: 600;
  font-size: 13px;
  color: #fff;
  background: linear-gradient(135deg, #FF6B00 0%, #e55e00 100%);
  padding: 8px 24px;
  border-radius: 25px;
  display: inline-block;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}
.ud-section-title h2 {
  font-weight: 700;
  font-size: 42px;
  line-height: 55px;
  text-transform: capitalize;
  color: var(--heading-color);
  margin-bottom: 20px;
}
.ud-section-title p {
  font-size: 20px;
  line-height: 30px;
}
@media (max-width: 767px) {
  .ud-section-title p {
    font-size: 16px;
    line-height: 26px;
  }
}

.ud-single-feature {
  margin-bottom: 40px;
}
.ud-single-feature:hover .ud-feature-icon::before {
  transform: rotate(45deg);
}
.ud-single-feature .ud-feature-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--primary-color);
  font-size: 32px;
  color: var(--white);
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 40px;
}
.ud-single-feature .ud-feature-icon::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 14px;
  background: var(--primary-color);
  opacity: 0.2;
  z-index: -1;
  transform: rotate(23deg);
  transition: all 0.3s ease-out 0s;
}
.ud-single-feature .ud-feature-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 12px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ud-single-feature .ud-feature-title {
    font-size: 18px;
    line-height: 26px;
  }
}
.ud-single-feature .ud-feature-desc {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 40px;
}
.ud-single-feature .ud-feature-link {
  font-weight: 500;
  color: var(--body-color);
}
.ud-single-feature .ud-feature-link:hover {
  color: var(--primary-color);
}

/* ===== About CSS ===== */
.ud-about {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  padding: 120px 0;
}
@media (max-width: 767px) {
  .ud-about {
    padding: 80px 0;
  }
}

.ud-about-wrapper {
  background: var(--white);
  border: 2px solid rgba(255, 107, 0, 0.1);
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}
.ud-about-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(255, 107, 0, 0.12);
  border-color: rgba(255, 107, 0, 0.2);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ud-about-wrapper {
    display: block;
  }
}

.ud-about-content-wrapper {
  padding: 70px;
}
@media (max-width: 767px) {
  .ud-about-content-wrapper {
    padding: 50px 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ud-about-content-wrapper {
    padding: 50px;
  }
}

.ud-about-content {
  max-width: 930px;
}
.ud-about-content .tag {
  font-weight: 600;
  font-size: 13px;
  color: #fff;
  background: linear-gradient(135deg, #FF6B00 0%, #e55e00 100%);
  padding: 8px 24px;
  display: inline-block;
  margin-bottom: 20px;
  border-radius: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}
.ud-about-content h2 {
  font-weight: bold;
  font-size: 36px;
  line-height: 45px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .ud-about-content h2 {
    font-size: 26px;
    line-height: 38px;
  }
}
.ud-about-content p {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 40px;
}
.ud-about-content .ud-main-btn:hover {
  background: #2748b4;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ud-about-image {
    text-align: center;
  }
}

/* ===== Pricing CSS ===== */
.ud-pricing {
  padding-top: 120px;
  padding-bottom: 90px;
}
@media (max-width: 767px) {
  .ud-pricing {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}

.ud-single-pricing {
  margin-bottom: 40px;
  background: var(--white);
  border: 2px solid #d4deff;
  border-radius: 8px;
  text-align: center;
  padding: 45px 30px;
  position: relative;
}
.ud-single-pricing.active {
  background: linear-gradient(180deg, #3056d3 0%, #179bee 100%);
  border: none;
  padding: 55px 30px;
}
.ud-single-pricing.active .ud-pricing-header h3,
.ud-single-pricing.active .ud-pricing-header h4 {
  color: var(--white);
}
.ud-single-pricing.active .ud-pricing-body li {
  color: var(--white);
}
.ud-single-pricing.first-item::after, .ud-single-pricing.last-item::after {
  content: "";
  position: absolute;
  width: 55px;
  height: 55px;
  z-index: 1;
}
.ud-single-pricing.first-item::after {
  background: var(--primary-color);
  left: -2px;
  bottom: -2px;
  border-radius: 0px 55px 0px 8px;
}
.ud-single-pricing.last-item::after {
  background: #13c296;
  top: -2px;
  right: -2px;
  border-radius: 0px 8px 0px 55px;
}
.ud-single-pricing .ud-popular-tag {
  display: inline-block;
  padding: 10px 25px;
  background: var(--white);
  border-radius: 30px;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 600;
}
.ud-single-pricing .ud-pricing-header h3 {
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 8px;
}
.ud-single-pricing .ud-pricing-header h4 {
  font-weight: 600;
  font-size: 26px;
  color: var(--primary-color);
  margin-bottom: 40px;
}
.ud-single-pricing .ud-pricing-body {
  margin-bottom: 40px;
}
.ud-single-pricing .ud-pricing-body li {
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 18px;
}
.ud-single-pricing .ud-main-btn {
  border-radius: 30px;
  padding: 15px 40px;
}
.ud-single-pricing .ud-border-btn {
  border: 1px solid #d4deff;
  color: var(--primary-color);
  background: var(--white);
}
.ud-single-pricing .ud-border-btn:hover {
  color: var(--white);
  border-color: var(--primary-color);
  background: var(--primary-color);
}
.ud-single-pricing .ud-white-btn {
  background: var(--white);
  color: var(--heading-color);
}
.ud-single-pricing .ud-white-btn:hover {
  color: var(--white);
  background: var(--heading-color);
}

/* ===== Services Styles ===== */
.ud-services {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
}

.ud-service-card {
  display: block;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  border: 2px solid transparent;
}

.ud-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(255, 107, 0, 0.15);
  border-color: rgba(255, 107, 0, 0.3);
}

.ud-service-image {
  position: relative;
  width: 100%;
  padding-bottom: 75%; /* 4:3 aspect ratio */
  overflow: hidden;
  border-radius: 15px 15px 0 0;
}

.ud-service-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ud-service-card:hover .ud-service-image img {
  transform: scale(1.1);
}

.ud-service-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(47, 50, 58, 0.95) 0%, rgba(47, 50, 58, 0.7) 70%, transparent 100%);
  padding: 30px 25px 25px;
  color: var(--white);
  transition: all 0.3s ease;
}

.ud-service-overlay h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
  line-height: 1.3;
}

.ud-service-overlay p {
  font-size: 14px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.ud-service-arrow {
  display: inline-block;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.ud-service-card:hover .ud-service-arrow {
  transform: translateX(10px);
}

.ud-service-card:hover .ud-service-overlay {
  background: linear-gradient(to top, rgba(47, 50, 58, 1) 0%, rgba(47, 50, 58, 0.85) 70%, transparent 100%);
}

@media only screen and (max-width: 767px) {
  .ud-services {
    padding: 60px 0;
  }
  
  .ud-service-overlay h3 {
    font-size: 18px;
  }
  
  .ud-service-overlay p {
    font-size: 13px;
    margin-bottom: 10px;
  }
}

.ud-service-list {
  list-style: none;
  padding-left: 0;
}

.ud-service-list li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  line-height: 1.6;
}

.ud-service-list li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 18px;
}

.ud-training-section {
  padding: 25px;
  background: #f8f9fa;
  border-radius: 10px;
  border-left: 4px solid var(--primary);
  margin-bottom: 20px;
}

.ud-training-section h4 {
  color: var(--heading-color);
  margin-bottom: 15px;
}

.ud-training-section h4 i {
  color: var(--primary);
  margin-right: 10px;
}

/* ===== FAQ CSS ===== */
.ud-faq {
  padding-top: 120px;
  padding-bottom: 90px;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .ud-faq {
    padding-top: 80px;
    padding-bottom: 50px;
  }
}
.ud-faq .shape {
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
}

.ud-single-faq {
  background: var(--white);
  border: 2px solid rgba(255, 107, 0, 0.1);
  box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.08);
  border-radius: 15px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}
.ud-single-faq:hover {
  transform: translateY(-3px);
  box-shadow: 0px 15px 50px rgba(255, 107, 0, 0.12);
  border-color: rgba(255, 107, 0, 0.2);
}
.ud-single-faq .ud-faq-btn {
  text-align: left;
  display: flex;
  width: 100%;
  align-items: center;
  border: none;
  background: transparent;
  font-weight: 600;
  font-size: 18px;
  color: var(--heading-color);
  opacity: 0.88;
  padding: 30px;
  transition: all 0.3s ease;
}
.ud-single-faq .ud-faq-btn:hover {
  background: rgba(255, 107, 0, 0.02);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .ud-single-faq .ud-faq-btn {
    padding: 15px;
  }
}
.ud-single-faq .ud-faq-btn.collapsed span.icon i {
  transform: rotate(0deg);
}
.ud-single-faq .ud-faq-btn span.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #FF6B00 0%, #e55e00 100%);
  border-radius: 10px;
  color: #fff;
  margin-right: 24px;
  transition: all 0.3s ease;
}
.ud-single-faq .ud-faq-btn.collapsed span.icon {
  background: rgba(255, 107, 0, 0.1);
  color: #FF6B00;
}
.ud-single-faq .ud-faq-btn span.icon i {
  transform: rotate(180deg);
  transition: all 0.3s;
  font-size: 14px;
  font-weight: 700;
}
.ud-single-faq .ud-faq-body {
  padding: 0px 30px 40px 95px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .ud-single-faq .ud-faq-body {
    padding: 0px 16px 20px 82px;
  }
}

/* ===== Testimonials CSS ===== */
.ud-testimonials {
  padding-top: 120px;
}
@media (max-width: 767px) {
  .ud-testimonials {
    padding-top: 80px;
  }
}

.ud-single-testimonial {
  padding: 30px;
  box-shadow: 0px 60px 120px -20px #ebeffd;
  background: var(--white);
  margin-bottom: 50px;
}
.ud-single-testimonial .ud-testimonial-ratings {
  margin-bottom: 10px;
}
.ud-single-testimonial .ud-testimonial-ratings i {
  color: #fbb040;
}
.ud-single-testimonial .ud-testimonial-content {
  margin-bottom: 25px;
}
.ud-single-testimonial .ud-testimonial-content p {
  font-size: 16px;
  line-height: 30px;
  color: #637381;
}
.ud-single-testimonial .ud-testimonial-info {
  display: flex;
  align-items: center;
}
.ud-single-testimonial .ud-testimonial-info .ud-testimonial-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
}
.ud-single-testimonial .ud-testimonial-info .ud-testimonial-meta h4 {
  font-weight: 600;
  font-size: 14px;
}
.ud-single-testimonial .ud-testimonial-info .ud-testimonial-meta p {
  font-size: 12px;
  color: #969696;
}

.ud-brands .ud-title {
  margin-bottom: 30px;
}
.ud-brands .ud-title h6 {
  font-weight: normal;
  font-size: 12px;
  color: var(--body-color);
  display: inline-block;
  position: relative;
}
.ud-brands .ud-title h6::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 1px;
  background: #afb2b5;
  right: -40px;
  top: 50%;
}
.ud-brands .ud-brands-logo {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-right: -40px;
}
.ud-brands .ud-brands-logo .ud-single-logo {
  margin-right: 40px;
  margin-bottom: 20px;
  max-width: 140px;
}
.ud-brands .ud-brands-logo .ud-single-logo:hover img {
  filter: none;
}
.ud-brands .ud-brands-logo .ud-single-logo img {
  filter: grayscale(1);
  transition: all 0.3s ease-out 0s;
}

/* ===== Team CSS ===== */
.ud-team {
  padding-top: 120px;
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .ud-team {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}

.ud-single-team {
  margin-bottom: 40px;
}
.ud-single-team .ud-team-image-wrapper {
  width: 170px;
  height: 170px;
  position: relative;
  margin: 0px auto 25px;
}
.ud-single-team .ud-team-image {
  border-radius: 50%;
}
.ud-single-team .ud-team-image img {
  width: 100%;
  border-radius: 50%;
}
.ud-single-team .shape {
  position: absolute;
  z-index: -1;
}
.ud-single-team .shape.shape-1 {
  top: 0;
  left: 0;
}
.ud-single-team .shape.shape-2 {
  bottom: 0;
  right: 0;
}
.ud-single-team .ud-team-info {
  text-align: center;
  margin-bottom: 20px;
}
.ud-single-team .ud-team-info h5 {
  font-weight: 500;
  font-size: 18px;
  text-transform: capitalize;
  margin-bottom: 10px;
}
.ud-single-team .ud-team-info h6 {
  font-weight: 500;
  font-size: 12px;
  color: var(--body-color);
}
.ud-single-team .ud-team-socials {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ud-single-team .ud-team-socials a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px 10px;
  color: #cdced6;
}
.ud-single-team .ud-team-socials a:hover {
  color: var(--primary-color);
}

/* ===== Contact CSS ===== */
.ud-contact {
  padding: 120px 0px;
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}
@media (max-width: 767px) {
  .ud-contact {
    padding: 80px 0;
  }
}
.ud-contact::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  top: 0;
  left: 0;
  height: 50%;
  background: transparent;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ud-contact::after {
    height: 45%;
  }
}

.ud-contact-title {
  margin-bottom: 150px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ud-contact-title {
    margin-bottom: 50px;
  }
}
.ud-contact-title span {
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #FF6B00 0%, #e55e00 100%);
  padding: 8px 24px;
  border-radius: 25px;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}
.ud-contact-title h2 {
  font-weight: 600;
  font-size: 35px;
  line-height: 41px;
}

.ud-contact-info-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ud-contact-info-wrapper {
    margin-bottom: 50px;
  }
}
.ud-contact-info-wrapper .ud-single-info {
  display: flex;
  max-width: 100%;
  width: 330px;
  margin-bottom: 30px;
}
.ud-contact-info-wrapper .ud-info-icon {
  font-size: 32px;
  color: #FF6B00;
  margin-right: 24px;
}
.ud-contact-info-wrapper .ud-info-meta h5 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 15px;
}
.ud-contact-info-wrapper .ud-info-meta p {
  font-size: 15px;
  line-height: 24px;
}

.ud-contact-form-wrapper {
  box-shadow: 0 15px 50px rgba(255, 107, 0, 0.1);
  border-radius: 20px;
  background: var(--white);
  padding: 60px;
  border: 2px solid rgba(255, 107, 0, 0.1);
  transition: all 0.4s ease;
}
.ud-contact-form-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(255, 107, 0, 0.15);
  border-color: rgba(255, 107, 0, 0.2);
}
@media (max-width: 767px) {
  .ud-contact-form-wrapper {
    padding: 40px 30px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px) {
  .ud-contact-form-wrapper {
    padding: 50px 40px;
  }
}
.ud-contact-form-wrapper .ud-contact-form-title {
  font-style: normal;
  font-weight: 600;
  font-size: 28px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .ud-contact-form-wrapper .ud-contact-form-title {
    font-size: 24px;
  }
}
.ud-contact-form-wrapper .ud-form-group {
  margin-bottom: 25px;
}
.ud-contact-form-wrapper .ud-form-group label {
  display: block;
  font-weight: normal;
  font-size: 12px;
}
.ud-contact-form-wrapper .ud-form-group input,
.ud-contact-form-wrapper .ud-form-group textarea {
  display: block;
  width: 100%;
  padding: 15px 0;
  border: none;
  outline: none;
  border-bottom: 1px solid #f1f1f1;
  resize: none;
}
.ud-contact-form-wrapper .ud-form-group input:focus,
.ud-contact-form-wrapper .ud-form-group textarea:focus {
  border-color: var(--primary-color);
}

/* ===== Footer CSS ===== */
.ud-footer {
  background: var(--heading-color);
  padding-top: 100px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ud-footer .shape {
  position: absolute;
  z-index: -1;
}
.ud-footer .shape.shape-1 {
  top: 0;
  left: 0;
}
.ud-footer .shape.shape-2 {
  top: 0;
  right: 0;
}
.ud-footer .shape.shape-3 {
  bottom: 0;
  right: 0;
}

.ud-widget {
  margin-bottom: 50px;
}
.ud-widget .ud-footer-logo {
  max-width: 160px;
  display: block;
  margin-bottom: 10px;
}
.ud-widget .ud-footer-logo img {
  width: 100%;
}
.ud-widget .ud-widget-desc {
  font-size: 15px;
  line-height: 24px;
  color: #f3f4fe;
  margin-bottom: 30px;
  max-width: 260px;
}
.ud-widget .ud-widget-socials {
  display: flex;
  align-items: center;
}
.ud-widget .ud-widget-socials a {
  font-size: 16px;
  color: #dddddd;
  margin-right: 20px;
}
.ud-widget .ud-widget-socials a:hover {
  color: var(--primary-color);
}
.ud-widget .ud-widget-title {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 35px;
  color: var(--white);
}
.ud-widget .ud-widget-links a {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 30px;
  color: #f3f4fe;
}
.ud-widget .ud-widget-links a:hover {
  color: var(--primary-color);
  padding-left: 10px;
}
.ud-widget .ud-widget-brands {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ud-widget .ud-widget-brands a {
  display: block;
  max-width: 120px;
  margin-bottom: 20px;
  margin-right: 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ud-widget .ud-widget-brands a {
    max-width: 100px;
  }
}

.ud-footer-bottom {
  padding: 35px 0;
  border-top: 1px solid rgba(136, 144, 164, 0.43);
}
.ud-footer-bottom .ud-footer-bottom-left {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .ud-footer-bottom .ud-footer-bottom-left {
    justify-content: center;
  }
}
.ud-footer-bottom .ud-footer-bottom-left a {
  font-weight: normal;
  font-size: 15px;
  color: #f3f4fe;
  margin-right: 30px;
  display: inline-block;
}
@media (max-width: 767px) {
  .ud-footer-bottom .ud-footer-bottom-left a {
    margin: 0px 8px 8px;
  }
}
.ud-footer-bottom .ud-footer-bottom-left a:hover {
  color: var(--primary-color);
}
.ud-footer-bottom .ud-footer-bottom-right {
  text-align: right;
  font-weight: normal;
  font-size: 15px;
  color: #f3f4fe;
}
.ud-footer-bottom .ud-footer-bottom-right a {
  color: var(--primary-color);
}
.ud-footer-bottom .ud-footer-bottom-right a:hover {
  text-decoration: underline;
}
@media (max-width: 767px) {
  .ud-footer-bottom .ud-footer-bottom-right {
    text-align: center;
    margin-top: 10px;
  }
}

/* ====== Banner CSS ======= */
.ud-page-banner {
  padding-top: 90px;
  padding-bottom: 10px;
  background: #000000;
  background-image: url("../images/banner/banner-bg.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ud-banner-content {
  text-align: center;
  max-width: 600px;
  margin: auto;
}
.ud-banner-content h1 {
  color: var(--white);
  font-size: 22px;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

/* ====== Login CSS ====== */
.ud-login {
  padding-top: 80px;
  padding-bottom: 80px;
}

.ud-login-wrapper {
  max-width: 500px;
  margin: auto;
  background: var(--white);
  text-align: center;
  padding: 60px;
  box-shadow: 0px 10px 35px rgba(0, 0, 0, 0.05);
}
.ud-login-wrapper .ud-login-logo {
  margin-bottom: 30px;
}

.ud-login-form .ud-form-group {
  margin-bottom: 25px;
}
.ud-login-form .ud-form-group input {
  width: 100%;
  border: 2px solid #dddddd;
  border-radius: 4px;
  padding: 12px 24px;
  background: #fcfdfe;
  color: var(--body-color);
}
.ud-login-form .ud-form-group input:focus {
  border-color: var(--primary-color);
}

.ud-socials-connect {
  padding-top: 10px;
  padding-bottom: 30px;
}
.ud-socials-connect p {
  font-size: 16px;
  color: var(--body-color);
  margin-bottom: 10px;
}
.ud-socials-connect ul {
  display: flex;
  align-items: center;
  margin-left: -10px;
  margin-right: -10px;
}
.ud-socials-connect ul li {
  width: 100%;
}
.ud-socials-connect ul li a {
  height: 45px;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px;
  border-radius: 6px;
  color: var(--white);
  font-size: 20px;
}
.ud-socials-connect ul li a.facebook {
  background: #4064ac;
}
.ud-socials-connect ul li a.facebook:hover {
  background: #315294;
}
.ud-socials-connect ul li a.twitter {
  background: #1c9cea;
}
.ud-socials-connect ul li a.twitter:hover {
  background: #0f8bd8;
}
.ud-socials-connect ul li a.google {
  background: #d64937;
}
.ud-socials-connect ul li a.google:hover {
  background: #c53b29;
}

.forget-pass {
  font-size: 16px;
  color: var(--body-color);
  margin-bottom: 8px;
}

.signup-option {
  color: var(--body-color);
  font-size: 16px;
}
.signup-option a {
  color: var(--primary-color);
}

/* ===== Modern Auth Experience ===== */
.auth-hero {
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.04), transparent 60%), linear-gradient(120deg, #050506 0%, #0d0e14 50%, #141725 100%);
  padding: 120px 0 80px;
  text-align: center;
  color: #fff;
}
.auth-hero .auth-hero-headline .badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 600;
}
.auth-hero .auth-hero-headline .badge-gradient {
  background: linear-gradient(120deg, #ff6b00, #ffb347);
  color: #0b0b0b;
}
.auth-hero .auth-hero-headline h1 {
  font-size: 48px;
  margin-bottom: 18px;
}
@media (max-width: 767px) {
  .auth-hero .auth-hero-headline h1 {
    font-size: 32px;
  }
}
.auth-hero .auth-hero-headline p {
  font-size: 18px;
  opacity: 0.85;
}

.auth-section {
  background: #f7f7fb;
  padding: 90px 0 120px;
}

.auth-card {
  background: #fff;
  border-radius: 28px;
  padding: 45px;
  box-shadow: 0 35px 90px rgba(15, 15, 30, 0.08);
  border: 1px solid rgba(8, 8, 15, 0.05);
}
@media (max-width: 767px) {
  .auth-card {
    padding: 32px;
  }
}
.auth-card .auth-card-head {
  margin-bottom: 28px;
}
.auth-card .auth-card-head h2 {
  font-weight: 700;
  margin-bottom: 6px;
}
.auth-card .auth-card-head p {
  color: var(--body-color);
  margin: 0;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.auth-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.auth-form-group label {
  font-weight: 600;
  color: var(--heading-color);
}
.auth-form-group input {
  border-radius: 14px;
  border: 2px solid #e5e7eb;
  padding: 14px 18px;
  font-size: 16px;
  background: #fff;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}
.auth-form-group input:focus {
  border-color: #ff6b00;
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.15);
  outline: none;
}
.form-control-auth {
  border-radius: 14px;
  border: 2px solid #e5e7eb;
  padding: 14px 18px;
  font-size: 16px;
  background: #fff;
  transition: border 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}
.form-control-auth:focus {
  border-color: #ff6b00;
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.15);
  outline: none;
}
.auth-form-group.has-error input,
.auth-form-group.has-error .form-control-auth {
  border-color: #ff4d4f;
  box-shadow: 0 0 0 3px rgba(255, 77, 79, 0.15);
}
.field-error {
  color: #ff4d4f;
  font-size: 14px;
  margin: 0;
}

.auth-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
@media (max-width: 767px) {
  .auth-grid {
    grid-template-columns: 1fr;
  }
}

.password-field {
  position: relative;
}
.password-field input {
  padding-right: 56px;
}
.password-field .toggle-password {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #a1a1b0;
  font-size: 18px;
  cursor: pointer;
}
.password-field .toggle-password.is-visible {
  color: #ff6b00;
}

.auth-form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}
.auth-form-actions a {
  font-weight: 600;
}
@media (max-width: 767px) {
  .auth-form-actions {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}

.auth-divider {
  position: relative;
  text-align: center;
  margin: 24px 0;
}
.auth-divider span {
  display: inline-block;
  padding: 0 14px;
  background: #fff;
  position: relative;
  z-index: 1;
  font-size: 14px;
  color: #9ca3af;
}
.auth-divider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  border-top: 1px dashed #e0e0ea;
  z-index: 0;
}

.auth-secondary-links {
  margin-top: 8px;
  text-align: center;
  color: var(--body-color);
}
.auth-secondary-links a {
  font-weight: 600;
  color: #ff6b00;
}
.auth-secondary-links a i {
  margin-right: 6px;
}

.auth-alert {
  border-radius: 14px;
  padding: 12px 16px;
  background: rgba(255, 107, 0, 0.08);
  color: #b63a00;
  font-weight: 600;
}

/* Custom Checkbox for Auth Forms */
.auth-checkbox-group {
  margin-top: 8px;
}
.auth-checkbox {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  gap: 12px;
  line-height: 1.5;
}
.auth-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.auth-checkbox-mark {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 2px solid #d1d5db;
  border-radius: 4px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  margin-top: 2px;
}
.auth-checkbox-mark::after {
  content: "";
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: transform 0.15s ease;
}
.auth-checkbox input[type="checkbox"]:checked + .auth-checkbox-mark {
  background: #ff6b00;
  border-color: #ff6b00;
}
.auth-checkbox input[type="checkbox"]:checked + .auth-checkbox-mark::after {
  transform: rotate(45deg) scale(1);
}
.auth-checkbox input[type="checkbox"]:focus + .auth-checkbox-mark {
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.15);
}
.auth-checkbox-text {
  font-size: 14px;
  color: #637381;
}
.auth-checkbox-text a {
  color: #ff6b00;
  font-weight: 600;
  text-decoration: none;
}
.auth-checkbox-text a:hover {
  text-decoration: underline;
}

/* Approval Pending Modal */
.approval-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.approval-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}
.approval-modal-content {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  max-width: 440px;
  width: 90%;
  padding: 32px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  animation: modalIn 0.3s ease-out;
  text-align: center;
}
@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.approval-modal-icon {
  width: 64px;
  height: 64px;
  background: #fff3e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.approval-modal-icon i {
  font-size: 28px;
  color: #ff6b00;
}
.approval-modal-content h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #212b36;
}
.approval-modal-content p {
  color: #637381;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.approval-modal-btn {
  display: inline-block;
  padding: 12px 32px;
  background: #ff6b00;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.approval-modal-btn:hover {
  background: #e55f00;
}

/* ====== Blog CSS ====== */
.ud-blog-grids {
  padding-top: 120px;
  padding-bottom: 80px;
}
.ud-blog-grids.ud-related-articles {
  padding-top: 100px;
}
@media (max-width: 767px) {
  .ud-blog-grids {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}

.ud-single-blog {
  margin-bottom: 40px;
}
.ud-single-blog:hover .ud-blog-image img {
  transform: scale(1.1) rotate(3deg);
}
.ud-single-blog .ud-blog-image {
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 30px;
}
.ud-single-blog .ud-blog-image a {
  display: block;
}
.ud-single-blog .ud-blog-image img {
  width: 100%;
  transition: all 0.3s ease-out 0s;
}
.ud-single-blog .ud-blog-date {
  display: inline-flex;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 16px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 5px;
  margin-bottom: 20px;
}
.ud-single-blog .ud-blog-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 15px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ud-single-blog .ud-blog-title {
    font-size: 20px;
    line-height: 28px;
  }
}
.ud-single-blog .ud-blog-title a {
  color: inherit;
}
.ud-single-blog .ud-blog-title a:hover {
  color: var(--primary-color);
}
.ud-single-blog .ud-blog-desc {
  font-size: 16px;
  line-height: 28px;
}

.ud-related-articles-title {
  font-weight: 800;
  font-size: 28px;
  padding-bottom: 25px;
  position: relative;
  margin-bottom: 50px;
}
.ud-related-articles-title::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 2px;
  background: var(--primary-color);
  left: 0;
  bottom: 0;
}

/* ====== Blog Details CSS ====== */
.ud-blog-details {
  padding-top: 120px;
}
@media (max-width: 767px) {
  .ud-blog-details {
    padding-top: 80px;
  }
}

.ud-blog-details-image {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  height: 500px;
}
@media (max-width: 767px) {
  .ud-blog-details-image {
    height: 300px;
  }
}
.ud-blog-details-image > img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.ud-blog-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(180deg, rgba(48, 86, 211, 0) 46.88%, rgba(13, 21, 49, 0.72) 93.23%);
  border-radius: 5px;
  padding: 30px;
}

.ud-blog-overlay-content {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .ud-blog-overlay-content {
    flex-direction: column;
    align-items: flex-start;
  }
}
.ud-blog-overlay-content .ud-blog-author {
  display: flex;
  align-items: center;
  margin-right: 40px;
}
@media (max-width: 767px) {
  .ud-blog-overlay-content .ud-blog-author {
    margin-right: 0px;
    margin-bottom: 20px;
  }
}
.ud-blog-overlay-content .ud-blog-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}
.ud-blog-overlay-content .ud-blog-author span {
  font-weight: 500;
  font-size: 14px;
  line-height: 28px;
  color: #ffffff;
}
.ud-blog-overlay-content .ud-blog-author a {
  color: inherit;
}
.ud-blog-overlay-content .ud-blog-author a:hover {
  color: var(--primary-color);
}
.ud-blog-overlay-content .ud-blog-meta {
  display: flex;
  align-items: center;
}
.ud-blog-overlay-content .ud-blog-meta p {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 28px;
  color: #ffffff;
  margin-right: 30px;
}
.ud-blog-overlay-content .ud-blog-meta p:last-child {
  margin-right: 0px;
}
.ud-blog-overlay-content .ud-blog-meta p i {
  font-size: 16px;
  margin-right: 10px;
}

.ud-blog-details-content {
  padding-top: 60px;
}
@media only screen and (min-width: 1400px) and (max-width: 1920px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ud-blog-details-content {
    padding-right: 50px;
  }
}

.ud-blog-details-title {
  font-weight: 700;
  font-size: 35px;
  line-height: 50px;
  margin-bottom: 35px;
}
@media (max-width: 767px) {
  .ud-blog-details-title {
    font-size: 26px;
    line-height: 35px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ud-blog-details-title {
    font-size: 30px;
    line-height: 40px;
  }
}

.ud-blog-details-para {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 30px;
}

.ud-blog-details-subtitle {
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .ud-blog-details-subtitle {
    font-size: 22px;
    margin-bottom: 25px;
  }
}

.ud-blog-quote {
  background-image: url("../images/blog/quote-bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px;
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .ud-blog-quote {
    padding: 30px;
  }
}
.ud-blog-quote i {
  font-size: 40px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .ud-blog-quote i {
    margin-bottom: 15px;
  }
}
.ud-blog-quote p {
  font-style: italic;
  font-weight: 600;
  font-size: 16px;
  line-height: 27px;
  text-align: center;
  color: var(--heading-color);
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .ud-blog-quote p {
    font-size: 14px;
    line-height: 24px;
  }
}
.ud-blog-quote h6 {
  color: var(--body-color);
  font-style: italic;
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
}

.ud-blog-details-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .ud-blog-details-action {
    flex-direction: column;
    align-items: flex-start;
  }
}

.ud-blog-tags {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .ud-blog-tags {
    margin-bottom: 20px;
  }
}
.ud-blog-tags li {
  margin-right: 14px;
}
.ud-blog-tags li:last-child {
  margin-right: 0px;
}
.ud-blog-tags a {
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--primary-color);
  background: rgba(48, 86, 211, 0.06);
  border-radius: 3px;
}
.ud-blog-tags a:hover {
  background: var(--primary-color);
  color: var(--white);
}

.ud-blog-share {
  display: flex;
  align-items: center;
}
.ud-blog-share h6 {
  font-weight: 500;
  font-size: 12px;
  color: var(--body-color);
  margin-right: 20px;
}

.ud-blog-share-links {
  display: flex;
  align-items: center;
}
.ud-blog-share-links li {
  margin-right: 14px;
}
.ud-blog-share-links li:last-child {
  margin-right: 0px;
}
.ud-blog-share-links a {
  font-size: 18px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
}
.ud-blog-share-links a.facebook {
  background: #4064ac;
}
.ud-blog-share-links a.facebook:hover {
  background: #315294;
}
.ud-blog-share-links a.twitter {
  background: #1c9cea;
}
.ud-blog-share-links a.twitter:hover {
  background: #0f8bd8;
}
.ud-blog-share-links a.linkedin {
  background: #007ab9;
}
.ud-blog-share-links a.linkedin:hover {
  background: #03689b;
}

.ud-blog-sidebar {
  padding-top: 60px;
}

.ud-newsletter-box {
  background: var(--primary-color);
  padding: 60px 45px;
  position: relative;
  z-index: 1;
  text-align: center;
  border-radius: 5px;
  margin-bottom: 50px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .ud-newsletter-box {
    padding: 50px 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ud-newsletter-box {
    padding: 60px 45px;
  }
}
.ud-newsletter-box .shape {
  position: absolute;
  z-index: -1;
}
.ud-newsletter-box .shape.shape-1 {
  top: 0;
  right: 0;
}
.ud-newsletter-box .shape.shape-2 {
  left: 0;
  bottom: 0;
}
.ud-newsletter-box .ud-newsletter-title {
  font-weight: 600;
  font-size: 25px;
  color: var(--white);
  margin-bottom: 5px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ud-newsletter-box .ud-newsletter-title {
    font-size: 23px;
  }
}
.ud-newsletter-box p {
  font-size: 16px;
  line-height: 24px;
  color: var(--white);
}
.ud-newsletter-box .ud-newsletter-form {
  margin-top: 30px;
}
.ud-newsletter-box .ud-newsletter-form input {
  width: 100%;
  box-shadow: 0px 4px 42px rgba(0, 0, 0, 0.01);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  text-align: center;
  margin-bottom: 15px;
  border: 2px solid transparent;
  padding: 12px 20px;
}
.ud-newsletter-box .ud-newsletter-form input::-moz-placeholder {
  color: var(--white);
  opacity: 1;
}
.ud-newsletter-box .ud-newsletter-form input::placeholder {
  color: var(--white);
  opacity: 1;
}
.ud-newsletter-box .ud-newsletter-form input:focus {
  border-color: var(--white);
}
.ud-newsletter-box .ud-newsletter-form .ud-main-btn {
  background: #13c296;
  box-shadow: 0px 4px 42px rgba(0, 0, 0, 0.01);
  border-radius: 5px;
  width: 100%;
  margin-bottom: 24px;
}
.ud-newsletter-box .ud-newsletter-form .ud-main-btn:hover {
  background: var(--heading-color);
}
.ud-newsletter-box .ud-newsletter-form .ud-newsletter-note {
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
}

.ud-articles-box {
  margin-bottom: 50px;
}
.ud-articles-box .ud-articles-box-title {
  font-weight: 600;
  font-size: 28px;
  padding-bottom: 25px;
  position: relative;
  margin-bottom: 20px;
}
.ud-articles-box .ud-articles-box-title::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 2px;
  background: var(--primary-color);
  left: 0;
  bottom: 0;
}
.ud-articles-box .ud-articles-list li {
  padding: 20px 0;
  border-bottom: 1px solid #f2f3f8;
  display: flex;
  align-items: center;
}
.ud-articles-box .ud-articles-list li:last-child {
  padding-bottom: 0px;
  border-bottom: 0px;
}
.ud-articles-box .ud-articles-list .ud-article-image {
  max-width: 80px;
  width: 100%;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .ud-articles-box .ud-articles-list .ud-article-image {
    max-width: 65px;
    height: 65px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ud-articles-box .ud-articles-list .ud-article-image {
    max-width: 80px;
    height: 80px;
  }
}
.ud-articles-box .ud-articles-list .ud-article-image img {
  width: 100%;
}
.ud-articles-box .ud-articles-list .ud-article-title {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 5px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ud-articles-box .ud-articles-list .ud-article-title {
    font-size: 16px;
  }
}
.ud-articles-box .ud-articles-list .ud-article-title a {
  color: inherit;
}
.ud-articles-box .ud-articles-list .ud-article-title a:hover {
  color: var(--primary-color);
}
.ud-articles-box .ud-articles-list .ud-article-author {
  font-size: 14px;
}

.ud-banner-ad {
  border-radius: 5px;
  overflow: hidden;
}
.ud-banner-ad a {
  display: block;
}
.ud-banner-ad img {
  width: 100%;
}

/* ====== Error 404 CSS ======= */
.ud-404 {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .ud-404 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.ud-404-wrapper {
  text-align: center;
  max-width: 850px;
  margin: 0px auto;
  background: var(--white);
  padding: 100px 60px;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 767px) {
  .ud-404-wrapper {
    padding: 50px 30px;
  }
}
.ud-404-wrapper .shape {
  position: absolute;
  z-index: -1;
}
.ud-404-wrapper .shape.shape-1 {
  top: 0;
  left: 0;
}
.ud-404-wrapper .shape.shape-2 {
  right: 0;
  bottom: 0;
}

.ud-404-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ud-404-title {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .ud-404-title {
    font-size: 30px;
  }
}

.ud-404-subtitle {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ud-404-subtitle {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .ud-404-subtitle {
    font-size: 18px;
  }
}

.ud-404-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.ud-404-links a {
  font-size: 16px;
  font-weight: 500;
  padding: 12px 24px;
  color: var(--heading-color);
  background: rgba(48, 86, 211, 0.06);
  border-radius: 5px;
  margin: 5px 10px;
}
.ud-404-links a:hover {
  background: var(--heading-color);
  color: var(--white);
}
@media (max-width: 767px) {
  .ud-404-links a {
    margin: 5px 10px;
    font-size: 14px;
    padding: 10px 20px;
  }
}

.ud-header.legal-header {
  background: #2F323A;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
}
.ud-header.legal-header .navbar-brand img {
  filter: brightness(0) invert(1);
}
.ud-header.legal-header .navbar-nav .nav-item a {
  color: #fff;
}
.ud-header.legal-header .navbar-nav .nav-item a:hover {
  color: #FF6B00;
}
.ud-header.legal-header .ud-submenu {
  background: #2F323A;
}
.ud-header.legal-header .ud-submenu .ud-submenu-link {
  color: #fff;
}
.ud-header.legal-header .ud-submenu .ud-submenu-link:hover {
  color: #FF6B00;
}

.ud-page-wrapper {
  padding: 120px 0;
  background: #f3f4fe;
}
@media (max-width: 767px) {
  .ud-page-wrapper {
    padding: 80px 0;
  }
}
.ud-page-wrapper h2 {
  font-size: 35px;
  font-weight: 700;
  color: #2F323A;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .ud-page-wrapper h2 {
    font-size: 30px;
  }
}
.ud-page-wrapper h3 {
  font-size: 25px;
  font-weight: 600;
  color: #2F323A;
  margin: 30px 0 20px;
}
@media (max-width: 767px) {
  .ud-page-wrapper h3 {
    font-size: 22px;
  }
}
.ud-page-wrapper h4 {
  font-size: 20px;
  font-weight: 500;
  color: #2F323A;
  margin: 25px 0 15px;
}
.ud-page-wrapper p {
  font-size: 16px;
  line-height: 1.7;
  color: #637381;
  margin-bottom: 20px;
}
.ud-page-wrapper ul {
  margin: 20px 0;
  padding-left: 20px;
}
.ud-page-wrapper ul li {
  font-size: 16px;
  line-height: 1.7;
  color: #637381;
  margin-bottom: 10px;
  position: relative;
}
.ud-page-wrapper ul li::before {
  content: "•";
  color: #FF6B00;
  margin-right: 10px;
}

.ud-privacy-policy .ud-privacy-content-wrapper {
  background: #fff;
  border-radius: 8px;
  padding: 0;
  box-shadow: 0px 5px 40px rgba(0, 0, 0, 0.08);
  max-height: 70vh;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
  border: 1px solid rgba(47, 50, 58, 0.05);
}
.ud-privacy-policy .ud-privacy-content-wrapper .ud-privacy-content {
  padding: 50px 45px;
}
@media (max-width: 767px) {
  .ud-privacy-policy .ud-privacy-content-wrapper .ud-privacy-content {
    padding: 30px 25px;
  }
}

.ud-impressum .ud-impressum-content-wrapper {
  background: #fff;
  border-radius: 8px;
  padding: 0;
  box-shadow: 0px 5px 40px rgba(0, 0, 0, 0.08);
  max-height: 70vh;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
  border: 1px solid rgba(47, 50, 58, 0.05);
}
.ud-impressum .ud-impressum-content-wrapper .ud-impressum-content {
  padding: 50px 45px;
}
@media (max-width: 767px) {
  .ud-impressum .ud-impressum-content-wrapper .ud-impressum-content {
    padding: 30px 25px;
  }
}

.ud-terms .ud-terms-content-wrapper {
  background: #fff;
  border-radius: 8px;
  padding: 0;
  box-shadow: 0px 5px 40px rgba(0, 0, 0, 0.08);
  max-height: 70vh;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
  border: 1px solid rgba(47, 50, 58, 0.05);
}
.ud-terms .ud-terms-content-wrapper .ud-terms-content {
  padding: 50px 45px;
}
@media (max-width: 767px) {
  .ud-terms .ud-terms-content-wrapper .ud-terms-content {
    padding: 30px 25px;
  }
}

.ud-privacy-content-wrapper::-webkit-scrollbar,
.ud-impressum-content-wrapper::-webkit-scrollbar,
.ud-terms-content-wrapper::-webkit-scrollbar {
  width: 10px;
}

.ud-privacy-content-wrapper::-webkit-scrollbar-track,
.ud-impressum-content-wrapper::-webkit-scrollbar-track,
.ud-terms-content-wrapper::-webkit-scrollbar-track {
  background: #f8f9fa;
  border-radius: 10px;
  margin: 10px 0;
}

.ud-privacy-content-wrapper::-webkit-scrollbar-thumb,
.ud-impressum-content-wrapper::-webkit-scrollbar-thumb,
.ud-terms-content-wrapper::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #FF6B00 0%, #e55e00 100%);
  border-radius: 10px;
  border: 2px solid #f8f9fa;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.ud-privacy-content-wrapper::-webkit-scrollbar-thumb:hover,
.ud-impressum-content-wrapper::-webkit-scrollbar-thumb:hover,
.ud-terms-content-wrapper::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #e55e00 0%, #cc5300 100%);
  border: 2px solid #e8e9ea;
}

.ud-privacy-content-wrapper,
.ud-impressum-content-wrapper,
.ud-terms-content-wrapper {
  scrollbar-width: thin;
  scrollbar-color: #FF6B00 #f8f9fa;
}

/* ===================================
   Shop Page Styles
   =================================== */

/* Shop Navigation Styles */
.nav-item-shop a {
  color: #ffffff;
  font-weight: 600;
}

.nav-item-shop a i {
  margin-right: 5px;
  color: #FF6B00;
}

.nav-item-shop a:hover {
  color: #FF6B00;
}

.nav-item-shop.active a {
  color: #FF6B00;
}

.ud-shop-btn {
  background: linear-gradient(135deg, #FF6B00 0%, #e55e00 100%);
  color: #ffffff;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.ud-shop-btn i {
  margin-right: 8px;
  font-size: 18px;
}

.ud-shop-btn:hover {
  background: linear-gradient(135deg, #e55e00 0%, #cc5300 100%);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
  transform: translateY(-2px);
}

.ud-shop-btn.active-shop {
  background: linear-gradient(135deg, #e55e00 0%, #cc5300 100%);
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

/* Shop Hero Section */
.ud-shop-hero {
  position: relative;
  background: #212b36;
  padding: 120px 0 60px;
}

@media (max-width: 767px) {
  .ud-shop-hero {
    padding: 100px 0 40px;
  }
}

.ud-shop-hero .ud-shop-hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .ud-shop-hero .ud-shop-hero-content h1 {
    font-size: 32px;
  }
}

.ud-shop-hero .ud-shop-hero-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

/* Shop Section */
.ud-shop-section {
  padding: 80px 0;
  background: #f9f9f9;
}

@media (max-width: 767px) {
  .ud-shop-section {
    padding: 60px 0;
  }
}

/* Search and Filter Wrapper */
.ud-shop-search-wrapper {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
}

@media (max-width: 767px) {
  .ud-shop-search-wrapper {
    padding: 20px;
  }
}

.ud-shop-search-wrapper label {
  display: block;
  font-weight: 600;
  color: #212b36;
  margin-bottom: 10px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Search Box */
.ud-shop-search-box .input-group {
  position: relative;
}

.ud-shop-search-box .input-group .input-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  color: #637381;
  font-size: 18px;
}

.ud-shop-search-box .input-group .form-control {
  padding-left: 45px;
  height: 50px;
  border: 2px solid #e8e8e8;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s;
}

.ud-shop-search-box .input-group .form-control:focus {
  border-color: #FF6B00;
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
  outline: none;
}

.ud-shop-search-box .input-group .form-control::placeholder {
  color: #aaa;
}

/* Filter Boxes */
.ud-shop-filter-box .form-select {
  height: 50px;
  border: 2px solid #e8e8e8;
  border-radius: 8px;
  font-size: 15px;
  color: #637381;
  transition: all 0.3s;
  cursor: pointer;
}

.ud-shop-filter-box .form-select:focus {
  border-color: #FF6B00;
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
  outline: none;
}

/* Active Filters */
.ud-active-filters {
  display: none;
  padding: 15px 20px;
  background: #ffffff;
  border-radius: 8px;
}

.ud-active-filters .filter-label {
  font-weight: 600;
  color: #212b36;
  margin-right: 10px;
}

.ud-active-filters .filter-tag {
  display: inline-block;
  background: rgba(255, 107, 0, 0.1);
  color: #FF6B00;
  padding: 6px 12px;
  border-radius: 20px;
  margin-right: 8px;
  font-size: 14px;
  font-weight: 500;
}

.ud-active-filters .filter-tag i {
  margin-left: 5px;
  cursor: pointer;
  font-size: 12px;
}

.ud-active-filters .filter-tag i:hover {
  color: #cc5300;
}

/* Product Card */
.ud-shop-product-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.ud-shop-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.ud-shop-product-card .ud-product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 2;
}

.ud-shop-product-card .ud-product-badge span {
  display: inline-block;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ud-shop-product-card .ud-product-badge .badge-popular {
  background: #FF6B00;
  color: #ffffff;
}

.ud-shop-product-card .ud-product-badge .badge-recommended {
  background: #28a745;
  color: #ffffff;
}

.ud-shop-product-card .ud-product-badge .badge-new {
  background: #17a2b8;
  color: #ffffff;
}

.ud-shop-product-card .ud-product-image {
  position: relative;
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e9f0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.ud-shop-product-card .ud-product-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.ud-shop-product-card .ud-product-info {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ud-shop-product-card .ud-product-info .ud-product-category {
  font-size: 12px;
  font-weight: 600;
  color: #FF6B00;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.ud-shop-product-card .ud-product-info .ud-product-title {
  font-size: 20px;
  font-weight: 700;
  color: #212b36;
  margin-bottom: 15px;
  line-height: 1.3;
}

.ud-shop-product-card .ud-product-info .ud-product-desc {
  font-size: 14px;
  color: #637381;
  line-height: 1.6;
  margin-bottom: 20px;
}

.ud-shop-product-card .ud-product-info .ud-product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.ud-shop-product-card .ud-product-info .ud-product-features li {
  font-size: 14px;
  color: #637381;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.ud-shop-product-card .ud-product-info .ud-product-features li i {
  color: #28a745;
  margin-right: 8px;
  font-size: 16px;
}

.ud-shop-product-card .ud-product-info .ud-product-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 2px solid #f5f5f5;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ud-shop-product-card .ud-product-info .ud-product-footer .ud-product-price .price-value {
  font-size: 24px;
  font-weight: 700;
  color: #212b36;
  display: block;
  line-height: 1;
}

.ud-shop-product-card .ud-product-info .ud-product-footer .ud-product-price .price-period {
  font-size: 12px;
  color: #637381;
  margin-top: 5px;
  display: block;
}

.ud-shop-product-card .ud-product-info .ud-product-footer .ud-product-btn {
  background: #FF6B00;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
}

.ud-shop-product-card .ud-product-info .ud-product-footer .ud-product-btn i {
  margin-right: 8px;
}

.ud-shop-product-card .ud-product-info .ud-product-footer .ud-product-btn:hover {
  background: #e55e00;
  transform: translateX(3px);
}

/* Product Actions Container */
.ud-shop-product-card .ud-product-info .ud-product-footer .ud-product-actions {
  display: flex;
  gap: 8px;
}

.ud-shop-product-card .ud-product-info .ud-product-footer .ud-product-actions .ud-product-btn,
.ud-shop-product-card .ud-product-info .ud-product-footer .ud-product-actions .ud-cart-btn {
  padding: 12px 16px;
}

/* Cart Button */
.ud-cart-btn {
  background: #2F323A;
  color: #ffffff;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
}

.ud-cart-btn:hover {
  background: #FF6B00;
  transform: translateY(-2px);
}

.ud-cart-btn i {
  font-size: 16px;
}

/* No Results */
.ud-no-results {
  text-align: center;
  padding: 80px 20px;
}

.ud-no-results i {
  font-size: 80px;
  color: #ddd;
  margin-bottom: 20px;
}

.ud-no-results h3 {
  font-size: 24px;
  font-weight: 700;
  color: #212b36;
  margin-bottom: 10px;
}

.ud-no-results p {
  font-size: 16px;
  color: #637381;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .ud-shop-product-card .ud-product-info .ud-product-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

@media (max-width: 767px) {
  .ud-shop-search-wrapper .row .col-lg-5,
  .ud-shop-search-wrapper .row .col-lg-3,
  .ud-shop-search-wrapper .row .col-lg-2 {
    margin-bottom: 15px;
  }
  
  .ud-shop-search-wrapper .row .col-lg-2:last-child {
    margin-bottom: 0;
  }
  
  .ud-shop-product-card .ud-product-info {
    padding: 20px;
  }
  
  .ud-shop-product-card .ud-product-info .ud-product-title {
    font-size: 18px;
  }
  
  .ud-shop-product-card .ud-product-info .ud-product-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .ud-shop-product-card .ud-product-info .ud-product-footer .ud-product-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* ===== Service Pages Styles ===== */
.ud-page-banner {
  background: #000000;
  padding: 90px 0 10px;
  position: relative;
  overflow: hidden;
}

.ud-page-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  pointer-events: none;
}

.ud-page-banner .ud-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.ud-page-banner .ud-banner-content h1 {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1.3;
  text-shadow: none;
}

.ud-page-banner .ud-banner-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  margin: 5px 0 0 0;
}

.ud-legal-content {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.ud-legal-content .ud-legal-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  border: 3px solid rgba(255, 107, 0, 0.2);
  transition: all 0.4s ease;
}

.ud-legal-content .ud-legal-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(255, 107, 0, 0.15);
  border-color: rgba(255, 107, 0, 0.4);
}

.ud-legal-content .ud-legal-text h2 {
  font-size: 36px;
  font-weight: 700;
  color: #2F323A;
  margin-bottom: 25px;
}

.ud-legal-content .ud-legal-text h3 {
  font-size: 26px;
  font-weight: 600;
  color: #2F323A;
  margin: 40px 0 20px;
  padding-left: 15px;
  border-left: 4px solid #FF6B00;
}

.ud-legal-content .ud-legal-text h4 {
  font-size: 20px;
  font-weight: 600;
  color: #2F323A;
  margin: 30px 0 15px;
}

.ud-legal-content .ud-legal-text h4 i {
  margin-right: 10px;
  color: #FF6B00;
}

.ud-legal-content .ud-legal-text p {
  font-size: 17px;
  line-height: 1.8;
  color: #637381;
  margin-bottom: 20px;
}

.ud-legal-content .ud-legal-text p.lead {
  font-size: 19px;
  font-weight: 400;
  color: #2F323A;
  line-height: 1.7;
}

.ud-legal-content .ud-legal-text .alert {
  border-radius: 12px;
  border: 2px solid transparent;
  padding: 25px;
  margin: 30px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.ud-legal-content .ud-legal-text .alert-primary {
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.05) 0%, rgba(255, 107, 0, 0.02) 100%);
  border-color: rgba(255, 107, 0, 0.3);
}

.ud-legal-content .ud-legal-text .alert-primary h4 {
  color: #FF6B00;
  margin-bottom: 15px;
}

.ud-legal-content .ud-legal-text .alert-info {
  background: linear-gradient(135deg, rgba(23, 162, 184, 0.05) 0%, rgba(23, 162, 184, 0.02) 100%);
  border-color: rgba(23, 162, 184, 0.3);
}

.ud-legal-content .ud-legal-text .alert-info h4 {
  color: #17a2b8;
  margin-bottom: 15px;
}

.ud-training-section {
  padding: 30px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 15px;
  border-left: 5px solid #FF6B00;
  margin-bottom: 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.ud-training-section:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 35px rgba(255, 107, 0, 0.12);
  border-left-width: 8px;
}

.ud-training-section h4 {
  color: #2F323A;
  margin-bottom: 15px;
  font-size: 22px;
}

.ud-training-section h4 i {
  color: #FF6B00;
  margin-right: 12px;
  font-size: 24px;
}

.ud-training-section p {
  color: #637381;
  margin-bottom: 15px;
  line-height: 1.7;
}

@media (max-width: 767px) {
  .ud-page-banner {
    padding: 80px 0 8px;
  }
  
  .ud-page-banner .ud-banner-content h1 {
    font-size: 18px;
  }
  
  .ud-page-banner .ud-banner-content p {
    font-size: 12px;
  }
  
  .ud-legal-content {
    padding: 60px 0;
  }
  
  .ud-legal-content .ud-legal-text h2 {
    font-size: 28px;
  }
  
  .ud-legal-content .ud-legal-text h3 {
    font-size: 22px;
  }
}

/* ===== Service List Styles ===== */
.ud-service-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.ud-service-list li {
  padding-left: 35px;
  position: relative;
  margin-bottom: 15px;
  font-size: 17px;
  line-height: 1.8;
  color: #637381;
  transition: all 0.3s ease;
}

.ud-service-list li::before {
  content: '\279C';
  position: absolute;
  left: 0;
  top: 0;
  color: #FF6B00;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.ud-service-list li:hover {
  color: #2F323A;
  padding-left: 40px;
}

.ud-service-list li:hover::before {
  transform: translateX(5px);
}

.ud-service-list li strong {
  color: #2F323A;
  font-weight: 600;
}

/* ===== reCAPTCHA Badge Styles ===== */
.grecaptcha-badge {
  visibility: hidden !important;
  opacity: 0 !important;
}

.ud-footer-recaptcha {
  padding: 5px 0;
}

.ud-footer-recaptcha p {
  line-height: 1.6;
}

.ud-footer-recaptcha a {
  text-decoration: none;
  transition: all 0.3s ease;
}

.ud-footer-recaptcha a:hover {
  color: #e55e00 !important;
  text-decoration: underline;
}

/* ===== Work in Progress Page ===== */
.ud-wip-section {
  min-height: 100vh;
  padding: 180px 0 100px;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
  position: relative;
}

.ud-wip-content {
  position: relative;
}

.ud-wip-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 40px;
  background: linear-gradient(135deg, #FF6B00 0%, #e55e00 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 50px rgba(255, 107, 0, 0.3);
  animation: rotate 3s linear infinite;
}

.ud-wip-icon i {
  font-size: 60px;
  color: #fff;
}

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

.ud-wip-title {
  font-size: 42px;
  font-weight: 700;
  color: #2F323A;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 20px;
}

.ud-wip-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #FF6B00 0%, #e55e00 100%);
  border-radius: 2px;
}

.ud-wip-desc {
  font-size: 20px;
  line-height: 1.8;
  color: #637381;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.ud-wip-features {
  margin: 60px 0;
}

.ud-wip-feature-card {
  padding: 40px 30px;
  background: #fff;
  border-radius: 20px;
  border: 2px solid rgba(255, 107, 0, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
}

.ud-wip-feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 107, 0, 0.3);
  box-shadow: 0 20px 60px rgba(255, 107, 0, 0.15);
}

.ud-wip-feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.1) 0%, rgba(255, 107, 0, 0.05) 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.ud-wip-feature-card:hover .ud-wip-feature-icon {
  background: linear-gradient(135deg, #FF6B00 0%, #e55e00 100%);
}

.ud-wip-feature-icon i {
  font-size: 32px;
  color: #FF6B00;
  transition: all 0.3s ease;
}

.ud-wip-feature-card:hover .ud-wip-feature-icon i {
  color: #fff;
  transform: scale(1.1);
}

.ud-wip-feature-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: #2F323A;
  margin-bottom: 15px;
}

.ud-wip-feature-card p {
  font-size: 15px;
  color: #637381;
  margin: 0;
  line-height: 1.6;
}

.ud-wip-cta {
  margin: 60px 0;
  padding: 50px 40px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 20px;
  border: 2px solid rgba(255, 107, 0, 0.1);
}

.ud-wip-cta-text {
  font-size: 18px;
  color: #2F323A;
  margin-bottom: 30px;
  font-weight: 500;
}

.ud-wip-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.ud-orange-btn {
  background: linear-gradient(135deg, #FF6B00 0%, #e55e00 100%);
  color: #fff !important;
  border: 2px solid transparent;
}

.ud-orange-btn:hover {
  background: linear-gradient(135deg, #e55e00 0%, #cc5200 100%);
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
  transform: translateY(-3px);
}

.ud-white-btn {
  background: #fff;
  color: #FF6B00 !important;
  border: 2px solid #FF6B00;
}

.ud-white-btn:hover {
  background: #FF6B00;
  color: #fff !important;
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.2);
  transform: translateY(-3px);
}

.ud-wip-timeline {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 70px 0 30px;
  flex-wrap: wrap;
  gap: 0;
}

.ud-timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.ud-timeline-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e0e0e0;
  color: #999;
  font-size: 24px;
  transition: all 0.3s ease;
}

.ud-timeline-icon.completed {
  background: linear-gradient(135deg, #28a745 0%, #20873a 100%);
  color: #fff;
  box-shadow: 0 5px 20px rgba(40, 167, 69, 0.3);
}

.ud-timeline-icon.active {
  background: linear-gradient(135deg, #FF6B00 0%, #e55e00 100%);
  color: #fff;
  box-shadow: 0 5px 20px rgba(255, 107, 0, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 5px 20px rgba(255, 107, 0, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 107, 0, 0.5);
  }
}

.ud-timeline-content {
  text-align: center;
}

.ud-timeline-content h5 {
  font-size: 16px;
  font-weight: 600;
  color: #2F323A;
  margin-bottom: 5px;
}

.ud-timeline-content p {
  font-size: 13px;
  color: #637381;
  margin: 0;
}

.ud-timeline-line {
  width: 100px;
  height: 2px;
  background: #e0e0e0;
  position: relative;
  top: -30px;
}

@media (max-width: 767px) {
  .ud-wip-section {
    padding: 120px 0 60px;
  }

  .ud-wip-icon {
    width: 90px;
    height: 90px;
    margin-bottom: 30px;
  }

  .ud-wip-icon i {
    font-size: 45px;
  }

  .ud-wip-title {
    font-size: 28px;
  }

  .ud-wip-desc {
    font-size: 16px;
  }

  .ud-wip-buttons {
    flex-direction: column;
  }

  .ud-wip-buttons .ud-main-btn {
    width: 100%;
  }

  .ud-wip-timeline {
    flex-direction: column;
    gap: 30px;
  }

  .ud-timeline-line {
    width: 2px;
    height: 50px;
    top: 0;
  }

  .ud-wip-cta {
    padding: 30px 20px;
  }
}

/* =============================
   Modern Shop Overrides
   ============================= */
.nav-item-shop a { color: #ffffff; font-weight: 600; }
.nav-item-shop a i { margin-right: 5px; color: #ff6b00; }
.nav-item-shop a:hover { color: #ff6b00; }
.nav-item-shop.active a { color: #ff6b00; }
.ud-shop-btn { background: linear-gradient(135deg, #ff6b00 0%, #e55e00 100%); color: #ffffff; font-weight: 600; padding: 14px 32px; border-radius: 8px; box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3); transition: all 0.3s ease; display: inline-flex; align-items: center; }
.ud-shop-btn i { margin-right: 8px; font-size: 18px; }
.ud-shop-btn:hover { background: linear-gradient(135deg, #e55e00 0%, #cc5300 100%); color: #ffffff; box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4); transform: translateY(-2px); }
.ud-shop-btn.active-shop { background: linear-gradient(135deg, #e55e00 0%, #cc5300 100%); box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4); }
.sticky .navbar-btn .ud-shop-btn { background: #ffffff; color: #2f323a; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); }
.sticky .navbar-btn .ud-shop-btn:hover { background: #ffffff; color: #ff6b00; box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); transform: translateY(-2px); }
.sticky .navbar-btn .ud-shop-btn i { color: #ff6b00; }
.ud-shop-hero { position: relative; padding: 140px 0 70px; background: linear-gradient(150deg, #0b1020 0%, #101a35 55%, #0f172a 100%); overflow: hidden; }
.ud-shop-hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 45%); pointer-events: none; }
.ud-shop-hero .container { position: relative; z-index: 2; }
.ud-shop-hero .ud-shop-hero-card { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 32px; padding: 60px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px; }
.ud-shop-hero .hero-chip { display: inline-flex; align-items: center; gap: 8px; background: rgba(255, 107, 0, 0.15); color: #ff6b00; padding: 6px 14px; border-radius: 999px; text-transform: uppercase; font-weight: 600; letter-spacing: 0.8px; font-size: 12px; margin-bottom: 18px; }
.ud-shop-hero .hero-content h1 { font-size: 48px; color: #ffffff; font-weight: 700; line-height: 1.1; margin-bottom: 18px; }
.ud-shop-hero .hero-content p { color: rgba(255, 255, 255, 0.75); font-size: 18px; margin-bottom: 32px; max-width: 540px; }
.ud-shop-hero .hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.ud-shop-hero .hero-actions .ud-main-btn { box-shadow: 0 15px 35px rgba(255, 107, 0, 0.35); }
.ud-shop-hero .hero-actions .hero-ghost { background: transparent; color: #ffffff; border: 1px solid rgba(255, 255, 255, 0.3); box-shadow: none; }
.ud-shop-hero .hero-actions .hero-ghost:hover { border-color: #ff6b00; color: #ff6b00; background: rgba(255, 255, 255, 0.08); }
.ud-shop-hero .hero-mosaic { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.ud-shop-hero .hero-mosaic .mosaic-card { background: rgba(12, 15, 30, 0.8); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 18px; padding: 20px; min-height: 170px; position: relative; overflow: hidden; transition: transform 0.3s ease; }
.ud-shop-hero .hero-mosaic .mosaic-card:hover { transform: translateY(-4px); }
.ud-shop-hero .hero-mosaic .mosaic-card .label { color: rgba(255, 255, 255, 0.6); text-transform: uppercase; font-size: 12px; letter-spacing: 1px; }
.ud-shop-hero .hero-mosaic .mosaic-card h4 { color: #ffffff; font-weight: 600; margin: 8px 0 6px; }
.ud-shop-hero .hero-mosaic .mosaic-card p { color: rgba(255, 255, 255, 0.7); margin: 0; font-size: 14px; line-height: 1.5; }
.ud-shop-hero .ud-shop-hero-stats { margin-top: 50px; }
.ud-shop-hero .ud-shop-hero-stats .hero-stat-card { background: #ffffff; border-radius: 20px; padding: 30px 24px; box-shadow: 0 20px 40px rgba(12, 30, 58, 0.15); text-align: center; }
.ud-shop-hero .ud-shop-hero-stats .hero-stat-card .value { font-size: 34px; font-weight: 700; color: #2f323a; display: block; }
.ud-shop-hero .ud-shop-hero-stats .hero-stat-card .label { font-size: 14px; color: #637381; text-transform: uppercase; letter-spacing: 1px; }
.ud-shop-filters { background: #f8fafc; padding: 40px 0 0; }
.ud-shop-filters .filter-panel { background: #ffffff; padding: 32px; border-radius: 20px; box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08); display: flex; flex-direction: column; gap: 24px; }
.ud-shop-filters .filter-search { position: relative; }
.ud-shop-filters .filter-search i { position: absolute; top: 50%; left: 20px; transform: translateY(-50%); color: #94a3b8; font-size: 20px; }
.ud-shop-filters .filter-search input { width: 100%; border-radius: 12px; border: 1px solid #e2e8f0; background: #f8fafc; padding: 16px 20px 16px 54px; font-size: 16px; font-weight: 500; color: #2f323a; transition: border-color 0.2s ease; }
.ud-shop-filters .filter-search input:focus { outline: none; border-color: #ff6b00; background: #ffffff; box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.08); }
.ud-shop-filters .filter-pills { display: flex; flex-wrap: wrap; gap: 12px; }
.ud-shop-filters .filter-pill { border: 1px solid #e4e7ec; background: #ffffff; border-radius: 999px; padding: 10px 18px; font-weight: 600; font-size: 14px; color: #2f323a; display: inline-flex; align-items: center; gap: 8px; transition: all 0.2s ease; }
.ud-shop-filters .filter-pill i { font-size: 16px; color: inherit; }
.ud-shop-filters .filter-pill.is-active { background: #2f323a; border-color: #2f323a; color: #ffffff; }
.ud-shop-filters .filter-pill:hover { transform: translateY(-1px); border-color: #ff6b00; }
.ud-shop-filters .filter-controls { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.ud-shop-filters .filter-controls .filter-select label { font-size: 13px; font-weight: 600; text-transform: uppercase; color: #637381; letter-spacing: 0.8px; margin-bottom: 8px; }
.ud-shop-filters .filter-controls .filter-select select { width: 100%; border-radius: 12px; border: 1px solid #e2e8f0; padding: 14px 16px; font-weight: 600; color: #2f323a; background: #fff url("data:image/svg+xml,%3csvg width='14' height='9' viewBox='0 0 14 9' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M1 1.5L7 7.5L13 1.5' stroke='%23677389' stroke-width='2' stroke-linecap='round'/%3e%3c/svg%3e") no-repeat right 16px center; appearance: none; }
.ud-shop-filters .filter-controls .filter-select select:focus { border-color: #ff6b00; outline: none; box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.08); }
.ud-active-filters { display: none; align-items: center; gap: 12px; margin-top: 18px; padding: 14px 18px; border-radius: 12px; background: rgba(255, 107, 0, 0.08); }
.ud-active-filters .filter-label { font-weight: 600; color: #2f323a; text-transform: uppercase; font-size: 13px; }
.ud-active-filters .filter-tag { border: none; background: #ffffff; border-radius: 999px; padding: 6px 14px; font-size: 13px; font-weight: 600; color: #2f323a; display: inline-flex; align-items: center; gap: 6px; cursor: pointer; }
.ud-active-filters .filter-tag i { font-size: 12px; color: #ff6b00; }
.ud-shop-products { padding: 80px 0; background: linear-gradient(180deg, #f8fafc 0%, #ffffff 55%, #ffffff 100%); }
.ud-shop-product-card { background: #ffffff; border-radius: 24px; border: 1px solid #edf1f7; padding: 28px; height: 100%; display: flex; flex-direction: column; gap: 18px; box-shadow: 0 25px 45px rgba(15, 23, 42, 0.08); position: relative; overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.ud-shop-product-card:hover { transform: translateY(-6px); box-shadow: 0 35px 55px rgba(15, 23, 42, 0.12); }
.ud-shop-product-card .ud-product-badge { position: absolute; top: 20px; left: 20px; padding: 6px 14px; border-radius: 999px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; }
.ud-shop-product-card .ud-product-badge.badge-popular { background: rgba(255, 107, 0, 0.15); color: #ff6b00; }
.ud-shop-product-card .ud-product-badge.badge-recommended { background: rgba(40, 167, 69, 0.15); color: #1f9d48; }
.ud-shop-product-card .ud-product-badge.badge-new { background: rgba(23, 162, 184, 0.15); color: #138496; }
.ud-shop-product-card .ud-product-image { background: linear-gradient(135deg, #f6f8fc 0%, #eef2f7 100%); border-radius: 18px; padding: 30px; min-height: 180px; display: flex; align-items: center; justify-content: center; }
.ud-shop-product-card .ud-product-image img { max-width: 80%; max-height: 120px; object-fit: contain; }
.ud-shop-product-card .ud-product-info { flex: 1; display: flex; flex-direction: column; gap: 16px; }
.ud-shop-product-card .ud-product-meta { display: flex; gap: 10px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.ud-shop-product-card .ud-product-meta span { color: #ff6b00; }
.ud-shop-product-card .ud-product-meta .meta-license { color: #059669; }
.ud-shop-product-card .ud-product-title { font-size: 22px; color: #2f323a; margin: 0; }
.ud-shop-product-card .ud-product-desc { color: #637381; font-size: 15px; margin: 0; }
.ud-shop-product-card .ud-product-features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.ud-shop-product-card .ud-product-features li { display: flex; gap: 8px; align-items: center; font-size: 14px; color: #637381; }
.ud-shop-product-card .ud-product-features li i { color: #22c55e; }
.ud-shop-product-card .ud-product-footer { margin-top: auto; padding-top: 16px; border-top: 1px solid #edf1f7; display: flex; flex-direction: column; gap: 18px; }
.ud-shop-product-card .ud-product-price .price-value { font-size: 28px; font-weight: 700; color: #2f323a; line-height: 1; }
.ud-shop-product-card .ud-product-price .price-period { color: #637381; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }
.ud-shop-product-card .ud-product-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.ud-shop-product-card .ud-product-actions .ghost-btn { border: 1px dashed rgba(47, 50, 58, 0.3); border-radius: 12px; padding: 12px 18px; background: transparent; font-weight: 600; color: #2f323a; display: inline-flex; align-items: center; gap: 8px; transition: all 0.2s ease; }
.ud-shop-product-card .ud-product-actions .ghost-btn:hover { border-color: #2f323a; transform: translateY(-2px); }
.ud-shop-product-card .ud-product-actions .ud-product-btn { border-radius: 12px; padding: 12px 24px; display: inline-flex; gap: 8px; align-items: center; box-shadow: 0 15px 30px rgba(255, 107, 0, 0.35); }
.ud-no-results { text-align: center; padding: 90px 0; }
.ud-no-results i { font-size: 80px; color: #cbd5f5; }
.ud-no-results h3 { font-weight: 700; margin: 20px 0 8px; }
.ud-no-results p { color: #637381; }
.ud-shop-benefits { padding: 60px 0 100px; background: linear-gradient(120deg, #0f172a 0%, #0b1120 100%); position: relative; overflow: hidden; }
.ud-shop-benefits::after { content: ""; position: absolute; width: 460px; height: 460px; background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%); right: -120px; top: 40px; }
.ud-shop-benefits .benefits-intro { position: relative; z-index: 2; }
.ud-shop-benefits .benefits-intro h2 { color: #ffffff; margin: 18px 0; font-size: 36px; }
.ud-shop-benefits .benefits-intro p { color: rgba(255, 255, 255, 0.75); font-size: 16px; }
.ud-shop-benefits .benefit-card { background: rgba(15, 23, 42, 0.9); border-radius: 20px; padding: 28px; border: 1px solid rgba(255, 255, 255, 0.08); height: 100%; position: relative; z-index: 2; transition: transform 0.3s ease, border-color 0.3s ease; }
.ud-shop-benefits .benefit-card:hover { transform: translateY(-6px); border-color: rgba(255, 107, 0, 0.6); }
.ud-shop-benefits .benefit-card .benefit-icon { width: 52px; height: 52px; border-radius: 12px; background: rgba(255, 107, 0, 0.12); color: #ff6b00; display: inline-flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; }
.ud-shop-benefits .benefit-card h4 { color: #ffffff; margin-bottom: 10px; }
.ud-shop-benefits .benefit-card p { color: rgba(255, 255, 255, 0.75); margin: 0; font-size: 15px; }
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ud-shop-hero .ud-shop-hero-card { grid-template-columns: 1fr; padding: 40px; }
  .ud-shop-product-card .ud-product-footer { flex-direction: column; }
  .ud-shop-product-card .ud-product-actions { flex-direction: column; }
  .ud-shop-product-card .ud-product-actions .ud-product-btn,
  .ud-shop-product-card .ud-product-actions .ghost-btn { width: 100%; justify-content: center; }
}
@media (max-width: 767px) {
  .ud-shop-hero { padding: 100px 0 50px; }
  .ud-shop-hero .ud-shop-hero-card { padding: 30px; }
  .ud-shop-hero .hero-content h1 { font-size: 34px; }
  .ud-shop-hero .hero-mosaic { grid-template-columns: 1fr; }
  .ud-shop-filters .filter-panel { padding: 24px; }
  .ud-shop-product-card { padding: 22px; }
  .ud-shop-benefits h2 { font-size: 28px; }
}

/* ====== Cart Page Styles ====== */
.ud-cart-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  min-height: 60vh;
}

.ud-cart-section .ud-cart-hero {
  margin-bottom: 50px;
}

.ud-cart-section .ud-cart-hero h1 {
  font-size: 36px;
  font-weight: 700;
  color: #2F323A;
  margin-bottom: 10px;
}

.ud-cart-section .ud-cart-hero p {
  color: #637381;
  font-size: 16px;
}

/* Cart Items */
.ud-cart-items {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
  padding: 30px;
  margin-bottom: 30px;
}

.ud-cart-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid #edf1f7;
}

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

.ud-cart-item:first-child {
  padding-top: 0;
}

.ud-cart-item-image {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #f6f8fc 0%, #eef2f7 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ud-cart-item-image img {
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
}

.ud-cart-item-details {
  flex: 1;
}

.ud-cart-item-category {
  font-size: 12px;
  font-weight: 700;
  color: #FF6B00;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.ud-cart-item-name {
  font-size: 18px;
  font-weight: 600;
  color: #2F323A;
  margin-bottom: 4px;
}

.ud-cart-item-price {
  color: #637381;
  font-size: 14px;
}

.ud-cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ud-cart-item-quantity .quantity-btn {
  width: 36px;
  height: 36px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  color: #2F323A;
  font-size: 18px;
}

.ud-cart-item-quantity .quantity-btn:hover {
  background: #FF6B00;
  border-color: #FF6B00;
  color: #ffffff;
}

.ud-cart-item-quantity .quantity-input {
  width: 60px;
  text-align: center;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 8px;
  font-weight: 600;
  font-size: 16px;
  color: #2F323A;
}

.ud-cart-item-subtotal {
  font-size: 20px;
  font-weight: 700;
  color: #2F323A;
  min-width: 120px;
  text-align: right;
}

.ud-cart-item-remove {
  background: transparent;
  border: none;
  color: #e74c3c;
  cursor: pointer;
  padding: 8px;
  font-size: 18px;
  transition: all 0.2s;
  border-radius: 8px;
}

.ud-cart-item-remove:hover {
  background: rgba(231, 76, 60, 0.1);
}

/* Cart Summary */
.ud-cart-summary {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
  padding: 30px;
  margin-bottom: 30px;
}

.ud-cart-summary h3 {
  font-size: 20px;
  font-weight: 700;
  color: #2F323A;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #edf1f7;
}

.ud-cart-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 15px;
}

.ud-cart-summary-row.total {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 2px solid #edf1f7;
  font-size: 18px;
  font-weight: 700;
  color: #2F323A;
}

.ud-cart-summary-row .label {
  color: #637381;
}

.ud-cart-summary-row .value {
  font-weight: 600;
  color: #2F323A;
}

.ud-cart-summary-row.total .value {
  color: #FF6B00;
  font-size: 24px;
}

/* Cart Actions */
.ud-cart-actions {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.ud-cart-actions .ud-main-btn {
  flex: 1;
  text-align: center;
  justify-content: center;
}

/* Empty Cart */
.ud-cart-empty {
  text-align: center;
  padding: 80px 30px;
}

.ud-cart-empty i {
  font-size: 80px;
  color: #ddd;
  margin-bottom: 20px;
}

.ud-cart-empty h3 {
  font-size: 24px;
  font-weight: 700;
  color: #2F323A;
  margin-bottom: 10px;
}

.ud-cart-empty p {
  color: #637381;
  margin-bottom: 30px;
}

/* Anfrage Form */
.ud-anfrage-form-wrapper {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
  padding: 40px;
}

.ud-anfrage-form-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  color: #2F323A;
  margin-bottom: 10px;
}

.ud-anfrage-form-wrapper .subtitle {
  color: #637381;
  margin-bottom: 30px;
}

.ud-anfrage-form .form-group {
  margin-bottom: 20px;
}

.ud-anfrage-form .form-group label {
  display: block;
  font-weight: 600;
  color: #2F323A;
  margin-bottom: 8px;
  font-size: 14px;
}

.ud-anfrage-form .form-group .required {
  color: #e74c3c;
}

.ud-anfrage-form .form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-size: 16px;
  color: #2F323A;
  transition: all 0.2s;
  background: #f8fafc;
}

.ud-anfrage-form .form-control:focus {
  outline: none;
  border-color: #FF6B00;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.1);
}

.ud-anfrage-form textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.ud-anfrage-form .checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.ud-anfrage-form .checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: #FF6B00;
}

.ud-anfrage-form .checkbox-group label {
  margin-bottom: 0;
  font-weight: 400;
  color: #637381;
  font-size: 14px;
}

.ud-anfrage-form .checkbox-group label a {
  color: #FF6B00;
  text-decoration: underline;
}

.ud-anfrage-form .submit-btn {
  width: 100%;
  padding: 16px 30px;
  background: linear-gradient(135deg, #FF6B00 0%, #ff8533 100%);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 15px 35px rgba(255, 107, 0, 0.35);
}

.ud-anfrage-form .submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(255, 107, 0, 0.45);
}

.ud-anfrage-form .form-note {
  margin-top: 20px;
  padding: 15px;
  background: #f0fdf4;
  border-radius: 10px;
  border-left: 4px solid #22c55e;
  font-size: 14px;
  color: #166534;
}

/* Success/Error Messages */
.ud-cart-message {
  padding: 15px 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.ud-cart-message.success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
}

.ud-cart-message.error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
}

.ud-cart-message i {
  font-size: 20px;
}

/* Cart responsive */
@media (max-width: 991px) {
  .ud-cart-item {
    flex-wrap: wrap;
  }
  
  .ud-cart-item-details {
    flex: 1 1 calc(100% - 124px);
  }
  
  .ud-cart-item-quantity,
  .ud-cart-item-subtotal {
    margin-top: 15px;
  }
}

@media (max-width: 767px) {
  .ud-cart-section {
    padding: 60px 0;
  }
  
  .ud-cart-section .ud-cart-hero h1 {
    font-size: 28px;
  }
  
  .ud-cart-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .ud-cart-item-details {
    flex: 1;
  }
  
  .ud-cart-item-subtotal {
    min-width: auto;
    text-align: center;
  }
  
  .ud-cart-actions {
    flex-direction: column;
  }
  
  .ud-anfrage-form-wrapper {
    padding: 25px;
  }
  
  .ud-anfrage-form-wrapper h2 {
    font-size: 22px;
  }
}
