﻿:root {
    --primary-dark: #701C1C;
    --primary-dark-rgb: 112, 28, 28;
    --secondary-dark: #211832;
    --secondary-dark-rgb: 33, 24, 50;
    --accent-color: #FF6B35;
    --light-color: #f8f9fa;
    --white: #ffffff;
}

body {
}

.item-2 {
    display: flex;
    flex-wrap: wrap;
}

.product-item {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-content {
    flex-grow: 1;
}

.product-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.banner-info,
.banner-info h6,
.banner-info h2,
.banner-info span,
.banner-info p,
.banner-content h3 {
    color: azure !important;
}

.swiper-slide {
    height: auto;
}

.swiper-button-next,
.swiper-button-prev {
    color: #183B4E;
    background: rgba(255, 255, 255, 0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 20px;
    }

.swiper-pagination-bullet-active {
    background: #183B4E;
}

.category-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    position: relative;
}

    .category-section::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(135deg, #701C1C 0%, #211832 100%);
    }

.section-header {
    margin-bottom: 40px;
    text-align: center;
}

    .section-header .section-title {
        font-size: 2.2rem;
        color: #211832;
        font-weight: 800;
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
        padding-bottom: 15px;
    }

        .section-header .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 50%;
            transform: translateX(50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, #701C1C 0%, #211832 100%);
            border-radius: 2px;
        }

    .section-header .section-subtitle {
        font-size: 1.1rem;
        color: #666;
        max-width: 600px;
        margin: 15px auto 0;
        line-height: 1.6;
    }

.category-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.vertical-categories-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.vertical-category-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px 35px;
    display: flex;
    align-items: center;
    gap: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    width: 100%;
}

    .vertical-category-card::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #701C1C 0%, #211832 100%);
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: 1;
    }

    .vertical-category-card:hover {
        transform: translateX(10px);
        box-shadow: 0 15px 35px rgba(112, 28, 28, 0.15);
        border-color: #701C1C;
    }

        .vertical-category-card:hover::before {
            opacity: 0.05;
        }

    .vertical-category-card * {
        position: relative;
        z-index: 2;
    }

.vertical-group-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #701C1C 0%, #211832 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(112, 28, 28, 0.2);
}

.vertical-category-card:hover .vertical-group-icon {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 8px 20px rgba(112, 28, 28, 0.3);
}

.vertical-group-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
    transition: transform 0.4s ease;
}

.vertical-category-card:hover .vertical-group-icon img {
    transform: scale(1.1);
}

.vertical-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vertical-group-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #211832;
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.vertical-category-card:hover .vertical-group-title {
    color: #701C1C;
}

.vertical-group-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

.vertical-group-actions {
    flex-shrink: 0;
    margin-right: auto;
}

.vertical-group-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #701C1C;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 25px;
    border: 2px solid #701C1C;
    border-radius: 25px;
    transition: all 0.4s ease;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

    .vertical-group-link::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #701C1C 0%, #211832 100%);
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: 1;
    }

    .vertical-group-link span {
        position: relative;
        z-index: 2;
    }

    .vertical-group-link i {
        font-size: 0.9rem;
        transition: transform 0.4s ease;
        position: relative;
        z-index: 2;
    }

    .vertical-group-link:hover {
        color: #ffffff;
        gap: 12px;
        transform: translateX(-5px);
    }

        .vertical-group-link:hover::before {
            opacity: 1;
        }

        .vertical-group-link:hover i {
            transform: translateX(-5px);
        }

