/**
 * Widget Styles
 * Exact CSS from static template for Ameano RH widgets
 * 
 * @package Ameano_Starter_RH
 * @since 1.0.0
 */

/* =========================================
   Body / Font (from static template)
   ========================================= */
.arh-header-widget {
    font-family: 'Inter', sans-serif;
}

.font-inter {
    font-family: 'Inter', sans-serif;
}

/* =========================================
   Global SVG Icon Fix for Slider Arrows
   Overrides Tailwind/Theme CSS resets
   ========================================= */
button svg,
.arh-trending-arrow svg,
.arh-testimonial-arrow svg,
.arh-slider-arrow svg {
    stroke: currentColor !important;
    stroke-width: 2 !important;
    fill: none !important;
    display: block !important;
    width: 20px !important;
    height: 20px !important;
}

button svg path,
.arh-trending-arrow svg path,
.arh-testimonial-arrow svg path,
.arh-slider-arrow svg path {
    stroke: inherit !important;
    stroke-width: inherit !important;
    fill: none !important;
}

/* Font Awesome Icons for Slider Arrows */
.arh-trending-arrow i,
.arh-testimonial-arrow i,
.arh-slider-arrow i {
    font-size: 16px !important;
    line-height: 1 !important;
    display: inline-block !important;
}

.arh-trending-arrow .fa,
.arh-testimonial-arrow .fa,
.arh-slider-arrow .fa {
    font-family: "Font Awesome 5 Free", "FontAwesome", sans-serif !important;
    font-weight: 900 !important;
}

/* =========================================
   Tailwind Utility Class Replacements
   Required after Tailwind CDN removal
   ========================================= */

/* Display */
.flex {
    display: flex !important;
}

.hidden {
    display: none !important;
}

.block {
    display: block !important;
}

.inline-flex {
    display: inline-flex !important;
}

.grid {
    display: grid !important;
}

/* Flexbox */
.items-center {
    align-items: center !important;
}

.items-start {
    align-items: flex-start !important;
}

.justify-between {
    justify-content: space-between !important;
}

.justify-center {
    justify-content: center !important;
}

.flex-col {
    flex-direction: column !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

/* Gap */
.gap-1 {
    gap: 4px !important;
}

.gap-2 {
    gap: 8px !important;
}

.gap-3 {
    gap: 12px !important;
}

.gap-4 {
    gap: 16px !important;
}

.gap-6 {
    gap: 24px !important;
}

.gap-8 {
    gap: 32px !important;
}

.gap-x-8 {
    column-gap: 32px !important;
}

/* Padding */
.p-2 {
    padding: 8px !important;
}

.p-4 {
    padding: 16px !important;
}

.px-4 {
    padding-left: 16px !important;
    padding-right: 16px !important;
}

.py-2 {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
}

.py-4 {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
}

/* Margin */
.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Width & Height */
.w-4 {
    width: 16px !important;
}

.w-5 {
    width: 20px !important;
}

.w-6 {
    width: 24px !important;
}

.w-7 {
    width: 28px !important;
}

.w-8 {
    width: 32px !important;
}

.h-4 {
    height: 16px !important;
}

.h-5 {
    height: 20px !important;
}

.h-6 {
    height: 24px !important;
}

.h-7 {
    height: 28px !important;
}

.h-8 {
    height: 32px !important;
}

.w-full {
    width: 100% !important;
}

.h-full {
    height: 100% !important;
}

.w-screen {
    width: 100vw !important;
}

.h-screen {
    height: 100vh !important;
}

.max-w-7xl {
    max-width: 1280px !important;
}

.max-w-xl {
    max-width: 576px !important;
}

.max-w-md {
    max-width: 448px !important;
}

/* Position */
.fixed {
    position: fixed !important;
}

.relative {
    position: relative !important;
}

.absolute {
    position: absolute !important;
}

.sticky {
    position: sticky !important;
}

.inset-0 {
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
}

.top-0 {
    top: 0 !important;
}

.right-0 {
    right: 0 !important;
}

.bottom-0 {
    bottom: 0 !important;
}

.left-0 {
    left: 0 !important;
}

.-top-1 {
    top: -4px !important;
}

.-right-1 {
    right: -4px !important;
}

/* Z-index */
.z-10 {
    z-index: 10 !important;
}

.z-40 {
    z-index: 40 !important;
}

.z-50 {
    z-index: 50 !important;
}

.z-\[100\] {
    z-index: 100 !important;
}

.z-\[101\] {
    z-index: 101 !important;
}

/* Text */
.text-xs {
    font-size: 12px !important;
}

.text-sm {
    font-size: 14px !important;
}

.text-base {
    font-size: 16px !important;
}

.text-lg {
    font-size: 18px !important;
}

.text-xl {
    font-size: 20px !important;
}

.text-2xl {
    font-size: 24px !important;
}

.text-3xl {
    font-size: 30px !important;
}

.text-4xl {
    font-size: 36px !important;
}

.text-center {
    text-align: center !important;
}

.font-medium {
    font-weight: 500 !important;
}

.font-semibold {
    font-weight: 600 !important;
}

.font-bold {
    font-weight: 700 !important;
}

.line-through {
    text-decoration: line-through !important;
}

.leading-tight {
    line-height: 1.25 !important;
}

/* Colors */
.text-primary {
    color: #E31B23 !important;
}

.text-white {
    color: #ffffff !important;
}

.text-gray-600 {
    color: #4B5563 !important;
}

.text-gray-700 {
    color: #374151 !important;
}

.text-secondary {
    color: #4A4A4A !important;
}

/* Shadows */
.shadow {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
}

.shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
}

/* Borders */
.border {
    border-width: 1px !important;
    border-style: solid !important;
}

.border-t {
    border-top-width: 1px !important;
    border-top-style: solid !important;
}

.border-b {
    border-bottom-width: 1px !important;
    border-bottom-style: solid !important;
}

.border-gray-100 {
    border-color: #f3f4f6 !important;
}

.bg-primary {
    background-color: #E31B23 !important;
}

.bg-gray-100 {
    background-color: #f3f4f6 !important;
}

.bg-white {
    background-color: #ffffff !important;
}

.bg-accent {
    background-color: #F8F9FA !important;
}

.bg-black\/50 {
    background-color: rgba(0, 0, 0, 0.5) !important;
}

.bg-black\/90 {
    background-color: rgba(0, 0, 0, 0.9) !important;
}

/* Border Radius */
.rounded {
    border-radius: 4px !important;
}

.rounded-md {
    border-radius: 6px !important;
}

.rounded-lg {
    border-radius: 8px !important;
}

.rounded-xl {
    border-radius: 12px !important;
}

.rounded-full {
    border-radius: 9999px !important;
}

/* Transitions */
.transition {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter !important;
    transition-timing-function: ease !important;
    transition-duration: 150ms !important;
}

/* Responsive: md breakpoint (768px) */
@media (min-width: 768px) {
    .md\:flex {
        display: flex !important;
    }

    .md\:block {
        display: block !important;
    }

    .md\:hidden {
        display: none !important;
    }
}

/* Responsive: hidden on mobile, show on md+ */
.hidden.md\:flex {
    display: none !important;
}

@media (min-width: 768px) {
    .hidden.md\:flex {
        display: flex !important;
    }

    .hidden.md\:block {
        display: block !important;
    }
}

/* Hover States */
.hover\:bg-accent:hover {
    background-color: #F8F9FA !important;
}

.hover\:text-primary:hover {
    color: #E31B23 !important;
}

/* Group Hover (for dropdown menus) */
.group:hover .group-hover\:opacity-100 {
    opacity: 1 !important;
}

.group:hover .group-hover\:visible {
    visibility: visible !important;
}

/* Visibility */
.invisible {
    visibility: hidden !important;
}

.visible {
    visibility: visible !important;
}

/* Opacity */
.opacity-0 {
    opacity: 0 !important;
}

.opacity-100 {
    opacity: 1 !important;
}

/* Duration */
.duration-300 {
    transition-duration: 300ms !important;
}

/* Min/Max width */
.min-w-\[200px\] {
    min-width: 200px !important;
}

/* Padding helpers */
.py-2 {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
}

.pl-4 {
    padding-left: 16px !important;
}

.py-3 {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
}

/* =========================================
   Top Bar Default Styles
   ========================================= */
.arh-top-bar {
    background-color: #4A4A4A;
    color: #ffffff;
    padding: 8px 0;
    font-size: 14px;
    line-height: 1.5;
}

.arh-top-bar-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

.arh-top-bar-text {
    margin: 0;
    padding: 0;
    line-height: inherit;
}

.arh-top-bar-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.arh-top-bar a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* =========================================
   Marquee Animation for Top Bar
   ========================================= */
@keyframes arh-marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.arh-marquee-container {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    max-width: 70%;
}

.arh-marquee-track {
    display: inline-flex;
    align-items: center;
    animation: arh-marquee-scroll 20s linear infinite;
    will-change: transform;
}

.arh-marquee-item {
    display: inline-flex;
    align-items: center;
    padding: 0 24px;
    font-size: 13px;
    font-weight: 500;
}

.arh-marquee-icon {
    margin-right: 6px;
    font-size: 14px;
}

.arh-marquee-separator {
    opacity: 0.4;
    margin-left: 24px;
    font-size: 10px;
}

.arh-marquee-link {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.arh-marquee-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Pause on hover */
.arh-marquee-pause-hover:hover .arh-marquee-track {
    animation-play-state: paused;
}

/* Gradient fade on edges */
.arh-marquee-container::before,
.arh-marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 30px;
    z-index: 1;
    pointer-events: none;
}

.arh-marquee-container::before {
    left: 0;
    background: linear-gradient(to right, rgba(74, 74, 74, 1) 0%, rgba(74, 74, 74, 0) 100%);
}

.arh-marquee-container::after {
    right: 0;
    background: linear-gradient(to left, rgba(74, 74, 74, 1) 0%, rgba(74, 74, 74, 0) 100%);
}

/* Mobile: Full width marquee */
@media (max-width: 767px) {
    .arh-marquee-container {
        max-width: 100%;
    }

    .arh-marquee-item {
        font-size: 12px;
        padding: 0 16px;
    }

    .arh-marquee-separator {
        margin-left: 16px;
    }

    /* Always show top bar on mobile */
    .arh-top-bar {
        display: block !important;
    }

    /* Hide top bar links on mobile to save space */
    .arh-top-bar-links {
        display: none !important;
    }

    /* Search Dropdown Mobile - Full Width with side spacing */
    .arh-search-dropdown {
        position: fixed !important;
        left: 12px !important;
        right: 12px !important;
        top: auto !important;
        width: calc(100% - 24px) !important;
        max-width: calc(100% - 24px) !important;
        margin-top: 16px !important;
        border-radius: 8px !important;
    }
}

/* =========================================
   Header Default Styles
   ========================================= */
.arh-header {
    background-color: #ffffff;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    overflow: visible !important;
}

.arh-header-inner {
    padding: 16px;
    overflow: visible !important;
}

/* Search Dropdown - Ensure visibility on all themes */
.arh-search-wrapper {
    position: relative !important;
    overflow: visible !important;
}

.arh-action-icons {
    overflow: visible !important;
}

.arh-header-content {
    overflow: visible !important;
}

.arh-search-dropdown {
    z-index: 9999 !important;
    position: absolute !important;
}

/* FiboSearch Integration Styles - Clean White Theme */
.arh-fibosearch-hidden {
    min-width: 500px !important;
}

/* Search Form Wrapper */
.arh-fibosearch-hidden .dgwt-wcas-search-wrapp {
    width: 500px !important;
    max-width: 500px !important;
}

/* Search Input - White Clean Style */
.arh-fibosearch-hidden .dgwt-wcas-search-form {
    background: #ffffff !important;
    border-radius: 12px !important;
    border: 1px solid #e0e0e0 !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15) !important;
}

.arh-fibosearch-hidden .dgwt-wcas-search-input {
    background: transparent !important;
    color: #1a1a2e !important;
    font-size: 16px !important;
    padding: 16px 20px !important;
    border: none !important;
}

.arh-fibosearch-hidden .dgwt-wcas-search-input::placeholder {
    color: #999999 !important;
}

/* Search Icon inside - Position on Right */
.arh-fibosearch-hidden .dgwt-wcas-ico-magnifier {
    fill: #666666 !important;
}

.arh-fibosearch-hidden .dgwt-wcas-search-submit {
    right: 10px !important;
    left: auto !important;
}

.arh-fibosearch-hidden .dgwt-wcas-sf-wrapp {
    flex-direction: row !important;
}

.arh-fibosearch-hidden .dgwt-wcas-sf-wrapp input {
    padding-right: 50px !important;
}

/* Results Dropdown - Premium Style */
.arh-fibosearch-hidden .dgwt-wcas-suggestions-wrapp {
    background: #ffffff !important;
    border-radius: 12px !important;
    border: none !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2) !important;
    margin-top: 8px !important;
}

/* Result Items */
.arh-fibosearch-hidden .dgwt-wcas-suggestion {
    padding: 12px 16px !important;
    border-bottom: 1px solid #f0f0f0 !important;
    transition: background 0.2s ease !important;
}

.arh-fibosearch-hidden .dgwt-wcas-suggestion:hover {
    background: #f8f9fa !important;
}

/* Product Image in Results */
.arh-fibosearch-hidden .dgwt-wcas-si {
    width: 50px !important;
    height: 50px !important;
    border-radius: 8px !important;
    overflow: hidden !important;
}

/* Product Title */
.arh-fibosearch-hidden .dgwt-wcas-st {
    font-weight: 500 !important;
    color: #1a1a2e !important;
}

/* Product Price - Make Visible */
.arh-fibosearch-hidden .dgwt-wcas-sp,
.arh-fibosearch-hidden .dgwt-wcas-suggestion-price {
    display: inline-block !important;
    color: #E31B23 !important;
    font-weight: 700 !important;
    font-size: 14px !important;
}

/* Sale Price */
.arh-fibosearch-hidden .dgwt-wcas-sp del {
    color: #999 !important;
    font-weight: 400 !important;
    text-decoration: line-through !important;
}

.arh-fibosearch-hidden .dgwt-wcas-sp ins {
    color: #E31B23 !important;
    text-decoration: none !important;
    font-weight: 700 !important;
}

