* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Hiragino Sans', 'Noto Sans JP', sans-serif;
    line-height: 1.8;
    color: #2c2c2c;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    padding: 140px 0 100px;
    text-align: center;
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 100;
    letter-spacing: 8px;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.8s forwards;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 1s ease 1.1s forwards;
}

.price {
    font-size: 2.5rem;
    font-weight: 200;
    letter-spacing: 3px;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 1s ease 1.4s forwards;
}

.price-note {
    font-size: 0.95rem;
    opacity: 0.8;
    letter-spacing: 1px;
    opacity: 0;
    animation: fadeInUp 1s ease 1.7s forwards;
}

/* Product Section */
.products {
    padding: 100px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 100;
    letter-spacing: 5px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 80px;
    letter-spacing: 1px;
}

.color-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    margin-top: 60px;
}

.color-card {
    text-align: center;
    padding: 40px;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    background: #f8f9fa;
    border: 2px solid transparent;
    text-decoration: none !important;
    color: inherit;
    display: block;
}

.color-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #e9ecef;
    text-decoration: none !important;
}

.color-card h3,
.color-card p {
    text-decoration: none !important;
}

.color-display {
    width: 220px;
    height: 220px;
    border-radius: 20px;
    margin: 0 auto 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f8f9fa;
}

.color-display::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 15%;
    width: 70%;
    height: 70%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 100%);
    border-radius: 8px;
}

.color-grey { 
    background-image: url('http://linquestore.net/wp-content/uploads/2025/06/LuxeTrainer-gray.png');
    background-size: contain;
}
.color-white { 
    background-image: url('http://linquestore.net/wp-content/uploads/2025/05/LuxeTrainer-white.jpg');
    background-size: contain;
    border: 1px solid #e9ecef;
    background-color: #ffffff;
}
.color-lightblue { 
    background-image: url('http://linquestore.net/wp-content/uploads/2025/05/LuxeTrainer-lightblue.jpg');
    background-size: contain;
}
.color-navy { 
    background-image: url('http://linquestore.net/wp-content/uploads/2025/06/LuxeTrainer-navy.png');
    background-size: contain;
}

.color-name {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.color-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: linear-gradient(45deg, #f8f9fa 0%, #ffffff 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-top: 60px;
}

.feature-item {
    text-align: center;
    padding: 40px 20px;
}

.feature-number {
    font-size: 4rem;
    font-weight: 100;
    color: #667eea;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 1px;
    color: #1a1a1a;
}

.feature-text {
    color: #666;
    line-height: 1.7;
    letter-spacing: 0.5px;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    font-weight: 100;
    letter-spacing: 4px;
    margin-bottom: 30px;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 50px;
    opacity: 0.8;
    letter-spacing: 1px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px 60px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 2px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.4);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 30px;
    text-align: center;
}

.footer-content {
    margin-bottom: 30px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #667eea;
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.6;
    letter-spacing: 1px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }
    
    .section-title {
        font-size: 2rem;
        letter-spacing: 3px;
    }
    
    .nav-links {
        display: none;
    }
    
    .color-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 40px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 20px;
    }
}