/* General resets */

/* Hero section */
section.position-relative {
    height: auto;
}
section.position-relative .text-white {
    max-width: 600px;
}

/* Product grid */
.row.g-3 .position-relative {
    transition: transform 0.3s ease;
}
.row.g-3 .position-relative:hover {
    transform: scale(1.01);
}
.shopbtn-home {
    font-size: 0.75rem;
    background-color: #f5f5f5;
    border-radius: 2rem;
    padding: 6px 14px;
    font-weight: 500;
}

/* Slider */
.acs-slide {
    min-width: 300px;
    position: relative;
    flex: 0 0 auto;
}
.acs-slide img {
    border-radius: 8px;
}
.acs-slide .badge {
    font-size: 13px;
    font-weight: 500;
    border-radius: 2rem;
}

/* Slider nav */
.acs-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(240, 240, 240, 0.9);
    border: none;
    font-size: 24px;
    padding: 5px 12px;
    cursor: pointer;
    z-index: 10;
    border-radius: 100%;
    transition: all 0.2s ease;
}
.acs-nav:hover {
    background: #ddd;
}
.acs-nav.left {
    left: 0;
}
.acs-nav.right {
    right: 0;
}

/* Footer styling */
footer h6 {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 0.75rem;
}
footer ul {
    padding-left: 0;
}
footer ul li {
    font-size: 13px;
    color: #666;
    margin-bottom: 6px;
    transition: color 0.2s ease;
}
footer ul li:hover {
    color: #000;
}
footer .text-muted {
    font-size: 12px;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .position-absolute.top-50 {
        position: relative !important;
        top: auto !important;
        transform: none !important;
        padding: 2rem 1rem;
        text-align: left;
    }

    .acs-slide {
        min-width: 250px;
    }

    footer .row > div {
        margin-bottom: 2rem;
    }
}

.acs-icons i {
    font-size: 20px;
    color: #111;
    cursor: pointer;
    transition: color 0.2s ease;
}

.acs-icons i:hover {
    color: #000;
}

.jordan-icon {
    transform: scaleX(-1) rotate(-5deg);
}

.converse-icon {
    transform: rotate(12deg);
}

.mdi {
    font-size: 20px;
    color: #111;
    transition: color 0.2s ease;
}
.mdi:hover {
    color: #000;
}

.hero-img-parent{
    background-color: #000;
}

.acs-hero-banner {
    position: relative;
    overflow: hidden;
    min-height: 400px;
    aspect-ratio: 2.5 / 1;
}

.hero-img {
    object-fit: cover;
    object-position: center;
    height: 100%;
    max-height: 100vh;
}

.hero-text-container {
    position: absolute;
    left: 3%;
    bottom: 4%;
    color: white;
    max-width: 90%;
    z-index: 2;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

.hero-title {
    font-weight: 900;
    font-size: clamp(1.5rem, 3vw + 1rem, 3.2rem);
    line-height: 1.2;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: clamp(0.9rem, 1.2vw, 1.2rem);
    margin-bottom: 0.8rem;
}

.hero-text-container .btn {
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 999px;
}

.product-image{
    background-color: #f1f4f8;
}