/* View All Results Button */
.arh-fibosearch-hidden .dgwt-wcas-suggestion-more {
    background: linear-gradient(135deg, #E31B23 0%, #c41820 100%) !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    margin: 8px !important;
    text-align: center !important;
}

.arh-fibosearch-hidden .dgwt-wcas-suggestion-more:hover {
    background: linear-gradient(135deg, #c41820 0%, #a01518 100%) !important;
}

/* =========================================
   FiboSearch Mobile Responsive
   ========================================= */
@media (max-width: 767px) {
    .arh-fibosearch-hidden {
        min-width: auto !important;
        width: calc(100% - 24px) !important;
        max-width: calc(100% - 24px) !important;
        left: 12px !important;
        right: auto !important;
    }

    .arh-fibosearch-hidden .dgwt-wcas-search-wrapp {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* === GLOBAL: Disable FiboSearch Mobile Overlay on ALL screens === */
.dgwt-wcas-overlay-mobile,
.dgwt-wcas-om-bar,
.dgwt-wcas-open-om,
.dgwt-wcas-overlay,
.dgwt-wcas-overlay-mobile-on,
.dgwt-wcas-search-wrapp-mobile,
.dgwt-wcas-mobile-overlay-trigger-active,
.dgwt-wcas-enable-mobile-overlay,
.dgwt-wcas-open-om-btn {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

body.dgwt-wcas-overlay-mobile-on,
body.dgwt-wcas-open-om,
html.dgwt-wcas-overlay-mobile-on {
    overflow: auto !important;
    position: static !important;
}

/* =========================================
   Header Icons - Consistent Size
   ========================================= */
/* All header action icons same size */
.arh-icon-btn svg,
.arh-search-toggle svg,
.arh-wishlist-link svg,
.arh-profile-toggle svg,
.arh-modern-cart-btn .arh-modern-cart-icon svg {
    width: 24px !important;
    height: 24px !important;
}

/* =========================================
   Modern Cart Button Styles (Astra Integration)
   ========================================= */
.arh-astra-cart-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.arh-modern-cart-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.arh-modern-cart-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
    transform: scale(1.05);
}

.arh-modern-cart-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #E31B23;
}

.arh-modern-cart-icon svg {
    width: 28px;
    height: 28px;
    /* Flip horizontally to face right */
    transform: scaleX(-1);
}

/* Cart Count Badge - Force proper styling */
.arh-modern-cart-btn .arh-cart-count {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    min-width: 18px !important;
    height: 18px !important;
    padding: 0 5px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    line-height: 18px !important;
    text-align: center !important;
    color: #ffffff !important;
    background-color: #E31B23 !important;
    border-radius: 50% !important;
    transform: translate(25%, -25%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.arh-modern-cart-btn .arh-cart-count.hidden {
    display: none !important;
}

/* Hide Astra's default cart elements */
.arh-astra-hidden-cart {
    display: none !important;
}


/* =========================================
   Logo Default Styles
   ========================================= */
.arh-logo img {
    max-height: 48px;
    width: auto;
    height: auto;
}

.arh-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #E31B23;
}

/* =========================================
   Navigation Default Styles
   ========================================= */
.arh-nav>ul,
.arh-nav-menu {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
}

.arh-nav>ul>li,
.arh-nav-menu>li,
.arh-nav .arh-menu-item {
    margin-right: 32px;
    position: relative;
    list-style: none;
}

.arh-nav>ul>li:last-child,
.arh-nav-menu>li:last-child,
.arh-nav .arh-menu-item:last-child {
    margin-right: 0;
}

.arh-nav>ul>li>a,
.arh-nav-menu>li>a,
.arh-nav .arh-menu-item>a,
.arh-nav .arh-menu-link {
    color: #4A4A4A;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.arh-nav>ul>li>a:hover,
.arh-nav-menu>li>a:hover,
.arh-nav>ul>li.current-menu-item>a,
.arh-nav-menu>li.current-menu-item>a,
.arh-nav .arh-menu-item>a:hover,
.arh-nav .arh-menu-item.current-menu-item>a {
    color: #E31B23;
}

/* Dropdown Menu */
.arh-nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background-color: #ffffff;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    border-radius: 8px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    list-style: none;
}

.arh-nav>ul>li:hover>.sub-menu,
.arh-nav-menu>li:hover>.sub-menu,
.arh-nav .arh-menu-item.has-children:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.arh-nav .sub-menu li {
    margin: 0 !important;
}

.arh-nav .sub-menu li a {
    display: block;
    padding: 10px 20px;
    color: #4A4A4A;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.arh-nav .sub-menu li:hover {
    background-color: #F8F9FA;
}

/* =========================================
   Action Icons Default Styles
   ========================================= */
.arh-action-icons {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: visible;
}

/* Reduce action icons spacing on mobile */
@media (max-width: 767px) {
    .arh-action-icons {
        gap: 2px !important;
    }

    .arh-action-icons svg {
        width: 20px !important;
        height: 20px !important;
    }

    .arh-action-icons button,
    .arh-action-icons a.arh-icon-btn {
        padding: 6px !important;
    }

    /* Hide cart and profile icons on mobile - using higher specificity */
    .arh-action-icons .arh-cart-toggle,
    .arh-action-icons .arh-astra-cart-wrapper,
    .arh-action-icons .arh-profile-wrapper,
    .arh-action-icons .arh-login-toggle,
    .arh-action-icons .arh-account-icon,
    .arh-header-widget .arh-cart-toggle,
    .arh-header-widget .arh-login-toggle,
    .arh-header-widget .arh-profile-wrapper,
    button.arh-cart-toggle,
    button.arh-login-toggle,
    .arh-profile-wrapper {
        display: none !important;
        visibility: hidden !important;
    }
}

/* Load More Button Styles */
.arh-pp-load-more-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
}

.arh-pp-load-more-btn {
    background: linear-gradient(135deg, #E31B23 0%, #c41118 100%);
    color: #ffffff;
    padding: 16px 48px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(227, 27, 35, 0.3);
}

.arh-pp-load-more-btn:hover {
    background: linear-gradient(135deg, #c41118 0%, #a50f15 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 27, 35, 0.4);
}

.arh-pp-loading {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #E31B23;
    font-weight: 500;
}

.arh-spinner {
    animation: arh-spin 1s linear infinite;
}

@keyframes arh-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.arh-no-more-products {
    color: #6b7280;
    font-size: 14px;
}

/* =========================================
   SINGLE PRODUCT WIDGET STYLES
   ========================================= */

.arh-sp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: #ffffff;
}

.arh-sp-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

/* Gallery */
.arh-sp-gallery {
    position: sticky;
    top: 20px;
    align-self: start;
}

.arh-sp-main-image {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
    max-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arh-sp-featured-img {
    width: 100%;
    height: 100%;
    max-height: 500px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.arh-sp-main-image:hover .arh-sp-featured-img {
    transform: scale(1.05);
}

.arh-sp-thumbnails {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.arh-sp-thumb {
    width: 70px;
    height: 70px;
    min-width: 70px;
    min-height: 70px;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.arh-sp-thumb:hover,
.arh-sp-thumb.active {
    border-color: #E31B23;
}

.arh-sp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Info */
.arh-sp-info {
    padding: 10px 0;
}

.arh-sp-breadcrumb {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 15px;
}

.arh-sp-breadcrumb a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s ease;
}

.arh-sp-breadcrumb a:hover {
    color: #E31B23;
}

.arh-sp-breadcrumb span {
    margin: 0 8px;
}

.arh-sp-breadcrumb .current {
    color: #1f2937;
}

/* Top Row - Category Badge & Lab Test Button */
.arh-sp-top-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.arh-sp-category-badge {
    display: inline-block;
    background: #E31B23;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Lab Test Button - Text Link Style */
.arh-sp-lab-test-btn {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: #E31B23;
    text-decoration: none;
    transition: all 0.3s ease;
}

.arh-sp-lab-test-btn:hover {
    color: #c41118;
    text-decoration: underline;
}

.arh-sp-lab-test-btn::before {
    content: "→";
    margin-right: 6px;
    font-weight: bold;
}

.arh-sp-sku {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 8px;
}

.arh-sp-title {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.arh-sp-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.arh-sp-stars .star {
    font-size: 18px;
}

.arh-sp-stars .star.filled {
    color: #fbbf24;
}

.arh-sp-stars .star.half {
    color: #fbbf24;
}

.arh-sp-stars .star.empty {
    color: #d1d5db;
}

.arh-sp-review-count {
    font-size: 13px;
    color: #6b7280;
}

/* Price */
.arh-sp-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 20px;
}

/* Custom classes for price */
.arh-sp-price .original {
    font-size: 20px;
    font-weight: 500;
    color: #9ca3af;
    text-decoration: line-through;
    text-decoration-color: #6b7280;
    text-decoration-thickness: 2px;
}

.arh-sp-price .current {
    font-size: 32px;
    font-weight: 800;
    color: #E31B23;
}

/* WooCommerce default price structure (del = regular, ins = sale) */
.arh-sp-price del {
    font-size: 20px;
    font-weight: 500;
    color: #9ca3af !important;
    text-decoration: line-through;
    text-decoration-color: #6b7280;
    text-decoration-thickness: 2px;
    opacity: 1;
}

.arh-sp-price del .woocommerce-Price-amount,
.arh-sp-price del .amount {
    color: #9ca3af !important;
}

.arh-sp-price ins {
    font-size: 32px;
    font-weight: 800;
    color: #E31B23 !important;
    text-decoration: none;
    background: none;
}

.arh-sp-price ins .woocommerce-Price-amount,
.arh-sp-price ins .amount {
    color: #E31B23 !important;
}

/* Single price (no sale) */
.arh-sp-price>.woocommerce-Price-amount,
.arh-sp-price>.amount {
    font-size: 32px;
    font-weight: 800;
    color: #E31B23;
}

.arh-sp-short-desc {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 20px;
    padding: 15px;
    background: #f9fafb;
    border-radius: 8px;
    border-left: 4px solid #E31B23;
}

.arh-sp-availability {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 20px;
}

.arh-sp-availability strong {
    color: #059669;
}

/* Variations Table */
.arh-sp-variations-table {
    margin-bottom: 25px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.arh-sp-variations-table table {
    width: 100%;
    border-collapse: collapse;
}

.arh-sp-variations-table th {
    background: #f3f4f6;
    padding: 12px 15px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    border-bottom: 1px solid #e5e7eb;
}

.arh-sp-variations-table td {
    padding: 12px 15px;
    font-size: 14px;
    color: #4b5563;
    border-bottom: 1px solid #f3f4f6;
}

.arh-sp-variations-table tr:last-child td {
    border-bottom: none;
}

.arh-sp-variations-table tr:hover td {
    background: #f9fafb;
}

/* Cart Section */
.arh-sp-cart-section {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 25px;
}

.arh-sp-quantity {
    display: flex;
    align-items: center;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.arh-sp-qty-btn {
    width: 40px;
    height: 45px;
    background: #f9fafb;
    border: none;
    font-size: 18px;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s ease;
}

.arh-sp-qty-btn:hover {
    background: #e5e7eb;
}

.arh-sp-qty-input {
    width: 60px;
    height: 45px;
    text-align: center;
    border: none;
    border-left: 1px solid #e5e7eb;
    border-right: 1px solid #e5e7eb;
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    -moz-appearance: textfield;
}

.arh-sp-qty-input::-webkit-outer-spin-button,
.arh-sp-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.arh-sp-add-to-cart {
    flex: 1;
    background: #E31B23;
    color: #ffffff;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.arh-sp-add-to-cart:hover {
    background: #c41118;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(227, 27, 35, 0.3);
}

/* Payment Section */
.arh-sp-payment-section {
    padding: 20px;
    background: #f9fafb;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 25px;
    border: 1px solid #e5e7eb;
}

.arh-sp-secure-text {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 12px 0;
    font-weight: 500;
}

.arh-sp-payment-icons {
    max-width: 100%;
    height: auto;
    max-height: 40px;
    object-fit: contain;
}

/* ACF Product Details */
.arh-sp-product-details {
    background: #f9fafb;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #e5e7eb;
}

.arh-sp-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e5e7eb;
}

.arh-sp-detail-item:last-child {
    border-bottom: none;
}

.arh-sp-detail-label {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.arh-sp-detail-value {
    font-size: 14px;
    color: #1f2937;
    font-weight: 600;
}

/* FYI Notice Box */
.arh-sp-fyi-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px 18px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #FBBF24;
}

.arh-sp-fyi-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.arh-sp-fyi-text {
    font-size: 14px;
    line-height: 1.6;
    color: #78350F;
}

/* COA & Third Party Buttons */
.arh-sp-action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.arh-sp-coa-btn,
.arh-sp-third-party-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.arh-sp-coa-btn {
    background: #E31B23;
    color: #ffffff;
    border: 2px solid #E31B23;
}

.arh-sp-coa-btn:hover {
    background: transparent;
    color: #E31B23;
}

.arh-sp-coa-btn svg,
.arh-sp-third-party-btn svg {
    width: 16px;
    height: 16px;
}

.arh-sp-coa-date {
    font-weight: 400;
    font-size: 12px;
    opacity: 0.9;
}

.arh-sp-third-party-btn {
    background: transparent;
    color: #1f2937;
    border: 2px solid #e5e7eb;
}

.arh-sp-third-party-btn:hover {
    border-color: #E31B23;
    color: #E31B23;
}

/* Lab Test Button */
.arh-sp-lab-test-btn {
    display: inline-block;
    background: #E31B23;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    border: 2px solid #E31B23;
}

.arh-sp-lab-test-btn:hover {
    background: transparent;
    color: #E31B23;
}

/* Stock Availability */
.arh-sp-stock {
    margin-bottom: 20px;
}

.arh-sp-availability {
    font-size: 14px;
    color: #4b5563;
}

.arh-sp-availability.in-stock strong {
    color: #10B981;
}

.arh-sp-availability.out-of-stock {
    color: #EF4444;
    font-weight: 600;
}

/* Discount Table */
.arh-sp-discount-table {
    margin-bottom: 20px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.arh-sp-discount-table table {
    width: 100%;
    border-collapse: collapse;
}

.arh-sp-discount-table th {
    background: #f9fafb;
    padding: 12px 15px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    border-bottom: 1px solid #e5e7eb;
}

.arh-sp-discount-table td {
    padding: 12px 15px;
    text-align: center;
    font-size: 14px;
    color: #4b5563;
    border-bottom: 1px solid #f3f4f6;
}

.arh-sp-discount-table tr:last-child td {
    border-bottom: none;
}

.arh-sp-discount-table tr:hover td {
    background: #f9fafb;
}

/* Promo Banner */
.arh-sp-promo-banner {
    display: block;
    background: #E31B23;
    color: #ffffff;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

a.arh-sp-promo-banner:hover {
    background: #c41118;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(227, 27, 35, 0.3);
}

/* Description & Reviews Tabs */
.arh-sp-tabs-wrapper {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
}

.arh-sp-tabs {
    display: flex;
    gap: 5px;
    margin-bottom: 25px;
    border-bottom: 2px solid #e5e7eb;
}

.arh-sp-tab {
    padding: 12px 25px;
    background: transparent;
    border: none;
    font-size: 15px;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.arh-sp-tab::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: transparent;
    transition: all 0.3s ease;
}

.arh-sp-tab:hover {
    color: #1f2937;
}

.arh-sp-tab.active {
    color: #E31B23;
}

.arh-sp-tab.active::after {
    background: #E31B23;
}

.arh-sp-tabs-content {
    padding: 20px 0;
}

.arh-sp-tab-content {
    display: none;
}

.arh-sp-tab-content.active {
    display: block;
}

.arh-sp-tab-content p,
.arh-sp-tab-content ul,
.arh-sp-tab-content ol {
    font-size: 15px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 15px;
}

/* Review Items */
.arh-sp-review-item {
    padding: 20px;
    background: #f9fafb;
    border-radius: 10px;
    margin-bottom: 15px;
}

.arh-sp-review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.arh-sp-review-header strong {
    font-size: 15px;
    color: #1f2937;
}

.arh-sp-review-date {
    font-size: 13px;
    color: #9ca3af;
}

.arh-sp-review-content {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

/* COA List in Tabs */
.arh-sp-coas-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
}

.arh-sp-coa-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    text-decoration: none;
    color: #1f2937;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

.arh-sp-coa-list-item:hover {
    background: linear-gradient(135deg, #E31B23 0%, #c41118 100%);
    color: #ffffff;
    border-color: #E31B23;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(227, 27, 35, 0.25);
}

.arh-sp-coa-list-item svg {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
}

.arh-sp-coa-list-item span {
    font-size: 14px;
    font-weight: 600;
    flex: 1;
}

/* Additional Info Section */
.arh-sp-info-section {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e5e7eb;
}

.arh-sp-info-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.arh-sp-info-section h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 15px 0;
}

.arh-sp-info-section p {
    font-size: 15px;
    line-height: 1.7;
    color: #4b5563;
    margin: 0 0 10px 0;
}

.arh-sp-info-section p:last-child {
    margin-bottom: 0;
}

.arh-sp-info-section ul,
.arh-sp-info-section ol {
    font-size: 15px;
    line-height: 1.7;
    color: #4b5563;
    margin: 0 0 15px 0;
    padding-left: 20px;
}

.arh-sp-info-section li {
    margin-bottom: 8px;
}

/* Sale Badge */
.arh-sp-for-sale-badge {
    background: linear-gradient(135deg, #E31B23 0%, #c41118 100%);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 25px;
    display: inline-block;
}

.arh-sp-for-sale-badge strong {
    font-weight: 700;
}

/* Cart Section */
.arh-sp-cart-section {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 25px;
}

.arh-sp-quantity {
    display: flex;
    align-items: center;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.arh-sp-qty-btn {
    width: 45px;
    height: 45px;
    border: none;
    background: #f9fafb;
    font-size: 20px;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    transition: all 0.3s ease;
}

.arh-sp-qty-btn:hover {
    background: #e5e7eb;
    color: #E31B23;
}

.arh-sp-qty-input {
    width: 60px;
    height: 45px;
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    -moz-appearance: textfield;
}

.arh-sp-qty-input::-webkit-outer-spin-button,
.arh-sp-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.arh-sp-add-to-cart {
    flex: 1;
    background: linear-gradient(135deg, #E31B23 0%, #c41118 100%);
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.arh-sp-add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(227, 27, 35, 0.35);
}

.arh-sp-add-to-cart:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Payment Section */
.arh-sp-payment-section {
    text-align: center;
    padding: 20px;
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.arh-sp-secure-text {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 12px;
    font-weight: 500;
}

.arh-sp-payment-icons {
    max-width: 250px;
    height: auto;
}

/* Details Wrapper */
.arh-sp-details-wrapper {
    border-top: 1px solid #e5e7eb;
    padding-top: 40px;
}

.arh-sp-section {
    margin-bottom: 35px;
}

.arh-sp-desc-link {
    display: inline-block;
    color: #E31B23;
    font-size: 13px;
    margin-bottom: 15px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.arh-sp-desc-link:hover {
    color: #c41118;
    text-decoration: underline;
}

.arh-sp-section-title {
    font-size: 22px;
    font-weight: 700;
    color: #E31B23;
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #e5e7eb;
}

.arh-sp-desc-content {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.8;
}

.arh-sp-desc-content p {
    margin-bottom: 15px;
}

.arh-sp-details-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.arh-sp-details-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
}

.arh-sp-details-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #E31B23;
    font-size: 20px;
    line-height: 1;
}

.arh-sp-details-list li strong {
    color: #1f2937;
}

.arh-sp-notice {
    background: #fef3c7;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #f59e0b;
}

.arh-sp-notice .arh-sp-section-title {
    color: #92400e;
    border-bottom-color: #fcd34d;
}

.arh-sp-notice p {
    font-size: 14px;
    color: #92400e;
    margin: 0;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 991px) {
    .arh-sp-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .arh-sp-gallery {
        position: static;
    }
}

@media (max-width: 576px) {
    .arh-sp-container {
        padding: 15px;
    }

    .arh-sp-title {
        font-size: 22px;
    }

    .arh-sp-price .current {
        font-size: 24px;
    }

    .arh-sp-cart-section {
        flex-direction: column;
    }

    .arh-sp-quantity {
        width: 100%;
        justify-content: center;
    }

    .arh-sp-add-to-cart {
        width: 100%;
    }

    .arh-sp-thumb {
        width: 60px;
        height: 60px;
    }
}



.arh-action-icons svg {
    width: 24px;
    height: 24px;
}

.arh-action-icons button,
.arh-action-icons a.arh-icon-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4A4A4A;
}

.arh-action-icons button svg,
.arh-action-icons a.arh-icon-btn svg {
    stroke: currentColor;
}

.arh-action-icons button:hover,
.arh-action-icons a.arh-icon-btn:hover {
    color: #E31B23;
    background-color: #F8F9FA;
}

.arh-action-icons button:hover svg,
.arh-action-icons a.arh-icon-btn:hover svg {
    stroke: currentColor;
}

/* Astra Theme Cart Integration */
.arh-astra-cart-wrapper {
    display: flex;
    align-items: center;
}

.arh-astra-cart-wrapper .ast-site-header-cart {
    margin: 0;
    padding: 0;
}

.arh-astra-cart-wrapper .ast-cart-menu-wrap {
    display: flex;
    align-items: center;
}


/* Cart Badge */
.arh-cart-count {
    background-color: #E31B23;
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
}

/* =========================================
   Profile Icon and Dropdown
   ========================================= */
.arh-profile-wrapper {
    position: relative;
}

/* Hide profile icon on mobile (fixed footer has account) */
@media (max-width: 767px) {

    .arh-profile-wrapper,
    .arh-login-toggle {
        display: none !important;
    }
}

/* Login Toggle Button Styling (Logged Out Users) */
.arh-login-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 2px solid #E31B23;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: all 0.2s ease;
}

.arh-login-toggle:hover {
    background-color: rgba(227, 27, 35, 0.1);
    border-color: #E31B23;
    transform: scale(1.05);
}

.arh-login-toggle:hover svg {
    color: #E31B23;
    stroke: #E31B23;
}

.arh-login-toggle svg {
    width: 20px;
    height: 20px;
    color: #E31B23;
    stroke: #E31B23;
}

.arh-profile-avatar {
    background-color: #E31B23;
    color: #ffffff;
    transition: all 0.2s ease;
}

.arh-profile-toggle:hover .arh-profile-avatar {
    background-color: #C41820;
    transform: scale(1.05);
}

/* Profile Dropdown */
.arh-profile-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 224px;
    min-width: 220px;
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid #f3f4f6;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    z-index: 99999;
    pointer-events: none;
}

/* Invisible hover bridge - extends hover area to fill gap between icon and dropdown */
.arh-profile-dropdown::after {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
    background: transparent;
}

.arh-profile-wrapper:hover .arh-profile-dropdown,
.arh-profile-wrapper.active .arh-profile-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* Arrow indicator */
.arh-profile-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 16px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #ffffff;
}

.arh-profile-link svg {
    color: #6B7280;
    transition: color 0.2s ease;
}

.arh-profile-link:hover svg {
    color: #E31B23;
}

/* Profile User Info (Compact) */
.arh-profile-user-info {
    padding: 12px 16px;
    border-bottom: 1px solid #f3f4f6;
}

.arh-profile-name {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 2px 0;
    line-height: 1.3;
}

.arh-profile-email {
    font-size: 12px;
    color: #6b7280;
    margin: 0;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Profile Menu Links Container */
.arh-profile-dropdown .py-2 {
    padding: 6px 0;
}

/* Profile Menu Links */
.arh-profile-dropdown .arh-profile-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    font-size: 14px;
    color: #374151;
    text-decoration: none;
    transition: all 0.15s ease;
}

.arh-profile-dropdown .arh-profile-link:hover {
    background-color: #f9fafb;
    color: #E31B23;
}

/* Logout Button Section */
.arh-profile-dropdown .border-t {
    border-top: 1px solid #f3f4f6;
    padding: 6px 0;
}

/* =========================================
   Login Modal Styles
   ========================================= */
/* Login/Registration Overlay */
.arh-login-overlay {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.arh-login-overlay.active {
    opacity: 1;
    visibility: visible;
    display: block !important;
}

/* Login Modal */
.arh-login-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    width: calc(100% - 32px);
    max-width: 420px;
    max-height: 90vh;
    overflow-y: auto;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 24px;
    transform: translate(-50%, -50%) scale(0.9);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 10001;
}

.arh-login-modal.active {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translate(-50%, -50%) scale(1);
}

/* Login Modal Close Button */
.arh-login-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.15s ease;
    z-index: 10;
}

.arh-login-close:hover {
    background-color: #f3f4f6;
}

.arh-login-close svg {
    width: 20px;
    height: 20px;
    color: #6b7280;
}

/* Login Form Inputs */
.arh-login-form input[type="text"],
.arh-login-form input[type="password"] {
    width: 100%;
    padding: 10px 16px;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.arh-login-form input[type="text"]:focus,
.arh-login-form input[type="password"]:focus {
    outline: none;
    border-color: #E31B23;
    box-shadow: 0 0 0 3px rgba(227, 27, 35, 0.1);
}

/* Login Message (Error/Success) */
.arh-login-message {
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
}

.arh-login-message.error {
    background-color: #FEE2E2;
    color: #DC2626;
    border: 1px solid #FECACA;
}

.arh-login-message.success {
    background-color: #D1FAE5;
    color: #059669;
    border: 1px solid #A7F3D0;
}

/* Login Submit Button */
.arh-login-form button[type="submit"]:hover {
    background-color: #C41820;
}

/* Spinner Animation */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.animate-spin {
    animation: spin 1s linear infinite;
}

/* Additional Utility Classes for Modal */
.top-1\/2 {
    top: 50% !important;
}

.left-1\/2 {
    left: 50% !important;
}

.-translate-x-1\/2 {
    transform: translateX(-50%) !important;
}

.-translate-y-1\/2 {
    transform: translateY(-50%) !important;
}

/* Specific transform for login modal to avoid conflicts */
.arh-login-modal.-translate-x-1\/2.-translate-y-1\/2 {
    transform: translate(-50%, -50%) !important;
}

.arh-login-modal.active {
    transform: translate(-50%, -50%) scale(1) !important;
}

.w-full {
    width: 100% !important;
}

.max-w-md {
    max-width: 448px !important;
}

.p-6 {
    padding: 24px !important;
}

.md\:p-8 {
    padding: 24px !important;
}

@media (min-width: 768px) {
    .md\:p-8 {
        padding: 32px !important;
    }
}

.mb-2 {
    margin-bottom: 8px !important;
}

.mb-4 {
    margin-bottom: 16px !important;
}

.mb-6 {
    margin-bottom: 24px !important;
}

.my-6 {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
}

.ml-2 {
    margin-left: 8px !important;
}

.px-2 {
    padding-left: 8px !important;
    padding-right: 8px !important;
}

.py-2\.5 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.py-3 {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
}

.px-6 {
    padding-left: 24px !important;
    padding-right: 24px !important;
}

.text-gray-500 {
    color: #6B7280 !important;
}

.text-gray-600 {
    color: #4B5563 !important;
}

.text-red-600 {
    color: #DC2626 !important;
}

.bg-red-50 {
    background-color: #FEF2F2 !important;
}

.hover\:bg-red-50:hover {
    background-color: #FEF2F2 !important;
}

.border-gray-200 {
    border-color: #E5E7EB !important;
}

.border-gray-300 {
    border-color: #D1D5DB !important;
}

.rounded-lg {
    border-radius: 8px !important;
}

.focus\:outline-none:focus {
    outline: none !important;
}

.focus\:ring-2:focus {
    box-shadow: 0 0 0 2px rgba(227, 27, 35, 0.2) !important;
}

.focus\:ring-primary:focus {
    --tw-ring-color: rgba(227, 27, 35, 0.5);
}

.focus\:border-transparent:focus {
    border-color: transparent !important;
}

.duration-200 {
    transition-duration: 200ms !important;
}

.duration-300 {
    transition-duration: 300ms !important;
}

.truncate {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

.hover\:text-primary-dark:hover {
    color: #C41820 !important;
}

.bg-primary-dark {
    background-color: #C41820 !important;
}

.hover\:bg-primary-dark:hover {
    background-color: #C41820 !important;
}

/* Responsive: Mobile Modal Adjustments */
@media (max-width: 767px) {
    .arh-login-modal {
        width: calc(100% - 32px) !important;
        margin: 0 16px;
    }
}

/* =========================================
   Responsive Navigation and Mobile Menu Toggle
   ========================================= */

/* Mobile: Hide navigation, show hamburger */
@media (max-width: 767px) {
    .arh-nav {
        display: none !important;
    }

    .arh-menu-toggle {
        display: flex !important;
    }
}

/* Desktop: Show navigation, hide hamburger */
@media (min-width: 768px) {
    .arh-nav {
        display: flex !important;
    }

    .arh-menu-toggle {
        display: none !important;
    }
}

/* =========================================
   Mobile Menu (from static template)
   ========================================= */
.mobile-menu {
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-menu.active {
    transform: translateX(0);
}

/* =========================================
   Header Widget Specific
   ========================================= */

/* Mobile Overlay */
.arh-mobile-overlay {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.arh-mobile-overlay.active {
    opacity: 1;
    visibility: visible;
    display: block !important;
}

/* Mobile Menu */
.arh-mobile-menu {
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out, visibility 0.3s ease-in-out;
    visibility: hidden;
    pointer-events: none;
}

.arh-mobile-menu.active {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
}

/* Mobile Menu Close Button */
.arh-menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 9999px;
    transition: background-color 0.2s ease;
}

.arh-menu-close:hover {
    background-color: #F8F9FA;
}

.arh-menu-close svg {
    width: 24px;
    height: 24px;
    stroke: #4A4A4A;
}

/* Search Overlay - Exceptional Styles with High Specificity */
.arh-search-overlay {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    position: fixed !important;
    inset: 0 !important;
    background-color: rgba(0, 0, 0, 0.9) !important;
    z-index: 100 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.arh-search-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Search Form Container */
.arh-search-overlay form {
    display: flex !important;
    background-color: #ffffff !important;
    border-radius: 9999px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3) !important;
    width: 100% !important;
    max-width: none !important;
    align-items: center !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Search Input - Exceptional Styles */
.arh-search-overlay form input[type="search"],
.arh-search-overlay form input[name="s"] {
    flex: 1 1 auto !important;
    padding: 16px 24px !important;
    font-size: 18px !important;
    line-height: 1.5 !important;
    border: none !important;
    outline: none !important;
    background: transparent !important;
    color: #1a1a1a !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    margin: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}

.arh-search-overlay form input[type="search"]::placeholder,
.arh-search-overlay form input[name="s"]::placeholder {
    color: #9ca3af !important;
    opacity: 1 !important;
}

/* Search Button - Exceptional Styles */
.arh-search-overlay form button[type="submit"] {
    padding: 16px 24px !important;
    background-color: #E31B23 !important;
    color: #ffffff !important;
    border: none !important;
    cursor: pointer !important;
    transition: background-color 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.arh-search-overlay form button[type="submit"]:hover {
    background-color: #C41820 !important;
}

.arh-search-overlay form button[type="submit"] svg {
    width: 24px !important;
    height: 24px !important;
    display: block !important;
}

/* =========================================
   Custom Search Results Page
   ========================================= */
.arh-search-results-page {
    background-color: #f8f9fa;
    min-height: 60vh;
    padding: 40px 0 80px;
}

.arh-search-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.arh-search-header {
    text-align: center;
    margin-bottom: 40px;
}

.arh-search-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.arh-search-title span {
    color: #E31B23;
}

.arh-search-count {
    font-size: 16px;
    color: #6b7280;
}

/* Search Form on Results Page */
.arh-search-form-wrapper {
    max-width: 600px;
    margin: 0 auto 48px;
}

.arh-search-form {
    display: flex;
    background: #ffffff;
    border-radius: 9999px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.arh-search-form input[type="search"] {
    flex: 1;
    padding: 16px 24px;
    font-size: 16px;
    border: none;
    outline: none;
    background: transparent;
}

.arh-search-form button {
    padding: 16px 24px;
    background-color: #E31B23;
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.arh-search-form button:hover {
    background-color: #C41820;
}

/* Search Results Grid */
.arh-search-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

@media (max-width: 1024px) {
    .arh-search-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .arh-search-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .arh-search-grid {
        grid-template-columns: 1fr;
    }
}

/* Search Product Card */
.arh-search-product {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.arh-search-product:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.arh-search-product-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.arh-search-product-image {
    position: relative;
    aspect-ratio: 1 / 1;
    background: #f3f4f6;
    overflow: hidden;
}

.arh-search-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.arh-search-product:hover .arh-search-product-image img {
    transform: scale(1.05);
}

.arh-search-product-placeholder {
    width: 100%;
    height: 100%;
    background: #e5e7eb;
}

.arh-search-badge-sale {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #E31B23;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.arh-search-product-info {
    padding: 16px;
}

.arh-search-product-name {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.arh-search-product-price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.arh-search-product-price .arh-price-old {
    font-size: 14px;
    color: #9ca3af;
    text-decoration: line-through;
}

.arh-search-product-price .arh-price-current {
    font-size: 16px;
    font-weight: 700;
    color: #E31B23;
}

/* Search Pagination */
.arh-search-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.arh-search-pagination a,
.arh-search-pagination span {
    padding: 10px 16px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    color: #374151;
    text-decoration: none;
    transition: all 0.3s ease;
}

.arh-search-pagination a:hover {
    background: #E31B23;
    border-color: #E31B23;
    color: #ffffff;
}

.arh-search-pagination .current {
    background: #E31B23;
    border-color: #E31B23;
    color: #ffffff;
}

/* No Results */
.arh-search-no-results {
    text-align: center;
    padding: 60px 20px;
}

.arh-no-results-icon {
    color: #d1d5db;
    margin-bottom: 24px;
}

.arh-search-no-results h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.arh-search-no-results p {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 24px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.arh-btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #E31B23;
    color: #ffffff;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.arh-btn-primary:hover {
    background: #C41820;
    transform: translateY(-2px);
}

/* =========================================
   Buttons and Hover Effects (from static template)
   ========================================= */
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(227, 27, 35, 0.4);
}

/* =========================================
   Card Hover (from static template)
   ========================================= */
.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(227, 27, 35, 0.15);
}

/* =========================================
   Glass Effect (from static template)
   ========================================= */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* =========================================
   Animation Float (from static template)
   ========================================= */
.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* =========================================
   Mobile Bottom Nav (from static template)
   ========================================= */
.mobile-bottom-nav {
    display: none;
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
    }
}

/* =========================================
   Mini Cart Sidebar (Right Side Popup)
   ========================================= */
.arh-cart-overlay {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.arh-cart-overlay.active {
    opacity: 1;
    visibility: visible;
    display: block !important;
}

.arh-mini-cart {
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
}

.arh-mini-cart.active {
    transform: translateX(0);
}

/* Free Shipping Progress Bar */
.arh-mini-cart .free-shipping-notice,
.arh-mini-cart .woocommerce-mini-cart__free-shipping {
    background: #E8EDF2;
    padding: 12px 16px;
    text-align: center;
    font-size: 14px;
    color: #1a1a2e;
    border-bottom: 3px solid #E31B23;
}

.arh-mini-cart .free-shipping-notice .amount,
.arh-mini-cart .woocommerce-mini-cart__free-shipping .amount {
    color: #E31B23;
    font-weight: 700;
}

/* Header */
.arh-mini-cart-header {
    background-color: #ffffff;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #E8EDF2;
}

.arh-mini-cart-header h3 {
    color: #1a1a2e;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.arh-mini-cart-header h3 svg {
    color: #1a1a2e;
}

.arh-mini-cart-header .arh-cart-item-count {
    background: #1a1a2e;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arh-cart-close {
    padding: 8px;
    border-radius: 8px;
    transition: background 0.2s;
}

.arh-cart-close:hover {
    background: #E8EDF2;
}

/* Mini Cart Content */
.arh-mini-cart-content {
    padding: 0;
    flex: 1;
    overflow-y: auto;
}

/* WooCommerce Mini Cart Styles */
.arh-mini-cart .woocommerce-mini-cart {
    list-style: none;
    padding: 0;
    margin: 0;
}

.arh-mini-cart .woocommerce-mini-cart-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border-bottom: 1px solid #E8EDF2;
    position: relative;
}

.arh-mini-cart .woocommerce-mini-cart-item:last-child {
    border-bottom: none;
}

/* Product Image with Sale Badge */
.arh-mini-cart .woocommerce-mini-cart-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    background: #E8EDF2;
}

.arh-mini-cart .woocommerce-mini-cart-item .onsale,
.arh-mini-cart .woocommerce-mini-cart-item .sale-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #E31B23;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 1;
}

/* Product Info */
.arh-mini-cart .woocommerce-mini-cart-item a:not(.remove) {
    color: #1a1a2e;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    display: block;
    margin-bottom: 4px;
}

.arh-mini-cart .woocommerce-mini-cart-item .quantity {
    color: #1a1a2e;
    font-weight: 700;
    font-size: 15px;
}

.arh-mini-cart .woocommerce-mini-cart-item .quantity .amount {
    color: #1a1a2e;
}

/* You Saved Text */
.arh-mini-cart .woocommerce-mini-cart-item .saved-amount {
    color: #22c55e;
    font-size: 13px;
    font-weight: 500;
    margin-top: 4px;
}

/* Remove Link */
.arh-mini-cart .woocommerce-mini-cart-item .remove {
    color: #1a1a2e !important;
    font-size: 13px;
    text-decoration: underline;
    display: block;
    margin-top: 8px;
    text-transform: uppercase;
    font-weight: 600;
}

.arh-mini-cart .woocommerce-mini-cart-item .remove:hover {
    color: #E31B23 !important;
}

/* Quantity Controls */
.arh-mini-cart .woocommerce-mini-cart-item .quantity-controls,
.arh-mini-cart .quantity-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.arh-mini-cart .quantity-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #E8EDF2;
    background: #fff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    color: #1a1a2e;
    transition: all 0.2s;
}

.arh-mini-cart .quantity-btn:hover {
    background: #E8EDF2;
}

.arh-mini-cart .quantity-value {
    font-weight: 600;
    font-size: 15px;
    color: #1a1a2e;
    min-width: 32px;
    text-align: center;
}

/* Empty Cart */
.arh-mini-cart .woocommerce-mini-cart__empty-message {
    text-align: center;
    padding: 60px 20px;
    color: #6B7280;
}

.arh-mini-cart .woocommerce-mini-cart__buttons {
    display: none;
    /* We have custom footer buttons */
}

/* Discount Code Section */
.arh-mini-cart .discount-section {
    padding: 16px 20px;
    border-top: 1px solid #E8EDF2;
}

.arh-mini-cart .discount-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    color: #1a1a2e;
}

.arh-mini-cart .discount-toggle svg {
    transition: transform 0.3s;
}

.arh-mini-cart .discount-toggle.active svg {
    transform: rotate(180deg);
}

.arh-mini-cart .discount-form {
    display: none;
    margin-top: 12px;
}

.arh-mini-cart .discount-form.active {
    display: flex;
    gap: 8px;
}

.arh-mini-cart .discount-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #E8EDF2;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
}

.arh-mini-cart .discount-input:focus {
    border-color: #1a1a2e;
}

.arh-mini-cart .discount-btn {
    padding: 12px 24px;
    background: #E31B23;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.arh-mini-cart .discount-btn:hover {
    background: #c41920;
}

/* Footer */
.arh-mini-cart-footer {
    padding: 20px;
    background: #fff;
    border-top: 1px solid #E8EDF2;
}

.arh-mini-cart-footer .cart-totals {
    margin-bottom: 16px;
}

.arh-mini-cart-footer .cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.arh-mini-cart-footer .cart-total-row.subtotal {
    color: #6B7280;
}

.arh-mini-cart-footer .cart-total-row.total {
    font-weight: 700;
    font-size: 18px;
    color: #1a1a2e;
    border-top: 1px solid #E8EDF2;
    padding-top: 12px;
    margin-top: 8px;
}

.arh-mini-cart-footer .cart-total-row .amount {
    font-weight: 700;
    color: #1a1a2e;
}

/* Proceed to Checkout Button */
.arh-mini-cart-footer .checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px;
    background: #E31B23;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s;
}

.arh-mini-cart-footer .checkout-btn:hover {
    background: #c41920;
    color: #fff;
}

/* Hide default buttons when using custom */
.arh-mini-cart-footer .flex.gap-3 {
    display: none;
}

/* Responsive Mini Cart */
@media (max-width: 480px) {
    .arh-mini-cart {
        max-width: 100% !important;
    }
}

/* =========================================
   Hero Section Widget Styles
   ========================================= */
.arh-hero {
    position: relative;
    overflow-x: hidden;
    font-family: 'Inter', sans-serif;
}

.arh-hero-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.arh-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 1024px) {
    .arh-hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
}

/* Glow Effects */
.arh-hero-glow-container {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    pointer-events: none;
}

.arh-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(64px);
}

.arh-hero-glow-1 {
    top: 80px;
    left: 40px;
    width: 288px;
    height: 288px;
    background-color: #E31B23;
}

.arh-hero-glow-2 {
    bottom: 80px;
    right: 40px;
    width: 384px;
    height: 384px;
    background-color: #3b82f6;
}

/* Hero Content */
.arh-hero-content {
    color: #ffffff;
}

.arh-hero-badge {
    display: inline-block;
    background-color: rgba(227, 27, 35, 0.2);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(227, 27, 35, 0.3);
}

.arh-hero-badge-icon {
    margin-right: 4px;
}

.arh-hero-heading {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 8px;
    color: #ffffff;
}

@media (min-width: 1024px) {
    .arh-hero-heading {
        font-size: 48px;
    }
}

.arh-hero-subheading {
    font-size: 20px;
    font-weight: 600;
    color: #e5e7eb;
    margin-bottom: 24px;
}

@media (min-width: 1024px) {
    .arh-hero-subheading {
        font-size: 24px;
    }
}

.arh-hero-description {
    font-size: 16px;
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 32px;
}

/* Hero Buttons */
.arh-hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 640px) {
    .arh-hero-buttons {
        flex-direction: row;
    }
}

.arh-btn-primary,
.arh-btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.arh-btn-primary {
    background-color: #E31B23;
    color: #ffffff;
    border: 2px solid #E31B23;
}

.arh-btn-primary:hover {
    background-color: #C41820;
    border-color: #C41820;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(227, 27, 35, 0.4);
}

.arh-btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #E31B23;
}

.arh-btn-secondary:hover {
    background-color: #E31B23;
    transform: translateY(-2px);
}

@media (min-width: 640px) {

    .arh-btn-primary,
    .arh-btn-secondary {
        padding: 16px 32px;
    }
}

/* Hero Carousel */
.arh-hero-carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: 32px 0;
}

.arh-carousel-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.arh-carousel-track {
    display: flex;
    align-items: stretch;
    gap: 30px;
    transition: transform 0.6s ease-in-out;
    flex-wrap: nowrap;
}

@media (min-width: 1024px) {
    .arh-carousel-track {
        gap: 30px;
    }
}

.arh-carousel-card {
    flex: 0 0 calc(50% - 15px);
    min-width: calc(50% - 15px);
    transition: all 0.3s ease;
    transform: none;
    opacity: 1;
    z-index: 1;
}

.arh-carousel-card.active {
    transform: none;
    opacity: 1;
    z-index: 1;
}

.arh-carousel-card-link {
    text-decoration: none;
    display: block;
}

.arh-carousel-card-inner {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

@media (min-width: 1024px) {
    .arh-carousel-card-inner {
        padding: 16px 20px;
    }
}

.arh-carousel-card.active .arh-carousel-card-inner {
    border-width: 2px;
    border-color: #E31B23;
    box-shadow: 0 25px 50px -12px rgba(227, 27, 35, 0.3);
    background-color: rgba(255, 255, 255, 0.15);
    /* Same padding as non-active for consistent sizing */
    padding: 16px 20px;
}

@media (min-width: 1024px) {
    .arh-carousel-card.active .arh-carousel-card-inner {
        padding: 16px 20px;
    }
}

.arh-carousel-card-image {
    width: 100px;
    height: 140px;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

@media (min-width: 1024px) {
    .arh-carousel-card-image {
        width: 120px;
        height: 160px;
    }
}

/* Active card has same image size - no jumping */
.arh-carousel-card.active .arh-carousel-card-image {
    width: 100px;
    height: 140px;
}

@media (min-width: 1024px) {
    .arh-carousel-card.active .arh-carousel-card-image {
        width: 120px;
        height: 160px;
    }
}

.arh-carousel-card-title {
    color: #ffffff;
    font-weight: 600;
    margin-top: 8px;
    font-size: 12px;
}

@media (min-width: 1024px) {
    .arh-carousel-card-title {
        font-size: 14px;
    }
}

.arh-carousel-card-subtitle {
    color: #E31B23;
    font-size: 12px;
    margin-top: 2px;
}

/* Slider Dots */
.arh-slider-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 64px;
}

.arh-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.arh-slider-dot:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.arh-slider-dot.active {
    background-color: #E31B23;
    width: 24px;
    border-radius: 5px;
}

/* Mobile: Center carousel - show 1 card */
@media (max-width: 767px) {
    .arh-hero-carousel-wrapper {
        width: 100%;
        padding: 24px 16px;
        box-sizing: border-box;
    }

    .arh-carousel-container {
        max-width: 100%;
        padding: 0;
        margin: 0 auto;
        justify-content: center;
        overflow: hidden;
    }

    .arh-carousel-track {
        justify-content: flex-start;
        width: 100%;
    }

    .arh-carousel-card {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .arh-carousel-card-inner {
        padding: 20px;
        max-width: 200px;
        margin: 0 auto;
    }

    .arh-carousel-card.active .arh-carousel-card-inner {
        padding: 24px;
    }

    .arh-carousel-card-image {
        width: 100px;
    }

    .arh-carousel-card.active .arh-carousel-card-image {
        width: 120px;
    }

    .arh-slider-dots {
        margin-top: 32px;
    }
}

/* =========================================
   Footer Widget Styles
   ========================================= */
.arh-footer {
    background-color: #333333 !important;
    color: #ffffff;
    padding: 64px 16px;
    font-family: 'Inter', sans-serif;
    width: 100%;
    box-sizing: border-box;
}

.arh-footer * {
    box-sizing: border-box;
}

.arh-footer-container {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

.arh-footer-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 48px !important;
    margin-bottom: 48px;
    width: 100%;
}

.arh-footer-column {
    min-width: 0;
}

@media (max-width: 991px) {
    .arh-footer-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 32px !important;
    }
}

@media (max-width: 575px) {
    .arh-footer-grid {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
}

/* Footer Logo */
.arh-footer-logo {
    margin-bottom: 24px;
}

.arh-footer-logo img {
    /* Height controlled by Elementor logo_width control */
    width: auto;
    max-width: 100%;
}

.arh-footer-logo img.arh-logo-invert {
    filter: brightness(0) invert(1);
}

.arh-footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

/* Footer About */
.arh-footer-about {
    color: #9ca3af;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Footer Column Titles */
.arh-footer-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    margin-top: 0;
}

/* Footer Links */
.arh-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.arh-footer-links li {
    margin-bottom: 12px;
}

.arh-footer-links li:last-child {
    margin-bottom: 0;
}

.arh-footer-link {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.arh-footer-link:hover {
    color: #E31B23;
}

/* Footer Contact */
.arh-footer-contact {
    font-size: 14px;
}

.arh-footer-company-name {
    color: #ffffff;
    font-weight: 600;
    margin: 0 0 12px 0;
}

.arh-footer-contact-text {
    color: #9ca3af;
    margin: 0 0 4px 0;
    line-height: 1.5;
}

.arh-footer-contact-label {
    color: #E31B23;
}

/* Footer Disclaimer */
.arh-footer-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    margin-bottom: 32px;
    color: #9ca3af;
    font-size: 14px;
    line-height: 1.6;
}

.arh-footer-disclaimer p {
    margin: 0 0 16px 0;
}

.arh-footer-disclaimer p:last-child {
    margin-bottom: 0;
}

.arh-footer-disclaimer strong {
    color: #E31B23;
}

/* Footer Copyright */
.arh-footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    text-align: center;
    color: #9ca3af;
    font-size: 14px;
}

.arh-footer-copyright p {
    margin: 0;
}

/* =========================================
   Mobile Bottom Navigation Styles
   ========================================= */
.arh-mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 1px solid #e5e7eb;
    z-index: 999;
    justify-content: space-around;
    align-items: center;
    padding: 8px 0 12px 0;
    box-shadow: 0 -4px 6px -1px rgb(0 0 0 / 0.1);
}

@media (max-width: 991px) {
    .arh-mobile-nav {
        display: flex;
    }
}

.arh-mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: #6b7280;
    transition: color 0.3s ease;
    position: relative;
    padding: 4px 12px;
}

.arh-mobile-nav-item:hover,
.arh-mobile-nav-item.active {
    color: #E31B23;
}

.arh-mobile-nav-item:hover svg,
.arh-mobile-nav-item.active svg {
    stroke: #E31B23;
}

.arh-mobile-nav-icon {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

.arh-mobile-nav-label {
    font-size: 10px;
    font-weight: 500;
}

.arh-mobile-nav-badge {
    position: absolute;
    top: 0;
    right: 4px;
    background-color: #E31B23;
    color: #ffffff;
    font-size: 10px;
    font-weight: 600;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Nav Avatar */
.arh-mobile-nav-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #E31B23;
}

.arh-mobile-nav-avatar img,
.arh-mobile-nav-avatar-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    border-radius: 50%;
}

/* Mobile Cart Trigger - Cursor and Interaction */
.arh-mobile-cart-trigger {
    cursor: pointer !important;
}

/* Badge Pulse Animation for Cart Updates */
@keyframes arh-badge-pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.4);
    }

    100% {
        transform: scale(1);
    }
}

.arh-mobile-nav-badge.arh-badge-pulse {
    animation: arh-badge-pulse 0.5s ease-out;
}

/* Desktop: hide mobile nav widget wrapper */
@media (min-width: 992px) {
    .elementor-widget-arh-mobile-nav {
        display: none !important;
    }
}

/* =========================================
   Featured Products Section Styles
   ========================================= */
.arh-featured-products {
    padding: 80px 0;
    background: #ffffff;
}

/* Section Header */
.arh-fp-header {
    text-align: center;
    margin-bottom: 48px;
}

.arh-fp-badge {
    display: inline-block;
    color: #E31B23;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.arh-fp-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 16px 0;
}

.arh-fp-desc {
    color: #6b7280;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Products Grid */
.arh-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

@media (max-width: 991px) {
    .arh-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 575px) {
    .arh-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .arh-fp-title {
        font-size: 28px;
    }
}

/* Product Card */
.arh-product-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}

.arh-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

/* Product Image */
.arh-product-image-wrap {
    position: relative;
    background: #e8f4fc;
    padding: 24px;
}

.arh-product-image {
    width: 100%;
    height: 180px;
    object-fit: contain;
}

.arh-product-placeholder {
    width: 100%;
    height: 180px;
    background: #d1d5db;
}

/* Badges */
.arh-product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 12px;
    border-radius: 9999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    z-index: 999 !important;
}

