/* ═══════════════════════════════════════════════════════════════
   REEMCO HOMEPAGE v3 — Premium Cinematic Design
   Brand: #1B5E3B (green) + #C6A96C (gold)
   ═══════════════════════════════════════════════════════════════ */

/* ─── Hero Slider ─── */
.rc-hero {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    height: 650px;
    overflow: hidden;
    direction: rtl;
    font-family: 'Cairo', sans-serif;
}

.rc-hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease, visibility 0s 1.2s;
    z-index: 0;
}
.rc-hero__slide.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 1.2s ease, visibility 0s 0s;
    z-index: 1;
}

/* Ken Burns zoom effect */
.rc-hero__slide-bg {
    position: absolute;
    inset: -5%;
    width: 110%;
    height: 110%;
}
.rc-hero__slide.active .rc-hero__slide-bg {
    animation: rcKenBurns 7s ease forwards;
}
.rc-hero__slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Cinematic overlay */
.rc-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(27,94,59,0.80) 0%,
        rgba(15,50,35,0.60) 40%,
        rgba(26,26,46,0.45) 70%,
        rgba(27,94,59,0.65) 100%
    );
}

/* Content */
.rc-hero__content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 32px 100px;
    z-index: 2;
}

.rc-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #C6A96C;
    padding: 10px 28px;
    border: 1px solid rgba(198,169,108,0.35);
    border-radius: 30px;
    backdrop-filter: blur(8px);
    background: rgba(198,169,108,0.08);
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(30px);
}
.rc-hero__slide.active .rc-hero__eyebrow {
    animation: rcSlideUp 0.7s cubic-bezier(.22,1,.36,1) 0.2s forwards;
}

.rc-hero__title {
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
    font-weight: 900;
    color: #fff;
    margin: 0 0 18px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.4);
    line-height: 1.35;
    opacity: 0;
    transform: translateY(30px);
}
.rc-hero__slide.active .rc-hero__title {
    animation: rcSlideUp 0.7s cubic-bezier(.22,1,.36,1) 0.35s forwards;
}
.rc-hero__title em {
    font-style: normal;
    color: #C6A96C;
    position: relative;
}
.rc-hero__title em::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #C6A96C, transparent);
    border-radius: 2px;
}

.rc-hero__desc {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.88);
    max-width: 650px;
    margin: 0 auto 32px;
    line-height: 1.85;
    opacity: 0;
    transform: translateY(30px);
}
.rc-hero__slide.active .rc-hero__desc {
    animation: rcSlideUp 0.7s cubic-bezier(.22,1,.36,1) 0.5s forwards;
}

.rc-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #C6A96C, #A88B4A);
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
    padding: 16px 42px;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(198,169,108,0.3);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s ease;
}
.rc-hero__slide.active .rc-hero__cta {
    animation: rcSlideUp 0.7s cubic-bezier(.22,1,.36,1) 0.65s forwards;
}
.rc-hero__cta:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 40px rgba(198,169,108,0.5);
    color: #fff;
}

/* Progress Bar Indicators */
.rc-hero__progress-bar {
    position: absolute;
    bottom: 85px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.rc-hero__progress-item {
    width: 60px;
    height: 4px;
    border-radius: 3px;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    overflow: hidden;
    transition: background 0.3s ease;
}
.rc-hero__progress-item:hover {
    background: rgba(255,255,255,0.35);
}
.rc-hero__progress-item.active {
    background: rgba(255,255,255,0.2);
}
.rc-hero__progress-fill {
    height: 100%;
    width: 0;
    background: #C6A96C;
    border-radius: 3px;
}
.rc-hero__progress-item.active .rc-hero__progress-fill {
    animation: rcProgressFill 6s linear forwards;
}

/* Navigation Arrows */
.rc-hero__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.35s ease;
}
.rc-hero__arrow:hover {
    background: rgba(198,169,108,0.25);
    border-color: rgba(198,169,108,0.45);
    transform: translateY(-50%) scale(1.08);
}
.rc-hero__arrow--prev { right: 28px; }
.rc-hero__arrow--next { left: 28px; }

/* Stats Bar */
.rc-hero__stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15,50,35,0.92);
    backdrop-filter: blur(16px);
    padding: 18px 0;
    z-index: 10;
    display: flex;
    justify-content: center;
    gap: 80px;
    border-top: 1px solid rgba(198,169,108,0.15);
}
.rc-hero__stat {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}
.rc-hero__stat-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(198,169,108,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #C6A96C;
}
.rc-hero__stat-text strong {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    color: #C6A96C;
}
.rc-hero__stat-text span {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.65);
}
.rc-hero__stat-text strong[data-count] {
    min-width: 60px;
    display: inline-block;
}


