/**
 * 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;
}

/* =========================================
   Top Bar Default Styles
   ========================================= */
.arh-top-bar {
    background-color: #4A4A4A;
    color: #ffffff;
    padding: 8px 0;
    font-size: 14px;
}

.arh-top-bar a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* =========================================
   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);
}

.arh-header-inner {
    padding: 16px;
}

/* =========================================
   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;
}

.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;
}

/* 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;
}

.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 {
    min-width: 220px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    z-index: 1000;
}

.arh-profile-wrapper:hover .arh-profile-dropdown,
.arh-profile-wrapper.active .arh-profile-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.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;
}

/* =========================================
   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 */
.arh-search-overlay {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.arh-search-overlay.active {
    opacity: 1;
    visibility: visible;
    display: flex !important;
}

/* =========================================
   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);
    padding: 20px 24px;
}

@media (min-width: 1024px) {
    .arh-carousel-card.active .arh-carousel-card-inner {
        padding: 24px 32px;
    }
}

.arh-carousel-card-image {
    width: 80px;
    height: auto;
    margin: 0 auto;
    display: block;
}

@media (min-width: 1024px) {
    .arh-carousel-card-image {
        width: 112px;
    }
}

.arh-carousel-card.active .arh-carousel-card-image {
    width: 112px;
}

@media (min-width: 1024px) {
    .arh-carousel-card.active .arh-carousel-card-image {
        width: 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%;
}

/* 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;
}

.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.9);
    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);
}

.arh-wishlist-btn:hover {
    background: #ffffff;
    transform: scale(1.1);
}

.arh-heart-icon {
    width: 20px;
    height: 20px;
    stroke: #E31B23;
    fill: transparent;
    transition: all 0.3s ease;
}

.arh-heart-icon.filled {
    fill: #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;
}

/* =========================================
   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;
}

.arh-bs-btn:hover {
    background-color: #c4161e;
    transform: scale(1.05);
}

.arh-bs-btn svg {
    width: 20px;
    height: 20px;
}

/* 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;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background-color: #f3f4f6;
    color: #6b7280;
}

.arh-trending-arrow:hover {
    background-color: #E31B23;
    color: #ffffff;
}

.arh-trending-arrow.active {
    background-color: #E31B23;
    color: #ffffff;
}

.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;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.arh-tm-nav:hover {
    background-color: #E31B23;
    border-color: #E31B23;
}

.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);
    }
}