body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: white;
    color: black;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    flex-wrap: wrap;
}

.logo {
    height: 95px;
}

nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

nav a {
    color: black;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav a:hover {
    text-decoration: underline;
}

.hero {
    padding: 40px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 52px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero p {
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto 30px;
}

.button {
    display: inline-block;
    background: black;
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
}

.shop {
    padding: 60px 20px;
    text-align: center;
}

.home-message {
    max-width: 800px;
    margin: 40px auto 70px;
    padding: 0 20px;
    text-align: center;
}

.home-message p {
    font-size: 28px;
    font-weight: bold;
    line-height: 1.6;
}

.shop h2 {
    font-size: 36px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.product-card {
    border: 2px solid black;
    padding: 30px;
    transition: transform 0.2s ease;
}

.product-link {
    text-decoration: none;
    color: inherit;
}

.product-card {
    transition: transform 0.2s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-4px);
}

.product-card img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    margin-bottom: 20px;
}

.product-card h3 {
    font-size: 24px;
    text-transform: uppercase;
}

.product-card p {
    font-size: 20px;
    font-weight: bold;
}

.about-brand {
    max-width: 900px;
    margin: 80px auto;
    text-align: center;
    padding: 0 20px;
}

.about-brand h2 {
    font-size: 42px;
    margin-bottom: 40px;
}

.about-brand p {
    font-size: 24px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.about-page {
    max-width: 850px;
    margin: 80px auto;
    padding: 0 20px;
    text-align: center;
}

.about-page h1 {
    font-size: 48px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

.about-page p {
    font-size: 22px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.about-page a {
    color: black;
    font-weight: bold;
    text-decoration: underline;
}

.contact {
    max-width: 900px;
    margin: 20px auto 80px;
    padding: 0 30px;
}

.contact h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.contact a {
    color: #000;
    font-weight: 600;
    text-decoration: underline;
}

.contact a:hover {
    text-decoration: none;
}

.page-content {
    max-width: 850px;
    margin: 70px auto;
    padding: 20px;
    line-height: 1.8;
}

.page-content h1 {
    margin-bottom: 30px;
}

.page-content h2 {
    margin-top: 60px;
    margin-bottom: 20px;
}

.page-content hr {
    margin: 60px 0;
    border: none;
    border-top: 1px solid #ddd;
}

.product-page {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    max-width: 1100px;
    margin: 60px auto;
    padding: 20px;
}

.product-image {
    flex: 1;
}

.product-image img {
    width: 100%;
    border-radius: 12px;
}

.product-info {
    flex: 1;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    margin: 20px 0;
}

.product-story {
    max-width: 900px;
    margin: 60px auto;
    padding: 20px;
}

.product-page-simple {
    max-width: 1100px;
    margin: 70px auto;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.product-image-simple img {
    width: 100%;
    max-height: 650px;
    object-fit: cover;
    border-radius: 10px;
}

.product-info-simple h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.product-info-simple h2 {
    font-size: 24px;
    margin-top: 30px;
}

.message-line {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.8;
    margin: 30px 0;
}

.product-select {
    width: 220px;
    padding: 10px;
    margin-top: 8px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #fff;
}

.shipping-note {
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

.checkout-note {
    margin-top: 18px;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

.available-sizes {
    font-size: 17px;
    margin-bottom: 25px;
    color: #333;
    letter-spacing: 1px;
}

.gst-note {
    font-size: 16px;
    font-weight: normal;
}

.footer-gst {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}

.back-link {
    margin-top: 25px;
}

.back-link a {
    text-decoration: none;
    color: #444;
    font-weight: bold;
}

.back-link a:hover {
    color: #000;
}

.site-footer {
    margin-top: 80px;
    padding: 50px 20px;
    text-align: center;
    border-top: 1px solid #ddd;
}

.footer-logo {
    width: 35px;
    margin-bottom: 20px;
}

.footer-tagline {
    font-weight: bold;
    margin-bottom: 25px;
    line-height: 1.6;
}

.footer-message {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.footer-links {
    margin-bottom: 25px;
}

.footer-links a {
    margin: 0 15px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
}

.footer-links a:hover {
    text-decoration: underline;
}

.copyright {
    font-size: 14px;
    color: #777;
}

@media (max-width: 700px) {
    .site-header {
        flex-direction: column;
        gap: 20px;
    }

    nav {
        justify-content: center;
    }

    .hero h1 {
        font-size: 42px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-page {
        flex-direction: column;
    }

    .product-page-simple {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

