:root {
    --primary-color: #0044cc;
    /* Scotnet Blueish */
    --accent-color: #ff3333;
    /* Scotnet Reddish */
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f9f9f9;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --radius: 8px;
    --font-main: 'Noto Sans JP', sans-serif;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

a:hover {
    opacity: 0.8;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo img {
    height: 40px;
    width: auto;
}

.site-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.site-nav a {
    font-weight: 500;
    color: var(--text-color);
    position: relative;
}

.site-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.site-nav a:hover::after {
    width: 100%;
}

.hamburger-icon {
    display: none;
}


/* Hero Section */
.hero {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    overflow: hidden;
}

.hero-bg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.6);
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

/* Hero Text Styles */
.hero-lead {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    letter-spacing: 0.05em;
}

.hero-banner-container {
    margin: 20px 0;
}

.hero-banner-img {
    max-width: 100%;
    height: auto;
    max-height: 180px;
    /* Increased size for impact */
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

.hero-sub {
    font-size: 1.4rem;
    margin-bottom: 35px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

/* Responsive adjustments for the new hero text */
@media (max-width: 768px) {
    .brand-title {
        font-size: 3.5rem;
    }

    .hero-lead {
        font-size: 1.4rem;
    }

    .hero-sub {
        font-size: 1.1rem;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 68, 204, 0.4);
}

.btn-amazon {
    background: #FF9900;
    color: var(--white);
    width: 100%;
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Sections General */
section {
    padding: 80px 0;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* About Section */
.about-container {
    max-width: 1000px;
    margin: 0 auto;
}

.about-lead {
    text-align: center;
    margin-bottom: 50px;
}

.about-catch {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.4;
}

.about-intro-grid {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: left;
}

.about-intro-image {
    flex: 1;
}

.about-intro-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.about-intro-text {
    flex: 1;
}

.about-desc {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
}

/* BRCGS Highlight Box */
.brcgs-highlight {
    background: #fff;
    border: 2px solid var(--primary-color);
    border-radius: var(--radius);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
    box-shadow: var(--shadow-sm);
}

.brcgs-img {
    flex: 0 0 150px;
    text-align: center;
}

.brcgs-img img {
    max-width: 100%;
    height: auto;
}

.brcgs-content {
    flex: 1;
}

.brcgs-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.brcgs-content p {
    margin-bottom: 10px;
}

/* Benefit Grid */
.section-subtitle {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.6rem;
    color: #333;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.benefit-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: var(--radius);
    border-top: 4px solid var(--accent-color);
    box-shadow: var(--shadow-sm);
}

.benefit-item h4 {
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
    text-align: center;
}

.benefit-item ul {
    list-style: none;
    padding: 0;
}

.benefit-item li {
    margin-bottom: 10px;
    padding-left: 15px;
    position: relative;
    font-size: 0.95rem;
}

.benefit-item li::before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Quality & Safety Grid */
.quality-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.quality-item {
    background: #fff;
    padding: 20px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.quality-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Lineup Box */
.lineup-box {
    background: #eef4ff;
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid #d0e0ff;
}

.lineup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
    text-align: left;
}

.lineup-item {
    background: white;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.lineup-item strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

/* Purchase Section */
.section-purchase {
    background: var(--bg-light);
}

.purchase-options {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.purchase-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    width: 100%;
    max-width: 450px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.purchase-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.purchase-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.purchase-card .description {
    color: var(--text-light);
    margin-bottom: 25px;
}

.purchase-card .note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
    background: #f0f4ff;
    padding: 10px;
    border-radius: 4px;
}

.benefits {
    list-style: none;
    text-align: left;
    margin-top: 20px;
}

.benefits li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.benefits li::before {
    content: '✓';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Products Section (Table) */
.subtitle {
    text-align: center;
    margin-top: -30px;
    margin-bottom: 40px;
    color: var(--text-light);
}

.table-container {
    overflow-x: auto;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius);
    background: var(--white);
    margin-bottom: 30px;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 1000px;
    /* Force scroll on small screens */
}

th,
td {
    padding: 15px 10px;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
    font-size: 0.95rem;
}

th {
    background: #003366;
    color: var(--white);
    font-weight: 500;
    font-size: 0.9rem;
    vertical-align: middle;
}

.region-header th {
    background: #0044cc;
    font-size: 0.8rem;
    padding: 8px;
}

.region-group {
    display: block;
    max-width: 150px;
    margin: 0 auto;
    line-height: 1.3;
}

tbody tr:nth-child(even) {
    background-color: #f8faff;
}

tbody tr:hover {
    background-color: #f0f4ff;
}

.product-number {
    font-weight: 700;
    color: var(--primary-color);
}

/* Notes Section */
.notes-section {
    background: #fff8f8;
    border-left: 4px solid var(--accent-color);
    padding: 20px;
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: 0.9rem;
}

.notes-section ul {
    list-style: none;
}

.notes-section li {
    margin-bottom: 8px;
}

.note-label {
    font-weight: bold;
    color: var(--accent-color);
    margin-right: 10px;
}

/* Shipping Section */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.info-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
}

.info-card h3 {
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
    display: inline-block;
    margin-bottom: 20px;
}

.info-card h4 {
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.info-card ul {
    padding-left: 20px;
}

/* Contact Section */
.section-contact {
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.section-contact h2::after {
    background: var(--white);
}

.contact-box p {
    margin-bottom: 30px;
    font-size: 1.2rem;
}

/* Footer */
.site-footer {
    background: #333;
    color: #ccc;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
}

/* Certification Box */
.certification-box {
    margin-top: 30px;
    background: #f0f8ff;
    border: 1px solid #cce0ff;
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.cert-logo img {
    max-width: 100px;
    height: auto;
}

.cert-text h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.cert-text p {
    font-size: 0.95rem;
    margin-bottom: 5px;
    color: #444;
}

.cert-text small {
    color: #777;
    font-size: 0.85rem;
}

/* Default hide mobile nav */
.mobile-nav-overlay {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {

    /* Hamburger Menu */
    .hamburger-icon {
        display: block;
        cursor: pointer;
        font-size: 1.8rem;
        color: var(--text-color);
        user-select: none;
    }

    /* Mobile Nav Overlay */
    .mobile-nav-overlay {
        position: fixed;
        top: 70px;
        /* Header height */
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        z-index: 999;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 40px;
    }

    .mobile-nav-overlay.active {
        transform: translateX(0);
    }

    .mobile-nav-overlay ul {
        list-style: none;
        text-align: center;
        width: 100%;
    }

    .mobile-nav-overlay li {
        margin-bottom: 30px;
    }

    .mobile-nav-overlay a {
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--text-color);
        display: block;
        padding: 10px;
    }

    .mobile-nav-overlay a:hover {
        color: var(--primary-color);
    }

    /* Hide desktop nav */
    .site-nav {
        display: none;
    }

    .about-lead {
        padding: 0 10px;
    }

    .brcgs-highlight {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .about-intro-grid {
        flex-direction: column;
    }

    .benefit-grid {
        grid-template-columns: 1fr;
    }

    .quality-grid {
        grid-template-columns: 1fr;
    }

    .lineup-grid {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}