* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  overflow-x: hidden;

  width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

body {
  padding-top: 85px;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
}

.logo-img {
  height: 65px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo h1 {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  letter-spacing: 2px;
}

.logo span {
  font-size: 14px;
  color: #e67e22;
  font-weight: 300;
  letter-spacing: 1px;
}

.search-bar {
  flex: 1;
  max-width: 500px;
  margin: 0 40px;
  position: relative;
}

.search-input {
  width: 100%;
  padding: 10px 45px 10px 18px;
  border: 2px solid #eee;
  border-radius: 25px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}

.search-input:focus {
  border-color: #e67e22;
}

.search-btn {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: #e67e22;
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  transition: background 0.3s;
}

.search-btn:hover {
  background: #d35400;
}

.header-actions {
  display: flex;
  gap: 20px;
}

.wishlist-btn,
.member-btn,
.cart-btn,
.header-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}

.wishlist-btn:hover,
.member-btn:hover,
.cart-btn:hover,
.header-action-btn:hover {
  color: #e67e22;
}

.wishlist-btn i,
.member-btn i,
.cart-btn i,
.header-action-btn i {
  font-size: 22px;
  margin-bottom: 3px;
}

.wishlist-btn span,
.member-btn span,
.header-action-btn span {
  font-size: 11px;
  font-weight: 500;
}

.cart-btn span {
  font-size: 12px;
  font-weight: 500;
}

.action-text {
  display: block;
  font-size: 12px;
  font-weight: 500;
}

.logo a {
  text-decoration: none;
  color: inherit;
}

.cart-count,
.wishlist-count {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #e67e22;
  color: white;
  border-radius: 50%;
  min-width: 15px;
  height: 15px;
  padding: 0;
  font-size: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(230, 126, 34, 0.4);
  transition: all 0.3s ease;
  line-height: 1;
  z-index: 10;
  border: 2px solid white;
}

.cart-count:empty {
  display: none;
}

.main-nav {
  background: #f8f9fa;
  padding: 0;
}

