/*
Theme Name: Mahjong Flow
Theme URI: https://www.mahjongflow.com
Description: A colorful, modern WordPress theme for Mahjong Flow Mahjong tile set store
Version: 1.0
Author: Mahjong Flow
Author URI: https://www.mahjongflow.com
*/

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

body {
    font-family: 'Georgia', serif;
    line-height: 1.8;
    color: #333;
    background: linear-gradient(135deg, #faf5ff 0%, #fff0f8 100%);
}

header {
    background: linear-gradient(135deg, #e6d5f5 0%, #ffd4eb 100%);
    color: #5a2d7a;
    padding: 1.5rem 0;
    border-bottom: 2px solid #d4a5f3;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

h1 {
    font-size: 2rem;
    margin-bottom: 0.3rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: #5a2d7a;
    text-shadow: 1px 1px 2px rgba(212, 165, 243, 0.3);
}

.tagline {
    font-size: 0.9rem;
    font-style: italic;
    color: #7d4a9d;
    font-weight: 300;
}

nav {
    background: linear-gradient(135deg, #b794c7 0%, #f5a9d0 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid #a67cb8;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

nav a:hover {
    color: #ffe6f5;
    text-shadow: 0 0 10px rgba(255, 230, 245, 0.5);
}

.hero {
    background: linear-gradient(135deg, #e8d5f7 0%, #ffd9ec 100%);
    color: #5a2d7a;
    padding: 5rem 2rem;
    text-align: center;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    border: 2px solid #d4a5f3;
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: #6b3a8c;
}

.hero p {
    font-size: 1rem;
    margin-bottom: 2.5rem;
    font-style: italic;
    color: #8854a8;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #c084fc 0%, #f472b6 100%);
    color: #fff;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(192, 132, 252, 0.3);
    border: 2px solid #a855f7;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cta-button:hover {
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.4);
}

.products {
    padding: 4rem 0;
    background: #fff;
}

.products h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 4rem;
    color: #6b3a8c;
    font-weight: 400;
    letter-spacing: 1px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.product-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid #e8d5f7;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(192, 132, 252, 0.2);
    border-color: #c084fc;
}

.product-image {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    background: linear-gradient(135deg, #f3e8ff 0%, #fce7f3 100%);
    color: #a855f7;
    border-bottom: 2px solid #e8d5f7;
}

.product-card:nth-child(2) .product-image {
    background: linear-gradient(135deg, #fce7f3 0%, #ffe4f1 100%);
    color: #ec4899;
}

.product-card:nth-child(3) .product-image {
    background: linear-gradient(135deg, #ede9fe 0%, #fdf4ff 100%);
    color: #c084fc;
}

.product-info {
    padding: 2rem;
    text-align: center;
}

.product-info h3 {
    color: #6b3a8c;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.product-info p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.price {
    font-size: 1.3rem;
    color: #a855f7;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.buy-button {
    display: inline-block;
    width: auto;
    background: linear-gradient(135deg, #c084fc 0%, #f472b6 100%);
    color: #fff;
    padding: 0.8rem 2rem;
    text-align: center;
    text-decoration: none;
    border-radius: 0;
    font-weight: 400;
    transition: all 0.3s;
    border: 2px solid #a855f7;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    box-shadow: 0 3px 10px rgba(192, 132, 252, 0.3);
}

.buy-button:hover {
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(168, 85, 247, 0.4);
}

.features {
    background: linear-gradient(135deg, #f3e8ff 0%, #fce7f3 100%);
    padding: 4rem 2rem;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    border-top: 2px solid #e8d5f7;
}

.features h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 3rem;
    color: #6b3a8c;
    font-weight: 400;
    letter-spacing: 1px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 10px;
    border: 2px solid #e8d5f7;
    transition: all 0.3s;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: #c084fc;
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: #7d4a9d;
    margin-bottom: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    font-size: 1.1rem;
}

.feature-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

footer {
    background: linear-gradient(135deg, #faf5ff 0%, #fff0f8 100%);
    color: #666;
    text-align: center;
    padding: 3rem 0;
    margin-top: 0;
    border-top: 2px solid #d4a5f3;
}

footer p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

footer strong {
    color: #6b3a8c;
    font-weight: 400;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.5rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    nav ul {
        gap: 1.5rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .product-image {
        height: 300px;
    }
}
