/* CSS Variables theo hướng dẫn README.MD */
:root {
    --bg-primary: #18181b;     /* Màu nền chính - tông đen xám đậm */
    --bg-secondary: #27272a;   /* Màu nền phụ - tông đen xám nhạt hơn */
    --text-primary: #ffffff;   /* Màu chữ chính - trắng */
    --text-secondary: #a1a1aa; /* Màu chữ phụ - xám nhạt */
    --accent: #3b82f6;         /* Màu nhấn - xanh dương */
    --accent-dark: #2563eb;    /* Màu nhấn đậm - xanh dương đậm */
    --border-dark: #3f3f46;    /* Màu viền đậm */
    --border-light: #52525b;   /* Màu viền nhạt */
    --card-bg: #27272a;        /* Màu nền thẻ */
}

/* Reset và Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container theo README */
.container {
    width: 100%;
    max-width: 1470px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.section-padding {
    padding: 80px 0;
}

.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Main Template Container */
.sanko-equipment-template {
    position: relative;
    min-height: 100vh;
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

/* Fixed Background */
.fixed-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1601391871578-5d3ef7415c54?auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.1;
    z-index: -1;
    transition: opacity 0.5s ease;
    will-change: transform;
}

/* Button Styles theo README */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 16px;
    font-weight: 500;
}

.btn-primary {
    background-color: var(--accent);
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

/* Nav Button */
.nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-secondary);
    color: var(--text-secondary);
    border: 1px solid var(--border-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background-color: var(--border-light);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: url('https://images.unsplash.com/photo-1600489000022-c2086d79f9d4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    z-index: 0;
    transition: transform 10s ease-in-out;
    transform: scale(1.05);
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 800px;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 24px;
    line-height: 1.2;
    max-width: 600px;
    color: var(--text-primary);
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

/* Mask Reveal Animation theo README */
@keyframes maskReveal {
    0% {
        clip-path: inset(0 100% 0 0);
    }
    100% {
        clip-path: inset(0 0 0 0);
    }
}

.mask-reveal {
    animation: maskReveal 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
    clip-path: inset(0 100% 0 0);
}

/* Mask Reveal Up Animation */
@keyframes maskRevealUp {
    0% {
        clip-path: inset(100% 0 0 0);
    }
    100% {
        clip-path: inset(0 0 0 0);
    }
}

.mask-reveal-up {
    animation: maskRevealUp 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
    clip-path: inset(100% 0 0 0);
}

/* Fade In Up Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

/* Hero Animation Classes */
.animate-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideLeft 1s ease forwards;
}

.animate-slide-left:nth-child(2) {
    animation-delay: 0.3s;
}

.animate-slide-left:nth-child(3) {
    animation-delay: 0.5s;
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Section Backgrounds */
.section-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
    opacity: 0.1;
}

.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(2px);
    z-index: 1;
}

/* Overview Section */
.overview-section {
    position: relative;
    background-color: var(--bg-secondary);
}

.overview-section .container {
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.section-text {
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
}

.feature-arrow {
    color: var(--accent);
    font-weight: bold;
    margin-right: 12px;
    margin-top: 2px;
}

.feature-text {
    color: var(--text-primary);
}

.learn-more-link {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.learn-more-link:hover {
    color: var(--accent-dark);
    border-color: var(--accent-dark);
}

.overview-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease;
}

.overview-image:hover {
    transform: scale(1.02);
}

.overview-img {
    width: 100%;
    height: auto;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.image-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
}

.badge-text {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    border: 1px solid var(--border-dark);
}

/* Products Section */
.products-section {
    position: relative;
    background-color: var(--bg-primary);
}

.products-section .container {
    position: relative;
    z-index: 2;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

/* Card cơ bản theo README */
.product-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-dark);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--border-light);
}