.nav-menu {
  display: flex;
  list-style: none;
  justify-content: center;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  padding: 12px 24px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link i {
  font-size: 10px;
  transition: transform 0.3s;
}

.has-dropdown:hover .nav-link i {
  transform: rotate(180deg);
}

.nav-link:hover {
  color: #e67e22;
  background: rgba(230, 126, 34, 0.1);
}

.special-btn {
  background: #e67e22 !important;
  color: white !important;
  border-radius: 25px;
  margin-left: 20px;
}

.special-btn:hover {
  background: #d35400 !important;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 220px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s;
  z-index: 1000;
  border-radius: 8px;
  padding: 12px 0;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-content {
  display: block;
  padding: 0;
}

.dropdown-item {
  display: block;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
  border-left: 3px solid transparent;
}

.dropdown-item:hover {
  color: #e67e22;
  background: rgba(230, 126, 34, 0.05);
  border-left-color: #e67e22;
}

.dropdown-column {
  flex: 1;
  margin-right: 20px;
}

.dropdown-column h4 {
  color: #e67e22;
  margin-bottom: 12px;
  font-size: 14px;
}

.dropdown-column a {
  display: block;
  padding: 6px 0;
  color: #666;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s;
}

.dropdown-column a:hover {
  color: #e67e22;
}

.hero-banner {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.banner-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.banner-container img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}

.trending-section,
.new-arrivals,
.trending-products {
  padding: 60px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.section-header p {
  font-size: 16px;
  color: #666;
  font-weight: 300;
}

.section-footer {
  text-align: center;
  margin-top: 30px;
}

.view-all-btn {
  display: inline-block;
  background: #e67e22;
  color: white;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.view-all-btn:hover {
  background: #d35400;
  transform: translateY(-2px);
}

.products-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.section-header h2 span {
  color: #e67e22;
}

.view-all {
  color: #e67e22;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.view-all:hover {
  color: #d35400;
}

.products-carousel,
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.product-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #e67e22;
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  z-index: 10;
}

.product-badge.new {
  background: #27ae60;
}

.product-badges {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 10;
}

.badge {
  background: #e67e22;
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-right: 5px;
}

.badge.trending {
  background: #e74c3c;
}

.badge.bestseller {
  background: #f39c12;
}

.badge.new {
  background: #27ae60;
}

.badge.discount {
  background: #9b59b6;
}

.product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 80%;
  transition: transform 0.3s;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-actions {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.3s;
}

.action-btn {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #666;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.action-btn:hover {
  background: white;
  color: #e67e22;
  transform: scale(1.1);
}

.wishlist-btn:hover {
  color: #e74c3c;
}

.product-card:hover .product-actions {
  opacity: 1;
}

.add-to-cart {
  width: 100%;
  background: #e67e22;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  margin-bottom: 10px;
}

.add-to-cart:hover {
  background: #d35400;
}

.add-to-wishlist {
  position: absolute;
  top: 15px;
  right: 15px;
  background: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #666;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.add-to-wishlist:hover {
  color: #e74c3c;
  background: #fff;
}

.product-info {
  padding: 20px;
}

.product-brand {
  font-size: 12px;
  color: #666;
  font-weight: 500;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-name {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.4;
}

.product-info h3 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.4;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.stars {
  display: flex;
  gap: 2px;
}

.stars i {
  color: #ffc107;
  font-size: 14px;
}

.rating-count {
  font-size: 12px;
  color: #666;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.current-price {
  font-size: 18px;
  font-weight: 700;
  color: #e67e22;
}

.original-price {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
}

.price {
  font-size: 18px;
  font-weight: 700;
  color: #e67e22;
}

.old-price {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
}

.add-to-cart-btn {
  width: 100%;
  background: #e67e22;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
}

.add-to-cart-btn:hover {
  background: #d35400;
}

.add-to-cart-btn i {
  font-size: 16px;
}

.btn_bordered_orange {
  width: 100%;
  border: 1px solid #e67e22;
  color: #e67e22;
  padding: 8px 12px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.3s,
    color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  text-decoration: none;
}

.btn_bordered_orange:hover {
  background: #d35400;
  color: white;
}
.urun_incele {
  margin-top: 1rem;
}

.category-banners {
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.category-banners::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(102, 126, 234, 0.3),
    transparent
  );
}

.banners-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 25px;
  height: 450px;
}

.banner-card {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.banner-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s;
}

.banner-card:hover::before {
  opacity: 1;
}

.banner-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.banner-card.large {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  grid-row: span 2;
  display: flex;
  align-items: center;
}

.banner-card.large .banner-content {
  z-index: 2;
  position: relative;
  padding: 50px;
  width: 100%;
}

.banner-card.large::after {
  content: "";
  position: absolute;
  right: 40px;
  bottom: 40px;
  width: 200px;
  height: 280px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 140' fill='none'%3E%3Cpath d='M45 5h10v8h-10zM40 13h20v10h-20zM35 23h30c5 0 10 5 10 10v90c0 5-5 10-10 10H35c-5 0-10-5-10-10V33c0-5 5-10 10-10z' fill='rgba(255,255,255,0.12)' stroke='rgba(255,255,255,0.15)' stroke-width='1'/%3E%3Cpath d='M38 28h24c3 0 5 2 5 5v80c0 3-2 5-5 5H38c-3 0-5-2-5-5V33c0-3 2-5 5-5z' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 1;
  z-index: 1;
  animation: floatBottle 4s ease-in-out infinite;
}

@keyframes floatBottle {
  0%,
  100% {
    transform: translateY(0px) rotate(-5deg);
  }

  50% {
    transform: translateY(-15px) rotate(5deg);
  }
}

.banner-card.large .banner-image {
  position: absolute;
  right: -50px;
  bottom: -30px;
  z-index: 1;
  opacity: 0.15;
  transform: rotate(-15deg);
  display: none;
}

.banner-card.large .banner-image img {
  width: 350px;
  height: auto;
}

.banner-card:nth-child(2) {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  display: flex;
  align-items: center;
}

.banner-card:nth-child(2) .banner-content {
  padding: 35px;
  position: relative;
  z-index: 2;
  width: 100%;
}

.banner-card:nth-child(2)::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%) rotate(10deg);
  width: 120px;
  height: 160px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 120' fill='none'%3E%3Cpath d='M35 5h10v6h-10zM30 11h20c3 0 5 2 5 5v8H25v-8c0-3 2-5 5-5z' fill='rgba(255,255,255,0.15)' stroke='rgba(255,255,255,0.2)' stroke-width='1'/%3E%3Cpath d='M28 24h24c4 0 8 4 8 8v75c0 4-4 8-8 8H28c-4 0-8-4-8-8V32c0-4 4-8 8-8z' fill='rgba(255,255,255,0.1)' stroke='rgba(255,255,255,0.18)' stroke-width='1'/%3E%3Cpath d='M32 28h16c2 0 4 2 4 4v70c0 2-2 4-4 4H32c-2 0-4-2-4-4V32c0-2 2-4 4-4z' fill='rgba(255,255,255,0.06)'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 1;
  z-index: 1;
  animation: floatBottle2 3.5s ease-in-out infinite;
}

