/* BillabongLife Brand Colors */
:root {
    --navy: #0A3246;
    --orange: #DF8929;
    --burnt-orange: #B85E0E;
    --teal: #5DA1AB;
    --white: #FFFFFF;
    --light-bg: #F8F9FA;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background-color: var(--light-bg);
    color: var(--navy);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    padding: 2rem 0;
    margin-bottom: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 120px;
    height: auto;
    display: block;
}

.logo-3dn {
    width: 300px;
    height: auto;
    display: block;
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.intro-text {
    text-align: center;
    max-width: 800px;
    margin-bottom: 3rem;
}

.intro-text p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--navy);
}

.product-grid {
    display: grid;
    gap: 2rem;
    width: 100%;
    max-width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Product Tile */
.product-tile {
    background: var(--white);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    text-decoration: none;
    color: var(--navy);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(10, 50, 70, 0.08);
    border: 2px solid transparent;
    display: block;
}

.product-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(10, 50, 70, 0.15);
    border-color: var(--teal);
}

.product-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--navy);
}

.product-description {
    font-size: 1.125rem;
    color: var(--teal);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-cta {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--orange);
    transition: color 0.3s ease;
}

.product-tile:hover .product-cta {
    color: var(--burnt-orange);
}

/* Coming Soon Tile */
.product-tile-coming-soon {
    opacity: 0.7;
    cursor: default;
    position: relative;
}

.product-tile-coming-soon:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(10, 50, 70, 0.08);
    border-color: transparent;
}

.product-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--teal);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem 0;
    color: var(--teal);
    font-size: 0.875rem;
    margin-top: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }

    .header {
        padding: 1rem 0;
        margin-bottom: 2rem;
    }

    .logo {
        width: 80px;
    }

    .logo-3dn {
        width: 240px;
    }

    .product-tile {
        padding: 2rem 1.5rem;
    }

    .product-icon {
        width: 100px;
        height: 100px;
    }

    .product-title {
        font-size: 1.5rem;
    }

    .product-description {
        font-size: 1rem;
    }

    .intro-text p {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }

    .logo {
        width: 60px;
    }

    .logo-3dn {
        width: 200px;
    }

    .product-tile {
        padding: 1.5rem 1rem;
    }

    .product-title {
        font-size: 1.25rem;
    }

    .product-description {
        font-size: 0.9375rem;
    }

    .intro-text {
        margin-bottom: 2rem;
    }

    .intro-text p {
        font-size: 1rem;
    }
}