.product-image {
    height: 240px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-content {
    padding: 24px;
}

.product-title {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.product-features {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border-dark);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-footer {
    opacity: 1;
}

.product-code {
    font-size: 14px;
    color: var(--text-secondary);
}

.product-detail-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.product-detail-link:hover {
    color: var(--accent-dark);
}

/* Features Section */
.features-section {
    position: relative;
    background-color: var(--bg-secondary);
}

.features-section .container {
    position: relative;
    z-index: 2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 64px;
}

.feature-card {
    text-align: center;
    padding: 24px;
    background-color: var(--card-bg);
    border-radius: 8px;
    border: 1px solid var(--border-dark);
    transition: all 1s ease;
    transform: translateY(40px);
    opacity: 0;
}

.feature-card.animate-in {
    transform: translateY(0);
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--border-light);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: var(--bg-secondary);
    border-radius: 50%;
    margin-bottom: 24px;
    transition: all 0.5s ease;
    color: var(--text-secondary);
    border: 1px solid var(--border-dark);
}

.feature-card.animate-in .feature-icon {
    color: var(--accent);
    border-color: var(--accent);
    transform: scale(1);
}

.feature-icon i {
    font-size: 48px;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    position: relative;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.7s ease;
}

.animate-on-scroll.animate-in {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
}

/* Parallax Background theo README */
.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    z-index: -1;
    opacity: 0.1;
    background-size: cover;
    background-position: center;
    transition: opacity 0.5s ease;
    will-change: transform;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .two-columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        justify-content: center;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-padding {
        padding: 40px 0;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .product-content {
        padding: 20px;
    }
}

/* MOBILE OPTIMIZATIONS - Equipment Page - Đồng bộ với Home */
@media (max-width: 768px) {
    /* Typography - đồng bộ với home, about, products, lọc nước */
    .sanko-equipment-template .hero-title {
        font-size: 28px !important; /* Đồng bộ với home */
        line-height: 1.1 !important;
        margin-bottom: 16px !important;
    }
    
    .sanko-equipment-template .hero-subtitle {
        font-size: 16px !important; /* Đồng bộ với home */
        margin-bottom: 16px !important;
        line-height: 1.4 !important;
    }
    
    .sanko-equipment-template .section-title {
        font-size: 24px !important; /* Đồng bộ với home */
        margin-bottom: 16px !important;
        line-height: 1.2 !important;
    }
    
    .sanko-equipment-template .section-text {
        font-size: 14px !important; /* Đồng bộ với about */
        line-height: 1.5 !important;
        margin-bottom: 16px !important;
    }
    
    .sanko-equipment-template .feature-text {
        font-size: 14px !important;
        line-height: 1.4 !important;
    }
    
    .sanko-equipment-template .product-title {
        font-size: 16px !important; /* Giảm từ 1.125rem */
        line-height: 1.3 !important;
        margin-bottom: 8px !important;
    }
    
    .sanko-equipment-template .product-features {
        font-size: 13px !important;
        line-height: 1.3 !important;
    }
    
    .sanko-equipment-template .feature-title {
        font-size: 16px !important; /* Giảm từ 1.25rem */
        line-height: 1.3 !important;
        margin-bottom: 12px !important;
    }
    
    .sanko-equipment-template .feature-description {
        font-size: 13px !important;
        line-height: 1.4 !important;
    }
    
    .sanko-equipment-template .cta-description {
        font-size: 14px !important; /* Giảm từ 1.125rem */
        line-height: 1.5 !important;
        margin-bottom: 32px !important;
    }

    /* Spacing - đồng bộ với home */
    .sanko-equipment-template .section-padding {
        padding: 40px 0 !important; /* Giảm từ 80px */
    }
    
    .sanko-equipment-template .container {
        padding: 0 16px !important; /* Giảm từ 20px */
    }
    
    .sanko-equipment-template .two-columns {
        gap: 20px !important; /* Giảm từ 60px */
        grid-template-columns: 1fr !important; /* Single column */
    }
    
    .sanko-equipment-template .hero-cta {
        gap: 12px !important; /* Giảm từ 16px */
        margin-top: 24px !important; /* Giảm từ 32px */
        flex-direction: column !important;
    }

    /* Layout optimizations */
    .sanko-equipment-template .hero-section {
        height: 70vh !important; /* Giảm từ 100vh */
        min-height: 500px !important;
    }
    
    .sanko-equipment-template .hero-content {
        text-align: center !important; /* Center align cho mobile */
        max-width: 100% !important;
    }

    /* Products grid mobile - slide/carousel layout */
    .sanko-equipment-template .products-grid {
        display: flex !important; /* Chuyển từ grid sang flex */
        overflow-x: auto !important; /* Enable horizontal scroll */
        gap: 16px !important;
        margin-top: 32px !important; /* Giảm từ 48px */
        padding: 0 16px 20px 16px !important; /* Add padding và space cho scrollbar */
        scroll-behavior: smooth !important; /* Smooth scrolling */
        scrollbar-width: none !important; /* Hide scrollbar Firefox */
        -ms-overflow-style: none !important; /* Hide scrollbar IE/Edge */
        scroll-snap-type: x mandatory !important; /* Snap scrolling */
    }
    
    /* Hide scrollbar cho Webkit browsers */
    .sanko-equipment-template .products-grid::-webkit-scrollbar {
        display: none !important;
    }
    
    .sanko-equipment-template .product-card {
        flex: 0 0 280px !important; /* Fixed width, không shrink */
        margin-bottom: 0 !important;
        scroll-snap-align: start !important; /* Snap alignment */
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important; /* Subtle shadow */
        border-radius: 8px !important;
        overflow: hidden !important;
    }
    
    .sanko-equipment-template .product-image {
        height: 180px !important; /* Giảm từ 240px cho mobile slide */
        aspect-ratio: 16/9 !important; /* Landscape ratio */
    }
    
    .sanko-equipment-template .product-content {
        padding: 16px !important; /* Giảm từ 24px */
        height: auto !important;
    }
    
    .sanko-equipment-template .product-footer {
        padding-top: 12px !important; /* Giảm từ 16px */
        opacity: 1 !important; /* Luôn hiển thị trên mobile */
    }

    /* Features grid mobile - single column */
    .sanko-equipment-template .features-grid {
        grid-template-columns: 1fr !important; /* Single column */
        gap: 24px !important; /* Giảm từ 40px */
        margin-top: 32px !important; /* Giảm từ 64px */
    }
    
    .sanko-equipment-template .feature-card {
        padding: 20px !important; /* Giảm từ 24px */
        text-align: center !important;
    }
    
    .sanko-equipment-template .feature-icon {
        width: 60px !important; /* Giảm từ 80px */
        height: 60px !important;
        margin-bottom: 16px !important; /* Giảm từ 24px */
    }
    
    .sanko-equipment-template .feature-icon i {
        font-size: 32px !important; /* Giảm từ 48px */
    }

    /* CTA section mobile */
    .sanko-equipment-template .cta-content {
        max-width: 100% !important;
        padding: 0 !important;
    }
    
    .sanko-equipment-template .cta-buttons {
        flex-direction: column !important;
        gap: 12px !important; /* Giảm từ 16px */
        align-items: stretch !important;
    }
    
    .sanko-equipment-template .btn {
        justify-content: center !important;
        padding: 12px 20px !important; /* Compact padding */
        font-size: 15px !important; /* Giảm từ 16px */
    }

    /* Feature list mobile optimizations */
    .sanko-equipment-template .feature-list {
        margin-bottom: 24px !important; /* Giảm từ 32px */
    }
    
    .sanko-equipment-template .feature-item {
        margin-bottom: 12px !important; /* Giảm từ 16px */
        align-items: flex-start !important;
    }
    
    .sanko-equipment-template .feature-arrow {
        margin-right: 8px !important; /* Giảm từ 12px */
        margin-top: 2px !important;
        flex-shrink: 0 !important;
    }

    /* Overview image mobile */
    .sanko-equipment-template .overview-image {
        margin-top: 24px !important;
        border-radius: 6px !important; /* Giảm từ 8px */
    }
    
    .sanko-equipment-template .image-badge {
        bottom: 16px !important; /* Giảm từ 24px */
        left: 16px !important;
    }
    
    .sanko-equipment-template .badge-text {
        padding: 6px 12px !important; /* Giảm từ 8px 16px */
        font-size: 12px !important; /* Giảm từ 14px */
        border-radius: 16px !important; /* Giảm từ 20px */
    }

    /* Learn more link mobile */
    .sanko-equipment-template .learn-more-link {
        font-size: 14px !important;
        padding-bottom: 3px !important; /* Giảm từ 4px */
        border-bottom-width: 1px !important; /* Giảm từ 2px */
    }

    /* Performance optimizations cho mobile */
    .sanko-equipment-template .fixed-background {
        background-attachment: scroll !important; /* Tắt fixed cho mobile */
        background-size: cover !important;
        background-position: center !important;
        filter: brightness(0.4) !important; /* Darker cho mobile */
    }
    
    .sanko-equipment-template .hero-background {
        background-attachment: scroll !important; /* Tắt fixed cho mobile */
        background-size: cover !important;
        background-position: center !important;
    }
    
    .sanko-equipment-template .section-background {
        background-attachment: scroll !important; /* Tắt fixed cho mobile */
        background-size: cover !important;
        background-position: center !important;
    }

    /* Backdrop filter tối ưu cho mobile */
    .sanko-equipment-template .hero-overlay {
        backdrop-filter: blur(1px) !important; /* Giảm từ blur(2px) */
    }
    
    .sanko-equipment-template .section-overlay {
        backdrop-filter: blur(1px) !important; /* Giảm từ blur(2px) */
    }
    
    .sanko-equipment-template .btn-outline {
        backdrop-filter: blur(4px) !important; /* Giảm từ blur(8px) */
    }
}

/* Extra Small Screens - ≤480px */
@media (max-width: 480px) {
    /* Typography cho màn hình extra small */
    .sanko-equipment-template .hero-title {
        font-size: 24px !important; /* Giảm thêm từ 28px */
        line-height: 1.1 !important;
    }
    
    .sanko-equipment-template .hero-subtitle {
        font-size: 14px !important; /* Giảm từ 16px */
    }
    
    .sanko-equipment-template .section-title {
        font-size: 20px !important; /* Giảm từ 24px */
        line-height: 1.2 !important;
    }
    
    .sanko-equipment-template .section-text {
        font-size: 13px !important; /* Giảm từ 14px */
        line-height: 1.5 !important;
    }

    /* Spacing cho extra small */
    .sanko-equipment-template .section-padding {
        padding: 32px 0 !important; /* Giảm từ 40px */
    }
    
    .sanko-equipment-template .container {
        padding: 0 12px !important; /* Giảm từ 16px */
    }
    
    .sanko-equipment-template .two-columns {
        gap: 16px !important; /* Giảm từ 20px */
    }

    /* Hero section cho extra small */
    .sanko-equipment-template .hero-section {
        height: 60vh !important; /* Giảm từ 70vh */
        min-height: 400px !important; /* Giảm từ 500px */
    }
    
    .sanko-equipment-template .hero-cta {
        gap: 10px !important; /* Giảm từ 12px */
        margin-top: 20px !important; /* Giảm từ 24px */
    }

    /* Products slide cho extra small screens */
    .sanko-equipment-template .products-grid {
        gap: 12px !important; /* Giảm từ 16px */
        margin-top: 24px !important; /* Giảm từ 32px */
        padding: 0 12px 16px 12px !important; /* Smaller padding cho extra small */
    }
    
    .sanko-equipment-template .product-card {
        flex: 0 0 240px !important; /* Smaller width cho extra small screens */
    }
    
    .sanko-equipment-template .product-image {
        height: 160px !important; /* Giảm từ 180px */
        aspect-ratio: 3/2 !important; /* Slightly taller ratio cho extra small */
    }
    
    .sanko-equipment-template .product-content {
        padding: 12px !important; /* Giảm từ 16px */
    }
    
    .sanko-equipment-template .product-title {
        font-size: 14px !important; /* Giảm từ 16px */
        line-height: 1.2 !important;
    }
    
    .sanko-equipment-template .product-features {
        font-size: 12px !important; /* Giảm từ 13px */
        line-height: 1.3 !important;
    }

    /* Features cho extra small */
    .sanko-equipment-template .features-grid {
        gap: 20px !important; /* Giảm từ 24px */
        margin-top: 24px !important; /* Giảm từ 32px */
    }
    
    .sanko-equipment-template .feature-card {
        padding: 16px !important; /* Giảm từ 20px */
    }
    
    .sanko-equipment-template .feature-icon {
        width: 50px !important; /* Giảm từ 60px */
        height: 50px !important;
        margin-bottom: 12px !important; /* Giảm từ 16px */
    }
    
    .sanko-equipment-template .feature-icon i {
        font-size: 28px !important; /* Giảm từ 32px */
    }
    
    .sanko-equipment-template .feature-title {
        font-size: 14px !important; /* Giảm từ 16px */
        margin-bottom: 8px !important; /* Giảm từ 12px */
    }
    
    .sanko-equipment-template .feature-description {
        font-size: 12px !important; /* Giảm từ 13px */
    }

    /* CTA cho extra small */
    .sanko-equipment-template .cta-description {
        font-size: 13px !important; /* Giảm từ 14px */
        margin-bottom: 24px !important; /* Giảm từ 32px */
    }
    
    .sanko-equipment-template .btn {
        padding: 10px 16px !important; /* Giảm từ 12px 20px */
        font-size: 14px !important; /* Giảm từ 15px */
    }
} 