/* ================================
   RZ SPORTS — GLOBAL STYLES
================================ */

:root {
    --yellow: #f5df00;
    --black: #080909;
    --dark: #111212;
    --dark-grey: #1c1d1d;
    --light-grey: #eeeeea;
    --grey-text: #8e8e8e;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: Arial, Helvetica, sans-serif;
}

button,
input {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.section {
    padding: 90px 0;
}

/* ================================
   ANNOUNCEMENT BAR
================================ */

.announcement-bar {
    min-height: 34px;
    padding: 8px 20px;
    background: var(--yellow);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
}

.announcement-bar p {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-align: center;
}

.announcement-bar span {
    margin: 0 15px;
}

/* ================================
   NAVIGATION
================================ */

.header {
    background: rgba(8, 9, 9, 0.96);
    border-bottom: 1px solid #252626;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    color: var(--white);
    text-decoration: none;
    font-size: 24px;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -1.5px;
}

.logo > span {
    font-size: 32px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    color: #bcbcbc;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    transition: 0.25s;
}

.nav-links a:hover {
    color: var(--yellow);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-button,
.cart-button {
    background: transparent;
    color: var(--white);
    border: 1px solid #3c3d3d;
    padding: 11px 14px;
    cursor: pointer;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.25s;
}

.search-button:hover,
.cart-button:hover {
    border-color: var(--yellow);
    color: var(--yellow);
}

.cart-button span {
    display: inline-flex;
    width: 22px;
    height: 22px;
    margin-left: 7px;
    background: var(--yellow);
    color: var(--black);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}

/* ================================
   HERO SECTION
================================ */

.hero {
    min-height: 620px;
    background:
        radial-gradient(
            circle at 77% 35%,
            rgba(245, 223, 0, 0.18),
            transparent 26%
        ),
        linear-gradient(115deg, #121313, #050606 72%);
    border-bottom: 1px solid #252626;
    overflow: hidden;
}

.hero-content {
    min-height: 620px;
    display: grid;
    grid-template-columns: 52% 48%;
    align-items: center;
}

.section-label {
    color: var(--yellow);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 18px;
}

.hero-text h1 {
    max-width: 700px;
    font-size: clamp(58px, 7vw, 94px);
    line-height: 0.88;
    letter-spacing: -6px;
    font-weight: 900;
    font-style: italic;
}

.hero-text h1 span {
    color: var(--yellow);
}

.hero-description {
    max-width: 510px;
    margin: 28px 0 35px;
    color: #a5a5a5;
    font-size: 16px;
    line-height: 1.7;
}

.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
    min-width: 205px;
    padding: 18px 22px;
    background: var(--yellow);
    color: var(--black);
    text-decoration: none;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    transition: 0.25s;
    clip-path: polygon(
        0 0,
        92% 0,
        100% 28%,
        100% 100%,
        0 100%
    );
}

.primary-button:hover {
    background: var(--white);
    transform: translateY(-3px);
}

.hero-design {
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.yellow-circle {
    width: 370px;
    height: 370px;
    position: absolute;
    border: 1px solid #5c5700;
    border-radius: 50%;
    box-shadow:
        0 0 0 35px rgba(245, 223, 0, 0.025),
        0 0 100px rgba(245, 223, 0, 0.08);
}

.hero-badge {
    width: 310px;
    height: 180px;
    position: relative;
    z-index: 2;
    background:
        linear-gradient(
            135deg,
            var(--yellow) 0%,
            #c5b400 42%,
            #f9e700 43%,
            #181818 44%
        );
    border-radius: 80px 30px 80px 30px;
    box-shadow: 0 35px 40px rgba(0, 0, 0, 0.6);
    transform: rotate(-12deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-badge::before {
    content: "";
    width: 70%;
    height: 12px;
    position: absolute;
    bottom: -15px;
    background: var(--white);
    border-bottom: 8px solid var(--yellow);
    border-radius: 50%;
}

.hero-badge strong {
    color: var(--white);
    font-size: 85px;
    line-height: 0.8;
    font-style: italic;
    letter-spacing: -8px;
}

.hero-badge span {
    margin-top: 16px;
    color: var(--yellow);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 5px;
}

.hero-design > p {
    position: absolute;
    bottom: 25px;
    right: 15px;
    color: transparent;
    -webkit-text-stroke: 1px #444646;
    font-size: 45px;
    line-height: 0.9;
    font-weight: 900;
    font-style: italic;
    text-align: right;
}

/* ================================
   BENEFITS
================================ */

.benefits {
    min-height: 110px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid #252626;
}

.benefit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 17px;
    border-right: 1px solid #252626;
}

.benefit:last-child {
    border-right: none;
}

.benefit-icon {
    color: var(--yellow);
    font-size: 28px;
    font-weight: 900;
}

.benefit h3 {
    margin-bottom: 5px;
    font-size: 11px;
    letter-spacing: 1px;
}

.benefit p {
    color: #777777;
    font-size: 12px;
}

/* ================================
   SECTION HEADING
================================ */

.section-heading {
    margin-bottom: 42px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}

.section-heading h2 {
    font-size: 42px;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -2px;
}

.section-heading > p {
    max-width: 350px;
    color: var(--grey-text);
    font-size: 14px;
    line-height: 1.6;
}

/* ================================
   CATEGORIES
================================ */

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.category-card {
    min-height: 350px;
    padding: 20px;
    background: var(--dark);
    border: 1px solid #242525;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
}

.category-card:hover {
    border-color: var(--yellow);
    transform: translateY(-7px);
}

.category-number {
    color: #565656;
    font-size: 13px;
    font-weight: 900;
}

.category-image {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(
            circle,
            rgba(245, 223, 0, 0.17),
            transparent 65%
        );
    color: #4b4b4b;
    font-size: 38px;
    font-weight: 900;
    font-style: italic;
    transform: rotate(-8deg);
    transition: 0.3s;
}

.category-card:hover .category-image {
    color: var(--yellow);
    transform: rotate(0deg) scale(1.05);
}

.category-card h3 {
    margin: 10px 0;
    text-transform: uppercase;
    font-size: 18px;
    font-style: italic;
}

.category-card p {
    min-height: 48px;
    color: #808080;
    font-size: 12px;
    line-height: 1.6;
}

.category-card a {
    display: inline-block;
    margin-top: 17px;
    color: var(--yellow);
    text-decoration: none;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
}

/* ================================
   PRODUCTS
================================ */

.products {
    background: var(--light-grey);
    color: var(--black);
}

.products .section-label {
    color: #8f8200;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.product-card {
    background: var(--white);
    padding-bottom: 18px;
    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.13);
}

.product-image {
    height: 320px;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(145deg, #e3e3dd, #bcbcb7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image strong {
    color: #222222;
    font-size: 80px;
    font-style: italic;
    letter-spacing: -7px;
    transform: rotate(-12deg);
    text-shadow: 8px 8px var(--yellow);
}

.dark-product {
    background:
        radial-gradient(
            circle,
            #303100,
            transparent 65%
        ),
        linear-gradient(145deg, #1d1e1e, #050505);
}

.dark-product strong {
    color: var(--white);
}

.product-tag {
    position: absolute;
    top: 0;
    left: 0;
    padding: 9px 11px;
    background: var(--yellow);
    color: var(--black);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.5px;
}

.product-category,
.product-card > h3,
.product-bottom {
    margin-left: 18px;
    margin-right: 18px;
}

.product-category {
    margin-top: 17px;
    margin-bottom: 7px;
    color: #888888;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-card > h3 {
    font-size: 17px;
}

.product-bottom {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-bottom > strong {
    font-size: 15px;
}

.add-to-cart {
    padding: 11px 15px;
    background: var(--black);
    color: var(--white);
    border: none;
    font-size: 10px;
    font-weight: 900;
    cursor: pointer;
    transition: 0.25s;
}

.add-to-cart:hover {
    background: var(--yellow);
    color: var(--black);
}

/* ================================
   FOOTER
================================ */

.footer {
    padding-top: 70px;
    background: var(--black);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 70px;
}

.footer-content > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
}

.footer-content h3 {
    margin-bottom: 5px;
    color: var(--yellow);
    font-size: 11px;
    letter-spacing: 2px;
}

.footer-content p {
    max-width: 330px;
    color: #777777;
    font-size: 13px;
    line-height: 1.7;
}

.footer-content a:not(.logo) {
    color: #888888;
    text-decoration: none;
    font-size: 12px;
    transition: 0.25s;
}

.footer-content a:not(.logo):hover {
    color: var(--yellow);
}

.copyright {
    margin-top: 60px;
    padding: 24px 0 35px;
    border-top: 1px solid #252626;
    display: flex;
    justify-content: space-between;
    color: #555555;
    font-size: 9px;
    letter-spacing: 1px;
}

/* ================================
   TABLET
================================ */

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        padding-top: 80px;
    }

    .hero-design {
        min-height: 440px;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ================================
   MOBILE
================================ */

@media (max-width: 600px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

    .section {
        padding: 65px 0;
    }

    .announcement-bar p {
        font-size: 8px;
        letter-spacing: 0.7px;
    }

    .announcement-bar span {
        margin: 0 5px;
    }

    .navbar {
        min-height: 70px;
    }

    .logo {
        font-size: 18px;
    }

 .logo > span {
    font-size: 25px;
}

    .search-button {
        display: none;
    }

    .cart-button {
        padding: 9px;
    }

    .hero-content {
        min-height: 690px;
        padding-top: 70px;
    }

    .hero-text h1 {
        font-size: 53px;
        letter-spacing: -4px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-design {
        min-height: 350px;
    }

    .yellow-circle {
        width: 270px;
        height: 270px;
    }

    .hero-badge {
        width: 240px;
        height: 140px;
    }

    .hero-badge strong {
        font-size: 65px;
    }

    .hero-design > p {
        right: 0;
        font-size: 32px;
    }

    .benefits {
        grid-template-columns: 1fr;
    }

    .benefit {
        min-height: 90px;
        border-right: none;
        border-bottom: 1px solid #252626;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .section-heading h2 {
        font-size: 34px;
    }

    .category-grid,
    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 300px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .copyright {
        gap: 15px;
    }
}
.product-image-link,
.product-name-link {
    color: inherit;
    text-decoration: none;
}

.product-image-link {
    display: block;
}

.product-name-link {
    transition: color 0.25s;
}

.product-name-link:hover {
    color: #918500;
}
.product-main-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-main-image {
    transform: scale(1.06);
}
.login-button,
.register-button,
.account-button,
.logout-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 40px;
    padding: 0 14px;

    border: 1px solid #333;
    color: #ffffff;
    text-decoration: none;

    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;

    transition: 0.2s ease;
}

.login-button:hover,
.account-button:hover,
.logout-button:hover {
    border-color: #ffd900;
    color: #ffd900;
}

.register-button {
    background: #ffd900;
    border-color: #ffd900;
    color: #000000;
}

.register-button:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #000000;
}
/* =========================
   CUSTOMER PROFILE DROPDOWN
   ========================= */

.profile-menu {
    position: relative;
    display: inline-block;
}

.profile-menu summary {
    list-style: none;
}

.profile-menu summary::-webkit-details-marker {
    display: none;
}

.profile-avatar-button {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    padding: 0;
    border: none;
    background: transparent;

    cursor: pointer;
}

.profile-avatar {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ffd900;
    color: #000000;

    border: 2px solid #ffffff;

    font-size: 15px;
    font-weight: 800;

    text-transform: uppercase;
}

.profile-avatar-button:hover .profile-avatar {
    border-color: #ffd900;
    transform: scale(1.05);
}

.profile-dropdown {
    position: absolute;

    top: calc(100% + 10px);
    right: 0;

    width: 220px;

    padding: 8px;

    background: #0d0d0d;
    border: 1px solid #333333;

    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45);

    z-index: 9999;
}

.profile-dropdown a {
    display: block;

    padding: 12px 14px;

    color: #ffffff;
    text-decoration: none;

    font-size: 13px;
    font-weight: 600;

    transition: 0.2s ease;
}

.profile-dropdown a:hover {
    background: #1c1c1c;
    color: #ffd900;
}

.profile-dropdown-divider {
    height: 1px;
    background: #333333;
    margin: 6px 0;
}

.profile-dropdown .profile-logout {
    color: #ff6464;
}

.profile-dropdown .profile-logout:hover {
    color: #ffffff;
    background: #c62828;
}
.order-details-button {
    min-height: 34px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 12px;

    border: 1px solid #4d9cff;

    color: #4d9cff;
    background: transparent;

    text-decoration: none;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: .6px;
    text-transform: uppercase;

    transition: .2s ease;
}

.order-details-button:hover {
    background: #4d9cff;
    color: #000000;
}
/* =========================================
   ORDER STATUS TIMELINE
   ========================================= */

.order-timeline {
    padding: 18px 20px;
}

.order-timeline-step {
    position: relative;

    display: flex;
    align-items: flex-start;
    gap: 13px;

    min-height: 58px;
}

.order-timeline-step:not(:last-child)::after {
    content: "";

    position: absolute;

    left: 14px;
    top: 29px;

    width: 2px;
    height: calc(100% - 3px);

    background: #343636;
}

.order-timeline-dot {
    position: relative;
    z-index: 2;

    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    border: 1px solid #474949;

    background: #111212;
    color: #777c80;

    font-size: 10px;
    font-weight: 900;
}

.order-timeline-step strong {
    display: block;

    margin-top: 4px;

    color: #868b8f;

    font-size: 11px;
    font-weight: 900;

    text-transform: uppercase;
}

.order-timeline-step small {
    display: block;

    margin-top: 4px;

    color: #74797d;

    font-size: 9px;

    text-transform: uppercase;
}

.order-timeline-step.completed .order-timeline-dot {
    background: #ffd000;
    border-color: #ffd000;

    color: #000000;
}

.order-timeline-step.completed strong {
    color: #ffffff;
}

.order-timeline-step.completed:not(:last-child)::after {
    background: #ffd000;
}

.order-timeline-step.current .order-timeline-dot {
    border: 2px solid #ffd000;

    color: #ffd000;
}

.order-timeline-step.current strong {
    color: #ffd000;
}

.order-timeline-step.cancelled .order-timeline-dot {
    background: #c62828;
    border-color: #c62828;

    color: #ffffff;
}

.order-timeline-step.cancelled strong {
    color: #ff6262;
}

/* =========================================================
   RZ SPORTS — DESKTOP SPACE + SMOOTH MOTION POLISH
   Added safely as final overrides
========================================================= */

/* Use more of the available desktop width.
   This removes the large empty left/right space visible on wide screens. */
@media (min-width: 1200px) {
    .container {
        width: min(1480px, calc(100% - 64px));
    }
}

/* Slightly tighter medium-desktop gutters */
@media (min-width: 901px) and (max-width: 1199px) {
    .container {
        width: min(100% - 48px, 1180px);
    }
}

/* Smoother site-wide interactive motion */
a,
button,
input,
select,
textarea,
.product-card,
.category-card,
.product-main-image,
.profile-avatar,
.search-button,
.cart-button,
.primary-button,
.add-to-cart {
    transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Header feels smoother and slightly more premium while scrolling */
.header {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Shop/product cards: smoother lift instead of abrupt movement */
.product-card {
    transition:
        transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.16);
}

.product-main-image {
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover .product-main-image {
    transform: scale(1.045);
}

/* Smooth category movement */
.category-card {
    transition:
        transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.42s ease,
        box-shadow 0.42s ease;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

/* Soft entrance animation for main storefront content */
@keyframes rzFadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

main .section-heading,
main .product-grid,
main .category-grid,
main .products,
main .hero-content {
    animation: rzFadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Keep the wider desktop layout comfortable on very large displays */
@media (min-width: 1700px) {
    .container {
        width: min(1500px, calc(100% - 80px));
    }

    .product-grid {
        gap: 24px;
    }
}

/* Do not force animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
/* HERO GRAPHIC MOVE RIGHT */

.yellow-circle {
    transform: translateX(55px);
}

.hero-badge {
    transform: translateX(55px) rotate(-8deg);
}

.hero-badge:hover {
    transform: translateX(55px) rotate(-5deg) translateY(-5px);
}
.hero-design > p {
    display: block;
    right: 165px;
    bottom: 25px;
}
/* =========================================================
   RZ SPORTS — PREMIUM HERO FLOAT ANIMATION
========================================================= */

@keyframes rzHeroFloat {
    0% {
        transform: translateX(55px) translateY(0) rotate(-8deg);
    }

    50% {
        transform: translateX(55px) translateY(-10px) rotate(-6deg);
    }

    100% {
        transform: translateX(55px) translateY(0) rotate(-8deg);
    }
}

@keyframes rzCirclePulse {
    0% {
        transform: translateX(55px) scale(1);
        opacity: 0.8;
    }

    50% {
        transform: translateX(55px) scale(1.035);
        opacity: 1;
    }

    100% {
        transform: translateX(55px) scale(1);
        opacity: 0.8;
    }
}

@keyframes rzHeroTextFloat {
    0% {
        transform: translateY(0);
        opacity: 0.75;
    }

    50% {
        transform: translateY(-6px);
        opacity: 1;
    }

    100% {
        transform: translateY(0);
        opacity: 0.75;
    }
}

.hero-badge {
    animation: rzHeroFloat 5s ease-in-out infinite;
}

.yellow-circle {
    animation: rzCirclePulse 6s ease-in-out infinite;
}

.hero-design > p {
    animation: rzHeroTextFloat 5.5s ease-in-out infinite;
}

/* Pause excessive motion on hover and keep premium feel */
.hero-design:hover .hero-badge {
    animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
    .hero-badge,
    .yellow-circle,
    .hero-design > p {
        animation: none !important;
    }
}
/* =========================================
   RZ SPORTS — MOVING RING LIGHT
========================================= */

.yellow-circle {
    position: absolute;
    border: 1px solid rgba(245, 223, 0, 0.28);
}

/* Moving light around circle */
.yellow-circle::before {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 50%;

    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        transparent 300deg,
        rgba(255, 230, 0, 0.15) 315deg,
        #fff36a 330deg,
        #f5df00 340deg,
        transparent 360deg
    );

    -webkit-mask:
        radial-gradient(
            farthest-side,
            transparent calc(100% - 4px),
            #000 calc(100% - 3px)
        );

    mask:
        radial-gradient(
            farthest-side,
            transparent calc(100% - 4px),
            #000 calc(100% - 3px)
        );

    filter:
        drop-shadow(0 0 5px #f5df00)
        drop-shadow(0 0 12px rgba(245, 223, 0, 0.8));

    animation: rzRingLight 5s linear infinite;
    pointer-events: none;
}

@keyframes rzRingLight {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}
/* =========================
   PRODUCT IMAGE FINAL FIX
========================= */

.product-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    object-position: center !important;
    display: block;
}

.product-image {
    height: 320px !important;
    overflow: hidden;
    background: #e9e9e5;
}
/* =========================
   PRODUCT CARD IMAGE BOX FIX
========================= */

.product-image,
.product-slider,
.product-slides,
.product-slide {
    width: 100% !important;
    max-width: 100% !important;
}

.product-image {
    height: 320px !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
    background: #e9e9e5 !important;
}

.product-slides {
    height: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.product-slide {
    height: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.product-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
}
/* =========================
   MOBILE MENU BUTTON
========================= */

.mobile-menu-button {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: #ffffff;
    background: transparent;
    border: 1px solid #333333;
    font-size: 22px;
    cursor: pointer;
}

@media (max-width: 820px) {

    .mobile-menu-button {
        display: inline-flex;
        flex-shrink: 0;
    }

    .navbar {
        gap: 10px;
    }
}
.mobile-search-link {
    display: none;
}

@media (max-width: 820px) {

    .mobile-search-link {
        display: block;
    }

    .search-button {
        display: none !important;
    }
}
/* =========================
   FINAL MOBILE NAV MENU
========================= */

@media (max-width: 820px) {

    .navbar {
        position: relative !important;
    }

    .nav-links {
        display: none !important;

        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;

        width: 100% !important;

        flex-direction: column !important;
        align-items: stretch !important;

        gap: 0 !important;

        margin: 0 !important;
        padding: 8px 0 !important;

        background: #0a0a0a !important;
        border-top: 1px solid #292929 !important;
        border-bottom: 1px solid #292929 !important;

        z-index: 99999 !important;
    }

    .nav-links.mobile-open {
        display: flex !important;
    }

    .nav-links li {
        width: 100% !important;
        margin: 0 !important;
    }

    .nav-links li a {
        display: block !important;
        width: 100% !important;

        padding: 14px 18px !important;

        color: #ffffff !important;
        background: transparent !important;

        font-size: 12px !important;
        font-weight: 800 !important;

        text-decoration: none !important;

        border-bottom: 1px solid #1f1f1f !important;
    }

    .nav-links li a:hover {
        color: #ffe600 !important;
        background: #141414 !important;
    }

    .mobile-menu-button {
        position: relative !important;
        z-index: 100000 !important;
    }
}
/* =========================
   NAV CATEGORY DROPDOWN
========================= */

.nav-category-menu {
    position: relative;
}

.category-arrow {
    margin-left: 5px;
    font-size: 10px;
}

.nav-category-dropdown {
    position: absolute;
    top: 100%;
    left: 0;

    width: 220px;
    padding: 8px 0;

    display: none;

    background: #0b0b0b;
    border: 1px solid #292929;

    z-index: 99999;
}

.nav-category-menu:hover .nav-category-dropdown {
    display: block;
}

.nav-category-dropdown a {
    display: block;
    padding: 13px 16px;

    color: #ffffff !important;
    font-size: 11px;
    font-weight: 800;

    border-bottom: 1px solid #222222;
    text-decoration: none;
}

.nav-category-dropdown a:hover {
    color: #ffe600 !important;
    background: #151515;
}

/* Mobile */
@media (max-width: 820px) {

    .nav-category-dropdown {
        position: static;
        width: 100%;

        display: block;

        padding-left: 15px;

        border: 0;
        background: #111111;
    }

    .nav-category-dropdown a {
        padding: 11px 18px !important;
        font-size: 10px !important;
    }
}
/* =========================
   NAVBAR SPACING FINAL FIX
========================= */

.nav-links {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 36px !important;
}

.nav-links > li {
    margin: 0 !important;
    padding: 0 !important;
}

.nav-links > li > a {
    margin: 0 !important;
    padding: 10px 0 !important;
}

.category-arrow {
    margin-left: 5px !important;
}
/* =========================================
   GLOBAL NAVBAR SPACING FIX
========================================= */

.header .navbar {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 24px !important;
}

.header .nav-links {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    gap: 34px !important;

    margin: 0 auto !important;
    padding: 0 !important;

    list-style: none !important;

    flex: 1 1 auto !important;
}

.header .nav-links > li {
    margin: 0 !important;
    padding: 0 !important;
    flex: 0 0 auto !important;
}

.header .nav-links > li > a {
    display: inline-flex !important;
    align-items: center !important;

    margin: 0 !important;
    padding: 12px 0 !important;

    white-space: nowrap !important;
}

.header .nav-category-menu {
    margin: 0 !important;
    padding: 0 !important;
}

.header .category-arrow {
    margin-left: 5px !important;
}

.header .nav-actions {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;

    margin: 0 !important;
    flex-shrink: 0 !important;
}

.header .logo {
    margin: 0 !important;
    flex-shrink: 0 !important;
}

/* Mobile */
@media (max-width: 820px) {

    .header .navbar {
        gap: 10px !important;
    }

    .header .nav-links {
        gap: 0 !important;
        margin: 0 !important;
    }

    .header .nav-links > li > a {
        width: 100% !important;
        padding: 14px 18px !important;
    }
}


/* =========================================================
   RZ SPORTS - BRAND MODEL SLIDER
   FINAL OVERRIDE VERSION
========================================================= */

.rz-brand-slider {
    position: relative !important;
    width: 100% !important;
    height: 620px !important;
    overflow: hidden !important;

    background: #050505 !important;

    border-top: 1px solid #1f1f1f !important;
    border-bottom: 1px solid #1f1f1f !important;
}


/* =========================================
   SLIDES WRAPPER
========================================= */

.rz-brand-slides {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
}


/* =========================================
   INDIVIDUAL SLIDE
========================================= */

.rz-brand-slide {
    position: absolute !important;
    inset: 0 !important;

    width: 100% !important;
    height: 100% !important;

    opacity: 0 !important;
    visibility: hidden !important;

    pointer-events: none !important;

    z-index: 0 !important;

    transform: scale(1.02) !important;

    transition:
        opacity 0.8s ease,
        visibility 0.8s ease,
        transform 5s ease !important;
}

.rz-brand-slide.active {
    opacity: 1 !important;
    visibility: visible !important;

    pointer-events: auto !important;

    z-index: 2 !important;

    transform: scale(1) !important;
}


/* =========================================
   BACKGROUND IMAGE
========================================= */

.rz-brand-slide > img {
    position: absolute !important;
    inset: 0 !important;

    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;

    /* model ko thora upper-center rakhta hai */
    object-position: center 35% !important;

    display: block !important;

    filter:
        brightness(1.08)
        contrast(1.05) !important;
}


/* =========================================
   DARK OVERLAY
========================================= */

.rz-brand-overlay {
    position: absolute !important;
    inset: 0 !important;

    z-index: 1 !important;

    pointer-events: none !important;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.94) 0%,
            rgba(0, 0, 0, 0.82) 28%,
            rgba(0, 0, 0, 0.50) 48%,
            rgba(0, 0, 0, 0.18) 68%,
            rgba(0, 0, 0, 0.04) 100%
        ) !important;
}


/* =========================================
   CONTENT
========================================= */

.rz-brand-content {
    position: relative !important;

    z-index: 3 !important;

    height: 100% !important;

    display: flex !important;
    flex-direction: column !important;

    align-items: flex-start !important;
    justify-content: center !important;

    box-sizing: border-box !important;
}


/* SMALL LABEL */

.rz-brand-small {
    margin: 0 0 14px !important;

    color: #ffe000 !important;

    font-size: 11px !important;
    font-weight: 900 !important;

    letter-spacing: 4px !important;

    text-transform: uppercase !important;
}


/* =========================================
   MAIN HEADING
========================================= */

.rz-brand-content h2 {
    max-width: 700px !important;

    margin: 0 !important;

    color: #ffffff !important;

    font-size: clamp(52px, 5.8vw, 86px) !important;

    font-weight: 950 !important;
    font-style: italic !important;

    line-height: 0.94 !important;

    letter-spacing: -4px !important;

    text-transform: uppercase !important;
}

.rz-brand-content h2 span {
    display: block !important;

    color: #ffe000 !important;
}


/* =========================================
   DESCRIPTION
========================================= */

.rz-brand-content > p:not(.rz-brand-small) {
    max-width: 560px !important;

    margin: 22px 0 28px !important;

    color: #b7b7b7 !important;

    font-size: 14px !important;

    line-height: 1.7 !important;
}


/* =========================================
   BUTTON
========================================= */

.rz-brand-content > a {
    min-width: 225px !important;
    min-height: 56px !important;

    display: inline-flex !important;

    align-items: center !important;
    justify-content: space-between !important;

    gap: 30px !important;

    padding: 0 22px !important;

    box-sizing: border-box !important;

    color: #090909 !important;
    background: #ffe000 !important;

    border: 1px solid #ffe000 !important;

    font-size: 11px !important;
    font-weight: 950 !important;

    letter-spacing: 1px !important;

    text-decoration: none !important;
    text-transform: uppercase !important;

    transition: 0.25s ease !important;
}

.rz-brand-content > a:hover {
    color: #ffe000 !important;

    background: #101010 !important;

    border-color: #ffe000 !important;
}

.rz-brand-content > a span {
    font-size: 20px !important;
}


/* =========================================
   SLIDER ARROWS
========================================= */

.rz-brand-arrow {
    position: absolute !important;

    top: 50% !important;

    z-index: 20 !important;

    width: 48px !important;
    height: 48px !important;

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    padding: 0 !important;

    color: #ffffff !important;

    background: rgba(0, 0, 0, 0.50) !important;

    border: 1px solid rgba(255, 255, 255, 0.20) !important;

    font-size: 28px !important;

    cursor: pointer !important;

    transform: translateY(-50%) !important;

    transition: 0.2s ease !important;
}

.rz-brand-arrow:hover {
    color: #090909 !important;

    background: #ffe000 !important;

    border-color: #ffe000 !important;
}

.rz-brand-prev {
    left: 24px !important;
}

.rz-brand-next {
    right: 24px !important;
}


/* =========================================
   DOTS
========================================= */

.rz-brand-dots {
    position: absolute !important;

    left: 50% !important;
    bottom: 25px !important;

    z-index: 20 !important;

    display: flex !important;

    align-items: center !important;

    gap: 8px !important;

    transform: translateX(-50%) !important;
}

.rz-brand-dot {
    width: 8px !important;
    height: 8px !important;

    padding: 0 !important;

    border: 0 !important;
    border-radius: 30px !important;

    background: rgba(255, 255, 255, 0.45) !important;

    cursor: pointer !important;

    transition: 0.25s ease !important;
}

.rz-brand-dot.active {
    width: 30px !important;

    background: #ffe000 !important;
}


/* =========================================
   LARGE SCREEN
========================================= */

@media (min-width: 1500px) {

    .rz-brand-slider {
        height: 660px !important;
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .rz-brand-slider {
        height: 560px !important;
    }

    .rz-brand-content h2 {
        font-size: 62px !important;
    }

}


/* =========================================
   SMALL TABLET
========================================= */

@media (max-width: 820px) {

    .rz-brand-slider {
        height: 520px !important;
    }

    .rz-brand-slide > img {
        object-position: 62% center !important;
    }

    .rz-brand-content h2 {
        max-width: 520px !important;

        font-size: 54px !important;

        letter-spacing: -3px !important;
    }

    .rz-brand-content > p:not(.rz-brand-small) {
        max-width: 430px !important;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .rz-brand-slider {
        height: 500px !important;
    }

    .rz-brand-slide > img {
        object-position: 68% center !important;

        filter:
            brightness(0.90)
            contrast(1.05) !important;
    }

    .rz-brand-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(0, 0, 0, 0.95) 0%,
                rgba(0, 0, 0, 0.75) 55%,
                rgba(0, 0, 0, 0.30) 100%
            ) !important;
    }

    .rz-brand-content {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .rz-brand-small {
        font-size: 9px !important;

        letter-spacing: 3px !important;
    }

    .rz-brand-content h2 {
        max-width: 370px !important;

        font-size: 44px !important;

        letter-spacing: -2px !important;
    }

    .rz-brand-content > p:not(.rz-brand-small) {
        max-width: 330px !important;

        margin: 17px 0 22px !important;

        font-size: 12px !important;
    }

    .rz-brand-content > a {
        min-width: 185px !important;
        min-height: 50px !important;
    }

    .rz-brand-arrow {
        display: none !important;
    }

    .rz-brand-dots {
        bottom: 17px !important;
    }

}


/* =========================================
   VERY SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .rz-brand-slider {
        height: 470px !important;
    }

    .rz-brand-content h2 {
        font-size: 38px !important;
    }

}
/* =========================================
   PROFESSIONAL BENEFIT ICONS
========================================= */

.benefit-icon {
    width: 44px !important;
    height: 44px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    color: #ffe000 !important;

    flex-shrink: 0 !important;
}

.benefit-icon svg {
    width: 30px !important;
    height: 30px !important;

    display: block !important;
}

.benefit-icon svg path,
.benefit-icon svg circle {
    vector-effect: non-scaling-stroke;
}

/* =========================
   FOOTER SOCIAL ICONS
========================= */

.footer-social-links {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    width: fit-content;

    color: #9a9a9a;

    text-decoration: none;

    font-size: 12px;

    transition:
        color .2s ease,
        transform .2s ease;
}

.footer-social-link:hover {
    color: #ffe000;

    transform: translateX(3px);
}

.footer-social-icon {
    width: 28px;
    height: 28px;

    display: grid;
    place-items: center;

    color: #111111;
    background: #ffe000;

    border-radius: 50%;

    font-size: 13px;
    font-weight: 900;
}

/* =========================================================
   RZ SPORTS — MASTER RESPONSIVE SYSTEM
   Final override. Keep this at the END of style.css.
========================================================= */

/* Safe defaults */
html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

img,
video {
    max-width: 100%;
}

.header .navbar,
.hero-content,
.footer-content,
.product-grid,
.category-grid,
.benefits {
    min-width: 0;
}

/* The footer now has Brand + Shop + Account + Contact + Social */
@media (min-width: 1101px) {
    .footer-content {
        grid-template-columns:
            minmax(240px, 1.7fr)
            minmax(120px, .75fr)
            minmax(140px, .85fr)
            minmax(180px, 1fr)
            minmax(150px, .85fr) !important;
        gap: clamp(28px, 4vw, 64px) !important;
    }
}


/* =========================================================
   LARGE / MEDIUM TABLET
========================================================= */

@media (max-width: 1100px) {

    .container {
        width: min(100% - 36px, 1180px) !important;
    }

    .header .navbar {
        gap: 14px !important;
    }

    .header .nav-links {
        gap: 20px !important;
    }

    .header .nav-links > li > a {
        font-size: 10px !important;
    }

    .hero-content {
        grid-template-columns: 1fr 1fr !important;
        gap: 20px !important;
    }

    .hero-text h1 {
        font-size: clamp(54px, 7vw, 76px) !important;
    }

    .yellow-circle {
        width: 320px;
        height: 320px;
    }

    .hero-badge {
        width: 270px;
        height: 160px;
    }

    .footer-content {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 38px !important;
    }
}


/* =========================================================
   TABLET + MOBILE NAVIGATION
========================================================= */

@media (max-width: 820px) {

    .container {
        width: min(100% - 28px, 1180px) !important;
    }

    .announcement-bar {
        min-height: 31px !important;
        padding: 6px 12px !important;
    }

    .announcement-bar p {
        font-size: 8px !important;
        line-height: 1.35 !important;
        letter-spacing: .8px !important;
    }

    .announcement-bar span {
        margin: 0 5px !important;
    }

    .header .navbar {
        position: relative !important;
        min-height: 66px !important;
        padding: 0 !important;
        gap: 8px !important;
    }

    .mobile-menu-button {
        display: inline-flex !important;
        width: 38px !important;
        height: 38px !important;
        flex: 0 0 38px !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 !important;
        font-size: 21px !important;
        z-index: 100000 !important;
    }

    .header .logo {
        min-width: 0 !important;
        max-width: 52% !important;
        gap: 7px !important;
        flex: 0 1 auto !important;
        overflow: hidden !important;
    }

    .header .logo img {
        max-height: 38px !important;
        width: auto !important;
        flex-shrink: 0 !important;
    }

    .header .logo > span {
        min-width: 0 !important;
        font-size: 19px !important;
        letter-spacing: 0 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    .header .nav-links {
        display: none !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0 !important;
        margin: 0 !important;
        padding: 8px 0 !important;
        background: #090a0a !important;
        border-top: 1px solid #292929 !important;
        border-bottom: 1px solid #292929 !important;
        box-shadow: 0 18px 30px rgba(0, 0, 0, .35) !important;
        z-index: 99999 !important;
    }

    .header .nav-links.mobile-open {
        display: flex !important;
    }

    .header .nav-links > li {
        width: 100% !important;
    }

    .header .nav-links > li > a {
        display: flex !important;
        width: 100% !important;
        padding: 13px 17px !important;
        color: #fff !important;
        font-size: 11px !important;
        border-bottom: 1px solid #1f1f1f !important;
    }

    .header .nav-links > li > a:hover,
    .header .nav-links > li > a.active {
        color: #ffe000 !important;
        background: #121212 !important;
    }

    .mobile-search-link {
        display: block !important;
    }

    .nav-category-dropdown {
        position: static !important;
        display: block !important;
        width: 100% !important;
        padding: 0 0 0 12px !important;
        background: #101010 !important;
        border: 0 !important;
    }

    .nav-category-dropdown a {
        padding: 11px 18px !important;
        font-size: 10px !important;
    }

    .header .nav-actions {
        margin-left: auto !important;
        gap: 6px !important;
        flex: 0 0 auto !important;
    }

    .header .search-button,
    .header .login-button,
    .header .register-button {
        display: none !important;
    }

    .header .cart-button {
        min-height: 38px !important;
        display: inline-flex !important;
        align-items: center !important;
        padding: 0 9px !important;
        font-size: 10px !important;
        white-space: nowrap !important;
    }

    .header .cart-button #cart-count,
    .header .cart-button span {
        width: 20px !important;
        height: 20px !important;
        min-width: 20px !important;
        margin-left: 6px !important;
        font-size: 10px !important;
    }

    .profile-avatar-button {
        width: 38px !important;
        height: 38px !important;
    }

    .profile-avatar {
        width: 34px !important;
        height: 34px !important;
        font-size: 13px !important;
    }

    .profile-dropdown {
        right: 0 !important;
        width: min(230px, calc(100vw - 28px)) !important;
    }

    /* Hero changes from two columns to one */
    .hero,
    .hero-content {
        min-height: auto !important;
    }

    .hero-content {
        grid-template-columns: 1fr !important;
        gap: 22px !important;
        padding-top: 48px !important;
        padding-bottom: 42px !important;
    }

    .hero-text {
        width: 100% !important;
        max-width: 100% !important;
        position: relative !important;
        z-index: 3 !important;
    }

    .hero-text h1 {
        max-width: 680px !important;
        font-size: clamp(52px, 11vw, 74px) !important;
        line-height: .87 !important;
        letter-spacing: -4px !important;
    }

    .hero-description {
        max-width: 600px !important;
    }

    .hero-design {
        width: 100% !important;
        min-height: 350px !important;
        margin: 8px auto 0 !important;
        position: relative !important;
        overflow: visible !important;
    }

    /* Stop desktop transform animations fighting mobile centering */
    .hero-badge,
    .yellow-circle {
        animation: none !important;
    }

    .yellow-circle {
        width: 285px !important;
        height: 285px !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
    }

    .hero-badge {
        width: 250px !important;
        height: 145px !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) rotate(-6deg) !important;
    }

    .hero-badge strong {
        font-size: 68px !important;
    }

    .hero-design > p {
        display: none !important;
    }

    .benefits {
        grid-template-columns: 1fr !important;
    }

    .benefit {
        min-height: 88px !important;
        justify-content: flex-start !important;
        padding: 18px 10px !important;
        border-right: 0 !important;
        border-bottom: 1px solid #252626 !important;
    }

    .category-grid,
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 18px !important;
    }

    .footer {
        padding-top: 50px !important;
    }

    .footer-content {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 34px 28px !important;
    }

    .copyright {
        margin-top: 42px !important;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .container {
        width: calc(100% - 24px) !important;
        max-width: 100% !important;
    }

    .section {
        padding: 58px 0 !important;
    }

    .header .navbar {
        min-height: 62px !important;
        gap: 6px !important;
    }

    .mobile-menu-button {
        width: 36px !important;
        height: 36px !important;
        flex-basis: 36px !important;
    }

    .header .logo {
        max-width: none !important;
        flex: 1 1 auto !important;
    }

    .header .logo img {
        max-height: 34px !important;
    }

    .header .logo > span {
        font-size: 17px !important;
    }

    .header .nav-actions {
        gap: 4px !important;
    }

    .header .cart-button {
        min-height: 35px !important;
        padding: 0 7px !important;
        font-size: 9px !important;
    }

    .header .cart-button #cart-count,
    .header .cart-button span {
        width: 19px !important;
        height: 19px !important;
        min-width: 19px !important;
        font-size: 9px !important;
    }

    .profile-avatar-button {
        width: 36px !important;
        height: 36px !important;
    }

    .profile-avatar {
        width: 32px !important;
        height: 32px !important;
        font-size: 12px !important;
    }

    /* HERO */
    .hero {
        overflow: hidden !important;
    }

    .hero-content {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 20px !important;
        padding-top: 34px !important;
        padding-bottom: 34px !important;
    }

    .hero-text .section-label,
    .section-label {
        display: block !important;
        margin-bottom: 14px !important;
        font-size: 9px !important;
        letter-spacing: 2px !important;
    }

    .hero-text h1,
    .hero h1 {
        display: block !important;
        position: static !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 22px !important;
        font-size: clamp(44px, 14.5vw, 56px) !important;
        line-height: .88 !important;
        letter-spacing: -3px !important;
        overflow-wrap: normal !important;
        word-break: normal !important;
        transform: none !important;
    }

    .hero-description {
        max-width: 100% !important;
        margin: 0 0 30px !important;
        font-size: 12px !important;
        line-height: 1.65 !important;
    }

    .primary-button {
        min-width: 160px !important;
        min-height: 48px !important;
        padding: 0 18px !important;
        font-size: 10px !important;
    }

    .hero-design {
        width: 100% !important;
        min-height: 300px !important;
        margin: 10px auto 0 !important;
    }

    .yellow-circle {
        width: 255px !important;
        height: 255px !important;
    }

    .hero-badge {
        width: 225px !important;
        height: 132px !important;
    }

    .hero-badge strong {
        font-size: 61px !important;
    }

    .hero-badge span {
        margin-top: 13px !important;
        font-size: 8px !important;
        letter-spacing: 4px !important;
    }

    /* Store grids */
    .category-grid,
    .product-grid {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .product-image {
        height: clamp(270px, 88vw, 340px) !important;
    }

    .section-heading {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
        margin-bottom: 30px !important;
    }

    .section-heading h2 {
        font-size: 32px !important;
        line-height: 1 !important;
    }

    .product-bottom {
        gap: 12px !important;
    }

    /* Brand slider */
    .rz-brand-slider {
        height: 480px !important;
    }

    .rz-brand-slide > img {
        object-position: 68% center !important;
    }

    .rz-brand-content {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }

    .rz-brand-content h2 {
        max-width: 330px !important;
        font-size: clamp(36px, 12vw, 44px) !important;
        line-height: .94 !important;
        letter-spacing: -2px !important;
    }

    .rz-brand-content > p:not(.rz-brand-small) {
        max-width: 300px !important;
        font-size: 11px !important;
        line-height: 1.55 !important;
    }

    .rz-brand-content > a {
        min-width: 175px !important;
        min-height: 48px !important;
        font-size: 9px !important;
    }

    .rz-brand-arrow {
        display: none !important;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }

    .footer-content .logo {
        max-width: 100% !important;
    }

    .footer-content .logo > span {
        font-size: 21px !important;
        overflow: visible !important;
    }

    .copyright {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 9px !important;
        margin-top: 34px !important;
        padding-bottom: 28px !important;
    }
}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .container {
        width: calc(100% - 20px) !important;
    }

    .announcement-bar p {
        font-size: 7px !important;
        letter-spacing: .55px !important;
    }

    .header .navbar {
        min-height: 58px !important;
    }

    .mobile-menu-button {
        width: 34px !important;
        height: 34px !important;
        flex-basis: 34px !important;
        font-size: 19px !important;
    }

    .header .logo {
        gap: 5px !important;
    }

    .header .logo img {
        max-height: 30px !important;
    }

    .header .logo > span {
        font-size: 15px !important;
    }

    .header .cart-button {
        min-height: 33px !important;
        padding: 0 6px !important;
        font-size: 8px !important;
    }

    .header .cart-button #cart-count,
    .header .cart-button span {
        width: 18px !important;
        height: 18px !important;
        min-width: 18px !important;
        margin-left: 4px !important;
        font-size: 8px !important;
    }

    .profile-avatar-button {
        width: 34px !important;
        height: 34px !important;
    }

    .profile-avatar {
        width: 30px !important;
        height: 30px !important;
        font-size: 11px !important;
    }

    .hero-content {
        padding-top: 30px !important;
    }

    .hero-text h1,
    .hero h1 {
        font-size: clamp(40px, 13.5vw, 48px) !important;
        letter-spacing: -2.5px !important;
    }

    .hero-description {
        font-size: 11px !important;
    }

    .hero-design {
        min-height: 275px !important;
    }

    .yellow-circle {
        width: 235px !important;
        height: 235px !important;
    }

    .hero-badge {
        width: 205px !important;
        height: 120px !important;
    }

    .hero-badge strong {
        font-size: 56px !important;
    }

    .rz-brand-slider {
        height: 455px !important;
    }

    .rz-brand-content h2 {
        font-size: 36px !important;
    }
}


/* =========================================================
   EXTRA NARROW PHONES
========================================================= */

@media (max-width: 350px) {

    .header .logo > span {
        font-size: 14px !important;
    }

    .header .cart-button {
        padding: 0 5px !important;
    }

    .hero-text h1,
    .hero h1 {
        font-size: 39px !important;
        letter-spacing: -2px !important;
    }

    .yellow-circle {
        width: 220px !important;
        height: 220px !important;
    }

    .hero-badge {
        width: 192px !important;
        height: 114px !important;
    }

    .hero-badge strong {
        font-size: 52px !important;
    }
}


/* Respect reduced-motion accessibility setting */
@media (prefers-reduced-motion: reduce) {
    .hero-badge,
    .yellow-circle,
    .rz-brand-slide,
    .product-card,
    .category-card {
        animation: none !important;
        transition-duration: .01ms !important;
    }
}
@media (max-width: 600px) {

    .hero-design {
        min-height: 250px !important;
        margin-top: 0 !important;
    }

    .yellow-circle {
        width: 220px !important;
        height: 220px !important;

        left: 50% !important;
        top: 48% !important;

        transform: translate(-50%, -50%) !important;
    }

    .hero-badge {
        width: 190px !important;
        height: 110px !important;

        left: 50% !important;
        top: 48% !important;

        transform:
            translate(-50%, -50%)
            rotate(-5deg) !important;
    }

    .hero-badge strong {
        font-size: 52px !important;
        letter-spacing: -5px !important;
    }

    .hero-badge span {
        margin-top: 10px !important;

        font-size: 7px !important;
        letter-spacing: 3px !important;
    }

    .hero-badge::before {
        width: 68% !important;
        height: 8px !important;
        bottom: -11px !important;
        border-bottom-width: 6px !important;
    }
}
/* =========================================================
   HERO MOBILE ONLY — FINAL FIX
========================================================= */

@media (max-width: 600px) {

    .hero-content {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        padding-top: 32px !important;
        padding-bottom: 30px !important;
    }

    .hero-text {
        width: 100% !important;
        max-width: 100% !important;
        position: relative !important;
        z-index: 5 !important;
    }

    .hero-design {
        position: relative !important;

        width: 100% !important;
        height: 250px !important;
        min-height: 250px !important;

        margin: 5px 0 0 !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        overflow: hidden !important;
    }

    .yellow-circle {
        position: absolute !important;

        width: 210px !important;
        height: 210px !important;

        left: 50% !important;
        top: 50% !important;

        margin: 0 !important;

        transform:
            translate(-50%, -50%) !important;

        animation: none !important;
    }

    .hero-badge {
        position: absolute !important;

        width: 180px !important;
        height: 105px !important;

        left: 50% !important;
        top: 50% !important;

        margin: 0 !important;

        transform:
            translate(-50%, -50%)
            rotate(-5deg) !important;

        animation: none !important;
    }

    .hero-badge:hover {
        transform:
            translate(-50%, -50%)
            rotate(-5deg) !important;
    }

    .hero-badge strong {
        font-size: 49px !important;
        letter-spacing: -5px !important;
    }

    .hero-badge span {
        margin-top: 8px !important;

        font-size: 6px !important;
        letter-spacing: 3px !important;
    }

    .hero-badge::before {
        width: 68% !important;
        height: 7px !important;

        bottom: -10px !important;

        border-bottom-width: 5px !important;
    }

    .hero-design > p {
        display: none !important;
    }
}
/* =========================================================
   MOBILE HERO BADGE — UPPER RIGHT POSITION
========================================================= */

@media (max-width: 600px) {

    .hero {
        position: relative !important;
        overflow: hidden !important;
    }

    .hero-content {
        position: relative !important;
        display: block !important;

        min-height: 560px !important;

        padding-top: 34px !important;
        padding-bottom: 36px !important;
    }

    .hero-text {
        position: relative !important;
        z-index: 5 !important;

        width: 100% !important;
        max-width: 100% !important;
    }

    .hero-text h1 {
        max-width: 78% !important;

        font-size: clamp(42px, 13vw, 50px) !important;
        line-height: .88 !important;
        letter-spacing: -2.5px !important;

        margin-bottom: 22px !important;
    }

    .hero-description {
        max-width: 88% !important;
    }

    .hero-design {
        position: absolute !important;

        top: 125px !important;
        right: -18px !important;

        width: 155px !important;
        height: 210px !important;
        min-height: 0 !important;

        margin: 0 !important;

        display: block !important;

        z-index: 2 !important;

        overflow: visible !important;
    }

    .yellow-circle {
        position: absolute !important;

        width: 170px !important;
        height: 170px !important;

        left: 50% !important;
        top: 50% !important;

        transform: translate(-50%, -50%) !important;

        animation: none !important;
    }

    .hero-badge {
        position: absolute !important;

        width: 145px !important;
        height: 86px !important;

        left: 50% !important;
        top: 50% !important;

        transform:
            translate(-50%, -50%)
            rotate(-5deg) !important;

        animation: none !important;
    }

    .hero-badge strong {
        font-size: 39px !important;
        letter-spacing: -4px !important;
    }

    .hero-badge span {
        margin-top: 7px !important;

        font-size: 5px !important;
        letter-spacing: 2.5px !important;
    }

    .hero-badge::before {
        width: 68% !important;
        height: 6px !important;

        bottom: -8px !important;

        border-bottom-width: 4px !important;
    }

    .hero-design > p {
        display: none !important;
    }
}
/* =========================================================
   MOBILE HERO TEXT ONLY — FINAL FIX
========================================================= */

@media (max-width: 600px) {

    .hero-text {
        position: relative !important;
        z-index: 5 !important;
    }

    .hero-text .section-label {
        max-width: 65% !important;

        font-size: 9px !important;
        line-height: 1.4 !important;
        letter-spacing: 1.8px !important;
    }

    .hero-text h1,
    .hero h1 {
        width: 68% !important;
        max-width: 68% !important;

        margin: 0 0 22px !important;

        font-size: 39px !important;
        line-height: 0.91 !important;
        letter-spacing: -2px !important;

        word-break: normal !important;
        overflow-wrap: normal !important;
    }

    .hero-description {
        width: 64% !important;
        max-width: 64% !important;

        margin-top: 0 !important;

        font-size: 10px !important;
        line-height: 1.65 !important;
    }

    .primary-button {
        margin-top: 5px !important;
    }
}


/* Very small phones */
@media (max-width: 380px) {

    .hero-text h1,
    .hero h1 {
        width: 66% !important;
        max-width: 66% !important;

        font-size: 36px !important;
        letter-spacing: -1.5px !important;
    }

    .hero-description {
        width: 62% !important;
        max-width: 62% !important;

        font-size: 9px !important;
    }
}
/* =========================================================
   RZ SPORTS — FINAL PROFESSIONAL MOBILE HERO
   MOBILE ONLY
========================================================= */

@media (max-width: 600px) {

    /* HERO HEIGHT — REMOVE EMPTY BOTTOM SPACE */
    .hero {
        min-height: 0 !important;
        height: auto !important;
        overflow: hidden !important;
    }

    .hero-content {
        position: relative !important;

        display: block !important;

        min-height: 405px !important;
        height: auto !important;

        padding-top: 30px !important;
        padding-bottom: 24px !important;
    }


    /* TEXT AREA */
    .hero-text {
        position: relative !important;
        z-index: 5 !important;

        width: 100% !important;
        max-width: 100% !important;
    }

    .hero-text .section-label {
        width: auto !important;
        max-width: 100% !important;

        margin: 0 0 14px !important;

        font-size: 9px !important;
        line-height: 1.3 !important;

        letter-spacing: 1.8px !important;
    }


    /* MAIN HEADING */
    .hero-text h1,
    .hero h1 {
        width: 68% !important;
        max-width: 68% !important;

        margin: 0 0 18px !important;

        font-size: 40px !important;
        line-height: .91 !important;

        letter-spacing: -2px !important;

        word-break: normal !important;
        overflow-wrap: normal !important;

        transform: none !important;
    }


    /* DESCRIPTION */
    .hero-description {
        width: 62% !important;
        max-width: 62% !important;

        margin: 0 0 24px !important;

        color: #a7a7a7 !important;

        font-size: 10px !important;
        line-height: 1.65 !important;
    }


    /* SHOP BUTTON */
    .primary-button {
        min-width: 138px !important;
        min-height: 42px !important;

        margin: 0 !important;

        padding: 0 14px !important;

        gap: 22px !important;

        font-size: 9px !important;
    }


    /* =========================================
       RZ BADGE — RIGHT SIDE
    ========================================= */

    .hero-design {
        position: absolute !important;

        top: 128px !important;
        right: -8px !important;

        width: 142px !important;
        height: 185px !important;
        min-height: 0 !important;

        margin: 0 !important;

        display: block !important;

        z-index: 2 !important;

        overflow: visible !important;
    }


    .yellow-circle {
        position: absolute !important;

        width: 158px !important;
        height: 158px !important;

        left: 50% !important;
        top: 50% !important;

        margin: 0 !important;

        transform:
            translate(-50%, -50%) !important;

        animation: none !important;
    }


    .hero-badge {
        position: absolute !important;

        width: 132px !important;
        height: 78px !important;

        left: 50% !important;
        top: 50% !important;

        margin: 0 !important;

        transform:
            translate(-50%, -50%)
            rotate(-5deg) !important;

        animation: none !important;
    }


    .hero-badge:hover {
        transform:
            translate(-50%, -50%)
            rotate(-5deg) !important;
    }


    .hero-badge strong {
        font-size: 36px !important;
        line-height: .8 !important;
        letter-spacing: -4px !important;
    }


    .hero-badge span {
        margin-top: 6px !important;

        font-size: 5px !important;

        letter-spacing: 2.3px !important;
    }


    .hero-badge::before {
        width: 66% !important;
        height: 5px !important;

        bottom: -8px !important;

        border-bottom-width: 4px !important;
    }


    .hero-design > p {
        display: none !important;
    }
}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 380px) {

    .hero-content {
        min-height: 385px !important;
        padding-top: 27px !important;
        padding-bottom: 20px !important;
    }

    .hero-text h1,
    .hero h1 {
        width: 67% !important;
        max-width: 67% !important;

        font-size: 37px !important;
        line-height: .92 !important;
    }

    .hero-description {
        width: 61% !important;
        max-width: 61% !important;

        font-size: 9px !important;
    }

    .hero-design {
        top: 125px !important;
        right: -10px !important;

        width: 132px !important;
    }

    .yellow-circle {
        width: 146px !important;
        height: 146px !important;
    }

    .hero-badge {
        width: 122px !important;
        height: 72px !important;
    }

    .hero-badge strong {
        font-size: 33px !important;
    }
}
@media (max-width: 600px) {

    .hero-content {
        position: relative !important;
        display: block !important;

        min-height: 430px !important;

        padding-top: 30px !important;
        padding-bottom: 28px !important;
    }

    .hero-design {
        position: absolute !important;

        top: 50% !important;
        right: 8px !important;
        left: auto !important;

        width: 150px !important;
        height: 170px !important;

        margin: 0 !important;

        transform: translateY(-50%) !important;

        z-index: 2 !important;
    }

    .yellow-circle {
        width: 155px !important;
        height: 155px !important;

        left: 50% !important;
        top: 50% !important;

        transform: translate(-50%, -50%) !important;

        animation: none !important;
    }

    .hero-badge {
        width: 130px !important;
        height: 76px !important;

        left: 50% !important;
        top: 50% !important;

        transform:
            translate(-50%, -50%)
            rotate(-5deg) !important;

        animation: none !important;
    }

    .hero-text h1,
    .hero h1 {
        width: 64% !important;
        max-width: 64% !important;

        font-size: 34px !important;
        line-height: .92 !important;
    }

    .hero-description {
        width: 60% !important;
        max-width: 60% !important;

        font-size: 9px !important;
        line-height: 1.6 !important;
    }

    .primary-button {
        min-width: 118px !important;
        min-height: 36px !important;

        padding: 0 11px !important;

        font-size: 8px !important;
    }
}
/* =========================================================
   RZ SPORTS — FINAL MOBILE HERO
   DESKTOP COMPOSITION SCALED FOR MOBILE
========================================================= */

@media (max-width: 600px) {

    /* HERO */
    .hero {
        min-height: 0 !important;
        height: auto !important;
        overflow: hidden !important;
    }

    .hero-content {
        position: relative !important;

        display: grid !important;
        grid-template-columns: 58% 42% !important;
        align-items: center !important;

        min-height: 360px !important;
        height: auto !important;

        padding-top: 26px !important;
        padding-bottom: 30px !important;

        gap: 0 !important;
    }


    /* =========================
       LEFT TEXT
    ========================= */

    .hero-text {
        position: relative !important;
        z-index: 5 !important;

        width: 100% !important;
        max-width: 100% !important;
    }


    .hero-text .section-label {
        width: 100% !important;

        margin: 0 0 10px !important;

        font-size: 7px !important;
        line-height: 1.2 !important;

        letter-spacing: 1.5px !important;

        white-space: nowrap !important;
    }


    .hero-text h1,
    .hero h1 {
        width: 100% !important;
        max-width: 100% !important;

        margin: 0 0 14px !important;

        font-size: clamp(29px, 9.6vw, 36px) !important;
        line-height: .90 !important;

        letter-spacing: -1.8px !important;

        word-break: normal !important;
        overflow-wrap: normal !important;

        transform: none !important;
    }


    .hero-description {
        width: 100% !important;
        max-width: 190px !important;

        margin: 0 0 18px !important;

        font-size: 7.5px !important;
        line-height: 1.55 !important;

        color: #9d9d9d !important;
    }


    /* SHOP BUTTON */
    .primary-button {
        min-width: 105px !important;
        min-height: 34px !important;

        padding: 0 10px !important;

        gap: 14px !important;

        font-size: 7px !important;
        letter-spacing: .7px !important;
    }


    /* =========================
       RIGHT RZ GRAPHIC
    ========================= */

    .hero-design {
        position: relative !important;

        width: 100% !important;
        height: 220px !important;
        min-height: 220px !important;

        margin: 0 !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        overflow: visible !important;

        z-index: 2 !important;
    }


    .yellow-circle {
        position: absolute !important;

        width: 155px !important;
        height: 155px !important;

        left: 50% !important;
        top: 50% !important;

        transform:
            translate(-50%, -50%) !important;

        animation: none !important;
    }


    .hero-badge {
        position: absolute !important;

        width: 132px !important;
        height: 78px !important;

        left: 50% !important;
        top: 50% !important;

        transform:
            translate(-50%, -50%)
            rotate(-6deg) !important;

        animation: none !important;
    }


    .hero-badge strong {
        font-size: 36px !important;
        line-height: .8 !important;

        letter-spacing: -4px !important;
    }


    .hero-badge span {
        margin-top: 6px !important;

        font-size: 5px !important;
        letter-spacing: 2.5px !important;
    }


    .hero-badge::before {
        width: 66% !important;
        height: 5px !important;

        bottom: -8px !important;

        border-bottom-width: 4px !important;
    }


    .hero-design > p {
        display: none !important;
    }


    /* =========================
       BENEFITS
    ========================= */

    .benefits {
        margin-top: 0 !important;
    }
}

/* =========================================================
   VERY SMALL MOBILE — FINAL HERO FIX
========================================================= */

@media (max-width: 380px) {

    .hero {
        min-height: 0 !important;
        height: auto !important;
        overflow: hidden !important;
    }

    .hero-content {
        position: relative !important;
        display: block !important;

        min-height: 330px !important;
        height: auto !important;

        padding-top: 22px !important;
        padding-bottom: 22px !important;
    }


    /* =========================
       LEFT TEXT
    ========================= */

    .hero-text {
        position: relative !important;
        z-index: 5 !important;

        width: 58% !important;
        max-width: 58% !important;
    }

    .hero-text .section-label {
        width: 100% !important;

        margin: 0 0 9px !important;

        font-size: 6px !important;
        line-height: 1.2 !important;

        letter-spacing: 1.2px !important;

        white-space: nowrap !important;
    }

    .hero-text h1,
    .hero h1 {
        width: 100% !important;
        max-width: 100% !important;

        margin: 0 0 12px !important;

        font-size: 27px !important;
        line-height: .91 !important;

        letter-spacing: -1.2px !important;

        word-break: normal !important;
        overflow-wrap: normal !important;

        transform: none !important;
    }

    .hero-description {
        width: 100% !important;
        max-width: 165px !important;

        margin: 0 0 15px !important;

        font-size: 6.8px !important;
        line-height: 1.55 !important;
    }


    /* =========================
       SMALL SHOP BUTTON
    ========================= */

    .primary-button {
        min-width: 92px !important;
        min-height: 30px !important;

        padding: 0 8px !important;

        gap: 10px !important;

        font-size: 6px !important;
        letter-spacing: .5px !important;
    }


    /* =========================
       RZ ICON — RIGHT SIDE
    ========================= */

    .hero-design {
        position: absolute !important;

        top: 92px !important;
        right: -2px !important;
        left: auto !important;

        width: 140px !important;
        height: 155px !important;
        min-height: 0 !important;

        margin: 0 !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        z-index: 2 !important;

        overflow: visible !important;
    }


    .yellow-circle {
        position: absolute !important;

        width: 138px !important;
        height: 138px !important;

        left: 50% !important;
        top: 50% !important;

        margin: 0 !important;

        transform:
            translate(-50%, -50%) !important;

        animation: none !important;
    }


    .hero-badge {
        position: absolute !important;

        width: 112px !important;
        height: 66px !important;

        left: 50% !important;
        top: 50% !important;

        margin: 0 !important;

        transform:
            translate(-50%, -50%)
            rotate(-6deg) !important;

        animation: none !important;
    }


    .hero-badge strong {
        font-size: 30px !important;
        line-height: .8 !important;

        letter-spacing: -3px !important;
    }


    .hero-badge span {
        margin-top: 5px !important;

        font-size: 4.5px !important;
        letter-spacing: 2px !important;
    }


    .hero-badge::before {
        width: 65% !important;
        height: 4px !important;

        bottom: -7px !important;

        border-bottom-width: 3px !important;
    }


    .hero-design > p {
        display: none !important;
    }
}

/* =========================================================
   MOBILE HERO — REMOVE EXTRA BOTTOM SPACE
========================================================= */

@media (max-width: 380px) {

    .hero {
        min-height: 0 !important;
        height: auto !important;
    }

    .hero-content {
        min-height: 0 !important;
        height: auto !important;

        padding-top: 22px !important;
        padding-bottom: 18px !important;
    }

    .hero-text {
        margin-bottom: 0 !important;
    }

    .hero-design {
        bottom: auto !important;
    }
}

/* =========================================================
   MOBILE BENEFITS — HORIZONTAL RESPONSIVE
========================================================= */

@media (max-width: 600px) {

    .benefits {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;

        width: 100% !important;

        min-height: 88px !important;

        margin: 0 auto !important;

        border-top: 1px solid #252626 !important;
        border-bottom: 1px solid #252626 !important;
    }

    .benefit {
        min-width: 0 !important;
        min-height: 88px !important;

        display: flex !important;
        flex-direction: column !important;

        align-items: center !important;
        justify-content: center !important;

        gap: 6px !important;

        padding: 10px 5px !important;

        text-align: center !important;

        border-right: 1px solid #252626 !important;
        border-bottom: 0 !important;
    }

    .benefit:last-child {
        border-right: 0 !important;
    }

    .benefit-icon {
        width: 28px !important;
        height: 28px !important;

        margin: 0 auto !important;
    }

    .benefit-icon svg {
        width: 22px !important;
        height: 22px !important;
    }

    .benefit h3 {
        margin: 0 !important;

        font-size: 7px !important;
        line-height: 1.2 !important;

        letter-spacing: .5px !important;

        white-space: normal !important;
    }

    .benefit p {
        margin: 0 !important;

        font-size: 6px !important;
        line-height: 1.35 !important;

        color: #7f7f7f !important;
    }
}


/* VERY SMALL MOBILE */
@media (max-width: 380px) {

    .benefits {
        min-height: 80px !important;
    }

    .benefit {
        min-height: 80px !important;
        padding: 8px 3px !important;
    }

    .benefit-icon {
        width: 25px !important;
        height: 25px !important;
    }

    .benefit-icon svg {
        width: 19px !important;
        height: 19px !important;
    }

    .benefit h3 {
        font-size: 6.2px !important;
    }

    .benefit p {
        font-size: 5.3px !important;
    }
}
/* =========================================================
   MOBILE BRAND SLIDER — RESPONSIVE POLISH
========================================================= */

@media (max-width: 600px) {

    .rz-brand-slider {
        height: 390px !important;
    }

    .rz-brand-slide > img {
        object-position: 72% center !important;
        filter:
            brightness(.82)
            contrast(1.05) !important;
    }

    .rz-brand-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(0, 0, 0, .95) 0%,
                rgba(0, 0, 0, .82) 45%,
                rgba(0, 0, 0, .28) 100%
            ) !important;
    }

    .rz-brand-content {
        padding-left: 22px !important;
        padding-right: 18px !important;

        justify-content: center !important;
    }

    .rz-brand-small {
        margin-bottom: 8px !important;

        font-size: 7px !important;
        letter-spacing: 2px !important;
    }

    .rz-brand-content h2 {
        max-width: 230px !important;

        font-size: 30px !important;
        line-height: .92 !important;

        letter-spacing: -1.5px !important;
    }

    .rz-brand-content > p:not(.rz-brand-small) {
        max-width: 210px !important;

        margin: 13px 0 18px !important;

        font-size: 8px !important;
        line-height: 1.55 !important;
    }

    .rz-brand-content > a {
        min-width: 150px !important;
        min-height: 39px !important;

        padding: 0 13px !important;

        gap: 16px !important;

        font-size: 7px !important;
    }

    .rz-brand-content > a span {
        font-size: 14px !important;
    }

    .rz-brand-arrow {
        display: none !important;
    }

    .rz-brand-dots {
        bottom: 13px !important;
        gap: 6px !important;
    }

    .rz-brand-dot {
        width: 6px !important;
        height: 6px !important;
    }

    .rz-brand-dot.active {
        width: 24px !important;
    }
}


/* VERY SMALL MOBILE */
@media (max-width: 380px) {

    .rz-brand-slider {
        height: 365px !important;
    }

    .rz-brand-content {
        padding-left: 18px !important;
    }

    .rz-brand-content h2 {
        max-width: 205px !important;

        font-size: 27px !important;
    }

    .rz-brand-content > p:not(.rz-brand-small) {
        max-width: 190px !important;

        font-size: 7.2px !important;
    }

    .rz-brand-content > a {
        min-width: 138px !important;
        min-height: 36px !important;

        font-size: 6.5px !important;
    }
}
/* =========================================================
   MOBILE LANDSCAPE ONLY — KEEP PORTRAIT UNCHANGED
========================================================= */

@media (max-height: 500px) and (orientation: landscape) {

    .hero {
        min-height: 0 !important;
        height: auto !important;
        overflow: hidden !important;
    }

    .hero-content {
        position: relative !important;

        display: grid !important;
        grid-template-columns: 58% 42% !important;
        align-items: center !important;

        min-height: 330px !important;

        padding-top: 22px !important;
        padding-bottom: 22px !important;

        gap: 0 !important;
    }

    .hero-text {
        width: 100% !important;
        max-width: 100% !important;
        z-index: 5 !important;
    }

    .hero-text h1,
    .hero h1 {
        font-size: clamp(34px, 7vw, 48px) !important;
        line-height: .9 !important;
        letter-spacing: -2px !important;

        width: 100% !important;
        max-width: 100% !important;
    }

    .hero-description {
        max-width: 330px !important;
        font-size: 10px !important;
        line-height: 1.5 !important;
    }

    .hero-design {
        position: relative !important;

        top: auto !important;
        right: auto !important;
        left: auto !important;

        width: 100% !important;
        height: 230px !important;
        min-height: 230px !important;

        margin: 0 !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        overflow: visible !important;
    }

    .yellow-circle {
        width: 210px !important;
        height: 210px !important;

        left: 50% !important;
        top: 50% !important;

        transform: translate(-50%, -50%) !important;

        animation: none !important;
    }

    .hero-badge {
        width: 175px !important;
        height: 102px !important;

        left: 50% !important;
        top: 50% !important;

        transform:
            translate(-50%, -50%)
            rotate(-6deg) !important;

        animation: none !important;
    }

    .hero-badge strong {
        font-size: 48px !important;
    }

    .hero-badge span {
        font-size: 6px !important;
        letter-spacing: 2.5px !important;
    }

    .hero-design > p {
        display: none !important;
    }
}
/* =========================================================
   LANDSCAPE HERO BADGE — CENTER FIX
   Portrait mobile unchanged
========================================================= */

@media (max-height: 500px) and (orientation: landscape) {

    .hero-design {
        position: relative !important;

        width: 100% !important;
        height: 230px !important;
        min-height: 230px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        margin: 0 !important;

        top: auto !important;
        right: auto !important;
        left: auto !important;

        overflow: visible !important;
    }

    .yellow-circle {
        position: absolute !important;

        width: 205px !important;
        height: 205px !important;

        left: 50% !important;
        top: 50% !important;

        margin: 0 !important;

        transform:
            translate(-50%, -50%) !important;

        animation: none !important;
    }

    .hero-badge {
        position: absolute !important;

        width: 168px !important;
        height: 98px !important;

        left: 50% !important;
        top: 50% !important;

        margin: 0 !important;

        transform:
            translate(-50%, -50%)
            rotate(-6deg) !important;

        transform-origin: center center !important;

        animation: none !important;
    }

    .hero-badge:hover {
        transform:
            translate(-50%, -50%)
            rotate(-6deg) !important;
    }

    .hero-badge strong {
        font-size: 46px !important;
        letter-spacing: -4px !important;
    }

    .hero-badge span {
        margin-top: 6px !important;

        font-size: 6px !important;
        letter-spacing: 2.5px !important;
    }

    .hero-badge::before {
        width: 67% !important;
        height: 6px !important;

        bottom: -8px !important;

        border-bottom-width: 4px !important;
    }

    .hero-design > p {
        display: none !important;
    }
}
/* =========================================================
   MOBILE PRODUCT GRID - 2 PRODUCTS PER ROW
========================================================= */

@media (max-width: 768px) {

    /* Product grid / product list */
    .products-grid,
    .shop-products-grid,
    .featured-products-grid,
    .product-grid,
    .products-list,
    .featured-products .products-grid,
    .shop-products .products-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px !important;
        align-items: stretch !important;
    }

    /* Each product card */
    .product-card,
    .shop-product-card,
    .featured-product-card,
    .product-item {
        width: 100% !important;
        min-width: 0 !important;
        margin: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        overflow: hidden !important;
    }

    /* Product image box */
    .product-image,
    .product-image-box,
    .product-thumb,
    .product-card-image,
    .product-card .image-box {
        width: 100% !important;
        aspect-ratio: 1 / 1 !important;
        min-height: auto !important;
        overflow: hidden !important;
        position: relative !important;
    }

    /* Product image */
    .product-image img,
    .product-image-box img,
    .product-thumb img,
    .product-card-image img,
    .product-card img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
    }

    /* Content area */
    .product-info,
    .product-content,
    .product-card-body {
        padding: 10px !important;
    }

    /* Category text */
    .product-category,
    .product-meta,
    .product-type {
        font-size: 10px !important;
        line-height: 1.3 !important;
        margin-bottom: 6px !important;
    }

    /* Product title */
    .product-title,
    .product-name,
    .product-card h3,
    .product-card h4 {
        font-size: 15px !important;
        line-height: 1.3 !important;
        margin: 0 0 8px 0 !important;
        min-height: 40px !important;

        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }

    /* Price */
    .product-price,
    .price {
        font-size: 14px !important;
        line-height: 1.3 !important;
        margin: 0 0 10px 0 !important;
    }

    /* Bottom row */
    .product-bottom,
    .product-footer,
    .product-actions {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 8px !important;
        margin-top: auto !important;
    }

    /* Add to cart button */
    .add-to-cart,
    .add-to-cart-btn,
    .product-card button,
    .product-card .primary-button {
        padding: 10px 12px !important;
        min-width: auto !important;
        min-height: auto !important;
        font-size: 11px !important;
        line-height: 1 !important;
        white-space: nowrap !important;
    }

    /* Stock badge */
    .stock-badge,
    .in-stock,
    .product-badge {
        font-size: 10px !important;
        padding: 6px 8px !important;
    }

    /* Slider arrows inside product card */
    .product-card .slider-arrow,
    .product-card .product-arrow,
    .product-card .carousel-btn,
    .product-card .prev,
    .product-card .next {
        width: 30px !important;
        height: 30px !important;
        font-size: 16px !important;
    }

    /* Dots */
    .product-card .slider-dots,
    .product-card .slick-dots,
    .product-card .carousel-dots {
        bottom: 8px !important;
    }
}


/* =========================================================
   EXTRA SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .products-grid,
    .shop-products-grid,
    .featured-products-grid,
    .product-grid,
    .products-list,
    .featured-products .products-grid,
    .shop-products .products-grid {
        gap: 10px !important;
    }

    .product-info,
    .product-content,
    .product-card-body {
        padding: 8px !important;
    }

    .product-title,
    .product-name,
    .product-card h3,
    .product-card h4 {
        font-size: 14px !important;
        min-height: 36px !important;
    }

    .product-price,
    .price {
        font-size: 13px !important;
    }

    .add-to-cart,
    .add-to-cart-btn,
    .product-card button,
    .product-card .primary-button {
        padding: 9px 10px !important;
        font-size: 10px !important;
    }
}
/* =========================================================
   MOBILE PRODUCT CARD BOX ADJUSTMENT
========================================================= */

@media (max-width: 768px) {

    .product-grid,
    .products-grid,
    .shop-products-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
        align-items: stretch !important;
    }

    .product-card {
        display: flex !important;
        flex-direction: column !important;
        height: 100% !important;
        min-width: 0 !important;

        background: #ffffff !important;
        overflow: hidden !important;
    }

    /* SAME IMAGE BOX FOR EVERY PRODUCT */
    .product-image,
    .product-slider,
    .product-slides,
    .product-slide {
        width: 100% !important;
        height: 245px !important;
        min-height: 245px !important;
        max-height: 245px !important;

        margin: 0 !important;
        padding: 0 !important;

        overflow: hidden !important;
        background: #eeeeea !important;
    }

    .product-slide {
        position: relative !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .product-slide img {
        width: 100% !important;
        height: 100% !important;

        object-fit: contain !important;
        object-position: center !important;

        display: block !important;

        padding: 8px !important;
    }

    /* STOCK BADGE */
    .product-tag {
        top: 0 !important;
        left: 0 !important;

        padding: 7px 9px !important;

        font-size: 8px !important;

        z-index: 10 !important;
    }

    /* SLIDER ARROWS */
    .product-prev,
    .product-next,
    .slider-prev,
    .slider-next {
        width: 28px !important;
        height: 34px !important;

        top: 50% !important;

        font-size: 15px !important;

        transform: translateY(-50%) !important;
    }

    /* DOTS */
    .product-dots,
    .slider-dots {
        bottom: 6px !important;
    }

    /* PRODUCT INFO */
    .product-category {
        margin: 9px 10px 5px !important;

        font-size: 8px !important;
    }

    .product-card > h3 {
        margin: 0 10px !important;

        font-size: 13px !important;
        line-height: 1.25 !important;

        min-height: 33px !important;

        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;

        overflow: hidden !important;
    }

    .product-bottom {
        margin: auto 10px 10px !important;

        padding-top: 10px !important;

        gap: 6px !important;
    }

    .product-bottom > strong {
        font-size: 12px !important;
        line-height: 1.15 !important;
    }

    .add-to-cart {
        padding: 8px 9px !important;

        font-size: 8px !important;

        white-space: nowrap !important;
    }
}


/* VERY SMALL MOBILE */
@media (max-width: 400px) {

    .product-grid,
    .products-grid,
    .shop-products-grid {
        gap: 8px !important;
    }

    .product-image,
    .product-slider,
    .product-slides,
    .product-slide {
        height: 215px !important;
        min-height: 215px !important;
        max-height: 215px !important;
    }

    .product-slide img {
        padding: 6px !important;
    }

    .product-card > h3 {
        font-size: 12px !important;
    }

    .product-bottom > strong {
        font-size: 11px !important;
    }

    .add-to-cart {
        padding: 7px 8px !important;
        font-size: 7px !important;
    }
}

/* =========================================================
   MOBILE PRODUCT SLIDER — DOTS / ARROWS / IMAGE FIX
========================================================= */

@media (max-width: 768px) {

    /* IMAGE BOX */
    .product-image,
    .product-slider,
    .product-slides,
    .product-slide {
        height: 220px !important;
        min-height: 220px !important;
        max-height: 220px !important;

        background: #eeeeea !important;
        overflow: hidden !important;
    }

    .product-slide {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .product-slide img {
        width: 100% !important;
        height: 100% !important;

        object-fit: contain !important;
        object-position: center !important;

        padding: 2px !important;

        transform: scale(1.08) !important;

        display: block !important;
    }


    /* =========================
       SMALL ARROWS
    ========================= */

    .product-prev,
    .product-next,
    .slider-prev,
    .slider-next,
    .product-arrow,
    .product-slider-arrow {
        width: 24px !important;
        height: 28px !important;

        min-width: 24px !important;

        padding: 0 !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        font-size: 12px !important;
        line-height: 1 !important;

        background: rgba(0, 0, 0, .72) !important;

        border: 1px solid rgba(255, 255, 255, .15) !important;
    }


    /* =========================
       SMALL DOTS
    ========================= */

    .product-dots,
    .slider-dots,
    .product-slider-dots,
    .carousel-dots {
        bottom: 5px !important;

        gap: 4px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .product-dot,
    .slider-dot,
    .product-slider-dot,
    .carousel-dot {
        width: 7px !important;
        height: 7px !important;

        min-width: 7px !important;
        min-height: 7px !important;

        padding: 0 !important;
        margin: 0 !important;

        border-radius: 50% !important;

        background: rgba(255,255,255,.72) !important;

        border: 0 !important;
    }

    .product-dot.active,
    .slider-dot.active,
    .product-slider-dot.active,
    .carousel-dot.active {
        width: 9px !important;
        height: 9px !important;

        min-width: 9px !important;
        min-height: 9px !important;

        background: #ffe000 !important;
    }
}


/* VERY SMALL MOBILE */
@media (max-width: 400px) {

    .product-image,
    .product-slider,
    .product-slides,
    .product-slide {
        height: 205px !important;
        min-height: 205px !important;
        max-height: 205px !important;
    }

    .product-slide img {
        transform: scale(1.12) !important;
    }

    .product-prev,
    .product-next,
    .slider-prev,
    .slider-next,
    .product-arrow,
    .product-slider-arrow {
        width: 22px !important;
        height: 26px !important;

        min-width: 22px !important;

        font-size: 11px !important;
    }

    .product-dot,
    .slider-dot,
    .product-slider-dot,
    .carousel-dot {
        width: 6px !important;
        height: 6px !important;

        min-width: 6px !important;
        min-height: 6px !important;
    }

    .product-dot.active,
    .slider-dot.active,
    .product-slider-dot.active,
    .carousel-dot.active {
        width: 8px !important;
        height: 8px !important;

        min-width: 8px !important;
        min-height: 8px !important;
    }
}

/* =========================================================
   MOBILE PRODUCT SLIDER — FINAL IMAGE / DOT / ARROW FIX
========================================================= */

@media (max-width: 768px) {

    /* SLIDER AREA */
    .product-slider,
    .product-slides {
        position: relative !important;
        width: 100% !important;
        height: 210px !important;
        min-height: 210px !important;
        overflow: hidden !important;
    }


    /* IMPORTANT:
       Only active image must be visible
    */
    .product-slide {
        display: none !important;

        position: absolute !important;
        inset: 0 !important;

        width: 100% !important;
        height: 100% !important;

        align-items: center !important;
        justify-content: center !important;

        margin: 0 !important;
        padding: 0 !important;

        background: #eeeeea !important;
    }

    .product-slide.active {
        display: flex !important;
    }


    /* PRODUCT IMAGE */
    .product-slide img {
        display: block !important;

        width: 100% !important;
        height: 100% !important;

        max-width: 100% !important;
        max-height: 100% !important;

        object-fit: contain !important;
        object-position: center !important;

        margin: 0 !important;
        padding: 3px !important;

        transform: none !important;
    }


    /* =========================
       SMALL ARROWS
    ========================= */

    .slider-arrow {
        width: 21px !important;
        height: 25px !important;

        min-width: 21px !important;

        padding: 0 !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        top: 50% !important;

        color: #ffffff !important;
        background: rgba(15,15,15,.78) !important;

        border: 1px solid rgba(255,255,255,.18) !important;

        font-size: 11px !important;
        line-height: 1 !important;

        transform: translateY(-50%) !important;

        z-index: 15 !important;
    }

    .slider-prev {
        left: 7px !important;
    }

    .slider-next {
        right: 7px !important;
    }


    /* =========================
       EXTRA SMALL DOTS
    ========================= */

    .slider-dots {
        position: absolute !important;

        left: 50% !important;
        bottom: 6px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        gap: 3px !important;

        transform: translateX(-50%) !important;

        z-index: 20 !important;
    }

    .slider-dot {
        width: 5px !important;
        height: 5px !important;

        min-width: 5px !important;
        min-height: 5px !important;

        margin: 0 !important;
        padding: 0 !important;

        border: 0 !important;
        border-radius: 50% !important;

        background: rgba(255,255,255,.75) !important;
    }

    .slider-dot.active {
        width: 7px !important;
        height: 7px !important;

        min-width: 7px !important;
        min-height: 7px !important;

        background: #ffe000 !important;
    }
}


/* VERY SMALL MOBILE */
@media (max-width: 400px) {

    .product-slider,
    .product-slides {
        height: 195px !important;
        min-height: 195px !important;
    }

    .slider-arrow {
        width: 19px !important;
        height: 23px !important;
        min-width: 19px !important;

        font-size: 10px !important;
    }

    .slider-dot {
        width: 4px !important;
        height: 4px !important;

        min-width: 4px !important;
        min-height: 4px !important;
    }

    .slider-dot.active {
        width: 6px !important;
        height: 6px !important;

        min-width: 6px !important;
        min-height: 6px !important;
    }
}
/* MOBILE PRODUCT SLIDER — HIDE DOTS */
@media (max-width: 768px) {
    .slider-dots {
        display: none !important;
    }
}

/* MOBILE PRODUCT SLIDER — HIDE ARROWS */
@media (max-width: 768px) {

    .slider-arrow,
    .slider-prev,
    .slider-next {
        display: none !important;
    }

}
/* =========================================================
   MOBILE BRAND SLIDER — FINAL COMPACT ADJUSTMENT
========================================================= */

@media (max-width: 600px) {

    .rz-brand-slider {
        height: 330px !important;
    }

    .rz-brand-slide > img {
        width: 100% !important;
        height: 100% !important;

        object-fit: cover !important;
        object-position: 72% center !important;

        transform: none !important;
    }

    .rz-brand-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(0, 0, 0, .94) 0%,
                rgba(0, 0, 0, .78) 48%,
                rgba(0, 0, 0, .18) 100%
            ) !important;
    }

    .rz-brand-content {
        height: 100% !important;

        padding: 0 22px !important;

        display: flex !important;
        flex-direction: column !important;

        justify-content: center !important;
        align-items: flex-start !important;
    }

    .rz-brand-small {
        margin: 0 0 7px !important;

        font-size: 6px !important;
        letter-spacing: 1.8px !important;
    }

    .rz-brand-content h2 {
        max-width: 190px !important;

        margin: 0 !important;

        font-size: 25px !important;
        line-height: .93 !important;

        letter-spacing: -1px !important;
    }

    .rz-brand-content > p:not(.rz-brand-small) {
        max-width: 180px !important;

        margin: 10px 0 14px !important;

        font-size: 6.8px !important;
        line-height: 1.45 !important;
    }

    .rz-brand-content > a {
        min-width: 125px !important;
        min-height: 34px !important;

        padding: 0 10px !important;

        gap: 12px !important;

        font-size: 6px !important;
    }

    .rz-brand-content > a span {
        font-size: 12px !important;
    }

    .rz-brand-dots {
        bottom: 9px !important;
    }

    .rz-brand-arrow {
        display: none !important;
    }
}


/* VERY SMALL MOBILE */
@media (max-width: 380px) {

    .rz-brand-slider {
        height: 305px !important;
    }

    .rz-brand-content {
        padding-left: 18px !important;
        padding-right: 14px !important;
    }

    .rz-brand-content h2 {
        max-width: 175px !important;

        font-size: 23px !important;
    }

    .rz-brand-content > p:not(.rz-brand-small) {
        max-width: 165px !important;

        font-size: 6.3px !important;
    }

    .rz-brand-content > a {
        min-width: 116px !important;
        min-height: 32px !important;

        font-size: 5.5px !important;
    }
}
/* =========================================================
   RZ SPORTS — FLOATING WHATSAPP BUTTON
========================================================= */

.rz-whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;

    z-index: 999999;

    display: inline-flex;
    align-items: center;
    gap: 9px;

    min-height: 48px;
    padding: 0 16px;

    color: #ffffff;
    background: #25D366;

    border-radius: 999px;

    text-decoration: none;

    font-size: 12px;
    font-weight: 900;
    letter-spacing: .4px;

    box-shadow: 0 12px 32px rgba(0, 0, 0, .35);

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.rz-whatsapp-float:hover {
    transform: translateY(-3px);
    background: #20bd5a;
    box-shadow: 0 16px 38px rgba(0, 0, 0, .42);
}

.rz-whatsapp-icon {
    width: 28px;
    height: 28px;

    display: grid;
    place-items: center;

    background: rgba(255, 255, 255, .16);

    border-radius: 50%;

    font-size: 15px;
}

@media (max-width: 600px) {

    .rz-whatsapp-float {
        right: 14px;
        bottom: 14px;

        width: 48px;
        height: 48px;
        min-height: 48px;

        padding: 0;

        justify-content: center;

        border-radius: 50%;
    }

    .rz-whatsapp-text {
        display: none;
    }

    .rz-whatsapp-icon {
        width: auto;
        height: auto;

        background: transparent;

        font-size: 18px;
    }
} 