/* ========================================
   PMM Four Restaurant Equipment
   Complete Header & Footer CSS
   Updated to match logo #a2722e
   ======================================== */

/* ========================================
   CSS VARIABLES - Logo Matched
   ======================================== */
:root {
  --primary-color: #a2722e;
  --primary-hover: #c49a3c;
  --primary-glow: rgba(162, 114, 46, 0.4);
  --secondary-color: #0f1419;
  --secondary-hover: #1a2332;
  --accent-color: #d4a84b;
  --accent-glow: rgba(212, 168, 75, 0.3);
  --warning-color: #c49a3c;
  --success-color: #2ea2a2;
  --text-color: #e2e8f0;
  --text-light: #94a3b8;
  --text-muted: #64748b;
  --bg-light: #12121a;
  --bg-dark: #0a0a0f;
  --bg-elevated: #1a1a25;
  --white: #ffffff;
  --border-color: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(162, 114, 46, 0.2);
  --shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
  --shadow-hover: 0 5px 25px rgba(0, 0, 0, 0.5);
  --transition: all 0.3s ease;
  --border-radius: 12px;
  --header-height: 70px;
}

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

body {
  font-family: 'Tajawal', 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-dark);
  direction: rtl;
  text-align: right;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ========================================
   PRELOADER
   ======================================== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

.preloader.fade-out {
  opacity: 0;
  pointer-events: none;
}

.preloader-inner {
  position: relative;
}

.preloader-icon {
  width: 60px;
  height: 60px;
  position: relative;
}

.preloader-icon span {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid var(--border-color);
  border-radius: 50%;
  animation: preloader 1.5s infinite ease-in-out;
}

.preloader-icon span:nth-child(2) {
  animation-delay: -0.75s;
  border-color: var(--primary-color);
}

@keyframes preloader {
  0% {
    transform: scale(0);
    opacity: 1;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* ========================================
   HEADER - TOPBAR
   ======================================== */
.header {
  position: relative;
  z-index: 1000;
}

.topbar {
  background-color: var(--secondary-color);
  padding: 10px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border-color);
}

.topbar .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.topbar .col-lg-4,
.topbar .col-md-4,
.topbar .col-12 {
  flex: 1;
}

/* Top Left - Menu Links */
.menu-top-link {
  display: flex;
  gap: 20px;
}

.menu-top-link li a {
  color: var(--text-light);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.menu-top-link li a:hover {
  color: var(--accent-color);
}

.menu-top-link i {
  font-size: 0.9rem;
}

/* Top Middle - Phone */
.top-middle {
  text-align: center;
}

.top-middle span {
  color: var(--text-color);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.top-middle i {
  color: var(--primary-color);
}

/* Top Right - User Area */
.top-end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}

.user {
  color: var(--text-color);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.user i {
  color: var(--primary-color);
  font-size: 1rem;
}

.user-login {
  display: flex;
  gap: 15px;
}

.user-login li a {
  color: var(--text-light);
  font-size: 0.85rem;
  padding: 5px 10px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.user-login li a:hover {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

/* ========================================
   HEADER - MIDDLE SECTION
   ======================================== */
.header-middle {
  background: var(--secondary-color);
  padding: 20px 0;
  margin-bottom: 7px;
  border-bottom: 1px solid var(--border-color);
}

.header-middle .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.navbar-brand {
  display: block;
}

.navbar-brand h2 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 0;
  color: var(--white);
}

.navbar-brand h2 span {
  color: var(--primary-color);
}

.navbar-brand small {
  font-size: 0.8rem;
  opacity: 0.8;
  display: block;
  margin-top: -5px;
  color: var(--text-muted);
}

/* Search Form */
.main-menu-search {
  width: 100%;
}

.navbar-search {
  display: flex;
  background: var(--bg-elevated);
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
}

.search-select {
  min-width: 120px;
  border-left: 1px solid var(--border-color);
}

.select-position {
  position: relative;
}

.select-position select {
  width: 100%;
  padding: 12px 15px;
  border: none;
  background: transparent;
  font-size: 0.9rem;
  color: var(--text-color);
  cursor: pointer;
  appearance: none;
  padding-left: 30px;
}

.select-position::after {
  content: '\f107';
  font-family: 'LineIcons';
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.search-input {
  flex: 1;
}

.search-input input {
  width: 100%;
  padding: 12px 20px;
  border: none;
  font-size: 0.95rem;
  outline: none;
  background: transparent;
  color: var(--text-color);
}

.search-input input::placeholder {
  color: var(--text-muted);
}

.search-btn button {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 12px 25px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: var(--transition);
}

.search-btn button:hover {
  background: var(--primary-hover);
  box-shadow: 0 0 20px var(--primary-glow);
}

/* Cart & Wishlist Area */
.middle-right-area {
  display: flex;
  justify-content: flex-end;
}

.navbar-cart {
  display: flex;
  align-items: center;
  gap: 20px;
}

.wishlist,
.cart-items {
  position: relative;
}

.wishlist a,
.cart-items a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-color);
  font-size: 1.2rem;
  position: relative;
}

.wishlist a:hover,
.cart-items a:hover {
  color: var(--primary-color);
}

.total-items {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--primary-color);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: bold;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px var(--primary-glow);
}

.cart-items .main-btn {
  background: rgba(162, 114, 46, 0.15);
  padding: 10px 20px;
  border-radius: 50px;
  transition: var(--transition);
  border: 1px solid var(--border-glow);
  color: var(--primary-color);
}

.cart-items .main-btn:hover {
  background: var(--primary-color);
  color: var(--white);
  box-shadow: 0 0 20px var(--primary-glow);
}

/* ========================================
   HEADER - BOTTOM NAVIGATION
   ======================================== */
.header-bottom-wrapper {
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border-color);
  padding: 15px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Mega Category Menu */
.mega-category-menu {
  position: relative;
}

.cat-button {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-color);
  color: var(--white);
  padding: 12px 25px;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}

.cat-button:hover {
  background: var(--primary-hover);
  box-shadow: 0 0 20px var(--primary-glow);
}

.cat-button i {
  font-size: 1.1rem;
}

.sub-category {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--bg-elevated);
  min-width: 250px;
  box-shadow: var(--shadow-hover);
  border-radius: var(--border-radius);
  margin-top: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 100;
  border: 1px solid var(--border-color);
}