.arh-badge-bestseller {
    background: #E31B23;
}

.arh-badge-new {
    background: #22c55e;
}

.arh-badge-sale {
    background: #E31B23;
}

.arh-badge-hot {
    background: #f97316;
}

/* Product Content */
.arh-product-content {
    padding: 20px;
}

.arh-product-cat {
    display: block;
    font-size: 11px;
    color: #E31B23;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.arh-product-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.arh-product-title a {
    color: inherit;
    text-decoration: none;
}

.arh-product-title a:hover {
    color: #E31B23;
}

/* Rating */
.arh-product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.arh-stars {
    color: #fbbf24;
    font-size: 14px;
}

.arh-review-count {
    font-size: 12px;
    color: #6b7280;
}

/* Product Footer */
.arh-product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.arh-product-price {
    font-size: 20px;
    font-weight: 700;
    color: #E31B23;
}

.arh-product-price del {
    font-size: 14px;
    color: #9ca3af;
    margin-left: 8px;
}

.arh-product-price ins {
    text-decoration: none;
}

.arh-product-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #E31B23;
    color: #ffffff;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.arh-product-btn:hover {
    background: #c41920;
}

.arh-cart-icon {
    width: 20px;
    height: 20px;
}

.arh-no-products {
    grid-column: 1 / -1;
    text-align: center;
    color: #6b7280;
    padding: 40px;
}

