/* Enan Storefront - Custom CSS & Design System (Matching New Logo Identity) */

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

:root {
    --enan-orange: #ff6b00;
    --enan-orange-hover: #e05d00;
    --enan-orange-light: rgba(255, 107, 0, 0.08);
    --enan-purple: #35155d;
    --enan-purple-dark: #230b42;
    --enan-purple-light: rgba(53, 21, 93, 0.06);
    --enan-teal: #00a884;
    --enan-bg: #f6f5fa;
    --enan-card-bg: #ffffff;
    --enan-border: #e2e8f0;
    --enan-text-dark: #1e1b2e;
    --enan-text-muted: #64748b;
    --enan-radius-sm: 8px;
    --enan-radius-md: 16px;
    --enan-radius-lg: 24px;
    --enan-shadow: 0 4px 18px rgba(53, 21, 93, 0.06);
    --enan-shadow-hover: 0 12px 28px rgba(53, 21, 93, 0.14);
    --enan-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Cairo', 'Tajawal', sans-serif;
    background-color: var(--enan-bg);
    color: var(--enan-text-dark);
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
}

/* Glassmorphism Navbar (Matching Enan Purple & Orange Vibe) */
.navbar-enan {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 4px 20px rgba(53, 21, 93, 0.05);
    padding: 10px 0;
    transition: var(--enan-transition);
}

.enan-logo-badge {
    background: linear-gradient(135deg, #35155d 0%, #230b42 100%);
    padding: 6px 16px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(53, 21, 93, 0.25);
    transition: transform 0.3s ease;
}

.enan-logo-badge:hover {
    transform: scale(1.03);
}

.enan-brand-logo {
    height: 42px;
    width: auto;
    object-fit: contain;
}

.navbar-enan .nav-link {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--enan-text-dark);
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: var(--enan-transition);
}

.navbar-enan .nav-link:hover,
.navbar-enan .nav-link.active {
    color: var(--enan-orange);
    background-color: var(--enan-orange-light);
}

.btn-enan-primary {
    background-color: var(--enan-orange);
    color: #ffffff;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 10px;
    border: none;
    transition: var(--enan-transition);
    box-shadow: 0 4px 14px rgba(255, 107, 0, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-enan-primary:hover {
    background-color: var(--enan-orange-hover);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.cart-btn-wrapper {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background-color: var(--enan-purple);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
}

/* Hero Section */
.hero-slider-container {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(53, 21, 93, 0.08);
    background: #ffffff;
    position: relative;
}

.hero-slide-img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: cover;
    border-radius: 24px;
    display: block;
}

/* Hero Swiper Custom Pagination Dots */
.hero-swiper .swiper-pagination-bullets {
    bottom: 22px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 10;
}

.hero-swiper .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.7);
    opacity: 1;
    border-radius: 50%;
    margin: 0 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-swiper .swiper-pagination-bullet-active {
    width: 38px;
    height: 14px;
    border-radius: 10px;
    background: var(--enan-orange);
    border-color: var(--enan-orange);
    box-shadow: 0 2px 10px rgba(255, 107, 0, 0.5);
}

/* Hero Bottom Progress Bar */
.hero-bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 12;
    overflow: hidden;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
}

.hero-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #35155d 0%, #5c2494 50%, #ff6b00 100%);
    box-shadow: 0 0 10px rgba(255, 107, 0, 0.8);
    transition: width 0.1s linear;
}

/* Single Row Features Strip */
.features-strip-single-row {
    margin-top: 18px;
}

.feature-box-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 14px 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(53, 21, 93, 0.03);
    border: 1px solid rgba(226, 232, 240, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 100%;
    transition: var(--enan-transition);
}

.feature-box-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(53, 21, 93, 0.08);
    border-color: var(--enan-orange-light);
}

.feature-box-icon {
    font-size: 1.4rem;
    color: var(--enan-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    width: 32px;
}

.feature-box-title {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--enan-purple-dark);
    margin: 0;
    white-space: nowrap;
}

