/* ========================================
   Theme16 - Playful Cartoon Design
   Rounded shapes, bright colors, fun vibes
   ======================================== */

/* 1. CSS Custom Properties */
:root {
    --t16-primary: #FF6B6B;
    --t16-primary-light: #FF8E8E;
    --t16-primary-dark: #EE5A5A;
    --t16-secondary: #4ECDC4;
    --t16-accent: #FFE66D;
    --t16-purple: #A78BFA;
    --t16-blue: #60A5FA;
    --t16-green: #34D399;
    --t16-orange: #FB923C;
    --t16-text: #2D3436;
    --t16-text-secondary: #636E72;
    --t16-text-light: #B2BEC3;
    --t16-text-inverse: #FFFFFF;
    --t16-bg: #FFF9F0;
    --t16-bg-alt: #FFFFFF;
    --t16-bg-card: #FFFFFF;
    --t16-border: #FFE0D0;
    --t16-shadow: 0 8px 30px rgba(255, 107, 107, 0.15);
    --t16-shadow-lg: 0 15px 50px rgba(255, 107, 107, 0.2);
    --t16-shadow-bounce: 0 10px 0 #EE5A5A;
    --t16-radius: 28px;
    --t16-radius-sm: 18px;
    --t16-radius-lg: 40px;
    --t16-radius-full: 9999px;
    --t16-font: "Comic Sans MS", "PingFang SC", "Microsoft YaHei", cursive, sans-serif;
    --t16-header-h: 80px;
}

/* 2. Reset / Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}
body {
    font-family: var(--t16-font);
    color: var(--t16-text);
    background: var(--t16-bg);
    line-height: 1.7;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    color: var(--t16-primary);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
a:hover {
    color: var(--t16-primary-dark);
}
ul, ol {
    list-style: none;
}
table {
    border-collapse: collapse;
    width: 100%;
}

/* 3. Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--t16-text);
    line-height: 1.3;
    font-weight: 700;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 1.8rem; margin-bottom: 16px; }
h3 { font-size: 1.4rem; margin-bottom: 14px; }
h4 { font-size: 1.2rem; margin-bottom: 12px; }
p {
    color: var(--t16-text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}
b, strong {
    font-weight: 700;
    color: var(--t16-text);
}

/* 4. Layout */
.t16-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.t16-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* 5. Header */
.t16-header {
    background: var(--t16-bg-alt);
    border-bottom: 4px solid var(--t16-primary);
    height: var(--t16-header-h);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.t16-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.t16-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--t16-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}
.t16-logo::before {
    content: '🏠';
    font-size: 1.5rem;
}
.t16-logo:hover {
    color: var(--t16-secondary);
    transform: scale(1.05);
}

/* 6. Navigation */
.t16-nav {
    display: flex;
    gap: 10px;
}
.t16-nav ul {
    display: contents;
}
.t16-nav li {
    list-style: none;
}
.t16-nav a {
    padding: 12px 24px;
    color: var(--t16-text);
    font-weight: 700;
    border-radius: var(--t16-radius-full);
    border: 3px solid transparent;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.t16-nav a:hover {
    color: var(--t16-text-inverse);
    background: var(--t16-secondary);
    border-color: var(--t16-secondary);
    transform: translateY(-3px) scale(1.05);
}
.t16-nav a.active {
    color: var(--t16-text-inverse);
    background: var(--t16-primary);
    border-color: var(--t16-primary);
}

/* 7. Mobile Menu Toggle */
.t16-menu-toggle {
    display: none;
}
.t16-menu-btn {
    display: none;
    width: 52px;
    height: 52px;
    background: var(--t16-primary);
    border: none;
    border-radius: var(--t16-radius-sm);
    cursor: pointer;
    position: relative;
    z-index: 1001;
}
.t16-menu-btn span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--t16-text-inverse);
    margin: 5px auto;
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* 8. Main Section */
.t16-section {
    padding: 60px 0;
    flex: 1;
}

