
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body {
    overflow-x: hidden;
    background-color: rgb(3, 7, 18);
}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    inset: 0;
    background: linear-gradient(144deg, rgba(4, 49, 74, 1) 0%, rgba(8, 31, 26, 1) 63%, rgba(237, 101, 83, 1) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader-shoe {
    font-size: 40px;
    margin-bottom: 20px;
    animation: preloaderBounce 0.6s ease infinite alternate;
}

@keyframes preloaderBounce {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-14px);
    }
}

.preloader-logo {
    font-size: 34px;
    font-weight: 700;
    color: white;
    letter-spacing: 4px;
    margin-bottom: 36px;
}

.preloader-logo span {
    color: #e7732e;
}

.preloader-track {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 20px;
}

.preloader-fill {
    height: 100%;
    width: 0%;
    background: #e7732e;
    border-radius: 2px;
    animation: preloaderBar 2.5s ease forwards;
}

@keyframes preloaderBar {
    0% {
        width: 0%;
    }

    60% {
        width: 70%;
    }

    80% {
        width: 88%;
    }

    100% {
        width: 100%;
    }
}

.preloader-text {
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
    letter-spacing: 3px;
    animation: preloaderPulse 1.2s ease infinite;
}

@keyframes preloaderPulse {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}

.preloader-dots {
    display: flex;
    gap: 8px;
    margin-top: 14px;
}

.preloader-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #e7732e;
    animation: dotPop 1s ease infinite;
}

.preloader-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.preloader-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes dotPop {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.4;
    }

    50% {
        transform: translateY(-7px);
        opacity: 1;
    }
}

/* ===== NAVBAR ===== */
.stride-navbar {
    background-color: rgb(3, 7, 18);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.stride-navbar .navbar-brand img {
    height: 50px;
}

.stride-navbar .nav-link {
    color: rgb(220, 220, 220) !important;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 14px;
    transition: color 0.2s;
}

.stride-navbar .nav-link:hover {
    color: rgba(240, 99, 16) !important;
}

.nav-icon-link {
    color: rgb(191, 191, 191);
    padding: 8px 10px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.2s;
}

.nav-icon-link:hover {
    background-color: rgb(218, 216, 216);
    color: #333;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(144deg, rgba(4, 49, 74, 1) 0%, rgba(8, 31, 26, 1) 63%, rgba(237, 101, 83, 1) 100%);
    min-height: 650px;
    padding: 60px 0;
}

.hero-text-col {
    padding-top: 20px;
}

.hero-badge {
    display: inline-block;
    background-color: rgb(98, 69, 53);
    color: #f07000;
    font-size: 12.5px;
    padding: 8px 16px;
    border-radius: 100px;
}

.hero-title-white {
    font-size: clamp(40px, 6vw, 65px);
    color: white;
    font-weight: 700;
    line-height: 1.1;
}

.hero-title-orange {
    font-size: clamp(40px, 6vw, 65px);
    color: rgb(231, 115, 46);
    font-weight: 700;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(14px, 2vw, 22px);
    color: rgb(183, 183, 183);
    margin-top: 16px;
    max-width: 520px;
}

.btn-primary-stride {
    border-radius: 100px;
    border: none;
    background-color: rgb(231, 115, 46);
    color: white;
    box-shadow: 0px 0px 15px 0px rgb(240, 146, 5);
    padding: 16px 28px;
    font-size: 15px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.btn-primary-stride:hover {
    opacity: 0.85;
}

.btn-outline-stride {
    border-radius: 100px;
    border: 1px solid white;
    color: white;
    background-color: transparent;
    padding: 16px 28px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-outline-stride:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.hero-stats {
    border-top: 1px solid grey;
    padding-top: 20px;
}

.stat-item {
    border-color: grey !important;
}

.stat-num {
    color: white;
    font-size: 26px;
    font-weight: 700;
    margin: 0;
}

.stat-label {
    color: grey;
    font-size: 13px;
    margin: 0;
}

/* Hero Image Wrapper — positions badges as overlays */
.hero-img-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 520px;
    transform: rotate(10deg);
}

/* Hero Shoe Image */
.hero-shoe-img {
    width: 100%;
    height: 100%;
    max-height: 450px;
    border-radius: 15px;
    object-fit: cover;
    animation: moveUpDown 1.5s infinite alternate;
    display: block;
}

/* Floating Badge Base */
.hero-info-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    background-color: rgba(16, 24, 40, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 14px 20px;
    position: absolute;
    white-space: nowrap;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
    z-index: 10;
}

/* Free Shipping — left-middle */
.float-badge-shipping {
    left: -100px;
    top: 35%;
    animation: floatBadge1 3s ease-in-out infinite;
    rotate: calc(-10deg);
    background: rgba(255, 255, 255, .14);
    backdrop-filter: blur(10px);
}

/* Easy Returns — bottom-right */
.float-badge-returns {
    right: -20px;
    bottom: 12%;
    animation: floatBadge2 3.4s ease-in-out infinite;
    rotate: calc(-10deg);
    background: rgba(255, 255, 255, .14);
    backdrop-filter: blur(10px);
}

/* Discount circle — top-right */
.hero-discount-badge {
    background-color: rgb(231, 115, 46);
    color: white;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    text-align: center;
    line-height: 14px;
    position: absolute;
    top: -18px;
    right: -18px;
    z-index: 10;
    box-shadow: 0 6px 24px rgba(231, 115, 46, 0.5);
    animation: floatBadge3 2.8s ease-in-out infinite;
}

.hero-discount-badge b {
    font-size: 20px;
    font-weight: 800;
}

/* Badge icon circle */
.badge-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.badge-green {
    background-color: rgb(39, 174, 39);
    color: rgb(0, 255, 0);
}

.badge-yellow {
    background-color: rgb(207, 210, 9);
    color: rgb(170, 140, 0);
}

.badge-title {
    color: white;
    font-size: 15px;
    font-weight: 700;
}

.badge-sub {
    color: rgb(160, 160, 160);
    font-size: 12px;
    margin-top: 2px;
}

/* Bounce animations — each badge has its own timing so they feel independent */
@keyframes floatBadge1 {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes floatBadge2 {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes floatBadge3 {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-8px) rotate(3deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

@keyframes moveUpDown {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-20px);
    }
}

/* ===== SECTIONS ===== */
.section-dark {
    background-color: rgb(3, 7, 18);
}

.section-darker {
    background-color: rgb(16, 24, 40);
}

.section-title {
    font-size: clamp(24px, 4vw, 32px);
    color: white;
    font-weight: 700;
}

.section-subtitle {
    font-size: 16px;
    color: rgb(185, 185, 185);
}

/* ===== CATEGORY CARDS ===== */
.category-card {
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    overflow: hidden;
    height: 270px;
    display: flex;
    align-items: flex-end;
    transition: transform 0.4s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: scale(1.04);
}

.cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.15));
}