.mega-category-menu:hover .sub-category {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sub-category li {
  border-bottom: 1px solid var(--border-color);
}

.sub-category li:last-child {
  border-bottom: none;
}

.sub-category li a {
  display: block;
  padding: 12px 20px;
  color: var(--text-color);
  font-size: 0.9rem;
  transition: var(--transition);
}

.sub-category li a:hover {
  background: rgba(162, 114, 46, 0.1);
  color: var(--primary-color);
  padding-right: 25px;
}

/* Main Navigation */
.navbar {
  padding: 0;
}

.navbar-collapse {
  display: flex;
}

.navbar-nav {
  display: flex;
  gap: 30px;
}

.nav-item a {
  color: var(--text-color);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 0;
  position: relative;
  display: block;
}

.nav-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
  box-shadow: 0 0 10px var(--primary-glow);
}

.nav-item a:hover,
.nav-item a.active {
  color: var(--primary-color);
}

.nav-item a:hover::after,
.nav-item a.active::after {
  width: 100%;
}

/* Mobile Menu Button */
.navbar-toggler {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.toggler-icon {
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  transition: var(--transition);
}

/* Social Links in Header */
.nav-social {
  display: flex;
  align-items: baseline;
  gap: 15px;
  justify-content: flex-end;
}

.nav-social h5 {
  font-size: 0.9rem;
  color: var(--text-color);
  margin: 0;
}

.nav-social ul {
  display: flex;
  gap: 12px;
}

.nav-social ul li a {
  width: 35px;
  height: 35px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  font-size: 1rem;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.nav-social ul li a:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 0 15px var(--primary-glow);
}
.navbar-brand img {
    transition: var(--transition-smooth);
    filter: drop-shadow(0 0 10px rgba(162, 114, 46, 0.2));
}
.navbar-brand img:hover {
    filter: drop-shadow(0 0 20px var(--primary-glow));
    transform: scale(1.02);
}
.header-bottom-wrapper,
.container .row.align-items-center:last-child {

    padding: 15px 0;
}
/*======================================
    Hero Area CSS
========================================*/
.hero-area {
  position: relative;
  background-color: var(--bg-dark);
  margin-top: 12px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-area .md-custom-padding {
    padding-right: 0 !important;
  }
}

.hero-area .custom-padding-right {
  padding-right: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-area .custom-padding-right {
    padding-right: calc(var(--bs-gutter-x)/ 2);
  }
}

@media (max-width: 767px) {
  .hero-area .custom-padding-right {
    padding-right: calc(var(--bs-gutter-x)/ 2);
  }
}

.hero-area .slider-head {
  position: relative;
  overflow: hidden;
}

.hero-area .slider-head:hover .tns-controls button:first-child {
  left: 0;
}

.hero-area .slider-head:hover .tns-controls button:last-child {
  right: 0;
}

.hero-area .tns-controls button {
  width: 35px;
  height: 60px;
  cursor: pointer;
  z-index: 2;
  color: var(--white);
  font-size: 17px;
  background: var(--secondary-color);
  border: none;
  padding: 2px 5px;
  border-radius: 4px;
  -webkit-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s;
  position: absolute;
  z-index: 99;
  top: 50%;
  margin-top: -30px;
  border-radius: 0;
}

.hero-area .tns-controls button:hover {
  background-color: var(--primary-color);
  color: var(--white);
  box-shadow: 0 0 15px var(--primary-glow);
}

.hero-area .tns-controls button:first-child {
  left: -40px;
  border-radius: 0 4px 4px 0;
}

.hero-area .tns-controls button:last-child {
  right: -40px;
  border-radius: 4px 0px 0px 4px;
}

.hero-area .hero-slider .single-slider {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  height: 500px;
  position: relative;
}

@media (max-width: 767px) {
  .hero-area .hero-slider .single-slider {
    position: relative;
  }

  .hero-area .hero-slider .single-slider::before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 100%;
    background-color: var(--bg-dark);
    opacity: 0.8;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-area .hero-slider .single-slider {
    height: 400px;
    margin-bottom: 12px;
  }
}

@media (max-width: 767px) {
  .hero-area .hero-slider .single-slider {
    height: 350px;
    margin-bottom: 12px;
  }
}

.hero-area .hero-slider .single-slider .content {
  padding: 20px 75px 20px 50px;
  position: absolute;
  right: 0;
  top: 60%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-area .hero-slider .single-slider .content {
    padding-right: 66px;
  }
}

@media (max-width: 767px) {
  .hero-area .hero-slider .single-slider .content {
    padding-right: 30px;
    padding-left: 20px;
  }
}

.hero-area .hero-slider .single-slider .content h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--white);
}