/* Section Titles */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.section-title-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-accent-bar {
    width: 6px;
    height: 24px;
    background-color: var(--enan-orange);
    border-radius: 4px;
}

.section-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--enan-purple-dark);
    margin: 0;
}

.slider-arrow-btns {
    display: flex;
    gap: 8px;
}

.btn-arrow {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background-color: #ffffff;
    border: 1px solid var(--enan-border);
    color: var(--enan-purple-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--enan-transition);
    cursor: pointer;
}

.btn-arrow:hover {
    background-color: var(--enan-purple);
    color: #ffffff;
    border-color: var(--enan-purple);
}

/* Segmented Teal Ring Categories Styling */
.category-card {
    text-decoration: none;
    color: var(--enan-text-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--enan-transition);
    padding: 8px 4px;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-ring-container {
    position: relative;
    width: 104px;
    height: 104px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.category-ring-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-30deg);
    pointer-events: none;
}

.category-circle-inner {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    box-shadow: 0 4px 14px rgba(53, 21, 93, 0.05);
    z-index: 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover .category-circle-inner {
    transform: scale(1.06);
    box-shadow: 0 8px 22px rgba(255, 107, 0, 0.25);
}

.category-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.category-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--enan-text-dark);
    margin: 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.category-card:hover .category-name {
    color: var(--enan-orange);
}

/* Product Cards */
.product-card {
    background: var(--enan-card-bg);
    border-radius: var(--enan-radius-md);
    border: 1px solid var(--enan-border);
    padding: 14px;
    position: relative;
    transition: var(--enan-transition);
    box-shadow: var(--enan-shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--enan-shadow-hover);
    border-color: rgba(255, 107, 0, 0.3);
}

.product-image-container {
    position: relative;
    width: 100%;
    padding-top: 100%;
    background-color: #f8fafc;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
}

.product-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
    transition: transform 0.4s ease;
}

.product-card:hover .product-img {
    transform: scale(1.06);
}

/* Badges & Actions */
.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #00c853;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 200, 83, 0.3);
}

.product-badge.discount {
    background: #ff1744;
    box-shadow: 0 2px 8px rgba(255, 23, 68, 0.3);
}

.wishlist-btn {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--enan-border);
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--enan-transition);
    z-index: 2;
}

.wishlist-btn:hover,
.wishlist-btn.active {
    background: #ff1744;
    color: #ffffff;
    border-color: #ff1744;
}

.quick-add-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--enan-orange);
    color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--enan-transition);
    box-shadow: 0 4px 10px rgba(255, 107, 0, 0.35);
    z-index: 2;
}

.quick-add-btn:hover {
    background-color: var(--enan-purple);
    transform: scale(1.1);
}

/* Product Info */
.product-category {
    font-size: 0.75rem;
    color: var(--enan-text-muted);
    font-weight: 600;
    margin-bottom: 4px;
}

.product-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--enan-text-dark);
    margin-bottom: 10px;
    line-height: 1.4;
    height: 2.8em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-price-wrapper {
    margin-top: auto;
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
}

.product-price {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--enan-purple-dark);
    white-space: nowrap;
}

.currency-symbol {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--enan-orange);
    white-space: nowrap;
}

.old-price {
    font-size: 0.75rem;
    color: #94a3b8;
    text-decoration: line-through;
    white-space: nowrap;
}

/* Wide Promotional Banners */
.banner-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--enan-shadow);
    transition: var(--enan-transition);
}

.banner-container:hover {
    transform: scale(1.01);
    box-shadow: var(--enan-shadow-hover);
}

.banner-img {
    width: 100%;
    height: auto;
    display: block;
}

/* ==========================================
   1. SCROLL REVEAL ANIMATIONS
   ========================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ==========================================
   2. MARQUEE CONTAINER & EDGE FADES
   ========================================== */
