@charset "UTF-8";
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    animation: gradientShift 15s ease infinite;
}
@keyframes gradientShift {
    0%, 100% { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
    50% { background: linear-gradient(135deg, #764ba2 0%, #667eea 100%); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
@keyframes slideIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.3); }
    50% { transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
.header {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 28px;
    font-weight: 800;
    color: #667eea;
    text-decoration: none;
    animation: bounceIn 1s ease;
}
.logo span {
    color: #764ba2;
}
.menu {
    display: flex;
    gap: 30px;
    list-style: none;
}
.menu a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.menu a:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}
.menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}
.menu a:hover::before {
    left: 100%;
}
.hero {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    margin: 40px auto;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    text-align: center;
    animation: slideIn 0.8s ease;
}
.hero h1 {
    font-size: 48px;
    color: #333;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p {
    font-size: 20px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}
.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 30px;
    background: linear-gradient(135deg, rgba(102,126,234,0.1) 0%, rgba(118,75,162,0.1) 100%);
    border-radius: 15px;
    transition: all 0.3s ease;
}
.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102,126,234,0.2);
}
.contact-item i {
    font-size: 24px;
    color: #667eea;
}
.contact-item a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
}
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}
.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
    animation: slideIn 0.6s ease backwards;
}
.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }
.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(102,126,234,0.3);
}
.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.4s ease;
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.gallery-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    transform: translateY(100%);
    transition: all 0.4s ease;
}
.gallery-item:hover .overlay {
    transform: translateY(0);
}
.overlay h3 {
    color: white;
    font-size: 16px;
}
.content-section {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    margin: 40px auto;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    animation: slideIn 0.8s ease;
}
.content-section h2 {
font-size: 36px;
    color: #333;
    margin-bottom: 25px;
    text-align: center;
}
.page-content {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    margin: 40px auto;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    animation: slideIn 0.8s ease;
}
.page-content h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 25px;
    text-align: center;
}
.page-content p {
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}
.seo-page .product-grid {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    margin: 40px auto;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    animation: slideIn 0.8s ease;
}
.seo-page h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 25px;
    text-align: center;
}
.seo-page {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    margin: 40px auto;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    animation: slideIn 0.8s ease;
}
.seo-page p {
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}
.seo-page .product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 30px 0;
}
.seo-page .product-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    background: white;
}
.seo-page .product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102,126,234,0.2);
}
.seo-page .product-item img {
    width: 100%;
    height: auto;
    max-height: 180px;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    display: block;
}
.seo-page .product-item span {
    display: block;
    padding: 10px;
    text-align: center;
    font-weight: 600;
    color: #333;
    background: #f8f9fa;
    min-height: 45px;
    line-height: 25px;
}
.seo-page .product-item .order-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}
}
.product-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 20px;
    background: white;
}
.product-item img {
    width: 100%;
    height: auto;
    max-height: 180px;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    display: block;
}
}
.product-item .order-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.product-item .order-btn:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 30px 0;
}
.product-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102,126,234,0.2);
}
.product-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
.product-item .order-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
}
.product-item .order-btn:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}
.order-button {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 20px;
    font-weight: 700;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(102,126,234,0.4);
    animation: pulse 2s infinite;
    margin: 30px auto;
    text-align: center;
    display: block;
    width: fit-content;
}
.order-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(102,126,234,0.5);
}
.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
}
.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}
.content-section {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.content-section h2 {
    font-size: 32px;
    color: #667eea;
    margin-bottom: 20px;
    text-align: center;
}
.sitemap-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    text-align: center;
    animation: bounceIn 0.8s ease backwards;
}
.sitemap-card:nth-child(1) { animation-delay: 0.1s; }
.sitemap-card:nth-child(2) { animation-delay: 0.2s; }
.sitemap-card:nth-child(3) { animation-delay: 0.3s; }
.sitemap-card:nth-child(4) { animation-delay: 0.4s; }
.sitemap-card:nth-child(5) { animation-delay: 0.5s; }
.sitemap-card:nth-child(6) { animation-delay: 0.6s; }
.sitemap-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(102,126,234,0.3);
}
.sitemap-card h3 {
    font-size: 24px;
    color: #667eea;
    margin-bottom: 15px;
}
.sitemap-card ul {
    list-style: none;
    text-align: left;
}
.sitemap-card li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(102,126,234,0.1);
}
.sitemap-card li:last-child {
    border-bottom: none;
}
.sitemap-card a {
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}
.sitemap-card a:hover {
    color: #667eea;
    padding-left: 10px;
}
.sitemap-card .icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}
.footer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    backdrop-filter: blur(10px);
    margin-top: 60px;
    padding: 40px 0;
    text-align: center;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.1);
}
.footer a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}
.footer a:hover {
    color: #ffd700;
    text-decoration: underline;
}
.flash-animation {
    animation: float 3s ease-in-out infinite;
}
.flash-animation:nth-child(even) {
    animation-delay: 0.5s;
}
.flash-animation:nth-child(3n) {
    animation-delay: 1s;
}
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 20px;
    }
    .menu {
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero h1 {
        font-size: 32px;
    }
    .hero {
        padding: 30px;
    }
    .content-section, .page-content, .seo-page {
        padding: 30px;
        margin: 20px;
    }
    .image-gallery {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    .contact-info {
        flex-direction: column;
        align-items: center;
    }
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 40px 0;
    flex-wrap: wrap;
}
.pagination a {
    display: inline-block;
    padding: 12px 18px;
    background: rgba(255,255,255,0.9);
    color: #333;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.pagination a:hover {
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    color: #333;
    transform: translateY(-3px);
}
.pagination a.active {
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    color: #333;
    font-weight: 800;
    font-size: 20px;
    box-shadow: 0 6px 20px rgba(255,215,0,0.4);
}