.hero-area .hero-slider .single-slider .content h2 span {
  font-size: 17px;
  font-weight: 600;
  display: block;
  color: var(--text-muted);
  margin-bottom: 10px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-area .hero-slider .single-slider .content h2 span {
    font-size: 14px;
    font-weight: 500;
  }
}

@media (max-width: 767px) {
  .hero-area .hero-slider .single-slider .content h2 span {
    font-size: 14px;
    font-weight: 500;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-area .hero-slider .single-slider .content h2 {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .hero-area .hero-slider .single-slider .content h2 {
    font-size: 20px;
  }
}

.hero-area .hero-slider .single-slider .content p {
  margin-top: 20px;
  color: var(--text-light);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-area .hero-slider .single-slider .content p {
    margin-top: 10px;
  }
}

@media (max-width: 767px) {
  .hero-area .hero-slider .single-slider .content p {
    margin-top: 10px;
  }
}

.hero-area .hero-slider .single-slider .content .button {
  margin-top: 30px;
}

.hero-area .hero-small-banner {
  height: 244px;
  position: relative;
  background-repeat: no-repeat;
  background-size: contain;
  background-size: cover;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-area .hero-small-banner {
    height: 240px;
  }
}

@media (max-width: 767px) {
  .hero-area .hero-small-banner {
    height: 240px;
  }
}

.hero-area .hero-small-banner .content {
  padding: 30px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.hero-area .hero-small-banner .content h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}

.hero-area .hero-small-banner .content h2 span {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  display: block;
  margin-bottom: 4px;
}

.hero-area .hero-small-banner .content .button {
  margin-top: 20px;
}

.hero-area .hero-small-banner.style2 {
  margin-top: 12px;
  background-image: url("../images/hero/small-banner-bg.png");
  background-color: var(--secondary-color);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-area .hero-small-banner.style2 {
    margin-top: 0;
  }
}

.hero-area .hero-small-banner.style2 .content h2 {
  color: var(--white);
}

.hero-area .hero-small-banner.style2 .content h2 span {
  color: var(--text-muted);
}

.hero-area .hero-small-banner.style2 .content p {
  font-size: 15px;
  color: var(--text-light);
  font-weight: 600;
  margin-top: 15px;
}

.hero-area .hero-small-banner.style2 .content .button {
  margin-top: 20px;
}

.hero-area .hero-small-banner.style2 .content .button .btn {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 10px 25px;
}

.hero-area .hero-small-banner.style2 .content .button .btn:hover {
  background-color: var(--primary-hover);
  color: var(--white);
  box-shadow: 0 0 20px var(--primary-glow);
}

.section {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  margin: 10px auto 0;
  border-radius: 2px;
  box-shadow: 0 0 10px var(--primary-glow);
}

.section-title p {
  color: var(--text-light);
  font-size: 1rem;
}

/* ========================================
   PRODUCTS GRID
   ======================================== */
.trending-product .row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col-lg-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.single-product {
  background: var(--bg-elevated);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  margin-bottom: 30px;
  border: 1px solid var(--border-color);
}

.single-product:hover {
  box-shadow: var(--shadow-hover), 0 0 30px var(--primary-glow);
  transform: translateY(-5px);
  border-color: var(--border-glow);
}

.product-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.single-product:hover .product-image img {
  transform: scale(1.05);
}

/* Sale Tag */
.sale-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: var(--white);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(162, 114, 46, 0.4);
}

/* Product Button Overlay */
.product-image .button {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  text-align: center;
  transition: var(--transition);
  padding: 0 20px;
}

.single-product:hover .product-image .button {
  bottom: 20px;
}

.product-image .btn {
  padding: 10px 20px;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}

.product-image .btn:hover {
  background: var(--primary-hover);
  box-shadow: 0 0 20px var(--primary-glow);
}

/* Product Info */
.product-info {
  padding: 20px;
  text-align: right;
  background: var(--bg-elevated);
}

.category {
  display: block;
  color: var(--primary-color);
  font-size: 0.85rem;
  margin-bottom: 8px;
  font-weight: 500;
}

.title {
  font-size: 1.1rem;
  margin-bottom: 12px;
  line-height: 1.4;
}

.title a {
  color: var(--white);
  font-weight: 600;
}

.title a:hover {
  color: var(--primary-color);
}

/* Price */
.price {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.price span:first-child {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--primary-color);
}

.discount-price {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

/* ========================================
   REPAIR BANNER (Call to Action)
   ======================================== */
.repair-banner {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #1a2332 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
}

.repair-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(162, 114, 46, 0.05);
  border-radius: 50%;
}

.repair-banner .inner {
  position: relative;
  z-index: 2;
}

.repair-banner h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--white);
}