@keyframes floatBottle2 {
  0%,
  100% {
    transform: translateY(-50%) rotate(10deg);
  }

  50% {
    transform: translateY(calc(-50% - 12px)) rotate(-5deg);
  }
}

.banner-card:nth-child(2) .banner-image {
  display: none;
}

.banner-card:nth-child(2) .banner-image img {
  width: 180px;
  height: auto;
  transform: rotate(12deg);
}

.banner-card:nth-child(3) {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
  display: flex;
  align-items: center;
}

.banner-card:nth-child(3) .banner-content {
  padding: 35px;
  position: relative;
  z-index: 2;
  width: 100%;
}

.banner-card:nth-child(3)::after {
  content: "";
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%) rotate(-8deg);
  width: 130px;
  height: 170px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 90 130' fill='none'%3E%3Cpath d='M38 3h14v5h-14zM35 8h20v7h-20zM32 15h26c6 0 10 4 10 10v90c0 6-4 10-10 10H32c-6 0-10-4-10-10V25c0-6 4-10 10-10z' fill='rgba(255,255,255,0.13)' stroke='rgba(255,255,255,0.18)' stroke-width='1.2'/%3E%3Cpath d='M36 20h18c4 0 7 3 7 7v80c0 4-3 7-7 7H36c-4 0-7-3-7-7V27c0-4 3-7 7-7z' fill='rgba(255,255,255,0.07)'/%3E%3Cpath d='M40 25h10c2 0 3 1 3 3v70c0 2-1 3-3 3H40c-2 0-3-1-3-3V28c0-2 1-3 3-3z' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 1;
  z-index: 1;
  animation: floatBottle3 4.2s ease-in-out infinite;
}

@keyframes floatBottle3 {
  0%,
  100% {
    transform: translateY(-50%) rotate(-8deg);
  }

  50% {
    transform: translateY(calc(-50% - 10px)) rotate(8deg);
  }
}

.banner-card:nth-child(3) .banner-image {
  display: none;
}

.banner-card:nth-child(3) .banner-image img {
  width: 190px;
  height: auto;
  transform: rotate(-12deg);
}

.banner-content {
  color: white;
  position: relative;
  z-index: 2;
}

.banner-content h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  line-height: 1.2;
}

.banner-card.large .banner-content h3 {
  font-size: 42px;
  margin-bottom: 18px;
}

.banner-content p {
  font-size: 16px;
  margin-bottom: 25px;
  opacity: 0.95;
  font-weight: 400;
  line-height: 1.5;
}

.banner-card.large .banner-content p {
  font-size: 18px;
  margin-bottom: 35px;
}

.banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: white;
  color: #333;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.banner-btn::after {
  content: "→";
  margin-left: 5px;
  transition: transform 0.3s;
}

.banner-btn:hover::after {
  transform: translateX(5px);
}

.banner-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
  background: #f8f9fa;
}

.banner-card.large .banner-btn {
  padding: 16px 38px;
  font-size: 15px;
}

.banner-card::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  top: -100px;
  right: -100px;
  z-index: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.banner-card {
  animation: fadeInUp 0.6s ease-out;
}

.banner-card:nth-child(2) {
  animation-delay: 0.1s;
}

.banner-card:nth-child(3) {
  animation-delay: 0.2s;
}

.promo-banners {
  padding: 60px 0;
  background: #f1f2f6;
}

.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.promo-banner {
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 50%, #d35400 100%);
  padding: 80px 0;
  color: white;
  position: relative;
  overflow: hidden;
}

.promo-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.promo-banner::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
}

.promo-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  gap: 80px;
  position: relative;
  z-index: 2;
}

.promo-text {
  flex: 1;
}

.promo-text h2 {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.promo-text h3 {
  font-size: 64px;
  font-weight: 900;
  margin-bottom: 20px;
  color: white;
  line-height: 1.1;
  letter-spacing: -1px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.promo-text p {
  font-size: 20px;
  opacity: 0.95;
  line-height: 1.6;
  max-width: 500px;
  font-weight: 300;
}

.promo-image {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }
}

.promo-image img {
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
  transition: all 0.3s ease;
}

.promo-image img:hover {
  transform: scale(1.08) rotate(2deg);
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.3));
}