.brands-marquee-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1.6rem;
  direction: ltr; /* Force left-to-right calculation for smooth keyframe transforms */
  padding: 10px 0;
  background: transparent !important;
}

/* Left & Right Gradient Overlay Fades */
.brands-marquee-wrap::before,
.brands-marquee-wrap::after {
  content: '';
  position: absolute;
  top: -1rem;
  bottom: -1rem;
  width: min(16vw, 210px);
  z-index: 3;
  pointer-events: none;
}

.brands-marquee-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--enan-bg) 0%, rgba(246, 245, 250, 0) 100%);
}

.brands-marquee-wrap::after {
  right: 0;
  background: linear-gradient(270deg, var(--enan-bg) 0%, rgba(246, 245, 250, 0) 100%);
}

/* ==========================================
   3. TRACKS AND SYNCHRONIZED MARQUEE ANIMATIONS
   ========================================== */
.brands-marquee-row {
  overflow: hidden;
  width: 100%;
}

.brands-marquee-row--offset {
  margin-right: 0;
}

.brands-marquee-track {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  width: max-content;
  will-change: transform;
}

/* Both rows move together at the EXACT SAME synchronized speed (40s linear) */
.brands-marquee-track--left {
  animation: brandsSlideLeft 40s linear infinite;
}

.brands-marquee-track--right {
  animation: brandsSlideRight 40s linear infinite;
}

/* Pause animation on hover */
.brands-marquee-wrap:hover .brands-marquee-track {
  animation-play-state: paused;
}

/* Marquee Logo Items (Page Integrated) */
.brand-card {
  width: 140px;
  height: 60px;
  border-radius: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.brand-card:hover {
  transform: scale(1.1);
  border: none !important;
  box-shadow: none !important;
}

.brand-card img {
  max-width: 100%;
  max-height: 48px;
  object-fit: contain;
  opacity: 0.95;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.02));
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.brand-card:hover img {
  opacity: 1;
  transform: scale(1.05);
}

/* SYNCHRONIZED KEYFRAMES (Right to Left & Left to Right) */
@keyframes brandsSlideLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes brandsSlideRight {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Footer Section - Royal Enan Purple Theme */
.footer-enan {
    background: linear-gradient(180deg, #2a0c4e 0%, #1a0533 100%);
    color: #e2e8f0;
    padding-top: 60px;
    padding-bottom: 30px;
    margin-top: 60px;
    position: relative;
}

.footer-enan h5 {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-enan h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 32px;
    height: 3px;
    background: var(--enan-orange);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #b8b2cc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--enan-transition);
}

.footer-links a:hover {
    color: var(--enan-orange);
    padding-right: 6px;
}

.newsletter-box {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--enan-radius-md);
    padding: 20px;
}

.newsletter-input-group {
    display: flex;
    gap: 8px;
}

.newsletter-input {
    background: #ffffff;
    border: 1px solid var(--enan-border);
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 0.9rem;
    color: var(--enan-text-dark);
    width: 100%;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--enan-orange);
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--enan-transition);
}