/* Mobile adjustments */
@media (max-width: 575px) {
    .arh-product-image-wrap {
        padding: 16px;
    }

    .arh-product-image {
        height: 120px;
    }

    .arh-product-content {
        padding: 12px;
    }

    .arh-product-title {
        font-size: 14px;
    }

    .arh-product-price {
        font-size: 16px;
    }

    .arh-product-btn {
        width: 36px;
        height: 36px;
    }

    .arh-cart-icon {
        width: 16px;
        height: 16px;
    }
}

/* =========================================
   Wishlist & Cart Animation Styles
   ========================================= */

/* Wishlist Button on Product Card */
.arh-wishlist-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    color: #6b7280;
    padding: 0;
}

.arh-wishlist-btn:hover {
    background: #ffffff;
    transform: scale(1.1);
    color: #E31B23;
}

.arh-wishlist-btn svg,
.arh-heart-icon {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    transition: all 0.3s ease;
}

.arh-wishlist-btn:hover svg,
.arh-wishlist-btn:hover .arh-heart-icon {
    stroke: #E31B23;
}

.arh-wishlist-btn.active svg,
.arh-wishlist-btn.active .arh-heart-icon,
.arh-heart-icon.filled {
    fill: #E31B23;
    stroke: #E31B23;
}

.arh-heart-icon.pulse {
    animation: heartPulse 0.3s ease;
}