.promo-icon {
  width: 60px;
  height: 60px;
  background: #e67e22;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
}

.promo-text h4 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.promo-text p {
  color: #666;
  line-height: 1.4;
}

.footer {
  background: #1a1a1a;
  color: white;
}

.footer-main {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #2c3e50 0%, #1a1a1a 100%);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 30px;
  text-align: center;
  justify-items: center;
}

.footer-brand {
  padding-right: 0;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-logo h3 {
  font-size: 32px;
  font-weight: 800;
  color: white;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.footer-logo span {
  font-size: 14px;
  color: #e67e22;
  font-weight: 600;
  letter-spacing: 1px;
}

.footer-brand p {
  color: #bdc3c7;
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 14px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-contact.vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #bdc3c7;
  text-decoration: none;
  transition: all 0.3s;
  padding: 8px 0;
}

.footer-contact-item i {
  width: 20px;
  color: #e67e22;
  font-size: 16px;
}

.footer-contact-item:hover {
  color: #e67e22;
  transform: translateX(5px);
}

.footer-contact-item.whatsapp:hover {
  color: #25d366;
}

.footer-contact-item.whatsapp:hover i {
  color: #25d366;
}

.footer-section h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
  color: white;
  position: relative;
  padding-bottom: 12px;
  display: inline-block;
}

.footer-section h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: #e67e22;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: #bdc3c7;
  text-decoration: none;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
}

.footer-section ul li a i {
  font-size: 10px;
  transition: transform 0.3s;
}

.footer-section ul li a:hover {
  color: #e67e22;
  transform: translateX(5px);
}

.footer-section ul li a:hover i {
  transform: translateX(3px);
}

.footer-bottom {
  background: #151515;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-newsletter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex: 1;
  flex-wrap: wrap;
}

.newsletter-text {
  display: flex;
  align-items: center;
  gap: 20px;
}

.newsletter-text i {
  font-size: 48px;
  color: #e67e22;
}

.newsletter-text h4 {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 5px;
}

.newsletter-text p {
  font-size: 13px;
  color: #95a5a6;
}

.newsletter-form {
  display: flex;
  gap: 0;
  flex: 1;
  max-width: 450px;
}

.newsletter-form input {
  flex: 1;
  padding: 16px 25px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-right: none;
  border-radius: 50px 0 0 50px;
  outline: none;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-size: 14px;
  transition: all 0.3s;
}

.newsletter-form input::placeholder {
  color: #95a5a6;
}

.newsletter-form input:focus {
  border-color: #e67e22;
  background: rgba(255, 255, 255, 0.08);
}

.newsletter-form button {
  background: #e67e22;
  color: white;
  border: none;
  padding: 16px 30px;
  border-radius: 0 50px 50px 0;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: #d35400;
  transform: translateX(2px);
}

.newsletter-form button i {
  transition: transform 0.3s;
}

.newsletter-form button:hover i {
  transform: translateX(5px);
}

.footer-copyright {
  background: #0d0d0d;
  padding: 25px 0;
}

.copyright-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright-content > * {
  flex: 1;
}

.copyright-content p {
  color: #95a5a6;
  font-size: 14px;
}

.footer-social {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.footer-social .social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 16px;
}

.footer-social .social-link:hover {
  transform: translateY(-3px);
}

.footer-social .social-link.instagram:hover {
  background: linear-gradient(
    135deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
}

.footer-social .social-link.facebook:hover {
  background: #1877f2;
}

.footer-social .social-link.twitter:hover {
  background: #1da1f2;
}

.footer-social .social-link.youtube:hover {
  background: #ff0000;
}

.footer-payments {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: flex-end;
}

.footer-payments i {
  font-size: 32px;
  color: #95a5a6;
  transition: color 0.3s;
}

.footer-payments i:hover {
  color: white;
}

.filters-wrapper {
  background: white;
  padding: 25px;
  border-radius: 15px;
  margin-bottom: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.filters-form {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr auto;
  gap: 15px;
  align-items: end;
}

.filter-group {
  display: flex;
  flex-direction: column;
}

.filter-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 14px;
  color: #333;
}

.filter-input,
.filter-select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s;
  outline: none;
}