.social-btn:hover {
    background: var(--enan-orange);
    color: #ffffff;
    transform: translateY(-3px);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background-color: #25d366;
    color: #ffffff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    text-decoration: none;
    transition: var(--enan-transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #ffffff;
}

/* Custom Toast Notification */
.rac-toast {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: var(--enan-purple-dark);
    color: #ffffff;
    padding: 14px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(53, 21, 93, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.rac-toast.show {
    transform: translateY(0);
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .feature-box-card {
        padding: 10px 4px;
    }
    .feature-box-icon {
        font-size: 1.2rem;
    }
    .feature-box-title {
        font-size: 0.72rem;
    }
    .hero-slider-container {
        border-radius: 18px;
    }
    .hero-slide-img {
        border-radius: 18px;
    }
    .hero-swiper .swiper-pagination-bullets {
        bottom: 12px !important;
    }
    .hero-swiper .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }
    .hero-swiper .swiper-pagination-bullet-active {
        width: 28px;
        height: 10px;
    }
    .brand-card {
        width: 110px;
        height: 48px;
    }
    .category-ring-container {
        width: 72px;
        height: 72px;
        margin-bottom: 6px;
    }
    .category-circle-inner {
        width: 58px;
        height: 58px;
        padding: 8px;
    }
    .category-name {
        font-size: 0.72rem;
    }
    .category-card {
        padding: 4px 2px;
    }
    .product-price {
        font-size: 0.85rem;
    }
    .currency-symbol {
        font-size: 0.68rem;
    }
    .old-price {
        font-size: 0.68rem;
    }
    .product-price-wrapper {
        gap: 4px;
    }
}

/* Mobile Navigation Sidemenu Offcanvas (Matching exact uploaded structure) */
.mobile-menu-offcanvas {
    width: 320px !important;
    max-width: 85vw !important;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    border: none;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
}

.mobile-menu-header {
    padding: 18px 24px;
    border-bottom: 1px solid #f1f3f7;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-menu-close-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #f4f5f8;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-menu-close-btn:hover {
    background-color: #e2e8f0;
    color: #1e293b;
}

.mobile-menu-body {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    height: calc(100vh - 80px);
    overflow-y: auto;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.mobile-nav-item {
    border-bottom: 1px solid #f1f5f9;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 8px;
    color: #1e1b2e;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--enan-orange);
}

.mobile-nav-link .link-content {
    display: flex;
    align-items: center;
    gap: 14px;
}

.mobile-nav-link .link-icon {
    font-size: 1.25rem;
    width: 24px;
    text-align: center;
    color: var(--enan-purple);
}

.mobile-nav-link.active .link-icon {
    color: var(--enan-orange);
}

.mobile-nav-link .arrow-icon {
    font-size: 0.85rem;
    color: #94a3b8;
    transition: transform 0.2s ease;
}

.mobile-nav-link:not(.collapsed) .arrow-icon {
    transform: rotate(180deg);
}

.mobile-sub-menu {
    list-style: none;
    padding: 0 40px 12px 12px;
    margin: 0;
}

.mobile-sub-menu li {
    margin-bottom: 8px;
}

.mobile-sub-menu a {
    color: #64748b;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    display: block;
    padding: 4px 0;
    transition: color 0.2s ease;
}

.mobile-sub-menu a:hover {
    color: var(--enan-orange);
}

/* Bottom Category Button in Sidemenu */
.mobile-menu-footer {
    margin-top: auto;
    padding-top: 16px;
    text-align: center;
}

.btn-mobile-browse-categories {
    background-color: var(--enan-orange);
    color: #ffffff;
    font-weight: 800;
    font-size: 1.05rem;
    padding: 14px 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(255, 107, 0, 0.25);
    border: none;
    transition: all 0.25s ease;
    width: 100%;
}

.btn-mobile-browse-categories:hover {
    background-color: var(--enan-orange-hover);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255, 107, 0, 0.35);
}

.mobile-menu-copyright {
    color: #94a3b8;
    font-size: 0.78rem;
    margin-top: 16px;
}

/* Header Action Buttons (Search, Wishlist, Cart) */
.header-action-btn {
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
    transition: var(--enan-transition);
}

@media (min-width: 768px) {
    .header-action-btn {
        width: 42px;
        height: 42px;
        font-size: 1.05rem;
    }
}

.wishlist-btn-wrapper {
    position: relative;
    display: inline-block;
}

.wishlist-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--enan-orange);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.product-action-btn {
    font-size: 0.85rem;
    padding: 10px 4px !important;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    letter-spacing: -0.2px;
}

@media (min-width: 768px) {
    .product-action-btn {
        font-size: 0.98rem;
        padding: 12px 20px !important;
        letter-spacing: normal;
    }
}