@keyframes heartPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }
}

/* Flying Cart Item */
.arh-flying-cart-item {
    background: #ffffff;
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Cart Bounce Animation */
.arh-cart-bounce {
    animation: cartBounce 0.3s ease;
}

@keyframes cartBounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }
}

/* Count Pulse Animation */
.arh-count-pulse {
    animation: countPulse 0.3s ease;
}

@keyframes countPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.5);
        background: #22c55e;
    }
}

/* Wishlist count on header */
.arh-wishlist-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #E31B23;
    color: #ffffff;
    font-size: 10px;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================================
   Favorites Page Section
   ========================================= */
.arh-favorites-section {
    padding: 40px 0;
}

.arh-favorites-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 32px 0;
}

.arh-favorites-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 991px) {
    .arh-favorites-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

.arh-favorites-empty {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    background: #f9fafb;
    border-radius: 16px;
}

.arh-empty-heart {
    width: 80px;
    height: 80px;
    color: #d1d5db;
    margin-bottom: 24px;
}

.arh-favorites-empty p {
    color: #6b7280;
    font-size: 16px;
    margin: 0 0 24px 0;
    max-width: 400px;
}

.arh-shop-btn {
    display: inline-block;
    background: #E31B23;
    color: #ffffff;
    padding: 12px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.arh-shop-btn:hover {
    background: #c41920;
    color: #ffffff;
}

/* =========================================
   Wishlist Button Styles
   ========================================= */
.arh-wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.arh-wishlist-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.arh-wishlist-btn .arh-heart-icon {
    width: 20px;
    height: 20px;
    stroke: #9ca3af;
    fill: transparent;
    transition: all 0.3s ease;
}

.arh-wishlist-btn .arh-heart-icon path {
    stroke: inherit;
    fill: inherit;
    transition: all 0.3s ease;
}

/* Active/Filled state - Red filled heart */
.arh-wishlist-btn.active .arh-heart-icon,
.arh-wishlist-btn .arh-heart-icon.filled {
    stroke: #E31B23 !important;
    fill: #E31B23 !important;
}

.arh-wishlist-btn.active .arh-heart-icon path,
.arh-wishlist-btn .arh-heart-icon.filled path {
    stroke: #E31B23 !important;
    fill: #E31B23 !important;
}

.arh-wishlist-btn.active {
    background: rgba(227, 27, 35, 0.1);
}

/* Pulse animation for heart */
.arh-heart-icon.pulse {
    animation: heart-pulse 0.3s ease;
}

@keyframes heart-pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

/* =========================================
   Order Tracking Widget Styles
   ========================================= */
.arh-order-tracking {
    padding: 40px 0;
}

.arh-order-tracking-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
}

/* Header */
.arh-track-header {
    text-align: center;
    margin-bottom: 32px;
}

.arh-track-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #E31B23 0%, #ff4d54 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.arh-track-icon svg {
    width: 32px;
    height: 32px;
    color: #ffffff;
}

.arh-track-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 12px 0;
}

.arh-track-desc {
    color: #6b7280;
    font-size: 15px;
    margin: 0;
    line-height: 1.6;
}

/* Form */
.arh-track-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.arh-track-input-group {
    position: relative;
}

.arh-track-input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #9ca3af;
    z-index: 1;
    pointer-events: none;
}

.arh-track-input-icon svg {
    width: 100%;
    height: 100%;
}

.arh-track-input {
    width: 100%;
    padding: 16px 16px 16px 52px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #f9fafb;
    box-sizing: border-box;
}

.arh-track-input:focus {
    outline: none;
    border-color: #E31B23;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(227, 27, 35, 0.1);
}

.arh-track-btn {
    background: #E31B23;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.arh-track-btn:hover {
    background: #c41920;
    transform: translateY(-2px);
}

.arh-track-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.arh-spinner {
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Error */
.arh-track-error {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 12px;
    color: #dc2626;
    margin-top: 16px;
}

.arh-track-error svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Result */
.arh-track-result {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid #e5e7eb;
}

.arh-track-order-info {
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.arh-track-order-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.arh-track-label {
    display: block;
    font-size: 12px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.arh-track-value {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
}

.arh-track-order-status {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: capitalize;
}

.arh-status-pending {
    background: #fef3c7;
    color: #92400e;
}

.arh-status-processing {
    background: #dbeafe;
    color: #1e40af;
}

.arh-status-on-hold {
    background: #fef3c7;
    color: #92400e;
}

.arh-status-completed {
    background: #d1fae5;
    color: #065f46;
}

.arh-status-shipped {
    background: #e0e7ff;
    color: #3730a3;
}

.arh-status-delivered {
    background: #d1fae5;
    color: #065f46;
}

.arh-track-order-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 32px;
}

.arh-track-order-date svg {
    width: 18px;
    height: 18px;
}

/* Timeline - Clean Progress Bar */
.arh-track-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 32px 0;
    padding: 20px 0;
}

/* Connecting Line Between Circles */
.arh-track-timeline::before {
    content: '';
    position: absolute;
    top: 43px;
    left: 12%;
    right: 12%;
    height: 3px;
    background: #e5e7eb;
    border-radius: 3px;
    z-index: 0;
}

/* Active Connecting Line - based on step */
.arh-track-timeline::after {
    content: '';
    position: absolute;
    top: 43px;
    left: 12%;
    height: 3px;
    background: #E31B23;
    border-radius: 3px;
    z-index: 0;
    transition: width 0.6s ease;
}

.arh-track-timeline.step-1::after {
    width: 0%;
}

.arh-track-timeline.step-2::after {
    width: 25%;
}

.arh-track-timeline.step-3::after {
    width: 50%;
}

.arh-track-timeline.step-4::after {
    width: 76%;
}

.arh-track-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
    z-index: 2;
    background: transparent !important;
}

.arh-track-step-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-weight: 700;
    font-size: 14px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.arh-track-step-icon svg {
    width: 22px;
    height: 22px;
}

/* Active Step - Only icon gets red background */
.arh-track-status-active {
    background: transparent !important;
}

.arh-track-status-active .arh-track-step-icon {
    background: #E31B23;
    border-color: #E31B23;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(227, 27, 35, 0.3);
}

/* Current Step - Pulsing Animation */
.arh-track-status-current .arh-track-step-icon {
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(227, 27, 35, 0.35);
    }

    50% {
        box-shadow: 0 4px 25px rgba(227, 27, 35, 0.55), 0 0 0 8px rgba(227, 27, 35, 0.1);
    }
}

.arh-track-step-label {
    margin-top: 12px;
    font-size: 13px;
    color: #9ca3af;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
}

.arh-track-status-active .arh-track-step-label {
    color: #1a1a2e;
    font-weight: 600;
}

/* Order Items */
.arh-track-items {
    margin-bottom: 24px;
}

.arh-track-items-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 16px 0;
}

.arh-track-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    background: #f9fafb;
    border-radius: 12px;
    margin-bottom: 8px;
}

.arh-track-item-img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 8px;
}

.arh-track-item-info {
    flex: 1;
}

.arh-track-item-name {
    display: block;
    font-weight: 500;
    color: #1a1a2e;
    font-size: 14px;
}