/* 9. Hero / Banner */
.t16-hero {
    margin-bottom: 60px;
}
.t16-hero-single {
    height: 420px;
    background-size: cover;
    background-position: center;
    border-radius: var(--t16-radius-lg);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 40px;
    position: relative;
    overflow: hidden;
    border: 5px solid var(--t16-primary);
    box-shadow: var(--t16-shadow-lg);
}
.t16-hero-single::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(255,107,107,0.9), transparent 70%);
    border-radius: calc(var(--t16-radius-lg) - 5px);
}
.t16-hero-single a {
    position: relative;
    z-index: 1;
    color: var(--t16-text-inverse);
    font-size: 1.8rem;
    font-weight: 800;
    padding: 16px 40px;
    background: var(--t16-secondary);
    border-radius: var(--t16-radius-full);
    border: 4px solid var(--t16-text-inverse);
    box-shadow: 0 6px 0 #3DBDB5;
    transition: all 0.2s ease;
}
.t16-hero-single a:hover {
    transform: translateY(3px);
    box-shadow: 0 3px 0 #3DBDB5;
}
.t16-hero-grid {
    display: grid;
    gap: 24px;
}
.t16-hero-grid.row-1 { grid-template-columns: 1fr; }
.t16-hero-grid.row-2 { grid-template-columns: repeat(2, 1fr); }
.t16-hero-grid.row-3 { grid-template-columns: repeat(3, 1fr); }
.t16-hero-grid.row-4 { grid-template-columns: repeat(4, 1fr); }
.t16-hero-item {
    border-radius: var(--t16-radius);
    overflow: hidden;
    background: var(--t16-bg-card);
    border: 4px solid var(--t16-border);
    box-shadow: var(--t16-shadow);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.t16-hero-item:hover {
    transform: translateY(-10px) rotate(-1deg);
    border-color: var(--t16-primary);
    box-shadow: var(--t16-shadow-lg);
}
.t16-hero-item a {
    display: block;
}
.t16-hero-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.t16-hero-item span {
    display: block;
    padding: 18px;
    text-align: center;
    color: var(--t16-text);
    font-weight: 700;
    font-size: 1.05rem;
}

/* 10. Section Title */
.t16-section-title {
    margin-bottom: 40px;
    text-align: center;
}
.t16-section-title h2 {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--t16-text-inverse);
    padding: 16px 40px;
    background: var(--t16-primary);
    border-radius: var(--t16-radius-full);
    border: 4px solid var(--t16-primary-dark);
    box-shadow: 0 6px 0 var(--t16-primary-dark);
    position: relative;
}
.t16-section-title h2::before {
    content: '⭐';
    margin-right: 10px;
}
.t16-section-title h2::after {
    content: '⭐';
    margin-left: 10px;
}
.t16-section-title h2 a {
    color: inherit;
}

/* 11. Module */
.t16-module {
    margin-bottom: 60px;
}

/* 12. Contact + Intro Module */
.t16-contact-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.t16-contact-card,
.t16-intro-card {
    background: var(--t16-bg-card);
    border-radius: var(--t16-radius);
    padding: 32px;
    border: 4px solid var(--t16-border);
    box-shadow: var(--t16-shadow);
    transition: all 0.3s ease;
}
.t16-contact-card:hover,
.t16-intro-card:hover {
    border-color: var(--t16-secondary);
    transform: translateY(-5px);
}
.t16-contact-card h3,
.t16-intro-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--t16-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}
.t16-contact-card h3::before {
    content: '📞';
}
.t16-intro-card h3::before {
    content: '🏢';
}
.t16-contact-card p {
    margin-bottom: 12px;
    color: var(--t16-text-secondary);
    padding-left: 28px;
}
.t16-intro-card p {
    color: var(--t16-text-secondary);
    line-height: 2;
}