.cat-content {
    position: relative;
    z-index: 2;
    padding: 20px 24px;
    width: 100%;
    color: white;
}

.cat-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 40px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 8px;
}

.cat-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
}

.cat-content p {
    font-size: 13px;
    color: rgb(205, 205, 205);
    margin-bottom: 8px;
    line-height: 1.4;
}

.cat-link {
    color: white;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}

/* ===== PRODUCT CARDS ===== */
.product-card {
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.3s;
    background-color: rgb(16, 24, 40);
    padding-bottom: 16px;
}

.product-card:hover {
    transform: translateY(-6px);
}

.product-card img {
    width: 290px;
    height: 330px;
    object-fit: cover;
    border-radius: 10px 10px 10px 10px;
}

.product-info {
    padding: 14px 16px 0;
}

.prod-cat {
    color: #9fb3c8;
    font-size: 13px;
}

.product-info h4 {
    color: white;
    font-size: 17px;
    margin: 6px 0;
}

.prod-price {
    color: white;
    font-size: 18px;
    font-weight: 700;
}

.prod-old-price {
    color: rgb(80, 80, 80);
    text-decoration: line-through;
    font-size: 15px;
}

.color-dots {
    display: flex;
    gap: 7px;
}

.color-dots span {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
}

.prod-sizes {
    color: rgb(80, 80, 80);
    font-size: 13px;
    margin-top: 10px;
}

/* ===== SHIPPING BANNER ===== */
.shipping-banner {
    background-color: rgb(3, 7, 18);
}

.shipping-banner img {
    display: block;
    width: 100%;
    object-fit: cover;
}