.arh-track-item-qty {
    font-size: 12px;
    color: #6b7280;
}

.arh-track-item-price {
    font-weight: 600;
    color: #E31B23;
}

/* Total */
.arh-track-total {
    display: flex;
    justify-content: space-between;
    padding: 16px;
    background: #1a1a2e;
    border-radius: 12px;
    color: #ffffff;
    font-weight: 600;
}

.arh-track-total-price {
    font-size: 20px;
}

/* Responsive */
@media (max-width: 767px) {
    .arh-order-tracking-card {
        padding: 24px 20px;
        margin: 0 12px;
        border-radius: 16px;
    }

    .arh-track-title {
        font-size: 22px;
    }

    .arh-track-desc {
        font-size: 14px;
    }

    .arh-track-timeline {
        margin: 24px 0;
        padding: 15px 0;
    }

    .arh-track-timeline::before,
    .arh-track-timeline::after {
        top: 24px;
        left: 6%;
        right: 6%;
    }

    .arh-track-step-icon {
        width: 40px;
        height: 40px;
        border-width: 2px;
    }

    .arh-track-step-icon svg {
        width: 18px;
        height: 18px;
    }

    .arh-track-step-label {
        font-size: 11px;
        margin-top: 8px;
    }

    .arh-track-order-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .arh-track-value {
        font-size: 20px;
    }

    .arh-track-item {
        padding: 10px;
    }

    .arh-track-item-img {
        width: 40px;
        height: 40px;
    }

    .arh-track-item-name {
        font-size: 13px;
    }

    .arh-track-total {
        padding: 14px;
    }

    .arh-track-total-price {
        font-size: 18px;
    }
}

@media (max-width: 400px) {
    .arh-track-step-icon {
        width: 34px;
        height: 34px;
    }

    .arh-track-step-icon svg {
        width: 16px;
        height: 16px;
    }

    .arh-track-step-label {
        font-size: 10px;
    }

    .arh-track-timeline::before,
    .arh-track-timeline::after {
        top: 20px;
    }
}

/* =========================================
   Features Bar Widget Styles
   ========================================= */
.arh-features-bar {
    background-color: #F8F9FA;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    font-family: 'Inter', sans-serif;
}

.arh-features-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

.arh-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.arh-feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.arh-feature-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(227, 27, 35, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.arh-feature-icon i,
.arh-feature-icon svg {
    font-size: 24px;
    width: 24px;
    height: 24px;
    color: #E31B23;
    fill: #E31B23;
}

.arh-feature-content {
    display: flex;
    flex-direction: column;
}

.arh-feature-title {
    font-size: 14px;
    font-weight: 600;
    color: #4A4A4A;
    margin: 0 0 2px 0;
    line-height: 1.3;
}

.arh-feature-subtitle {
    font-size: 13px;
    font-weight: 400;
    color: #6B7280;
    margin: 0;
    line-height: 1.3;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .arh-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

/* Responsive - Mobile */
@media (max-width: 640px) {
    .arh-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .arh-feature-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .arh-feature-icon {
        width: 40px;
        height: 40px;
    }

    .arh-feature-icon i,
    .arh-feature-icon svg {
        font-size: 20px;
        width: 20px;
        height: 20px;
    }

    .arh-feature-title {
        font-size: 13px;
    }

    .arh-feature-subtitle {
        font-size: 12px;
    }
}

/* =========================================
   Product Rating Styles
   ========================================= */
.arh-product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 6px 0 12px 0;
}

.arh-stars {
    display: flex;
    align-items: center;
    gap: 1px;
}

.arh-star {
    font-size: 14px;
    line-height: 1;
}

.arh-star.filled {
    color: #facc15;
}

.arh-star.half {
    color: #facc15;
    position: relative;
}

.arh-star.empty {
    color: #d1d5db;
}

.arh-review-count {
    font-size: 13px;
    color: #6b7280;
}

/* Responsive */
@media (max-width: 640px) {
    .arh-star {
        font-size: 12px;
    }

    .arh-review-count {
        font-size: 11px;
    }

    .arh-product-rating {
        margin: 4px 0 10px 0;
    }
}

/* =========================================
   Best Sellers Widget Styles
   ========================================= */
.arh-best-sellers {
    background-color: #F8F9FA;
    font-family: 'Inter', sans-serif;
}

.arh-bs-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Header */
.arh-bs-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 48px;
}

.arh-bs-header-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.arh-bs-badge {
    font-size: 12px;
    font-weight: 600;
    color: #E31B23;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.arh-bs-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.2;
}

.arh-bs-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #E31B23;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.arh-bs-view-all:hover {
    gap: 16px;
}

/* Products Grid */
.arh-bs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Product Card */
.arh-bs-card {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.arh-bs-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Image Section */
.arh-bs-image-wrap {
    position: relative;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.arh-bs-image {
    width: 100%;
    height: 160px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.arh-bs-card:hover .arh-bs-image {
    transform: scale(1.05);
}

/* Rank Badge */
.arh-bs-rank-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: #eab308;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
}

.arh-bs-rank-badge svg {
    width: 12px;
    height: 12px;
}

/* Wishlist Button in Best Sellers */
.arh-bs-image-wrap .arh-wishlist-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
}

/* Content Section */
.arh-bs-content {
    padding: 20px;
}

.arh-bs-category {
    font-size: 11px;
    font-weight: 600;
    color: #E31B23;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.arh-bs-name {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 6px 0 8px 0;
    line-height: 1.3;
}

.arh-bs-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.arh-bs-name a:hover {
    color: #E31B23;
}

/* Footer */
.arh-bs-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
}

.arh-bs-price {
    font-size: 20px;
    font-weight: 700;
    color: #E31B23;
}

.arh-bs-price del {
    font-size: 14px;
    font-weight: 400;
    color: #9ca3af;
    margin-left: 8px;
}

.arh-bs-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #E31B23;
    color: #ffffff;
    border-radius: 10px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    padding: 0;
}

.arh-bs-btn svg {
    stroke: #ffffff;
}

.arh-bs-btn:hover {
    background-color: #c4161e;
    transform: scale(1.05);
}

.arh-bs-btn svg {
    width: 20px;
    height: 20px;
}

/* Featured Products Cart Button */
.arh-product-btn,
.arh-pp-btn,
.arh-ajax-add-to-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #E31B23;
    color: #ffffff;
    border-radius: 10px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    padding: 0;
}

.arh-product-btn:hover,
.arh-pp-btn:hover,
.arh-ajax-add-to-cart:hover {
    background-color: #c4161e;
    transform: scale(1.05);
}

.arh-product-btn svg,
.arh-pp-btn svg,
.arh-ajax-add-to-cart svg {
    width: 20px;
    height: 20px;
    stroke: #ffffff;
}

.arh-ajax-add-to-cart.loading {
    opacity: 0.7;
    pointer-events: none;
}

.arh-ajax-add-to-cart.added {
    background-color: #22c55e;
}

/* Trending Products Cart Button */
.arh-trending-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .arh-bs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .arh-bs-title {
        font-size: 28px;
    }

    .arh-bs-header {
        margin-bottom: 32px;
    }
}

/* Responsive - Mobile */
@media (max-width: 640px) {
    .arh-bs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .arh-bs-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 24px;
    }

    .arh-bs-title {
        font-size: 24px;
    }

    .arh-bs-image-wrap {
        padding: 16px;
        min-height: 140px;
    }

    .arh-bs-image {
        height: 100px;
    }

    .arh-bs-rank-badge {
        padding: 4px 8px;
        font-size: 10px;
    }

    .arh-bs-content {
        padding: 12px;
    }

    .arh-bs-name {
        font-size: 14px;
    }

    .arh-bs-price {
        font-size: 16px;
    }

    .arh-bs-btn {
        width: 36px;
        height: 36px;
    }
}

/* =========================================
   Trending Products Carousel Styles
   ========================================= */
.arh-trending {
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.arh-trending-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Header */
.arh-trending-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 48px;
}

.arh-trending-header-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.arh-trending-badge {
    font-size: 12px;
    font-weight: 600;
    color: #E31B23;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.arh-trending-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.2;
}

/* Navigation Arrows */
.arh-trending-arrows {
    display: flex;
    gap: 8px;
}

.arh-trending-arrow {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    border: 1px solid #d1d5db;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background-color: transparent;
    color: #9ca3af;
    flex-shrink: 0;
    padding: 0;
}

.arh-trending-arrow svg {
    width: 20px !important;
    height: 20px !important;
    stroke: currentColor !important;
    stroke-width: 2 !important;
    fill: none !important;
    display: block !important;
}

.arh-trending-arrow svg path {
    stroke: currentColor !important;
    stroke-width: 2 !important;
    fill: none !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
}

/* Fallback arrows using CSS - if SVG doesn't show */
.arh-trending-prev::before {
    content: '‹';
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
    position: absolute;
}

.arh-trending-next::before {
    content: '›';
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
    position: absolute;
}

/* Hide pseudo-element if Font Awesome icon is visible */
.arh-trending-arrow:has(i.fa)::before {
    display: none;
}

/* Inactive arrow button - transparent with thin gray border, faded icon */
.arh-trending-arrow:not(.active) {
    background-color: transparent !important;
    border: 1px solid #d1d5db !important;
    color: #9ca3af !important;
}

.arh-trending-arrow:not(.active):hover {
    background-color: #f9fafb !important;
    border-color: #9ca3af !important;
    color: #6b7280 !important;
}

/* Active arrow button - solid red filled */
.arh-trending-arrow.active {
    background-color: #E31B23 !important;
    border: none !important;
    color: #ffffff !important;
}

.arh-trending-arrow.active:hover {
    background-color: #C41820 !important;
}

.arh-trending-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Carousel */
.arh-trending-carousel {
    overflow: hidden;
    position: relative;
    user-select: none;
}

.arh-trending-track {
    display: flex;
    gap: 16px;
    transition: transform 0.4s ease;
}

