/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

body {
    font-size: 16px;
    line-height: 1.5;
}

/* Navigation Styles */
nav {
    position: relative;
    z-index: 1000;
}

.mini_navtabs {
    display: none;
    background-color: #F5F5F5;
    padding: 8px 48px;
    font-size: 12px;
    justify-content: flex-end;
    gap: 15px;
    height: 36px;
    align-items: center;
}

.mini_navtabs a {
    color: #2c2922;
    text-decoration: none;
    padding-left: 10px;
    border-left: 1px solid #000;
}

.mini_navtabs a:first-child {
    border-left: none;
    padding-left: 0;
}

.major_navtabs {
    display: flex;
    align-items: center;
    padding: 15px 48px;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    height: 60px;
}

/* Mobile First - Base Logo Styles */
.jumpman {
    height: 20px;
    width: auto;
    cursor: pointer;
    position: absolute;
    left: 20px;
    top: 6px;
    z-index: 10;
}

.swooshk {
    height: 24px;
    width: auto;
    cursor: pointer;
    position: absolute;
    left: 20px;
    top: 16px;
    z-index: 9;
}

.nav-links {
    display: none;
    gap: 24px;
    font-size: 16px;
    font-weight: 500;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    color: #2c2922;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #666;
}

.searchbar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.search-input {
    display: none;
    border-radius: 20px;
    border: none;
    background-color: #E5E5E5;
    padding: 8px 15px 8px 35px;
    width: 180px;
    position: relative;
}

.search-container {
    position: relative;
}

.search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    z-index: 1;
}

.nav-icons {
    display: flex;
    gap: 12px;
    font-size: 24px;
    align-items: center;
}

.nav-icons i {
    cursor: pointer;
    transition: color 0.3s ease;
}

.nav-icons i:hover {
    color: #666;
}

/* Carousel */
.big_carousel {
    background-color: #F5F5F5;
    text-align: center;
    padding: 15px 20px;
    font-size: 14px;
}

.carousel-link {
    color: black;
    text-decoration: underline;
    font-size: 12px;
}

/* Video Section */
.video-section {
    padding: 20px;
}

.video-section video {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.video-text {
    text-align: center;
    padding: 30px 20px;
}

.video-text h1 {
    font-size: 2rem;
    font-weight: 800;
    margin: 10px 0;
}

.video-text p {
    margin-bottom: 20px;
    color: #666;
}

.shop-button {
    background-color: black;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 12px 25px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.shop-button:hover {
    background-color: #333;
}

/* Banner Section */
.banner-section {
    padding: 40px 20px;
}

.banner-section h2 {
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.banner-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.banner-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.banner-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.banner-text {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: white;
}

.banner-text h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.banner-button {
    background-color: white;
    color: black;
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 500;
}

/* Trending Section */
.trending-section {
    padding: 40px 20px;
}

.trending-section h2 {
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.trending-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.trending-item {
    text-align: center;
}

.trending-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.trending-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.trending-item a {
    color: black;
    text-decoration: none;
    font-weight: 500;
    display: block;
}

.trending-item a:hover {
    color: #666;
}

/* Product Scroll */
.product-scroll {
    padding: 40px 20px;
}

.scroll-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.scroll-buttons {
    display: flex;
    gap: 10px;
}

.scroll-btn {
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background-color: #E5E5E5;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.scroll-btn:hover {
    background-color: #ccc;
}

.product-container {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding-bottom: 10px;
    scroll-behavior: smooth;
}

.product-container::-webkit-scrollbar {
    height: 6px;
}

.product-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.product-container::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.product-item {
    flex: 0 0 250px;
    cursor: pointer;
}

.product-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}

/* Footer */
footer {
    background-color: #f8f8f8;
    padding: 40px 20px 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h6 {
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-section a {
    display: block;
    color: #807f7d;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-section a:hover {
    color: #2c2922;
}

.country-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
}

.footer-bottom {
    border-top: 1px solid #ddd;
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 12px;
    color: #666;
}

.footer-bottom a {
    color: #2c2922;
    text-decoration: none;
}

/* Utility Classes */
.hidden-mobile {
    display: none;
}

/* Responsive Design */

/* Small Mobile Devices (480px and up) */
@media (min-width: 480px) {
    .jumpman {
        height: 22px;
        left: 30px;
        top: 7px;
    }

    .swooshk {
        height: 26px;
        left: 30px;
        top: 18px;
    }

    .trending-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .banner-images {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-item {
        flex: 0 0 200px;
    }
}

/* Tablets (768px and up) */
@media (min-width: 768px) {
    .mini_navtabs {
        display: flex;
    }

    .nav-links {
        display: flex;
    }

    .search-input {
        display: block;
    }

    .hidden-mobile {
        display: block;
    }

    .jumpman {
        height: 24px;
        left: 48px;
        top: 8px;
    }

    .swooshk {
        height: 28px;
        left: 48px;
        top: 19px;
    }

    .video-text h1 {
        font-size: 3rem;
    }

    .trending-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }

    .banner-item img {
        height: 400px;
    }
}

/* Desktop (1024px and up) */
@media (min-width: 1024px) {
    .major_navtabs {
        padding: 15px 40px;
    }

    .jumpman {
        height: 26px;
        left: 40px;
        top: 8px;
    }

    .swooshk {
        height: 30px;
        left: 40px;
        top: 20px;
    }

    .video-section {
        padding: 40px;
    }

    .banner-section,
    .trending-section,
    .product-scroll {
        padding: 60px 40px;
    }

    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-bottom {
        justify-content: space-between;
    }

    .product-item {
        flex: 0 0 300px;
    }

    .product-item img {
        height: 300px;
    }
}

/* Large Desktop (1200px and up) */
@media (min-width: 1200px) {
    .jumpman {
        height: 24px;
        left: 48px;
        top: 8px;
    }

    .swooshk {
        height: 28px;
        left: 48px;
        top: 20px;
    }

    .banner-item img {
        height: 500px;
    }

    .video-text h1 {
        font-size: 4rem;
    }
}

/* TV/Extra Large Screens (1600px and up) */
@media (min-width: 1600px) {
    .major_navtabs {
        padding: 20px 60px;
        height: 70px;
    }

    .jumpman {
        height: 26px;
        left: 60px;
        top: 10px;
    }

    .swooshk {
        height: 30px;
        left: 60px;
        top: 23px;
    }

    .mini_navtabs {
        padding: 10px 60px;
        height: 40px;
    }

    .video-text h1 {
        font-size: 5rem;
    }

    .banner-item img {
        height: 600px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .nav-icons i:hover,
    .nav-links a:hover,
    .shop-button:hover,
    .scroll-btn:hover {
        color: inherit;
        background-color: inherit;
    }
    
    .nav-icons i:active,
    .shop-button:active,
    .scroll-btn:active {
        transform: scale(0.95);
    }
}