.no-categories-alert {
    background: linear-gradient(135deg, rgba(112, 28, 28, 0.1) 0%, rgba(33, 24, 50, 0.1) 100%);
    border: 2px solid #701C1C;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

    .no-categories-alert p {
        color: #211832;
        font-size: 1.2rem;
        font-weight: 600;
        margin: 0;
    }

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.vertical-category-card {
    animation: slideInRight 0.6s ease-out forwards;
}

    .vertical-category-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .vertical-category-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .vertical-category-card:nth-child(3) {
        animation-delay: 0.3s;
    }

    .vertical-category-card:nth-child(4) {
        animation-delay: 0.4s;
    }

    .vertical-category-card:nth-child(5) {
        animation-delay: 0.5s;
    }

    .vertical-category-card:nth-child(6) {
        animation-delay: 0.6s;
    }

    .vertical-category-card:nth-child(7) {
        animation-delay: 0.7s;
    }

    .vertical-category-card:nth-child(8) {
        animation-delay: 0.8s;
    }

.about-kasit-section {
    padding: 100px 0;
    position: relative;
}

    .about-kasit-section:not(.bg-light) {
        background: linear-gradient(135deg, #701C1C 0%, #211832 100%);
        color: #ffffff;
    }

    .about-kasit-section.bg-light {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }

.section-title {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 3rem;
    font-weight: bold;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.about-kasit-section.bg-light .section-title {
    color: #211832;
    text-shadow: none;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

    .about-content.reverse {
        flex-direction: row-reverse;
    }

.about-text {
    flex: 1;
}

    .about-text h3 {
        font-size: 1.8rem;
        color: #ffffff;
        margin-bottom: 1.5rem;
        font-weight: bold;
        position: relative;
        padding-bottom: 0.5rem;
    }

        .about-text h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 60px;
            height: 3px;
            background: #FF6B35;
            border-radius: 2px;
        }

.about-kasit-section.bg-light .about-text h3 {
    color: #211832;
}

    .about-kasit-section.bg-light .about-text h3::after {
        background: #701C1C;
    }

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
}

.about-kasit-section.bg-light .about-text p {
    color: #555;
}

.about-image {
    flex: 1;
    position: relative;
}

    .about-image img {
        width: 100%;
        border-radius: 15px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        height: 400px;
        object-fit: cover;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

        .about-image img:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.3);
        }

.achievement-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 100px;
    background: rgba(255,255,255,0.1);
    padding: 1.5rem 1rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

    .stat-item:hover {
        transform: translateY(-3px);
        background: rgba(255,255,255,0.15);
    }

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

.part-features h4, .specialization h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.about-kasit-section.bg-light .part-features h4,
.about-kasit-section.bg-light .specialization h4 {
    color: #211832;
}

.part-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.part-features li {
    padding: 0.5rem 0;
    color: rgba(255,255,255,0.9);
    position: relative;
    padding-right: 1.5rem;
}

    .part-features li:before {
        content: "✓";
        position: absolute;
        right: 0;
        color: #FF6B35;
        font-weight: bold;
        font-size: 1.1rem;
    }

.about-kasit-section.bg-light .part-features li {
    color: #555;
}

.specialization-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
    color: #ffffff;
}

    .spec-item:hover {
        background: rgba(255,255,255,0.15);
        transform: translateX(5px);
    }

.about-kasit-section.bg-light .spec-item {
    background: #f8f9fa;
    color: #555;
    border: 1px solid #e9ecef;
}

    .about-kasit-section.bg-light .spec-item:hover {
        background: #e9ecef;
    }

.spec-icon {
    font-size: 1.3rem;
}