/* Product Card */
.arh-trending-card {
    flex-shrink: 0;
    width: calc((100% - 80px) / 6);
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.arh-trending-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Image Section */
.arh-trending-image-wrap {
    position: relative;
    background-color: #e8f4fc;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arh-trending-image {
    width: 100%;
    height: 100px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.arh-trending-card:hover .arh-trending-image {
    transform: scale(1.05);
}

/* Badge Tag */
.arh-trending-badge-tag {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 50px;
    z-index: 2;
}

.arh-trending-badge-tag.arh-badge-hot {
    background-color: rgba(227, 27, 35, 0.1);
    color: #E31B23;
}

.arh-trending-badge-tag.arh-badge-new {
    background-color: rgba(22, 163, 74, 0.1);
    color: #16a34a;
}

/* Content Section */
.arh-trending-content {
    padding: 12px;
}

.arh-trending-name {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 6px 0;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.arh-trending-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.arh-trending-name a:hover {
    color: #E31B23;
}

.arh-trending-rating {
    display: flex;
    gap: 1px;
    margin-bottom: 6px;
}

.arh-trending-rating .arh-star {
    font-size: 11px;
}

.arh-trending-price {
    font-size: 16px;
    font-weight: 700;
    color: #E31B23;
}

.arh-trending-price del {
    font-size: 12px;
    font-weight: 400;
    color: #9ca3af;
    margin-left: 6px;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .arh-trending-card {
        width: calc((100% - 32px) / 3);
    }

    .arh-trending-title {
        font-size: 28px;
    }

    .arh-trending-header {
        margin-bottom: 32px;
    }

    .arh-trending-arrows {
        display: flex;
    }
}

/* Responsive - Mobile */
@media (max-width: 640px) {
    .arh-trending-card {
        width: calc((100% - 16px) / 2);
    }

    .arh-trending-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 24px;
    }

    .arh-trending-title {
        font-size: 24px;
    }

    .arh-trending-arrows {
        display: flex;
    }

    .arh-trending-arrow {
        width: 40px;
        height: 40px;
    }

    .arh-trending-image-wrap {
        padding: 12px;
    }

    .arh-trending-image {
        height: 80px;
    }

    .arh-trending-content {
        padding: 10px;
    }

    .arh-trending-name {
        font-size: 12px;
    }

    .arh-trending-price {
        font-size: 14px;
    }
}

/* =========================================
   Shop Categories Widget Styles
   ========================================= */
.arh-shop-categories {
    background-color: #F8F9FA;
    font-family: 'Inter', sans-serif;
}

.arh-sc-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Header */
.arh-sc-header {
    text-align: center;
    margin-bottom: 64px;
}

.arh-sc-badge {
    font-size: 12px;
    font-weight: 600;
    color: #E31B23;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 8px;
}

.arh-sc-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.2;
}

/* Categories Grid */
.arh-sc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Category Card */
.arh-sc-card {
    position: relative;
    height: 256px;
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.arh-sc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Decorative Icon */
.arh-sc-icon {
    position: absolute;
    top: 24px;
    right: 24px;
    opacity: 0.2;
}

.arh-sc-icon svg {
    width: 128px;
    height: 128px;
    color: #ffffff;
}

/* Content */
.arh-sc-content {
    position: relative;
    z-index: 2;
}

.arh-sc-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.arh-sc-card-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 16px 0;
    line-height: 1.5;
}

/* Explore Link */
.arh-sc-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.arh-sc-card:hover .arh-sc-link {
    gap: 16px;
}

.arh-sc-link svg {
    width: 20px;
    height: 20px;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .arh-sc-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .arh-sc-title {
        font-size: 28px;
    }

    .arh-sc-header {
        margin-bottom: 40px;
    }

    .arh-sc-card {
        height: 220px;
        padding: 30px;
    }

    .arh-sc-icon svg {
        width: 100px;
        height: 100px;
    }
}

/* Responsive - Mobile */
@media (max-width: 640px) {
    .arh-sc-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .arh-sc-title {
        font-size: 24px;
    }

    .arh-sc-header {
        margin-bottom: 32px;
    }

    .arh-sc-card {
        height: 200px;
        padding: 24px;
    }

    .arh-sc-card-title {
        font-size: 20px;
    }

    .arh-sc-card-desc {
        font-size: 13px;
    }

    .arh-sc-icon svg {
        width: 80px;
        height: 80px;
    }
}

/* =========================================
   Why Choose Us Widget Styles
   ========================================= */
.arh-why-choose {
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.arh-wc-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Grid */
.arh-wc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

/* Left Content */
.arh-wc-content {
    max-width: 540px;
}

.arh-wc-badge {
    font-size: 12px;
    font-weight: 600;
    color: #E31B23;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 8px;
}

.arh-wc-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 24px 0;
    line-height: 1.2;
}

.arh-wc-desc {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0 0 32px 0;
}

/* Features */
.arh-wc-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.arh-wc-feature {
    display: flex;
    gap: 16px;
}

.arh-wc-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(227, 27, 35, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.arh-wc-icon svg {
    width: 24px;
    height: 24px;
    color: #E31B23;
}

.arh-wc-feature-content {
    flex: 1;
}

.arh-wc-feature-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.arh-wc-feature-desc {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

/* Right Image Section */
.arh-wc-image-section {
    position: relative;
}

.arh-wc-image-wrap {
    background-color: #e8f4fc;
    border-radius: 24px;
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arh-wc-image {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Stats Badge */
.arh-wc-stats {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background-color: #E31B23;
    color: #ffffff;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(227, 27, 35, 0.3);
}

.arh-wc-stats-number {
    font-size: 36px;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.arh-wc-stats-label {
    font-size: 14px;
    opacity: 0.8;
    margin: 4px 0 0 0;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .arh-wc-grid {
        gap: 48px;
    }

    .arh-wc-title {
        font-size: 28px;
    }

    .arh-wc-stats {
        bottom: -16px;
        left: -16px;
        padding: 20px;
    }

    .arh-wc-stats-number {
        font-size: 28px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .arh-wc-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .arh-wc-content {
        max-width: 100%;
    }

    .arh-wc-title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .arh-wc-desc {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .arh-wc-features {
        gap: 20px;
    }

    .arh-wc-icon {
        width: 40px;
        height: 40px;
    }

    .arh-wc-icon svg {
        width: 20px;
        height: 20px;
    }

    .arh-wc-image-wrap {
        padding: 24px;
        border-radius: 16px;
    }

    .arh-wc-stats {
        position: static;
        margin-top: 16px;
        border-radius: 12px;
        text-align: center;
    }
}

/* =========================================
   Testimonials Widget Styles
   ========================================= */
.arh-testimonials {
    background-color: #1a1a2e;
    font-family: 'Inter', sans-serif;
}

.arh-tm-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Header */
.arh-tm-header {
    text-align: center;
    margin-bottom: 64px;
}

.arh-tm-badge {
    font-size: 12px;
    font-weight: 600;
    color: #E31B23;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 8px;
}

.arh-tm-title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

/* Carousel Wrapper */
.arh-tm-carousel-wrapper {
    position: relative;
    padding: 0 50px;
}

/* Navigation Arrows */
.arh-tm-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    flex-shrink: 0;
    padding: 0;
}

.arh-tm-nav i {
    font-size: 16px !important;
    line-height: 1 !important;
}

.arh-tm-nav:not(.active):hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: rgba(255, 255, 255, 0.9);
}

/* Active nav button - solid red */
.arh-tm-nav.active {
    background-color: #E31B23 !important;
    border: none !important;
    color: #ffffff !important;
}

.arh-tm-nav.active:hover {
    background-color: #C41820 !important;
}

.arh-tm-nav-prev {
    left: 0;
}

.arh-tm-nav-next {
    right: 0;
}

/* Carousel */
.arh-tm-carousel {
    overflow: hidden;
}

.arh-tm-track {
    display: flex;
    gap: 24px;
    transition: transform 0.4s ease;
}

/* Card - 3 per row */
.arh-tm-card {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: calc((100% - 48px) / 3);
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
}

.arh-tm-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    color: inherit;
}

/* Stars */
.arh-tm-stars {
    color: #facc15;
    font-size: 18px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

/* Review Text */
.arh-tm-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0 0 24px 0;
}

/* Reviewer */
.arh-tm-reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.arh-tm-avatar {
    width: 36px;
    height: 36px;
    background-color: #E31B23;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 12px;
    flex-shrink: 0;
}

.arh-tm-avatar-img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.arh-tm-reviewer-info {
    flex: 1;
}

.arh-tm-reviewer-name {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 2px 0;
}

.arh-tm-reviewer-title {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .arh-tm-card {
        flex: 0 0 calc((100% - 48px) / 3);
        min-width: calc((100% - 48px) / 3);
        padding: 20px;
    }

    .arh-tm-title {
        font-size: 28px;
    }

    .arh-tm-header {
        margin-bottom: 40px;
    }

    .arh-tm-carousel-wrapper {
        padding: 0 40px;
    }

    .arh-tm-nav {
        width: 36px;
        height: 36px;
    }
}

/* Responsive - Tablet Small */
@media (max-width: 768px) {
    .arh-tm-card {
        flex: 0 0 calc((100% - 24px) / 2);
        min-width: calc((100% - 24px) / 2);
    }

    .arh-tm-carousel-wrapper {
        padding: 0 30px;
    }
}

/* Responsive - Mobile */
@media (max-width: 640px) {
    .arh-tm-card {
        flex: 0 0 100%;
        min-width: 100%;
        padding: 20px;
    }

    .arh-tm-title {
        font-size: 24px;
    }

    .arh-tm-header {
        margin-bottom: 32px;
    }

    .arh-tm-text {
        font-size: 14px;
    }

    .arh-tm-carousel-wrapper {
        padding: 0;
    }

    .arh-tm-nav {
        display: none;
    }
}

/* Trustpilot Branding - Link Card Styles */
a.arh-tm-card {
    text-decoration: none;
    display: block;
    cursor: pointer;
    color: inherit;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

a.arh-tm-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    color: inherit;
}

/* Trustpilot Badge - Same line as reviewer (right) */
.arh-tm-trustpilot {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.arh-tm-tp-logo {
    height: 14px;
    max-width: 70px !important;
    width: auto;
}

.arh-tm-tp-text {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-weight: 500;
}

/* Footer row - reviewer + trustpilot */
.arh-tm-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: auto;
    flex-wrap: nowrap;
}

/* Mobile adjustments */
@media (max-width: 640px) {
    a.arh-tm-card {
        padding: 20px;
    }

    .arh-tm-trustpilot {
        bottom: 12px;
        right: 12px;
    }

    .arh-tm-tp-logo {
        height: 14px;
    }
}

/* ==========================================================================
   FAQs Widget - Modern Design
   ========================================================================== */

/* Section */
.arh-faq {
    padding: 80px 0;
    position: relative;
}

.arh-faq-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
    position: relative;
}

/* Grid Layout */
.arh-faq-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: start;
}

/* Left Column */
.arh-faq-left {
    position: sticky;
    top: 100px;
}

.arh-faq-header {
    margin-bottom: 40px;
}

/* Badge */
.arh-faq-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(227, 27, 35, 0.2), rgba(227, 27, 35, 0.1));
    border: 1px solid rgba(227, 27, 35, 0.3);
    color: #E31B23;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.arh-faq-title {
    font-size: 52px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 16px 0;
    line-height: 1.1;
}

.arh-faq-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 32px 0;
    line-height: 1.7;
}

.arh-faq-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #E31B23 0%, #c41920 100%);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(227, 27, 35, 0.3);
}

.arh-faq-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(227, 27, 35, 0.4);
    color: #ffffff;
}

.arh-faq-btn svg {
    transition: transform 0.3s ease;
}

.arh-faq-btn:hover svg {
    transform: translateX(4px);
}

/* Image */
.arh-faq-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    position: relative;
}

.arh-faq-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(15, 15, 26, 0.8) 100%);
    pointer-events: none;
}

.arh-faq-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.arh-faq-image:hover img {
    transform: scale(1.05);
}

/* Right Column - Accordion */
.arh-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.arh-faq-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.arh-faq-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateX(8px);
}

.arh-faq-item.active {
    background: rgba(227, 27, 35, 0.08);
    border-color: rgba(227, 27, 35, 0.3);
    box-shadow: 0 0 40px rgba(227, 27, 35, 0.1);
}

.arh-faq-header-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

/* Number indicator */
.arh-faq-num {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.arh-faq-item.active .arh-faq-num {
    background: #E31B23;
    color: #ffffff;
}

.arh-faq-question {
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
    flex: 1;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.arh-faq-toggle {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.arh-faq-item.active .arh-faq-toggle {
    background: #E31B23;
    color: #ffffff;
    transform: rotate(180deg);
}

.arh-faq-icon-plus,
.arh-faq-icon-minus {
    transition: all 0.3s ease;
}

.arh-faq-item .arh-faq-icon-minus {
    display: none;
}

.arh-faq-item .arh-faq-icon-plus {
    display: block;
}

.arh-faq-item.active .arh-faq-icon-minus {
    display: block;
}

.arh-faq-item.active .arh-faq-icon-plus {
    display: none;
}

/* Content */
.arh-faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.arh-faq-answer {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin: 0;
    padding: 0 24px 24px 76px;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .arh-faq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .arh-faq-left {
        position: relative;
        top: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
    }

    .arh-faq-title {
        font-size: 40px;
    }
}

/* Responsive - Mobile */
@media (max-width: 640px) {
    .arh-faq-left {
        grid-template-columns: 1fr;
    }

    .arh-faq-title {
        font-size: 32px;
    }

    .arh-faq-item:hover {
        transform: none;
    }

    .arh-faq-header-btn {
        padding: 20px 16px;
        gap: 12px;
    }

    .arh-faq-num {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .arh-faq-question {
        font-size: 15px;
    }

    .arh-faq-answer {
        font-size: 14px;
        padding: 0 16px 20px 60px;
    }

    .arh-faq-accordion {
        gap: 12px;
    }
}

/* ==========================================================================
   Newsletter Widget
   ========================================================================== */

/* Section */
.arh-newsletter {
    background-color: #E31B23;
    padding: 60px 16px;
}

.arh-newsletter-container {
    max-width: 800px;
    margin: 0 auto;
}

.arh-newsletter-content {
    text-align: center;
}

.arh-newsletter-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.arh-newsletter-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 32px 0;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Form */
.arh-newsletter-form-inner {
    display: flex;
    align-items: center;
    gap: 0;
    max-width: 500px;
    margin: 0 auto;
}

.arh-newsletter-input {
    flex: 1;
    height: 48px !important;
    min-height: 48px !important;
    max-height: 48px !important;
    padding: 0 20px !important;
    font-size: 15px;
    border: none !important;
    border-radius: 8px 0 0 8px !important;
    background-color: #ffffff;
    color: #333;
    outline: none;
    min-width: 0;
    box-sizing: border-box !important;
    line-height: 48px;
}

.arh-newsletter-input::placeholder {
    color: #999;
}

.arh-newsletter-input:focus {
    box-shadow: none;
}

.arh-newsletter-btn {
    height: 48px !important;
    min-height: 48px !important;
    max-height: 48px !important;
    padding: 0 28px !important;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    background-color: #333333;
    border: none !important;
    border-radius: 0 8px 8px 0 !important;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    box-sizing: border-box !important;
    line-height: 1;
}

.arh-newsletter-btn:hover {
    background-color: #1a1a1a;
    transform: translateY(-2px);
}

.arh-newsletter-btn:disabled {
    opacity: 0.8;
    cursor: not-allowed;
}

/* Spinner animation */
.arh-newsletter-spinner {
    animation: arh-spin 1s linear infinite;
}

@keyframes arh-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Messages */
.arh-newsletter-message {
    margin-top: 16px;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
}

.arh-newsletter-success {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.arh-newsletter-error {
    background-color: rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

.arh-newsletter-info {
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

/* Responsive */
@media (max-width: 640px) {
    .arh-newsletter-title {
        font-size: 26px;
    }

    .arh-newsletter-subtitle {
        font-size: 14px;
    }

    .arh-newsletter-form-inner {
        flex-direction: column;
        gap: 12px;
    }

    .arh-newsletter-input {
        border-radius: 8px !important;
        width: 100%;
    }

    .arh-newsletter-btn {
        border-radius: 8px !important;
        width: 100%;
    }
}

/* ==========================================================================
   Hide Product Reviews/Ratings
   ========================================================================== */
.woocommerce ul.products li.product .star-rating,
.woocommerce ul.products li.product .woocommerce-product-rating,
.woocommerce .products .star-rating,
.woocommerce .products .review-count,
.products .star-rating,
.products .woocommerce-loop-product__link+.star-rating,
.woocommerce-loop-product__rating,
.star-rating {
    display: none !important;
}

/* ==========================================================================
   Custom Mini Cart (ameanopeptides.com Design)
   ========================================================================== */

/* Free Shipping Bar */
.arh-cart-free-shipping {
    background: #E8EDF2;
    padding: 16px 20px;
    text-align: center;
}

.arh-cart-shipping-text {
    font-size: 14px;
    color: #1a1a2e;
    margin: 0 0 8px 0;
}

.arh-cart-shipping-amount {
    color: #E31B23;
    font-weight: 700;
}

.arh-cart-shipping-bar {
    height: 4px;
    background: #fff;
    border-radius: 2px;
    overflow: hidden;
}

.arh-cart-shipping-progress {
    height: 100%;
    background: #E31B23;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.arh-cart-free-shipping-achieved {
    background: #22c55e;
}

.arh-cart-free-shipping-achieved .arh-cart-shipping-text {
    color: #fff;
    margin: 0;
}

/* Header Title Bar */
.arh-cart-title-bar {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #E8EDF2;
    gap: 16px;
}

.arh-cart-back-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #1a1a2e;
}

.arh-cart-title {
    flex: 1;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    text-align: center;
}

.arh-cart-item-count {
    background: #1a1a2e;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Empty Message */
.arh-cart-empty-message {
    text-align: center;
    padding: 60px 20px;
    color: #6B7280;
    margin: 0;
}

/* Cart Items List */
.arh-cart-items {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: calc(100vh - 450px);
    overflow-y: auto;
}

.arh-cart-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border-bottom: 1px solid #E8EDF2;
}

/* Product Image */
.arh-cart-item-image {
    position: relative;
    width: 70px;
    height: 70px;
    flex-shrink: 0;
}

.arh-cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    background: #E8EDF2;
}

.arh-cart-sale-badge {
    position: absolute;
    top: -4px;
    left: -4px;
    background: #E31B23;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 6px;
    border-radius: 4px;
    z-index: 1;
}

/* Product Info */
.arh-cart-item-info {
    flex: 1;
    min-width: 0;
}

.arh-cart-item-name {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.arh-cart-item-name a {
    color: inherit;
    text-decoration: none;
}

.arh-cart-item-name a:hover {
    color: #E31B23;
}

.arh-cart-item-price {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 4px 0;
}

.arh-cart-item-saved {
    font-size: 13px;
    color: #22c55e;
    font-weight: 500;
    margin: 0 0 8px 0;
}

.arh-cart-item-remove {
    font-size: 12px;
    color: #1a1a2e;
    text-decoration: underline;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.arh-cart-item-remove:hover {
    color: #E31B23;
}

/* Quantity Controls */
.arh-cart-item-qty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.arh-cart-qty-btn {
    width: 28px;
    height: 28px;
    border: 1px solid #E8EDF2;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    color: #1a1a2e;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.arh-cart-qty-btn:hover {
    background: #E8EDF2;
}

.arh-cart-qty-value {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
}

/* Discount Section */
.arh-cart-discount-section {
    padding: 16px 20px;
    border-bottom: 1px solid #E8EDF2;
}

.arh-cart-discount-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a2e;
    padding: 0;
}

.arh-cart-discount-arrow {
    transition: transform 0.3s ease;
}

.arh-cart-discount-form {
    display: none;
    gap: 8px;
    margin-top: 12px;
}

.arh-cart-discount-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #E8EDF2;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
}

.arh-cart-discount-input:focus {
    border-color: #1a1a2e;
}

.arh-cart-discount-apply {
    padding: 12px 24px;
    background: #E31B23;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
}

.arh-cart-discount-apply:hover {
    background: #c41920;
}

/* Totals */
.arh-cart-totals {
    padding: 16px 20px;
    border-bottom: 1px solid #E8EDF2;
}

.arh-cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.arh-cart-subtotal {
    color: #6B7280;
    font-size: 14px;
}

.arh-cart-total {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
}

/* Checkout Button */
.arh-cart-checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 20px;
    padding: 16px;
    background: #E31B23;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s;
}

.arh-cart-checkout-btn:hover {
    background: #c41920;
    color: #fff;
}

/* Coupon Message Styles */
.arh-cart-discount-message {
    margin-top: 10px;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
}

.arh-cart-discount-success {
    background: #dcfce7;
    color: #166534;
}

.arh-cart-discount-error {
    background: #fee2e2;
    color: #dc2626;
}

.arh-cart-discount-apply:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.arh-discount-spinner {
    animation: arh-spin 1s linear infinite;
}

@keyframes arh-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* =========================================
   APH Product Page Widget Styles
   ========================================= */
.arh-product-page {
    font-family: 'Inter', sans-serif;
}

.arh-pp-container {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

/* Header */
.arh-pp-header {
    margin-bottom: 32px;
}

.arh-pp-breadcrumb {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 16px;
}

.arh-pp-breadcrumb a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.arh-pp-breadcrumb a:hover {
    color: #E31B23;
}

.arh-pp-sep {
    margin: 0 8px;
    color: #d1d5db;
}

.arh-pp-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.arh-pp-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}

.arh-pp-result-count {
    font-size: 14px;
    color: #6b7280;
}

/* Product Grid */
.arh-pp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1024px) {
    .arh-pp-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .arh-pp-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .arh-pp-title {
        font-size: 24px;
    }
}

/* Product Card */
.arh-pp-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f3f4f6;
}

.arh-pp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(227, 27, 35, 0.15);
}

.arh-pp-image-wrap {
    background: #E8EDF2;
    padding: 24px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.arh-pp-image-wrap a {
    display: block;
}

.arh-pp-image {
    width: 100%;
    height: 160px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.arh-pp-card:hover .arh-pp-image {
    transform: scale(1.05);
}

/* Wishlist button in product page */
.arh-pp-image-wrap .arh-wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.arh-pp-image-wrap .arh-wishlist-btn:hover {
    background: #fee2e2;
}

.arh-pp-image-wrap .arh-wishlist-btn svg {
    width: 18px;
    height: 18px;
    stroke: #6b7280;
    transition: all 0.3s ease;
}

.arh-pp-image-wrap .arh-wishlist-btn:hover svg {
    stroke: #E31B23;
}

.arh-pp-image-wrap .arh-wishlist-btn.active svg {
    fill: #E31B23;
    stroke: #E31B23;
}

/* Product Content */
.arh-pp-content {
    padding: 20px;
}

.arh-pp-category {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: #E31B23;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: block;
}

.arh-pp-name {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.arh-pp-name a {
    color: #1a1a2e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.arh-pp-name a:hover {
    color: #E31B23;
}

/* Footer with price and button */
.arh-pp-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
}

.arh-pp-price {
    font-size: 18px;
    font-weight: 700;
    color: #E31B23;
}

.arh-pp-price del {
    color: #9ca3af;
    font-size: 14px;
    font-weight: 400;
    margin-right: 8px;
}

.arh-pp-price ins {
    text-decoration: none;
}

.arh-pp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #E31B23;
    color: #ffffff;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.arh-pp-btn:hover {
    background: #c41820;
    transform: scale(1.1);
}

.arh-pp-btn svg {
    width: 20px;
    height: 20px;
}

/* Pagination */
.arh-pp-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.arh-pp-pagination a,
.arh-pp-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 16px;
    font-size: 14px;
    font-weight: 500;
    color: #4a4a4a;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.arh-pp-pagination a:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
}

.arh-pp-pagination .current {
    background: #E31B23;
    color: #ffffff;
    border-color: #E31B23;
}

.arh-pp-pagination .prev,
.arh-pp-pagination .next {
    font-weight: 600;
}

.arh-pp-pagination .dots {
    border: none;
    background: transparent;
}

/* No products message */
.arh-no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #6b7280;
    font-size: 16px;
}