/* ===== REVIEWS ===== */
.feedback-tag {
    background-color: rgba(255, 85, 0, 0.8);
    color: #ffa500;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.review-card-new {
    background-color: rgb(16, 24, 40);
    border-radius: 15px;
    padding: 28px;
    text-align: left;
    height: 100%;
}

.stars {
    color: #f4b400;
    font-size: 20px;
}

.review-text {
    color: white;
    font-size: 14px;
    line-height: 1.6;
}

.reviewer-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.reviewer-name {
    color: white;
    font-size: 15px;
    font-weight: 600;
}

.reviewer-role {
    color: rgb(151, 151, 151);
    font-size: 13px;
}

/* ===== NEWSLETTER BAR ===== */
.newsletter-bar {
    background-color: rgb(16, 24, 40);
    border-top: 1px solid rgb(79, 79, 79);
    border-bottom: 1px solid rgb(79, 79, 79);
    padding: 28px 0;
}

.newsletter-input {
    padding: 12px 16px;
    border: 1px solid #383838;
    background-color: rgb(28, 32, 44);
    border-radius: 5px;
    color: white;
    outline: none;
    min-width: 200px;
}

.newsletter-input::placeholder {
    color: #888;
}

.newsletter-btn {
    padding: 12px 24px;
    border: none;
    background-color: #ff4800;
    border-radius: 5px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.2s;
    white-space: nowrap;
}

.newsletter-btn:hover {
    opacity: 0.85;
}

/* ===== FOOTER ===== */
.footer-main-new {
    background-color: rgb(16, 24, 40);
    padding: 60px 0 30px;
}

.footer-desc {
    color: #b8b8b9;
    font-size: 14px;
    line-height: 1.6;
    max-width: 260px;
}

.footer-social-icons {
    display: flex;
    gap: 16px;
    font-size: 20px;
    color: #7d7d7d;
}

.footer-social-icons i:hover {
    color: #ff7b29;
    cursor: pointer;
}

.footer-col-title {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

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

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

.footer-links li a {
    text-decoration: none;
    color: #bfbfbf;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links li a:hover {
    color: #ff7b29;
}

.footer-bottom {
    border-top: 1px solid rgb(50, 55, 70);
}

/* ===========================
   RESPONSIVE OVERRIDES
=========================== */

/* Tablets */
@media (max-width: 991px) {
    .hero-section {
        min-height: auto;
        padding: 40px 0 50px;
    }

    .hero-shoe-img {
        max-width: 400px;
        margin-top: 40px;
    }

    .hero-text-col {
        text-align: center;
    }

    .hero-subtitle {
        margin: 16px auto;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .stat-item {
        border-right: none !important;
        padding-right: 0 !important;
        margin-right: 0 !important;
        text-align: center;
    }

    .hero-stats {
        gap: 20px !important;
    }

    .d-flex.flex-wrap.gap-3.mt-4:last-of-type {
        justify-content: center;
    }

    .navbar-icons {
        margin-top: 10px;
        justify-content: center;
    }
}

/* Mobile */
@media (max-width: 767px) {

    .hero-title-white,
    .hero-title-orange {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .category-card {
        height: 220px;
    }

    .product-card img {
        height: 180px;
    }

    .hero-img-wrapper {
        max-width: 340px;
        margin-top: 50px;
    }

    .hero-shoe-img {
        max-width: 100%;
    }

    .float-badge-shipping {
        left: -10px;
        top: 30%;
    }

    .float-badge-returns {
        right: -10px;
        bottom: 10%;
    }

    .hero-discount-badge {
        width: 72px;
        height: 72px;
        top: -12px;
        right: -12px;
        font-size: 11px;
    }

    .hero-discount-badge b {
        font-size: 18px;
    }

    .section-title {
        font-size: 24px;
    }

    .footer-desc {
        max-width: 100%;
    }

    .newsletter-input {
        width: 100%;
    }
}

/* Small mobile */
@media (max-width: 480px) {

    .hero-title-white,
    .hero-title-orange {
        font-size: 32px;
    }

    .btn-primary-stride,
    .btn-outline-stride {
        padding: 13px 20px;
        font-size: 14px;
        width: 100%;
        text-align: center;
    }

    .hero-btns {
        flex-direction: column;
    }

    .hero-btns a {
        width: 100%;
    }

    .category-card {
        height: 200px;
    }
}