/* 13. Product Grid */
.t16-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.t16-product-card {
    background: var(--t16-bg-card);
    border-radius: var(--t16-radius);
    overflow: hidden;
    border: 4px solid var(--t16-border);
    box-shadow: var(--t16-shadow);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.t16-product-card:hover {
    transform: translateY(-12px) rotate(1deg);
    border-color: var(--t16-orange);
    box-shadow: var(--t16-shadow-lg);
}
.t16-product-img {
    display: block;
    overflow: hidden;
    position: relative;
}
.t16-product-img::after {
    content: '👀';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 3rem;
    opacity: 0;
    transition: all 0.3s ease;
}
.t16-product-card:hover .t16-product-img::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}
.t16-product-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.t16-product-card:hover .t16-product-img img {
    transform: scale(1.1);
}
.t16-product-body {
    padding: 20px;
    background: linear-gradient(180deg, var(--t16-bg-card) 0%, #FFF5EE 100%);
}
.t16-product-name {
    font-size: 1rem;
    font-weight: 700;
}
.t16-product-name a {
    color: var(--t16-text);
}
.t16-product-name a:hover {
    color: var(--t16-primary);
}
.t16-product-time {
    font-size: 0.8rem;
    color: var(--t16-text-light);
    margin-top: 8px;
}

/* 14. Information Module */
.t16-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.t16-info-card {
    background: var(--t16-bg-card);
    border-radius: var(--t16-radius);
    padding: 32px;
    border: 4px solid var(--t16-border);
    box-shadow: var(--t16-shadow);
    transition: all 0.3s ease;
}
.t16-info-card:hover {
    border-color: var(--t16-purple);
    transform: translateY(-5px);
}
.t16-info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--t16-purple);
    display: flex;
    align-items: center;
    gap: 10px;
}
.t16-info-card:first-child h3::before {
    content: '📋';
}
.t16-info-card:last-child h3::before {
    content: '💼';
}
.t16-info-card p {
    margin-bottom: 12px;
    color: var(--t16-text-secondary);
    font-size: 0.95rem;
}
.t16-info-card b {
    color: var(--t16-text);
}

/* 15. Information Table Layout */
.t16-info-table {
    background: var(--t16-bg-card);
    border-radius: var(--t16-radius);
    padding: 32px;
    border: 4px solid var(--t16-border);
    box-shadow: var(--t16-shadow);
}
.t16-info-table h3 {
    font-size: 1.4rem;
    margin-bottom: 28px;
    color: var(--t16-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}
.t16-info-table h3::before {
    content: '📝';
}
.t16-info-table table {
    width: 100%;
}
.t16-info-table td {
    padding: 16px;
    border-bottom: 3px dashed var(--t16-border);
}
.t16-info-table tr:last-child td {
    border-bottom: none;
}
.t16-info-table td:first-child {
    width: 140px;
    font-weight: 700;
    color: var(--t16-primary);
    background: rgba(255, 107, 107, 0.1);
    border-radius: var(--t16-radius-sm) 0 0 var(--t16-radius-sm);
}
.t16-info-table td:last-child {
    color: var(--t16-text-secondary);
}

/* 16. Message Form */
.t16-form-card {
    background: var(--t16-bg-card);
    border-radius: var(--t16-radius);
    padding: 40px;
    border: 4px solid var(--t16-border);
    box-shadow: var(--t16-shadow);
    max-width: 700px;
}
.t16-form-card h3 {
    font-size: 1.4rem;
    margin-bottom: 28px;
    color: var(--t16-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}
.t16-form-card h3::before {
    content: '✉️';
}
.t16-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.t16-form-group {
    margin-bottom: 24px;
}
.t16-form-group.full {
    grid-column: span 2;
}
.t16-form-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--t16-text);
}
.t16-input,
.t16-textarea {
    width: 100%;
    padding: 16px 20px;
    border: 3px solid var(--t16-border);
    border-radius: var(--t16-radius-sm);
    background: var(--t16-bg);
    font-size: 1rem;
    color: var(--t16-text);
    font-family: inherit;
    transition: all 0.3s ease;
}
.t16-input:focus,
.t16-textarea:focus {
    outline: none;
    border-color: var(--t16-secondary);
    background: var(--t16-bg-alt);
    box-shadow: 0 0 0 4px rgba(78, 205, 196, 0.2);
}
.t16-textarea {
    min-height: 150px;
    resize: vertical;
}

/* 17. Button */
.t16-btn {
    display: inline-block;
    padding: 16px 40px;
    background: var(--t16-primary);
    color: var(--t16-text-inverse);
    font-weight: 800;
    font-size: 1.1rem;
    border: none;
    border-radius: var(--t16-radius-full);
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 6px 0 var(--t16-primary-dark);
    position: relative;
    top: 0;
}
.t16-btn:hover {
    top: 3px;
    box-shadow: 0 3px 0 var(--t16-primary-dark);
    color: var(--t16-text-inverse);
}
.t16-btn:active {
    top: 6px;
    box-shadow: 0 0 0 var(--t16-primary-dark);
}