.repair-banner p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-light);
}

.text-white {
  color: var(--white) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.7) !important;
}

.offset-lg-2 {
  margin-right: 16.666%;
}

/*======================================
    Shipping Info CSS
========================================*/
.shipping-info {
  background-color: var(--bg-light);
  padding: 50px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.shipping-info ul {
  display: inline-block;
  width: 100%;
  margin-bottom: 0px;
}

.shipping-info li {
  list-style: none;
  float: left;
  width: 25%;
  padding: 30px 40px;
  border: 1px solid var(--border-color);
  text-align: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background: var(--bg-elevated);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .shipping-info li {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .shipping-info li {
    width: 100%;
  }
}

.shipping-info li:hover {
  background-color: var(--bg-elevated);
  border-color: var(--border-glow);
  box-shadow: 0 0 20px var(--primary-glow);
}

.shipping-info .media-icon {
  margin-bottom: 15px;
}

.shipping-info .media-icon i {
  color: var(--primary-color);
  font-size: 38px;
}

.shipping-info .media-body {
  padding-bottom: 0px;
}

.shipping-info .media-body h5 {
  font-size: 15px;
  margin: 0px;
  font-weight: 600;
  color: var(--white);
}

.shipping-info .media-body span {
  font-size: 13px;
  margin-top: 2px;
  color: var(--text-light);
}


/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 991px) {

  .col-lg-8,
  .col-lg-4,
  .col-lg-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .single-slider {
    height: 400px;
  }

  .single-slider h2 {
    font-size: 2rem;
  }

  .hero-small-banner {
    height: 200px;
  }

  .offset-lg-2 {
    margin-right: 0;
  }

  .custom-padding-right {
    padding-left: 15px;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .single-slider {
    height: 350px;
  }

  .single-slider .content {
    padding: 25px;
  }

  .single-slider h2 {
    font-size: 1.5rem;
  }

  .section-title h2 {
    font-size: 1.5rem;
  }

  .repair-banner h2 {
    font-size: 1.8rem;
  }

  .shipping-info ul {
    flex-direction: column;
  }

  .shipping-info li {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .single-slider h2 {
    font-size: 1.3rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  .product-image {
    height: 200px;
  }
}

.product-specs i {
  margin-left: 5px;
}

.repair-banner {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #1a2332 100%);
  border-radius: 15px;
  padding: 40px;
  text-align: center;
  margin: 40px 0;
}

.repair-banner h2 {
  color: var(--white);
  font-size: 28px;
  margin-bottom: 15px;
}

.repair-banner p {
  color: var(--text-light);
  margin-bottom: 25px;
}

.repair-banner .btn {
  background: var(--primary-color);
  color: var(--white);
  padding: 12px 35px;
  border-radius: 30px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.repair-banner .btn:hover {
  background: var(--primary-hover);
  transform: scale(1.05);
  box-shadow: 0 0 25px var(--primary-glow);
}

@media (max-width: 768px) {
  .repair-banner {
    padding: 25px;
  }

  .repair-banner h2 {
    font-size: 22px;
  }
}

/*======================================
    Featured Categories Area CSS
========================================*/
.featured-categories .section-title {
  margin-bottom: 20px;
}

.featured-categories .single-category {
  padding: 40px;
  margin-top: 30px;
  border: 2px solid var(--border-color);
  position: relative;
  background: var(--bg-elevated);
  z-index: 0;
  border-radius: var(--border-radius);
}

.featured-categories .single-category .heading {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
}

.featured-categories .single-category ul {
  margin-top: 20px;
}

.featured-categories .single-category ul li {
  display: block;
  margin-bottom: 4px;
}

.featured-categories .single-category ul li:last-child {
  margin: 0;
}

.featured-categories .single-category ul li a {
  color: var(--text-light);
}

.featured-categories .single-category ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.featured-categories .single-category img {
  position: absolute;
  left: 0;
  padding: 12px;
  top: 50%;
  width: 130px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: -1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .featured-categories .single-category img {
    width: 50%;
  }
}

/*======================================
    Product CSS
========================================*/
/* Single Product*/
.single-product {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  margin-top: 30px;
  -webkit-box-shadow: 0px 0px 20px rgba(0,0,0,0.3);
  box-shadow: 0px 0px 20px rgba(0,0,0,0.3);
  padding: 8px;
  background: var(--bg-elevated);
}

.single-product .product-image {
  overflow: hidden;
  position: relative;
}

.single-product .product-image .sale-tag {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 2px;
  font-size: 12px;
  color: var(--white);
  font-weight: bold;
  position: absolute;
  top: 0;
  padding: 5px 10px;
  left: 0;
  z-index: 22;
  box-shadow: 0 4px 15px rgba(162, 114, 46, 0.4);
}

.single-product .product-image .new-tag {
  background: var(--success-color);
  border-radius: 2px;
  font-size: 12px;
  color: var(--white);
  font-weight: bold;
  position: absolute;
  top: 0;
  padding: 5px 10px;
  left: 0;
  z-index: 22;
}

.single-product .product-image .button {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -60px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  opacity: 0;
  visibility: hidden;
}

.single-product .product-image .button .btn {
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 600;
  width: 140px;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 50px;
  cursor: pointer;
}

.single-product .product-image .button .btn i {
  font-size: 18px;
  position: relative;
  top: 2px;
}

.single-product .product-image img {
  width: 100%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.single-product:hover .product-image .button {
  bottom: 30px;
  opacity: 1;
  visibility: visible;
}

.single-product:hover .product-image img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.single-product .product-info {
  padding: 20px;
  background-color: var(--bg-elevated);
}

.single-product .product-info .category {
  color: var(--primary-color);
  font-size: 13px;
  display: block;
  margin-bottom: 2px;
}

.single-product .product-info .title a {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .single-product .product-info .title a {
    font-size: 15px;
  }
}

.single-product .product-info .title a:hover {
  color: var(--primary-color);
}

.single-product .product-info .review {
  margin-top: 5px;
}

.single-product .product-info .review li {
  display: inline-block;
}

.single-product .product-info .review li i {
  color: #fecb00;
  font-size: 13px;
}

.single-product .product-info .review li span {
  display: inline-block;
  margin-left: 4px;
  color: var(--text-muted);
  font-size: 13px;
}

.single-product .product-info .price {
  margin-top: 15px;
}

.single-product .product-info .price span {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary-color);
  display: inline-block;
}

.single-product .product-info .price .discount-price {
  margin: 0;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: normal;
  margin-left: 10px;
  font-size: 14px;
  display: inline-block;
}

/* End Single Product */
.trending-product {
  background-color: var(--bg-light);
  margin-top: 20px;
}

.trending-product .section-title {
  margin-bottom: 20px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--secondary-color);
  color: var(--text-light);
  margin-top: 50px;
  border-top: 1px solid var(--border-color);
}

/* Footer Top */
.footer-top {
  padding: 50px 0;
  border-bottom: 1px solid var(--border-color);
}

.footer-top .row {
  display: flex;
  align-items: center;
}

.footer-logo h3 {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--white);
}

.footer-logo h3 span {
  color: var(--primary-color);
}

.footer-logo p {
  font-size: 0.9rem;
  opacity: 0.8;
  color: var(--text-muted);
}

/* Newsletter */
.footer-newsletter {
  text-align: left;
}

.footer-newsletter h4 {
  color: var(--white);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.newsletter-form {
  display: flex;
  background: var(--bg-elevated);
  border-radius: 50px;
  overflow: hidden;
  padding: 5px;
  border: 1px solid var(--border-color);
}

.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 20px;
  color: var(--text-color);
  outline: none;
}

.newsletter-form input::placeholder {
  color: var(--text-muted);
}

.newsletter-form button {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background: var(--primary-hover);
  transform: scale(1.05);
  box-shadow: 0 0 20px var(--primary-glow);
}

/* Footer Middle */
.footer-middle {
  padding: 60px 0 30px;
}

.footer-middle .row {
  display: flex;
  flex-wrap: wrap;
}

.single-footer {
  margin-bottom: 30px;
}

.single-footer h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.single-footer h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 2px;
  box-shadow: 0 0 10px var(--primary-glow);
}

/* Contact Footer */
.f-contact p.phone {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.f-contact ul {
  margin-bottom: 15px;
}

.f-contact ul li {
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.f-contact ul li span {
  color: var(--white);
  font-weight: 600;
}

.f-contact .mail a {
  color: var(--text-light);
  font-size: 0.95rem;
  transition: var(--transition);
}

.f-contact .mail a:hover {
  color: var(--primary-color);
}

/* Links Footer */
.f-link ul li {
  margin-bottom: 12px;
}

.f-link ul li a {
  color: var(--text-light);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.f-link ul li a::before {
  content: '\f105';
  font-family: 'LineIcons';
  font-size: 0.8rem;
  color: var(--primary-color);
  transition: var(--transition);
}

.f-link ul li a:hover {
  color: var(--primary-color);
  padding-right: 5px;
}

.f-link ul li a:hover::before {
  transform: translateX(-3px);
}

/* Footer Bottom */
.footer-bottom {
  padding: 25px 0;
  border-top: 1px solid var(--border-color);
  background: rgba(0, 0, 0, 0.2);
}

.footer-bottom .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.copyright p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.socila {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: flex-end;
}

.socila li:first-child span {
  color: var(--white);
  font-weight: 600;
  margin-left: 10px;
}

.socila li a {
  width: 35px;
  height: 35px;
  background: var(--bg-elevated);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  font-size: 1rem;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.socila li a:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 0 15px var(--primary-glow);
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-white {
  color: var(--white) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-warning {
  color: var(--primary-color) !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.d-xs-none {
  display: block;
}

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

.text-center {
  text-align: center;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 991px) {

  /* Header Responsive */
  .topbar .col-lg-4,
  .topbar .col-md-4 {
    flex: 0 0 100%;
    text-align: center;
    margin-bottom: 10px;
  }

  .top-end {
    justify-content: center;
  }

  .menu-top-link {
    justify-content: center;
  }

  .header-middle .col-lg-3,
  .header-middle .col-lg-5,
  .header-middle .col-lg-4 {
    flex: 0 0 100%;
    margin-bottom: 15px;
  }

  .navbar-brand {
    text-align: center;
  }

  .main-menu-search {
    max-width: 500px;
    margin: 0 auto;
  }

  .middle-right-area {
    justify-content: center;
  }

  .d-xs-none {
    display: none !important;
  }

  /* Navigation Responsive */
  .navbar-toggler {
    display: flex;
  }

  .navbar-collapse {
    display: none;
    position: absolute;
    top: 100%;
    width: 250px;
    right: 0;
    left: 0;
    background: var(--bg-elevated);
    box-shadow: var(--shadow);
    padding: 20px;
    z-index: 99;
    border: 1px solid var(--border-color);
  }

  .navbar-collapse.show {
    display: block;
  }

  .navbar-nav {
    flex-direction: column;
    gap: 0;
  }

  .nav-item a {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
  }

  .mega-category-menu {
    margin-bottom: 15px;
  }

  .sub-category {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    display: none;
    margin-top: 5px;
    background: var(--bg-light);
  }

  .mega-category-menu.active .sub-category {
    display: block;
  }

  /* Footer Responsive */
  .footer-top .col-lg-4,
  .footer-top .col-lg-8,
  .footer-middle .col-lg-4,
  .footer-bottom .col-lg-6 {
    flex: 0 0 100%;
    text-align: center !important;
    margin-bottom: 20px;
  }

  .footer-newsletter {
    text-align: center;
  }

  .newsletter-form {
    max-width: 400px;
    margin: 0 auto;
  }

  .single-footer h3::after {
    right: 50%;
    transform: translateX(50%);
  }

  .socila {
    justify-content: center;
  }

  .copyright {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .topbar {
    font-size: 0.8rem;
  }

  .user-login {
    gap: 10px;
  }

  .navbar-brand h2 {
    font-size: 1.5rem;
  }

  .search-select {
    display: none;
  }

  .navbar-cart {
    gap: 15px;
  }

  .footer-logo {
    text-align: center;
  }

  .f-contact p.phone {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .cat-button {
    padding: 10px 15px;
    font-size: 0.85rem;
  }

  .newsletter-form {
    flex-direction: column;
    border-radius: var(--border-radius);
  }

  .newsletter-form button {
    border-radius: var(--border-radius);
    width: 100%;
  }
}

.featured-categories {
    padding: 60px 0;
    background: var(--bg-light);
}

.single-category {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
}

.single-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4), 0 0 20px var(--primary-glow);
    border-color: var(--border-glow);
}

.single-category:hover .category-image img {
    transform: scale(1.1);
}

.category-content {
    flex: 1;
    z-index: 2;
    position: relative;
    color: var(--white);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: rgba(162, 114, 46, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.category-icon i {
    font-size: 30px;
    color: var(--primary-color);
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.category-title a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-title a:hover {
    text-decoration: underline;
    color: var(--primary-color);
}

.category-description {
    font-size: 0.9rem;
    margin-bottom: 15px;
    opacity: 0.9;
    line-height: 1.5;
    color: var(--text-light);
}

.category-stats {
    margin-bottom: 20px;
}

.products-count {
    display: inline-block;
    background: rgba(162, 114, 46, 0.2);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--primary-color);
}

.category-btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-btn:hover {
    background: var(--primary-hover);
    color: var(--white);
    transform: translateX(-5px);
    box-shadow: 0 0 20px var(--primary-glow);
}

.category-btn i {
    margin-right: 5px;
    transition: all 0.3s ease;
}

.category-btn:hover i {
    transform: translateX(-5px);
}

.category-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.category-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(10,10,15,0.9) 0%, rgba(10,10,15,0.5) 100%);
    z-index: 1;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

/* تصميم بديل للأقسام (نسخة الشبكة) */
.categories-grid {
    margin-top: 30px;
}

.category-card {
    background: var(--bg-elevated);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4), 0 0 20px var(--primary-glow);
    border-color: var(--border-glow);
}

.category-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.category-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

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

.category-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.category-card:hover .category-card-overlay {
    opacity: 1;
}

.category-card-overlay .btn {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.category-card-overlay .btn:hover {
    background: var(--primary-hover);
    box-shadow: 0 0 20px var(--primary-glow);
}

.category-card-content {
    padding: 20px;
    text-align: center;
}

.category-card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.category-card-content h3 a {
    color: var(--white);
    text-decoration: none;
}

.category-card-content h3 a:hover {
    color: var(--primary-color);
}

.category-card-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.category-card-content .badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
}

/* التجاوب */
@media (max-width: 992px) {
    .single-category {
        height: 280px;
        padding: 25px;
    }

    .category-title {
        font-size: 1.3rem;
    }

    .category-description {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .single-category {
        height: 250px;
        padding: 20px;
    }

    .category-icon {
        width: 50px;
        height: 50px;
    }

    .category-icon i {
        font-size: 24px;
    }

    .category-title {
        font-size: 1.1rem;
    }

    .category-description {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }

    .category-btn {
        padding: 6px 15px;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .featured-categories {
        padding: 40px 0;
    }

    .single-category {
        height: auto;
        min-height: 200px;
        flex-direction: column;
        text-align: center;
    }

    .category-image {
        position: relative;
        width: 100%;
        height: 150px;
        margin-top: 15px;
    }

    .category-content {
        text-align: center;
    }

    .category-icon {
        margin: 0 auto 15px;
    }
}

.float-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-end;
    /* تأكد من أن الأزرار لا تتداخل مع Footer */
    pointer-events: none;
}

.float-actions > * {
    pointer-events: auto;
}

.float-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.float-btn:hover {
    transform: scale(1.15) translateY(-4px);
}

.float-btn i {
    font-size: 1.6rem;
    color: #fff;
}

/* WhatsApp Button */
.float-btn.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.float-btn.whatsapp::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    opacity: 0.4;
    z-index: -1;
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.3); opacity: 0; }
}

/* Maps Button */
.float-btn.maps {
    background: linear-gradient(135deg, #4285F4, #34A853);
}

.float-btn.maps::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4285F4, #34A853);
    opacity: 0.4;
    z-index: -1;
    animation: mapsPulse 2s infinite;
    animation-delay: 0.5s;
}

@keyframes mapsPulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.3); opacity: 0; }
}

/* Tooltip */
.float-tooltip {
    position: absolute;
    right: 70px;
    background: #1a1a25;
    color: #f8fafc;
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.float-btn:hover .float-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* Hide buttons when near footer */
.float-actions.near-footer {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

/* Mobile */
@media (max-width: 576px) {
    .float-actions {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    .float-btn {
        width: 52px;
        height: 52px;
    }
    .float-btn i {
        font-size: 1.3rem;
    }
    .float-tooltip {
        display: none;
    }
}