/* ═══════════════════════════════════════════════════════════════
   CATEGORY CARDS v3 — GRADIENT STYLE (No images, no counts)
   ═══════════════════════════════════════════════════════════════ */
.rc-categories-grid {
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    position: relative;
    padding: 60px 5% 50px;
    background: #f8f9fb;
    font-family: 'Cairo', sans-serif;
    direction: rtl;
}

/* Section Header — Shared Style */
.rc-categories-grid__header,
.rc-offers__header {
    text-align: center;
    margin-bottom: 40px;
}

.rc-categories-grid__badge,
.rc-offers__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #C6A96C;
    background: rgba(198,169,108,0.08);
    border: 1px solid rgba(198,169,108,0.2);
    padding: 6px 20px;
    border-radius: 30px;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

.rc-categories-grid__header h2,
.rc-offers__header h2 {
    font-size: 2.1rem;
    font-weight: 800;
    color: #1B5E3B;
    margin: 0 0 8px;
    position: relative;
    display: inline-block;
}
.rc-categories-grid__header h2::after,
.rc-offers__header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #C6A96C, transparent);
    margin: 12px auto 0;
    border-radius: 2px;
}
.rc-categories-grid__header p {
    font-size: 1rem;
    color: #777;
    margin: 0;
}

/* Cards Grid */
.rc-categories-grid__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual Gradient Card */
.rc-cat-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 28px 24px;
    border-radius: 16px;
    text-decoration: none;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(.22,1,.36,1);
    min-height: 110px;
}
.rc-cat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.12), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.rc-cat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.25);
    color: #fff;
}
.rc-cat-card:hover::before {
    opacity: 1;
}

/* Icon */
.rc-cat-card__icon-wrap {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 14px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    transition: all 0.4s ease;
}
.rc-cat-card:hover .rc-cat-card__icon-wrap {
    background: rgba(255,255,255,0.28);
    transform: scale(1.1);
}

/* Text */
.rc-cat-card__text {
    flex: 1;
    min-width: 0;
}
.rc-cat-card__name {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 4px;
    color: #fff;
}
.rc-cat-card__desc {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.75);
    margin: 0;
    line-height: 1.5;
}

/* Arrow */
.rc-cat-card__arrow {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateX(10px);
}
.rc-cat-card:hover .rc-cat-card__arrow {
    opacity: 1;
    transform: translateX(0);
    background: rgba(255,255,255,0.2);
    color: #fff;
}


/* ═══════════════════════════════════════════════════════════════
   EXCLUSIVE OFFERS SECTION (replaces promo banners)
   ═══════════════════════════════════════════════════════════════ */
.rc-offers {
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    position: relative;
    padding: 60px 5% 60px;
    background: #fff;
    font-family: 'Cairo', sans-serif;
    direction: rtl;
}

.rc-offers__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.rc-offer-card {
    background: #fff;
    border: 2px solid #eee;
    border-radius: 18px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    transition: all 0.4s cubic-bezier(.22,1,.36,1);
    position: relative;
    overflow: hidden;
}
.rc-offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(198,169,108,0.08), transparent);
    border-radius: 0 18px 0 80px;
    transition: all 0.4s ease;
}
.rc-offer-card:hover {
    border-color: #C6A96C;
    transform: translateY(-6px);
    box-shadow: 0 16px 45px rgba(198,169,108,0.15);
}
.rc-offer-card:hover::before {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(198,169,108,0.12), transparent);
}

.rc-offer-card__icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(27,94,59,0.06), rgba(198,169,108,0.06));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    transition: transform 0.4s ease;
}
.rc-offer-card:hover .rc-offer-card__icon {
    transform: scale(1.12) rotate(-5deg);
}

.rc-offer-card__content h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #1B5E3B;
    margin: 0 0 8px;
}
.rc-offer-card__content p {
    font-size: 0.88rem;
    color: #777;
    line-height: 1.7;
    margin: 0;
}