/* 18. Links Section */
.t16-links {
    background: var(--t16-bg-card);
    border-radius: var(--t16-radius);
    padding: 24px 32px;
    border: 4px solid var(--t16-border);
    box-shadow: var(--t16-shadow);
    font-size: 0.95rem;
}
.t16-links span {
    font-weight: 800;
    color: var(--t16-primary);
    margin-right: 16px;
}
.t16-links span::before {
    content: '🔗 ';
}
.t16-links a {
    color: var(--t16-text-secondary);
    margin-right: 20px;
    padding: 4px 12px;
    border-radius: var(--t16-radius-full);
    transition: all 0.3s ease;
}
.t16-links a:hover {
    background: var(--t16-accent);
    color: var(--t16-text);
}

/* 19. Breadcrumb */
.t16-breadcrumb {
    background: var(--t16-bg-card);
    border-radius: var(--t16-radius-full);
    padding: 14px 28px;
    margin-bottom: 32px;
    border: 3px solid var(--t16-border);
    box-shadow: var(--t16-shadow);
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
}
.t16-breadcrumb a {
    color: var(--t16-text-secondary);
}
.t16-breadcrumb a:hover {
    color: var(--t16-primary);
}
.t16-breadcrumb .t16-sep {
    margin: 0 12px;
    color: var(--t16-text-light);
}
.t16-breadcrumb strong {
    color: var(--t16-primary);
    font-weight: 700;
}

/* 20. Detail Card */
.t16-detail-card {
    background: var(--t16-bg-card);
    border-radius: var(--t16-radius);
    padding: 40px;
    border: 4px solid var(--t16-border);
    box-shadow: var(--t16-shadow);
}
.t16-detail-card h1 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: var(--t16-primary);
    display: flex;
    align-items: center;
    gap: 12px;
}
.t16-detail-card h1::before {
    content: '🎁';
}
.t16-detail-img {
    margin-bottom: 32px;
    border-radius: var(--t16-radius-sm);
    overflow: hidden;
    border: 4px solid var(--t16-border);
    box-shadow: var(--t16-shadow);
}
.t16-detail-img img {
    width: 100%;
    display: block;
}
.t16-detail-content {
    color: var(--t16-text-secondary);
    line-height: 2;
}
.t16-detail-content img {
    max-width: 100%;
    border-radius: var(--t16-radius-sm);
    margin: 20px 0;
}
.t16-page-info {
    margin-top: 32px;
    padding: 18px 24px;
    background: var(--t16-accent);
    border-radius: var(--t16-radius-sm);
    color: var(--t16-text);
    font-size: 0.9rem;
    border: 3px dashed var(--t16-orange);
}

/* 21. Pagination */
.t16-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 48px;
}
.t16-pagination a,
.t16-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    height: 50px;
    padding: 0 18px;
    background: var(--t16-bg-card);
    border-radius: var(--t16-radius-full);
    border: 3px solid var(--t16-border);
    box-shadow: var(--t16-shadow);
    color: var(--t16-text);
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.t16-pagination a:hover {
    background: var(--t16-secondary);
    color: var(--t16-text-inverse);
    border-color: var(--t16-secondary);
    transform: translateY(-5px) scale(1.1);
}
.t16-pagination .active {
    background: var(--t16-primary);
    color: var(--t16-text-inverse);
    border-color: var(--t16-primary);
    box-shadow: 0 5px 0 var(--t16-primary-dark);
}
.t16-pagination .disabled {
    color: var(--t16-text-light);
    opacity: 0.5;
    cursor: not-allowed;
}

/* 22. Footer */
.t16-footer {
    background: var(--t16-primary);
    padding: 48px 0;
    margin-top: auto;
    border-top: 6px solid var(--t16-primary-dark);
}
.t16-footer-content {
    text-align: center;
}
.t16-footer-info {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.t16-footer-info p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    margin-bottom: 0;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--t16-radius-full);
    font-weight: 600;
}
.t16-footer-copyright {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}
.t16-footer-copyright a {
    color: var(--t16-accent);
    margin: 0 8px;
    font-weight: 600;
}
.t16-footer-copyright a:hover {
    color: var(--t16-text-inverse);
}

