:root {
    --light-blue: #E9F8F9;
    --medium-blue: #5BA4CF;
    --dark-blue: #005792;
    --accent-blue: #00BBF0;
    --navy: #0F1035;
    --text-dark: #2D3250;
    --text-medium: #555;
    --text-light: #fff;
    --light-gray: #f5f5f5;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    background-color: white;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header & Navigation */
header {
    background-color: #fff;
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(15, 16, 53, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0F1035;
}
.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 500;
    transition: all 0.3s ease;
    color: var(--text-dark);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-blue);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--dark-blue);
}
.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 500;
    transition: all 0.3s ease;
    color: var(--text-dark);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-blue);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--dark-blue);
}

.auth-btns {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.5rem 1.2rem;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline {
    border: 1px solid #365486;
    color: #365486;
}

.btn-filled {
    background-color: #365486;
    color: #fff;
    border: 1px solid #365486;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(15, 16, 53, 0.2);
}

.page-header {
    padding-top: 8rem;
    padding-bottom: 2rem;
    background-color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

.page-header p {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-dark);
}

/* Filter Section */
.filter-section {
    background-color: white;
    padding: 1rem 5%;
    border-bottom: 1px solid #eee;
}

.filter-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-dropdown {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: white;
    cursor: pointer;
}

.search-bar {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.search-bar input {
    padding: 0.5rem 1rem;
    border: none;
    outline: none;
    width: 200px;
}

.search-bar button {
    padding: 0.5rem 1rem;
    background-color: var(--dark-blue);
    color: white;
    border: none;
    cursor: pointer;
}

.section-empty {
    margin: 3rem;
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-medium)
}

/* Category Tabs */
.category-tabs {
    background-color: white;
    padding: 1rem 5%;
    overflow-x: auto;
    white-space: nowrap;
    border-bottom: 1px solid #eee;
}

.tab-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.category-tab {
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-tab.active {
    background-color: var(--dark-blue);
    color: white;
}

.category-tab:hover:not(.active) {
    background-color: #f0f0f0;
}

/* Product Grid */
.products-section {
    padding: 2rem 5%;
    background-color: var(--light-blue);
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--dark-blue);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--dark-blue);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.product-details {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.product-price {
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #777;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.product-rating i {
    color: gold;
}

/* Video & Photo Gallery Section */
.gallery-section {
    padding: 3rem 5%;
    background-color: white;
}

.gallery-tabs {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

.gallery-tab {
    font-weight: 500;
    cursor: pointer;
    position: relative;
    padding-bottom: 0.5rem;
}

.gallery-tab.active {
    color: var(--dark-blue);
}

.gallery-tab.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--dark-blue);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    height: 200px;
    cursor: pointer;
}

.gallery-item img, .gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 16, 53, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-play {
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-blue);
    font-size: 1.2rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    gap: 0.5rem;
}

.page-item {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background-color: white;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-item.active {
    background-color: var(--dark-blue);
    color: white;
    border-color: var(--dark-blue);
}

.page-item:hover:not(.active) {
    background-color: #f0f0f0;
}

/* Footer */
footer {
    padding: 3rem 5%;
    background-color: var(--navy);
    color: var(--light-blue);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background-color: rgba(220, 242, 241, 0.1);
}

.footer-social a:hover {
    transform: translateY(-3px);
    background-color: var(--medium-blue);
    color: var(--navy);
}

.footer-links h4, .footer-contact h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a:hover {
    color: var(--medium-blue);
}

.footer-contact p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.copyright {
    text-align: center;
    padding: 1.5rem 0 0;
    margin-top: 2rem;
    border-top: 1px solid rgba(220, 242, 241, 0.1);
}

/* Outdoor Section (like in the wireframe) */
.outdoor-section {
    padding: 3rem 5%;
    background-color: white;
}

.outdoor-header {
    text-align: center;
    margin-bottom: 2rem;
}

.outdoor-header h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.outdoor-header p {
    max-width: 800px;
    margin: 0 auto;
    color: #666;
}

/* Responsive Design */
@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 1rem;
    }
    
    .logo {
        margin-bottom: 1rem;
    }
    
    .nav-links {
        margin-bottom: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .filter-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .gallery-tabs {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 0.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}