.rc-offer-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #C6A96C;
    text-decoration: none;
    padding: 8px 20px;
    border: 1px solid rgba(198,169,108,0.3);
    border-radius: 25px;
    transition: all 0.3s ease;
    margin-top: 4px;
}
.rc-offer-card__cta:hover {
    background: linear-gradient(135deg, #C6A96C, #A88B4A);
    color: #fff;
    border-color: transparent;
    transform: translateX(-4px);
}
.rc-offer-card__cta i {
    transition: transform 0.3s ease;
}
.rc-offer-card__cta:hover i {
    transform: translateX(-4px);
}


/* ═══════════════════════════════════════════════════════════════
   PRODUCT SECTION ENHANCEMENTS (New Arrivals + Best Sellers)
   ═══════════════════════════════════════════════════════════════ */

/* ── Section Wrapper — New Arrivals (d3a75de) ── */
body.home .elementor-element-d3a75de,
body.home .elementor-element-4414526 {
    padding: 60px 0 10px !important;
    background: #f8f9fb !important;
}

/* ── Section Header Container ── */
body.home .elementor-element-bdf6c04,
body.home .elementor-element-aebb7b4 {
    text-align: center !important;
    margin-bottom: 10px !important;
    padding: 0 20px !important;
}

/* ── Eyebrow (h6) — "أحدث المنتجات" / "تسوق" ── */
body.home .elementor-element-05fdfed .elementor-heading-title,
body.home .elementor-element-8e17a2c .elementor-heading-title {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 0.82rem !important;
    font-weight: 600 !important;
    color: #C6A96C !important;
    background: rgba(198,169,108,0.08) !important;
    border: 1px solid rgba(198,169,108,0.2) !important;
    padding: 6px 20px !important;
    border-radius: 30px !important;
    letter-spacing: 0.5px !important;
    font-family: 'Cairo', sans-serif !important;
    margin-bottom: 14px !important;
}

/* ── Main Title (h2) — "وصل حديثاً" / "الأكثر مبيعاً" ── */
body.home .elementor-element-4b9c4fe .elementor-heading-title,
body.home .elementor-element-e3f3398 .elementor-heading-title {
    font-size: 2.1rem !important;
    font-weight: 800 !important;
    color: #1B5E3B !important;
    font-family: 'Cairo', sans-serif !important;
    position: relative !important;
    display: inline-block !important;
    margin: 0 0 8px !important;
    padding-bottom: 18px !important;
}
body.home .elementor-element-4b9c4fe .elementor-heading-title::after,
body.home .elementor-element-e3f3398 .elementor-heading-title::after {
    content: '' !important;
    display: block !important;
    width: 60px !important;
    height: 3px !important;
    background: linear-gradient(90deg, #C6A96C, transparent) !important;
    margin: 12px auto 0 !important;
    border-radius: 2px !important;
}

/* ── Product Grid Container ── */
body.home .elementor-element-d7ca52a,
body.home .elementor-element-ba18a55 {
    padding: 10px 0 50px !important;
    background: #f8f9fb !important;
}

/* Global heading defaults */
body.home .elementor-heading-title {
    font-family: 'Cairo', sans-serif !important;
    font-weight: 800 !important;
    color: #1B5E3B !important;
}
body.home .elementor-widget-heading .elementor-heading-title {
    position: relative;
    display: inline-block;
}

/* Product cards — premium rounded + hover effects */
body.home .products .product {
    border-radius: 16px !important;
    overflow: hidden;
    border: 1px solid #eee !important;
    transition: all 0.4s cubic-bezier(.22,1,.36,1) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04) !important;
    background: #fff !important;
}
body.home .products .product:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 16px 40px rgba(0,0,0,0.1) !important;
    border-color: rgba(198,169,108,0.3) !important;
}

/* Product image zoom on hover */
body.home .products .product .astra-shop-thumbnail-wrap {
    overflow: hidden !important;
    border-radius: 16px 16px 0 0 !important;
}
body.home .products .product .attachment-woocommerce_thumbnail {
    transition: transform 0.6s cubic-bezier(.22,1,.36,1) !important;
}
body.home .products .product:hover .attachment-woocommerce_thumbnail {
    transform: scale(1.08) !important;
}

/* Product titles */
body.home .products .product h2.woocommerce-loop-product__title,
body.home .products .product .woocommerce-loop-product__title {
    font-family: 'Cairo', sans-serif !important;
    font-size: 0.88rem !important;
    font-weight: 600 !important;
    color: #2d2d2d !important;
    line-height: 1.6 !important;
    padding: 10px 14px 4px !important;
}

/* Prices — bigger, green */
body.home .products .product .price {
    font-size: 1.1rem !important;
    font-weight: 800 !important;
    color: #1B5E3B !important;
    font-family: 'Cairo', sans-serif !important;
    padding: 0 14px !important;
}

/* Star ratings — gold */
body.home .products .product .star-rating {
    color: #C6A96C !important;
}
body.home .products .product .star-rating span::before {
    color: #C6A96C !important;
}