.filter-input:focus,
.filter-select:focus {
  border-color: #e67e22;
  box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

.filter-select {
  cursor: pointer;
  background: white;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 35px;
}

.filter-btn {
  padding: 12px 25px;
  background: linear-gradient(135deg, #e67e22, #d35400);
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 500;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  min-height: 44px;
}

.filter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.filter-btn i {
  font-size: 14px;
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  padding: 16px 24px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
  0%,
  100% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6);
  }
}

.whatsapp-float a:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
  font-size: 28px;
  margin-right: 12px;
  animation: shake 1s ease-in-out infinite;
}

@keyframes shake {
  0%,
  100% {
    transform: rotate(0deg);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    transform: rotate(-10deg);
  }

  20%,
  40%,
  60%,
  80% {
    transform: rotate(10deg);
  }
}

.whatsapp-float span {
  font-weight: 700;
  font-size: 15px;
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float a {
    width: 60px;
    height: 60px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float i {
    margin: 0;
    font-size: 32px;
  }
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: #333;
  cursor: pointer;
  padding: 10px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;

  width: 85%;
  max-width: 320px;
  height: 100vh;
  background: white;
  z-index: 10001;
  transition: left 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);

  overflow-y: auto;
  box-shadow: 5px 0 20px rgba(0, 0, 0, 0.15);
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 2px solid #f8f9fa;
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
}

.mobile-menu-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: white;
  letter-spacing: 1px;
}

.mobile-menu-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  font-size: 20px;
  color: white;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.mobile-menu-body {
  padding: 10px;
  overflow-y: auto;
  max-height: calc(100vh - 80px);
}

.mobile-menu-body::-webkit-scrollbar {
  width: 6px;
}

.mobile-menu-body::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.mobile-menu-body::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

.mobile-menu-body::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-item {
  margin-bottom: 5px;
}

.mobile-nav-item:last-child {
  margin-bottom: 0;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 15px 15px 15px 10px;
  color: #333;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s;
  background: none;
  border: none;
  width: 100%;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
  background: #f8f9fa;
  color: #e67e22;
}

.mobile-nav-link span {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  justify-content: flex-start;
}

.mobile-nav-link span i {
  width: 20px;
  font-size: 16px;
  text-align: left;
  flex-shrink: 0;
  margin-right: 10px;
}

.mobile-nav-link .fa-chevron-down {
  font-size: 12px;
  transition: transform 0.3s;
  margin-left: auto;
  flex-shrink: 0;
}

.submenu-toggle.active .fa-chevron-down {
  transform: rotate(180deg);
}

.mobile-submenu {
  list-style: none;
  padding: 8px 5px 8px 5px;
  margin: 5px 0 0 0;
  display: none;
  background: #f8f9fa;
  border-radius: 8px;
}

.mobile-submenu.active {
  display: block;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-submenu li {
  margin-bottom: 0;
}

.mobile-submenu a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 12px 15px 12px 10px;
  color: #666;
  text-decoration: none;
  font-size: 14px;
  border-radius: 6px;
  transition: all 0.3s;
  font-weight: 400;
}

.mobile-submenu a:hover {
  background: white;
  color: #e67e22;
  padding-left: 15px;
  transform: translateX(3px);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  display: none;
}

.mobile-menu-overlay.active {
  display: block;
}