@media (max-width: 480px) {
    .arh-pp-content {
        padding: 16px;
    }

    .arh-pp-name {
        font-size: 14px;
    }

    .arh-pp-price {
        font-size: 16px;
    }

    .arh-pp-btn {
        width: 40px;
        height: 40px;
    }

    .arh-pp-pagination a,
    .arh-pp-pagination span {
        min-width: 36px;
        height: 36px;
        padding: 0 12px;
        font-size: 13px;
    }
}

/* =====================================================
   AJAX INSTANT SEARCH STYLES
   ===================================================== */

/* Inline Search Bar */
.arh-inline-search {
    position: relative;
    z-index: 50;
}

/* Search Form */
.arh-search-form-wrap {
    width: 100%;
}

.arh-search-form {
    transition: border-color 0.3s ease;
}

.arh-search-form:focus-within {
    border-color: var(--arh-primary, #a71b4a) !important;
}

#arh-search-input {
    font-size: 18px;
}

#arh-search-input::placeholder {
    color: #9ca3af;
}

/* Search Results Dropdown */
.arh-search-results {
    z-index: 10;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 transparent;
}

.arh-search-results::-webkit-scrollbar {
    width: 6px;
}

.arh-search-results::-webkit-scrollbar-track {
    background: transparent;
}

.arh-search-results::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

/* Loading Spinner */
.arh-search-spinner {
    width: 24px;
    height: 24px;
    border: 3px solid #e5e7eb;
    border-top-color: var(--arh-primary, #a71b4a);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Search Item */
.arh-search-item {
    text-decoration: none;
    color: inherit;
}

.arh-search-item:last-child {
    border-bottom: none;
}

.arh-search-item:hover {
    background-color: #f9fafb;
}

.arh-search-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.arh-search-item-title {
    font-size: 15px;
    line-height: 1.3;
    margin-bottom: 4px;
}

.arh-search-item-price {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.arh-search-item-price del {
    color: #9ca3af;
    font-weight: normal;
}

.arh-search-item-price ins {
    text-decoration: none;
    color: var(--arh-primary, #a71b4a);
}

/* Sale Tag */
.arh-search-sale {
    background: #ef4444;
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
}

/* View All Link */
.arh-view-all-link {
    text-decoration: none;
}

.arh-view-all-link:hover {
    text-decoration: underline;
}

.arh-search-count {
    color: #6b7280;
    font-weight: normal;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .arh-search-overlay {
        padding-top: 60px !important;
    }

    .arh-search-form-wrap {
        max-width: 100%;
    }

    #arh-search-input {
        font-size: 16px;
        padding: 12px 16px;
    }

    .arh-search-submit {
        padding: 0 16px;
    }

    .arh-search-results {
        max-height: 50vh;
    }

    .arh-search-item {
        padding: 12px;
    }

    .arh-search-item-image {
        width: 56px;
        height: 56px;
    }

    .arh-search-item-title {
        font-size: 14px;
    }

    .arh-search-item-price {
        font-size: 13px;
    }

    .arh-search-close {
        top: 12px !important;
        right: 12px !important;
    }

    .arh-search-close svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .arh-search-overlay {
        padding: 48px 12px 0 !important;
    }

    .arh-search-item-image {
        width: 48px;
        height: 48px;
    }

    .arh-search-no-results svg {
        width: 48px;
        height: 48px;
    }

    .arh-search-no-results p {
        font-size: 14px;
    }
}

/* =========================================
   FunnelKit (Fast Cart) Mobile Adjustments
   Ensure cart drawer fits above mobile footer nav
   ========================================= */
@media (max-width: 767px) {

    /* Cart overlay z-index */
    #fkcart-modal,
    .fkcart-modal {
        z-index: 999999 !important;
    }

    /* Cart drawer container - fit above footer nav (80px margin) */
    #fkcart-modal .fkcart-modal-container,
    .fkcart-modal-container,
    #fkcart-modal .fkcart-slider,
    .fkcart-slider {
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        bottom: 80px !important;
        height: calc(100vh - 80px) !important;
        max-height: calc(100vh - 80px) !important;
        overflow: visible !important;
    }

    /* Cart slider/inner width */
    #fkcart-modal .fkcart-slider,
    #fkcart-modal .fkcart-modal-inner,
    .fkcart-modal-inner {
        width: 90% !important;
        max-width: 380px !important;
        height: 100% !important;
        display: flex !important;
        flex-direction: column !important;
    }

    /* Cart content scrollable */
    #fkcart-modal .fkcart-body,
    #fkcart-modal .fkcart-content,
    #fkcart-modal .fkcart-items-wrap,
    .fkcart-body,
    .fkcart-content {
        flex: 1 !important;
        overflow-y: auto !important;
        padding-bottom: 20px !important;
    }

    /* Checkout footer - at bottom of sidebar */
    #fkcart-modal .fkcart-footer,
    #fkcart-modal .fkcart-checkout-wrap,
    #fkcart-modal .fkcart-footer-wrap,
    .fkcart-footer,
    .fkcart-checkout-wrap,
    .fkcart-footer-wrap {
        flex-shrink: 0 !important;
        background: #fff !important;
        padding: 16px !important;
        border-top: 1px solid #eee !important;
        position: relative !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Checkout button styling - icon on right */
    #fkcart-modal .fkcart-checkout-btn,
    #fkcart-modal .fkcart-button,
    #fkcart-modal a.fkcart-checkout-btn,
    #fkcart-checkout-button,
    .fkcart-checkout-btn {
        display: flex !important;
        flex-direction: row-reverse !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px !important;
        width: 100% !important;
        padding: 14px 20px !important;
        background-color: #E31B23 !important;
        color: #fff !important;
        text-align: center !important;
        font-weight: 600 !important;
        border-radius: 8px !important;
        text-decoration: none !important;
        margin-bottom: 10px !important;
    }

    /* Checkout button icon on right */
    #fkcart-checkout-button svg,
    .fkcart-checkout-btn svg,
    .fkcart-checkout-btn .fkcart-cart-icon,
    .fkcart-checkout-btn i {
        order: 2 !important;
        margin-left: 8px !important;
        margin-right: 0 !important;
    }

    /* Continue Shopping link styling - VISIBLE */
    #fkcart-modal .fkcart-continue-shopping,
    .fkcart-continue-shopping,
    .fkcart-footer a:not(.fkcart-checkout-btn),
    .fkcart-footer .fkcart-continue,
    a[href*="continue-shopping"],
    .fkcart-modal-footer a:not(.fkcart-checkout-btn) {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100% !important;
        text-align: center !important;
        padding: 12px !important;
        color: #666 !important;
        text-decoration: underline !important;
        font-size: 14px !important;
        cursor: pointer !important;
        background: transparent !important;
        border: none !important;
    }

    .fkcart-continue-shopping:hover,
    .fkcart-footer a:not(.fkcart-checkout-btn):hover {
        color: #E31B23 !important;
    }

    /* Hide mobile footer nav when FunnelKit cart is open */
    html.fkcart-trigger-open .arh-mobile-nav,
    html.fkcart-modal-open .arh-mobile-nav,
    body.fkcart-trigger-open .arh-mobile-nav,
    body.fkcart-modal-open .arh-mobile-nav {
        display: none !important;
        visibility: hidden !important;
    }

    /* When cart closed, nav visible */
    .arh-mobile-nav {
        z-index: 999998 !important;
    }

    /* Cart sidebar always on top */
    #fkcart-modal,
    .fkcart-modal,
    .fkcart-modal-container {
        z-index: 9999999 !important;
    }

    /* Overlay background */
    #fkcart-modal .fkcart-modal-overlay {
        background: rgba(0, 0, 0, 0.5) !important;
    }
}

/* =========================================
   WooCommerce Native Add to Cart Button Styling
   For widget product cards
   ========================================= */
.arh-bs-cart-btn a.add_to_cart_button,
.arh-trending-cart-btn a.add_to_cart_button,
.arh-product-cart-btn a.add_to_cart_button,
.arh-pp-cart-btn a.add_to_cart_button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    padding: 0 !important;
    background-color: #E31B23 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    font-size: 0 !important;
    line-height: 1 !important;
}

.arh-bs-cart-btn a.add_to_cart_button:hover,
.arh-trending-cart-btn a.add_to_cart_button:hover,
.arh-product-cart-btn a.add_to_cart_button:hover,
.arh-pp-cart-btn a.add_to_cart_button:hover {
    background-color: #c41820 !important;
    transform: scale(1.1) !important;
}

/* Add cart icon via pseudo element */
.arh-bs-cart-btn a.add_to_cart_button::before,
.arh-trending-cart-btn a.add_to_cart_button::before,
.arh-product-cart-btn a.add_to_cart_button::before,
.arh-pp-cart-btn a.add_to_cart_button::before {
    content: "" !important;
    display: block !important;
    width: 18px !important;
    height: 18px !important;
    background-image: url("data:image/svg+xml,%3Csvg fill='none' stroke='white' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M16 11V7a4 4 0 00-8 0v4M5 9h14l1 12H4L5 9z'%3E%3C/path%3E%3C/svg%3E") !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

/* Loading state */
.arh-bs-cart-btn a.add_to_cart_button.loading,
.arh-trending-cart-btn a.add_to_cart_button.loading,
.arh-product-cart-btn a.add_to_cart_button.loading,
.arh-pp-cart-btn a.add_to_cart_button.loading {
    opacity: 0.6 !important;
    pointer-events: none !important;
}

.arh-bs-cart-btn a.add_to_cart_button.loading::before,
.arh-trending-cart-btn a.add_to_cart_button.loading::before,
.arh-product-cart-btn a.add_to_cart_button.loading::before,
.arh-pp-cart-btn a.add_to_cart_button.loading::before {
    animation: spin 1s linear infinite !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10' stroke='white' stroke-width='3' opacity='0.3'%3E%3C/circle%3E%3Cpath fill='white' d='M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z'%3E%3C/path%3E%3C/svg%3E") !important;
}

/* Added state */
.arh-bs-cart-btn a.add_to_cart_button.added,
.arh-trending-cart-btn a.add_to_cart_button.added,
.arh-product-cart-btn a.add_to_cart_button.added,
.arh-pp-cart-btn a.add_to_cart_button.added {
    background-color: #28a745 !important;
}

.arh-bs-cart-btn a.add_to_cart_button.added::before,
.arh-trending-cart-btn a.add_to_cart_button.added::before,
.arh-product-cart-btn a.add_to_cart_button.added::before,
.arh-pp-cart-btn a.add_to_cart_button.added::before {
    background-image: url("data:image/svg+xml,%3Csvg fill='none' stroke='white' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M5 13l4 4L19 7'%3E%3C/path%3E%3C/svg%3E") !important;
}

/* Hide "View Cart" link that WooCommerce adds */
.arh-bs-cart-btn a.added_to_cart,
.arh-trending-cart-btn a.added_to_cart,
.arh-product-cart-btn a.added_to_cart,
.arh-pp-cart-btn a.added_to_cart {
    display: none !important;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* =========================================
   Mobile Header Cart - Hide on Mobile
   ========================================= */
@media (max-width: 767px) {

    .arh-custom-cart-wrapper,
    .arh-astra-cart-wrapper,
    .arh-header .arh-modern-cart-btn {
        display: none !important;
    }
}