.contact-info {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1.5rem;
    border-right: 4px solid #FF6B35;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

    .contact-info p {
        margin: 0.5rem 0;
        font-size: 0.95rem;
        color: rgba(255,255,255,0.9);
    }

    .contact-info strong {
        color: #ffffff;
    }

.about-kasit-section.bg-light .contact-info {
    background: #f8f9fa;
    border-right: 4px solid #701C1C;
}

    .about-kasit-section.bg-light .contact-info p {
        color: #555;
    }

    .about-kasit-section.bg-light .contact-info strong {
        color: #211832;
    }

.theme-btn {
    background: linear-gradient(135deg, #701C1C 0%, #211832 100%);
    color: #ffffff;
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

    .theme-btn:hover {
        background: linear-gradient(135deg, #8A2525 0%, #2E1F4A 100%);
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }

.text-center .theme-btn {
    background: rgba(255,255,255,0.2) !important;
    color: #ffffff;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

    .text-center .theme-btn:hover {
        background: #ffffff !important;
        color: #701C1C;
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }

.about-kasit-section.bg-light .text-center .theme-btn {
    background: #701C1C !important;
    color: #ffffff;
    border: 2px solid #701C1C;
}

    .about-kasit-section.bg-light .text-center .theme-btn:hover {
        background: #211832 !important;
        border-color: #211832;
        color: #ffffff;
    }

.mobile-hero-section {
    background: linear-gradient(135deg, #701C1C 0%, #211832 100%);
    padding: 5px 0;
    margin: 0;
}

.mobile-hero-single {
    text-align: center;
    padding: 5px 0;
    margin: 0;
}

.mobile-hero-image {
    margin-bottom: 10px;
}

    .mobile-hero-image img {
        width: 100%;
        max-height: 250px;
        object-fit: cover;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        margin: 0 auto;
    }

.mobile-hero-content {
    padding: 0 10px;
    margin: 0;
}

.mobile-hero-title {
    font-size: 1.3rem;
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.mobile-hero-description {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
    margin-bottom: 15px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.mobile-hero-btn .theme-btn {
    background: #ffffff;
    color: #701C1C;
    border: 2px solid #ffffff;
    padding: 8px 20px;
    font-size: 0.9rem;
}

    .mobile-hero-btn .theme-btn:hover {
        background: transparent;
        color: #ffffff;
        transform: translateY(-2px);
    }

.banner-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 20px;
}

.desktop-banner-img,
.mobile-banner-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.banner-item:hover .desktop-banner-img,
.banner-item:hover .mobile-banner-img {
    transform: scale(1.05);
}

.banner-content {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #ffffff;
    padding: 30px 20px 20px;
    text-align: center;
}

    .banner-content h3 {
        font-size: 1.5rem;
        font-weight: bold;
        margin-bottom: 10px;
        text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    }

    .banner-content p {
        font-size: 1rem;
        margin-bottom: 15px;
        text-shadow: 0 1px 2px rgba(0,0,0,0.5);
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .banner-content .theme-btn {
        background: #701C1C;
        border: 2px solid #701C1C;
    }

        .banner-content .theme-btn:hover {
            background: transparent;
            color: #ffffff;
        }

.hero-section2.d-none.d-md-block {
    display: none;
}

.d-block.d-md-none {
    display: block;
}

.mobile-hero-slider {
    direction: ltr;
}

    .mobile-hero-slider .owl-stage-outer {
        padding: 5px 0;
    }

    .mobile-hero-slider .owl-nav {
        display: none;
    }

    .mobile-hero-slider .owl-dots {
        text-align: center;
        margin-top: 10px;
    }

    .mobile-hero-slider .owl-dot {
        display: inline-block;
        margin: 0 5px;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(255,255,255,0.5);
        transition: all 0.3s ease;
    }

        .mobile-hero-slider .owl-dot.active {
            background: #ffffff;
            transform: scale(1.2);
        }

    .mobile-hero-slider .owl-item {
        opacity: 0.9;
        transition: opacity 0.3s ease;
        padding: 0;
        margin: 0;
    }

        .mobile-hero-slider .owl-item.active {
            opacity: 1;
        }

    .mobile-hero-slider.owl-carousel {
        margin: 0;
    }

.product-area {
    position: relative;
    padding: 60px 0;
    margin: 50px 0;
    background: transparent;
}

    .product-area .container {
        position: relative;
        padding: 40px 20px;
        border-radius: 25px;
        background: linear-gradient(135deg, #701C1C 0%, #211832 100%);
        box-shadow: 0 15px 35px rgba(112, 28, 28, 0.3);
    }

    .product-area .site-heading-inline {
        text-align: center;
        margin-bottom: 40px;
        position: relative;
    }

        .product-area .site-heading-inline::before {
            content: 'محصولات ویژه';
            display: block;
            font-size: 2.5rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 15px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        .product-area .site-heading-inline::after {
            content: '';
            display: block;
            width: 100px;
            height: 5px;
            background: #ffffff;
            margin: 0 auto;
            border-radius: 3px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }

.product-carousel {
    padding: 20px 0;
}

    .product-carousel .owl-stage {
        display: flex;
    }

    .product-carousel .owl-item {
        display: flex;
        flex-direction: column;
    }

.product-item {
    background: #ffffff;
    border-radius: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 1px solid #f0f0f0;
    overflow: hidden;
    margin: 0 10px;
}

    .product-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

.product-img {
    border-radius: 15px 15px 0 0;
    overflow: hidden;
    height: auto;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    position: relative;
    aspect-ratio: 4/3;
}

.product-responsive-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-item:hover .product-responsive-img {
    transform: scale(1.1);
}

.product-content {
    padding: 25px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #211832;
    margin-bottom: 15px;
    line-height: 1.5;
    text-align: right;
    min-height: 60px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

    .product-title a {
        color: #211832;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .product-title a:hover {
            color: #701C1C;
        }

.product-bottom {
    margin-top: auto;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.product-price {
    text-align: left;
}

    .product-price span {
        color: #701C1C;
        font-weight: 800;
        font-size: 1.3rem;
    }

.product-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.product-carousel .owl-prev,
.product-carousel .owl-next {
    background: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border: 2px solid #701C1C;
    pointer-events: all;
}

    .product-carousel .owl-prev span,
    .product-carousel .owl-next span {
        font-size: 24px;
        color: #701C1C;
        font-weight: bold;
        line-height: 1;
    }

    .product-carousel .owl-prev:hover,
    .product-carousel .owl-next:hover {
        background: #701C1C;
        transform: scale(1.1);
    }

        .product-carousel .owl-prev:hover span,
        .product-carousel .owl-next:hover span {
            color: #ffffff;
        }

.product-carousel .owl-dots {
    text-align: center;
    margin-top: 20px;
}

.product-carousel .owl-dot {
    background: #ffffff;
    opacity: 0.5;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
}

    .product-carousel .owl-dot.active {
        background: #211832;
        opacity: 1;
        transform: scale(1.3);
    }

.product-area .alert-warning {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #ffeaa7;
    border-radius: 12px;
    text-align: center;
    padding: 25px;
    margin: 20px 0;
    color: #211832;
    font-weight: 600;
    font-size: 1.1rem;
}

.mission-vision-section {
    padding: 100px 0;
}

.mission-card, .vision-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

    .mission-card:hover, .vision-card:hover {
        transform: translateY(-5px);
    }

.card-icon {
    font-size: 3rem;
    color: #701C1C;
    margin-bottom: 20px;
}

.mission-card h3, .vision-card h3 {
    color: #211832;
    margin-bottom: 20px;
    font-weight: bold;
}

.values-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.value-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

    .value-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }

.value-icon {
    font-size: 2.5rem;
    color: #701C1C;
    margin-bottom: 20px;
}

.value-card h4 {
    color: #211832;
    margin-bottom: 15px;
    font-weight: bold;
}

.contact-form {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 40px;
}

.contact-form-header h2 {
    color: #211832;
    font-size: 2rem;
    margin-bottom: 15px;
    text-align: center;
}

.contact-form-header p {
    color: #666;
    text-align: center;
    margin-bottom: 30px;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

    .form-control:focus {
        border-color: #701C1C;
        box-shadow: 0 0 0 0.2rem rgba(112, 28, 28, 0.25);
    }

.tokyo_tm_button input[type="submit"] {
    background: linear-gradient(135deg, #701C1C 0%, #211832 100%);
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

    .tokyo_tm_button input[type="submit"]:hover {
        background: linear-gradient(135deg, #8A2525 0%, #2E1F4A 100%);
        transform: translateY(-2px);
    }

.product-groups-container {
    width: 100%;
    padding: 0 15px;
}

.product-groups-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    justify-items: center;
}

.product-group-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    width: 100%;
    max-width: 280px;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

    .product-group-card::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #701C1C 0%, #211832 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 1;
    }

    .product-group-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(112, 28, 28, 0.15);
        border-color: #701C1C;
    }

        .product-group-card:hover::before {
            opacity: 0.05;
        }

    .product-group-card * {
        position: relative;
        z-index: 2;
    }

.group-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #701C1C 0%, #211832 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.product-group-card:hover .group-icon {
    transform: scale(1.1) rotate(5deg);
}

.group-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.group-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #211832;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-group-card:hover .group-title {
    color: #701C1C;
}

.group-actions {
    margin-top: 15px;
}

.group-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #701C1C;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 20px;
    border: 2px solid #701C1C;
    border-radius: 25px;
    transition: all 0.3s ease;
    background: #ffffff;
}

    .group-link:hover {
        background: #701C1C;
        color: #ffffff;
        gap: 12px;
        transform: translateX(-3px);
    }

    .group-link i {
        font-size: 0.9rem;
        transition: transform 0.3s ease;
    }

    .group-link:hover i {
        transform: translateX(-3px);
    }

.no-groups-alert {
    background: rgba(112, 28, 28, 0.1);
    border: 1px solid #701C1C;
    border-radius: 10px;
    padding: 30px;
    margin: 0 auto;
    max-width: 600px;
}

    .no-groups-alert p {
        color: #211832;
        font-size: 1.2rem;
        font-weight: 600;
        margin: 0;
    }

@media (max-width: 1200px) {
    .product-groups-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .vertical-category-card {
        padding: 25px 30px;
        gap: 25px;
    }

    .vertical-group-icon {
        width: 70px;
        height: 70px;
    }

        .vertical-group-icon img {
            width: 35px;
            height: 35px;
        }

    .vertical-group-title {
        font-size: 1.3rem;
    }

    .product-groups-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 18px;
    }

    .product-group-card {
        padding: 25px 20px;
        min-height: 220px;
    }

    .group-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }

        .group-icon img {
            width: 35px;
            height: 35px;
        }

    .group-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .category-section {
        padding: 50px 0;
    }

    .section-header .section-title {
        font-size: 1.8rem;
    }

    .vertical-category-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
        gap: 20px;
    }

    .vertical-group-actions {
        margin-right: 0;
        margin-top: 10px;
    }

    .vertical-group-link {
        padding: 8px 20px;
    }

    .vertical-group-description {
        font-size: 0.9rem;
    }

    .section-header .section-subtitle {
        font-size: 0.95rem;
    }

    .product-groups-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .product-group-card {
        padding: 20px 15px;
        min-height: 200px;
    }

    .group-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 12px;
    }

        .group-icon img {
            width: 30px;
            height: 30px;
        }

    .group-title {
        font-size: 1.1rem;
    }

    .group-link {
        padding: 6px 15px;
        font-size: 0.85rem;
    }

    .about-kasit-section {
        padding: 60px 0;
    }

    .about-content {
        flex-direction: column;
        gap: 2rem;
    }

        .about-content.reverse {
            flex-direction: column;
        }

    .achievement-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-item {
        min-width: auto;
    }

    .specialization-items {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-image img {
        height: 300px;
    }

    .about-text h3 {
        font-size: 1.5rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .stat-item {
        padding: 1rem 0.5rem;
    }

    .mid-banner {
        padding-top: 50px !important;
    }

    .banner-content {
        padding: 20px 15px 15px;
    }

        .banner-content h3 {
            font-size: 1.3rem;
        }

        .banner-content p {
            font-size: 0.9rem;
            -webkit-line-clamp: 3;
        }

    .desktop-banner-img,
    .mobile-banner-img {
        height: 250px;
    }

    .product-area {
        padding: 40px 0;
        margin: 40px 0;
    }

        .product-area .container {
            padding: 30px 15px;
            border-radius: 20px;
        }

        .product-area .site-heading-inline::before {
            font-size: 2rem;
        }

    .product-carousel {
        padding: 15px 0;
    }

        .product-carousel .owl-prev,
        .product-carousel .owl-next {
            width: 45px;
            height: 45px;
            display: none;
        }

    .product-content {
        padding: 20px 15px;
    }

    .product-title {
        font-size: 1.1rem;
        min-height: 55px;
    }

    .product-img {
        min-height: 180px;
        aspect-ratio: 4/3;
    }

    .product-price span {
        font-size: 1.2rem;
    }

    .mission-vision-section,
    .values-section {
        padding: 60px 0;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .contact-form-header h2 {
        font-size: 1.7rem;
    }

    .mobile-hero-image img {
        max-height: 220px;
        border-radius: 8px;
    }

    .mobile-hero-title {
        font-size: 1.2rem;
    }

    .mobile-hero-description {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .mobile-hero-btn .theme-btn {
        padding: 7px 18px;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .vertical-category-card {
        padding: 25px 20px;
    }

    .vertical-group-icon {
        width: 60px;
        height: 60px;
    }

        .vertical-group-icon img {
            width: 30px;
            height: 30px;
        }

    .vertical-group-title {
        font-size: 1.2rem;
    }

    .vertical-group-link {
        padding: 7px 18px;
        font-size: 0.9rem;
    }

    .product-groups-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
        gap: 12px;
    }

    .product-group-card {
        min-height: 180px;
        padding: 18px 12px;
    }

    .group-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 10px;
    }

        .group-icon img {
            width: 28px;
            height: 28px;
        }

    .group-title {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .group-link {
        padding: 5px 12px;
        font-size: 0.8rem;
    }

    .mobile-hero-title {
        font-size: 1.1rem;
    }

    .mobile-hero-description {
        font-size: 0.8rem;
    }

    .banner-content h3 {
        font-size: 1.2rem;
    }

    .banner-content p {
        font-size: 0.85rem;
    }

    .desktop-banner-img,
    .mobile-banner-img {
        height: 200px;
    }

    .product-area {
        padding: 30px 0;
        margin: 30px 0;
    }

        .product-area .container {
            padding: 25px 10px;
            border-radius: 18px;
        }

        .product-area .site-heading-inline::before {
            font-size: 1.7rem;
        }

    .product-carousel {
        padding: 10px 0;
    }

    .product-img {
        min-height: 160px;
        aspect-ratio: 1/1;
    }

    .product-content {
        padding: 18px 12px;
    }

    .product-title {
        font-size: 1rem;
        min-height: 50px;
    }

    .product-price span {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .section-header .section-title {
        font-size: 1.6rem;
    }

    .section-header .section-subtitle {
        font-size: 0.9rem;
    }

    .product-group-card {
        min-height: 170px;
        padding: 15px 10px;
    }

    .group-icon {
        width: 50px;
        height: 50px;
    }

        .group-icon img {
            width: 25px;
            height: 25px;
        }

    .group-title {
        font-size: 0.95rem;
    }

    .about-kasit-section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .about-text h3 {
        font-size: 1.3rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .about-image img {
        height: 250px;
    }

    .product-img {
        min-height: 140px;
    }

    .product-title {
        font-size: 0.9rem;
        min-height: 45px;
    }

    .product-price span {
        font-size: 0.9rem;
    }

    .mobile-hero-image img {
        max-height: 200px;
    }

    .mobile-hero-title {
        font-size: 1rem;
    }

    .mobile-hero-description {
        font-size: 0.75rem;
        line-height: 1.3;
    }

    .mobile-hero-btn .theme-btn {
        padding: 6px 15px;
        font-size: 0.8rem;
    }
}