@media (max-width: 1024px) {
  .filters-form {
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 12px;
  }

  .filter-input,
  .filter-select {
    font-size: 13px;
    padding: 10px 12px;
  }

  .filter-btn {
    padding: 10px 20px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    transition: all 0.3s;
  }

  .mobile-menu-toggle:hover {
    background: #f8f9fa;
  }

  .desktop-nav {
    display: none !important;
  }

  .nav-menu {
    display: none !important;
  }

  .header-main {
    display: flex;
    flex-wrap: nowrap;

    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 15px;
    height: 70px;
  }

  .mobile-menu-toggle {
    order: 1;
    flex-shrink: 0;
    margin-left: 5px;
  }

  .logo {
    order: 2;
    flex: 1;
    text-align: center;
    min-width: 0;
    padding: 0 5px;
    max-width: 50%;
  }

  .logo-img {
    height: 40px;

    margin: 0 auto;
  }

  .header-actions {
    order: 3;
    display: flex;
    gap: 20px;
    align-items: center;
    padding-right: 10px;
    margin-left: auto;
  }

  .search-bar,
  .search-bar-placeholder {
    display: none !important;
  }

  .header-action-btn .action-text {
    display: none;
  }

  .header-action-btn {
    width: 40px;
    height: 40px;
    padding: 0;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
  }

  .cart-count,
  .wishlist-count {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 20px;
    height: 20px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px 6px;
    border-radius: 10px;
    font-weight: 600;
  }

  .hero-slider {
    height: 430px;
  }

  .slide-content {
    padding: 0 30px;
    gap: 16px;
    flex-direction: column;
    text-align: center;
  }

  .slide-text {
    max-width: 100%;
  }

  .slide-image {
    max-width: 80%;
    max-height: 250px;
    margin-top: 10px;
  }

  .slide-image img {
    max-height: 250px;
  }

  .slide-text h2 {
    font-size: 32px;
  }

  .slide-text h3 {
    font-size: 20px;
  }

  .slide-text p {
    font-size: 16px;
    max-width: 100%;
  }

  .slide-btn {
    padding: 12px 30px;
    font-size: 14px;
  }

  .products-carousel,
  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
  }

  .banners-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .filters-form {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .filter-btn {
    width: 100%;
    justify-content: center;
  }

  .banner-card {
    height: 250px;
    padding: 30px;
    flex-direction: column;
    text-align: center;
  }

  .banner-card.large {
    height: 300px;
  }

  .banner-image {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    margin-top: 20px;
    opacity: 0.6;
  }

  .banner-content h3 {
    font-size: 20px;
  }

  .banner-grid {
    grid-template-columns: 1fr;
  }

  .promo-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .promo-text h2 {
    font-size: 22px;
  }

  .promo-text h3 {
    font-size: 32px;
  }

  .promo-image img {
    max-width: 150px;
  }

  .promo-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-newsletter {
    flex-direction: column;
    gap: 25px;
    align-items: flex-start;
  }

  .newsletter-form {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-slider {
    height: auto;
    min-height: 520px;
    padding: 16px 0 22px;
  }

  .slide-content {
    padding: 0 15px;
    gap: 6px;
    overflow: visible;
  }

  .slide-image {
    max-width: 100%;
    max-height: none;
    margin-top: 18px;
  }

  .slide-image img {
    max-height: none;
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
  }

  .slide-text h2 {
    font-size: 19px;
    letter-spacing: 0.4px;
    margin-bottom: 4px;
  }

  .slide-text h3 {
    font-size: 13px;
    margin-bottom: 4px;
  }

  .slide-text p {
    font-size: 12px;
    margin-bottom: 6px;
    line-height: 1.3;
  }

  .slide-btn {
    padding: 9px 20px;
    font-size: 12.5px;
    margin-top: 6px;
  }

  .mobile-menu {
    width: 90%;
    max-width: none;
  }

  .mobile-menu-body {
    padding: 8px;
  }

  .header {
    padding: 10px 0;
  }

  .header-main {
    padding: 8px 0;
    gap: 8px;
  }

  .header-actions {
    gap: 18px;
    padding-right: 10px;
    margin-left: auto;
  }

  .header-action-btn {
    width: 38px;
    height: 38px;
  }

  .header-action-btn i {
    font-size: 16px;
  }

  .cart-count,
  .wishlist-count {
    min-width: 14px;
    height: 14px;
    font-size: 8px;
    top: -2px;
    right: -2px;
    padding: 0;
    font-weight: 700;
    line-height: 1;
    border: 1.5px solid white;
  }

  .logo {
    padding: 0 8px;
  }

  .logo-img {
    height: 65px;
  }

  .logo h1 {
    font-size: 19px;
    letter-spacing: 0.5px;
  }

  .logo span {
    font-size: 8px;
    letter-spacing: 1px;
  }

  .search-input {
    font-size: 14px;
    padding: 10px 15px;
  }

  .search-btn {
    width: 40px;
  }

  .header-action-btn i {
    font-size: 18px;
  }

  .mobile-nav-link {
    font-size: 14px;
    padding: 12px 12px 12px 8px;
  }

  .mobile-nav-link span {
    gap: 0;
  }

  .mobile-nav-link span i {
    width: 18px;
    margin-right: 8px;
  }

  .mobile-submenu {
    padding: 6px 3px;
  }

  .mobile-submenu a {
    font-size: 13px;
    padding: 10px 12px 10px 8px;
  }

  .filters-wrapper {
    padding: 15px;
    margin-bottom: 25px;
  }

  .filter-label {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .filter-input,
  .filter-select {
    padding: 10px 12px;
    font-size: 13px;
  }

  .filter-btn {
    padding: 12px 20px;
    font-size: 13px;
  }

  .slide-text h2 {
    font-size: 24px !important;
  }

  .slide-text h3 {
    font-size: 18px;
  }

  .products-carousel,
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .product-card {
    padding: 15px;
  }

  .banner-card {
    height: 200px;
    padding: 20px;
  }

  .banner-card.large {
    height: 250px;
  }

  .banner-content h3 {
    font-size: 18px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  section {
    padding: 40px 0 !important;
  }

  .page-section {
    margin-top: 80px !important;
    padding: 40px 0 !important;
  }

  .section-header h2 {
    font-size: 22px;
  }

  .section-header p {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .footer-main {
    padding: 60px 0 40px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-brand {
    padding-right: 0;
  }

  .footer-newsletter {
    width: 100%;
  }

  .newsletter-text i {
    font-size: 36px;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 10px;
  }

  .newsletter-form input,
  .newsletter-form button {
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    width: 100%;
  }

  .copyright-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-payments {
    justify-content: center;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    min-width: auto;
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float a {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    justify-content: center;
    padding: 0;
  }

  .whatsapp-float {
    bottom: 15px;
    right: 15px;
    z-index: 9998;
  }

  .whatsapp-float a {
    width: 55px;
    height: 55px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  }

  .whatsapp-float i {
    margin: 0;
    font-size: 28px;
  }

  .slider-arrow {
    width: 45px;
    height: 45px;
    font-size: 14px;
  }

  .slider-arrow-left {
    left: 15px;
  }

  .slider-arrow-right {
    right: 15px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .section-header {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .products-carousel,
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.user-dropdown-container {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: inherit;
  text-decoration: none !important;
}

.user-dropdown {
  position: absolute;
  top: 100%;
  right: -10px;

  left: auto;
  background: white;
  min-width: 200px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
  z-index: 1000;
  padding: 10px 0;
  border: 1px solid #eee;
}

.user-dropdown-container:hover .user-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.user-dropdown ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.user-dropdown ul li a {
  display: block;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.user-dropdown ul li a:hover {
  background: #f8f9fa;
  color: #e67e22;
}

.user-dropdown ul li a i {
  width: 20px;
  text-align: center;
}

.cookie-consent {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  z-index: 99999;
  max-width: 400px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 5px solid #e67e22;
}

.cookie-consent.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cookie-content {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.cookie-icon i {
  font-size: 24px;
  color: #e67e22;
  margin-top: 3px;
}

.cookie-main {
  flex: 1;
}

.cookie-main p {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 12px;
}

.cookie-content a {
  color: #e67e22;
  text-decoration: underline;
  font-weight: 500;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  border: none;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  flex: 1;
}

.cookie-btn.accept {
  background: #e67e22;
  color: white;
}

.cookie-btn.accept:hover {
  background: #d35400;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
}

.cookie-btn.decline {
  background: #f1f2f6;
  color: #666;
}

.cookie-btn.decline:hover {
  background: #dfe4ea;
  color: #333;
  transform: translateY(-2px);
}

@media (max-width: 480px) {
  .cookie-consent {
    left: 15px;
    right: 15px;
    bottom: 15px;
    max-width: none;
  }
}

.back-to-top {
  position: fixed;
  bottom: 110px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #e67e22;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 9997;
  box-shadow: 0 5px 20px rgba(230, 126, 34, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.back-to-top:hover {
  transform: translateY(-5px);
  background: #d35400;
}

@media (max-width: 768px) {
  .back-to-top {
    right: 20px;
    bottom: 90px;
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .footer-content {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }

  .back-to-top {
    right: 15px;
    bottom: 80px;
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

.footer-agency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-agency > span {
  font-size: 11px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.agency-link {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: opacity 0.3s;
}

.agency-link:hover {
  opacity: 0.8;
}

.agency-link span {
  font-size: 11px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.agency-link:hover span {
  color: #fff;
}

.agency-link img {
  height: 20px;
  width: auto;
  opacity: 0.9;
}

.cart-count,
.wishlist-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #e67e22;
  color: white;
  font-size: 11px;
  font-weight: 700;
  height: 18px;
  width: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 5;
  line-height: 1;
}

.header-action-btn {
  position: relative;
}