/* Add to cart button — premium gradient */
body.home .products .product .button,
body.home .products .product .add_to_cart_button {
    background: linear-gradient(135deg, #1B5E3B, #0F3223) !important;
    color: #fff !important;
    border-radius: 12px !important;
    font-family: 'Cairo', sans-serif !important;
    font-weight: 700 !important;
    padding: 12px 16px !important;
    font-size: 0.85rem !important;
    transition: all 0.35s ease !important;
    border: none !important;
    margin: 8px 14px 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
}
body.home .products .product .button:hover,
body.home .products .product .add_to_cart_button:hover {
    background: linear-gradient(135deg, #C6A96C, #A88B4A) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(198,169,108,0.35) !important;
}

/* Wishlist heart icon */
body.home .products .product .yith-wcwl-add-to-wishlist {
    z-index: 5;
}


/* ═══════════════════════════════════════════════════════════════
   HIDE OLD / BROKEN ELEMENTOR SECTIONS
   ═══════════════════════════════════════════════════════════════ */

/* Hide BOTH broken Rev Slider shortcodes (render as raw text) */
body.home .elementor-element-292f777,
body.page-id-32 .elementor-element-292f777,
body.home .elementor-element-07a645f,
body.page-id-32 .elementor-element-07a645f {
    display: none !important;
}

/* Hide old promo banners — "مجموعات جديدة / تسوق معنا" */
body.home .elementor-element-9c8c9dd,
body.page-id-32 .elementor-element-9c8c9dd {
    display: none !important;
}

/* Hide old "لماذا تختارنا" section (replaced by our offers) */
body.home .elementor-element-76aea3f,
body.page-id-32 .elementor-element-76aea3f {
    display: none !important;
}

/* Hide old trust badges section (توصيل سريع / شحن مجاني / إرجاع) — covered by offers section */
body.home .elementor-element-a611072,
body.page-id-32 .elementor-element-a611072 {
    display: none !important;
}

/* ── Fix Spacing: Remove gaps between custom hero + Elementor product sections ── */
body.home .elementor-32 {
    margin-top: 0 !important;
    padding-top: 0 !important;
}
body.home .elementor-element-d3a75de {
    margin-top: 0 !important;
}
/* Kill any empty space from hidden sections */
body.home .elementor-element-eb51957 + *,
body.home .elementor-element-9c8c9dd + * {
    margin-top: 0 !important;
}


/* ═══════════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATION
   ═══════════════════════════════════════════════════════════════ */
.rc-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(.22,1,.36,1), transform 0.8s cubic-bezier(.22,1,.36,1);
}
.rc-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */
@keyframes rcSlideUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes rcKenBurns {
    from { transform: scale(1); }
    to   { transform: scale(1.08); }
}
@keyframes rcProgressFill {
    from { width: 0; }
    to   { width: 100%; }
}


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .rc-hero { height: 550px; }
    .rc-hero__stats { gap: 40px; }
    .rc-categories-grid__cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .rc-offers__cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .rc-offers__cards .rc-offer-card:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .rc-hero { height: 480px; }
    .rc-hero__content { padding: 40px 20px 100px; }
    .rc-hero__stats {
        gap: 16px;
        padding: 14px 16px;
    }
    .rc-hero__stat-text strong { font-size: 0.95rem; }
    .rc-hero__stat-text span { font-size: 0.7rem; }
    .rc-hero__stat-icon { width: 34px; height: 34px; font-size: 0.85rem; }
    .rc-hero__arrow { width: 40px; height: 40px; }
    .rc-hero__arrow--prev { right: 12px; }
    .rc-hero__arrow--next { left: 12px; }
    .rc-hero__cta { padding: 13px 30px; font-size: 0.95rem; }
    .rc-hero__progress-bar { bottom: 72px; }
    .rc-hero__progress-item { width: 40px; }

    .rc-categories-grid { padding: 40px 4% 35px; }
    .rc-categories-grid__cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .rc-cat-card { padding: 20px 16px; min-height: 90px; }
    .rc-cat-card__icon-wrap { width: 48px; height: 48px; min-width: 48px; font-size: 1.2rem; }
    .rc-cat-card__name { font-size: 1rem; }
    .rc-cat-card__desc { font-size: 0.75rem; }
    .rc-cat-card__arrow { display: none; }

    .rc-offers { padding: 40px 4% 40px; }
    .rc-offers__cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .rc-offers__cards .rc-offer-card:last-child {
        max-width: none;
    }
    .rc-offer-card { padding: 24px 20px; flex-direction: row; text-align: right; }
    .rc-offer-card__icon { width: 56px; height: 56px; min-width: 56px; font-size: 1.3rem; }
    .rc-offer-card__content h3 { font-size: 1rem; }
    .rc-offer-card__content p { font-size: 0.82rem; }
}

@media (max-width: 480px) {
    .rc-hero { height: 420px; }
    .rc-hero__stats { display: none; }
    .rc-hero__progress-bar { bottom: 18px; }
    .rc-hero__content { padding: 30px 16px 50px; }

    .rc-categories-grid__cards {
        grid-template-columns: 1fr;
    }
    .rc-cat-card { min-height: 80px; }
    .rc-categories-grid__header h2,
    .rc-offers__header h2 {
        font-size: 1.6rem;
    }
}