/* 23. Error Page */
.t16-error {
    text-align: center;
    padding: 80px 20px;
}
.t16-error-card {
    background: var(--t16-bg-card);
    border-radius: var(--t16-radius-lg);
    padding: 60px 40px;
    border: 5px solid var(--t16-border);
    box-shadow: var(--t16-shadow-lg);
    max-width: 500px;
    margin: 0 auto;
}
.t16-error-code {
    font-size: 8rem;
    font-weight: 900;
    color: var(--t16-primary);
    line-height: 1;
    margin-bottom: 16px;
    text-shadow: 6px 6px 0 var(--t16-primary-dark);
}
.t16-error-card h2 {
    font-size: 1.6rem;
    margin-bottom: 16px;
    color: var(--t16-text);
}
.t16-error-card h2::before {
    content: '😢 ';
}
.t16-error-card p {
    color: var(--t16-text-secondary);
    margin-bottom: 32px;
}

/* 24. Sub Domain Styles */
.t16-sub-header {
    background: var(--t16-bg-alt);
    padding: 16px 0;
    border-bottom: 4px solid var(--t16-secondary);
}
.t16-sub-header .t16-header-inner {
    flex-wrap: wrap;
    gap: 16px;
}
.t16-sub-header .t16-logo {
    font-size: 1.4rem;
}
.t16-sub-nav {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.t16-sub-nav a {
    padding: 10px 20px;
    background: var(--t16-bg-card);
    border: 3px solid var(--t16-border);
    border-radius: var(--t16-radius-full);
    color: var(--t16-text-secondary);
    font-size: 0.9rem;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.t16-sub-nav a:hover {
    background: var(--t16-accent);
    border-color: var(--t16-orange);
    color: var(--t16-text);
    transform: translateY(-3px);
}

/* 25. Responsive */
@media (max-width: 1024px) {
    .t16-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .t16-hero-grid.row-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .t16-container {
        padding: 0 16px;
    }
    .t16-menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .t16-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: var(--t16-accent);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
    }
    .t16-menu-toggle:checked ~ .t16-nav {
        opacity: 1;
        visibility: visible;
    }
    .t16-menu-toggle:checked ~ .t16-menu-btn span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    .t16-menu-toggle:checked ~ .t16-menu-btn span:nth-child(2) {
        opacity: 0;
    }
    .t16-menu-toggle:checked ~ .t16-menu-btn span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    .t16-nav a {
        font-size: 1.3rem;
        padding: 16px 40px;
        background: var(--t16-bg-card);
        border: 4px solid var(--t16-border);
    }
    .t16-section {
        padding: 40px 0;
    }
    .t16-hero-single {
        height: 300px;
    }
    .t16-hero-single a {
        font-size: 1.3rem;
        padding: 12px 28px;
    }
    .t16-hero-grid {
        grid-template-columns: 1fr !important;
    }
    .t16-hero-item img {
        height: 180px;
    }
    .t16-contact-intro,
    .t16-info-grid {
        grid-template-columns: 1fr;
    }
    .t16-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .t16-product-img img {
        height: 150px;
    }
    .t16-detail-card {
        padding: 28px 24px;
    }
    .t16-detail-card h1 {
        font-size: 1.6rem;
    }
    .t16-form-row {
        grid-template-columns: 1fr;
    }
    .t16-form-group.full {
        grid-column: span 1;
    }
    .t16-footer-info {
        flex-direction: column;
        gap: 12px;
    }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .t16-logo {
        font-size: 1.4rem;
    }
    .t16-product-grid {
        grid-template-columns: 1fr;
    }
    .t16-section-title h2 {
        font-size: 1.2rem;
        padding: 14px 28px;
    }
    .t16-pagination {
        gap: 8px;
        flex-wrap: wrap;
    }
    .t16-pagination a,
    .t16-pagination span {
        min-width: 44px;
        height: 44px;
        padding: 0 14px;
        font-size: 0.9rem;
    }
}
