:root {
    --primary: #1b284d;
    --secondary: #c9a84c;
    --gold: #b8943c;
    --white: #ffffff;
    --off-white: #f7f5f0;
    --light-gray: #f0ede8;
    --text-color: #1b284d;
    --text-light: #555555;
    --border-color: #e5e1da;
    --shadow: 0 8px 32px rgba(27, 40, 77, 0.10);
    --shadow-hover: 0 16px 48px rgba(27, 40, 77, 0.18);
    --radius: 6px;
    --radius-lg: 12px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --container-max: 1480px;
    --content-max: 1480px;
}

.tag-page-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 30px 30px 60px;
}

.product-page .product-1 {
    padding: 40px 0 60px;
}

.product-page .product-1 .container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.product-page .product-1 .bottom {
    margin-top: 10px;
}

.product-page .product-1 .grid-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.product-page .product-1 .grid-box .column {
    list-style: none;
}

.product-page .product-1 .grid-box .box {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
}

.product-page .product-1 .grid-box .box:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.product-page .product-1 .grid-box .box .img {
    position: relative;
    overflow: hidden;
    background: var(--off-white);
}

.product-page .product-1 .grid-box .box .img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.product-page .product-1 .grid-box .box:hover .img img {
    transform: scale(1.05);
}

.product-page .product-1 .grid-box .box .img .btn {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(27, 40, 77, 0.75);
    opacity: 0;
    transition: opacity var(--transition);
}

.product-page .product-1 .grid-box .box:hover .img .btn {
    opacity: 1;
}

.product-page .product-1 .grid-box .box .img .btn a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    gap: 4px;
}

.product-page .product-1 .grid-box .box .img .btn a p {
    font-size: 14px;
    line-height: 2;
    font-weight: 500;
    color: var(--white);
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-page .product-1 .grid-box .box .img .btn a i {
    font-size: 28px;
    font-weight: 300;
    color: var(--secondary);
    transition: transform var(--transition);
}

.product-page .product-1 .grid-box .box .img .btn a:hover i {
    transform: rotate(90deg);
}

.product-page .product-1 .grid-box .box .tit {
    padding: 16px 20px 20px;
    text-align: center;
}

.product-page .product-1 .grid-box .box .tit a {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-page .product-1 .grid-box .box .tit a:hover {
    color: var(--secondary);
}

.content-matrix {
    max-width: var(--content-max);
    margin: 20px auto 0;
    padding: 0 24px;
}

.main-content-column {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.editor-module,
.info-column1.editor-module,
.editor-module1 {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 44px;
    margin-bottom: 32px;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
}

.editor-module:hover,
.info-column1.editor-module:hover,
.editor-module1:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.editor-module::before,
.info-column1.editor-module::before,
.editor-module1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--gold));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.editor-module h4,
.info-column1.editor-module h4,
.editor-module1 h4 {
    font-size: 22px;
    line-height: 1.35;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 16px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-color);
    position: relative;
}

.editor-module h4::after,
.info-column1.editor-module h4::after,
.editor-module1 h4::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}

.editor-module .module-body h4,
.info-column1.editor-module .module-body h4,
.editor-module1 .module-body h4 {
    font-size: 18px;
    line-height: 1.45;
    font-weight: 600;
    color: var(--primary);
    margin: 20px 0 10px 0;
    padding-bottom: 6px;
    border-bottom: 1px dashed var(--border-color);
}

.editor-module .module-body h4::after,
.info-column1.editor-module .module-body h4::after,
.editor-module1 .module-body h4::after {
    display: none;
}

.editor-module p,
.info-column1.editor-module p,
.editor-module1 p {
    font-size: 14px;
    line-height: 2;
    color: var(--text-light);
    margin-bottom: 12px;
}

.editor-module ul,
.info-column1.editor-module ul,
.editor-module1 ul {
    padding-left: 0;
    list-style: none;
    margin: 8px 0 16px;
}

.editor-module ul li,
.info-column1.editor-module ul li,
.editor-module1 ul li {
    font-size: 14px;
    line-height: 2;
    color: var(--text-light);
    padding: 4px 0 4px 28px;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.editor-module ul li:last-child,
.info-column1.editor-module ul li:last-child,
.editor-module1 ul li:last-child {
    border-bottom: none;
}

.editor-module ul li::before,
.info-column1.editor-module ul li::before,
.editor-module1 ul li::before {
    content: '◆';
    color: var(--secondary);
    font-size: 10px;
    position: absolute;
    left: 4px;
    top: 6px;
}

.editor-module ol,
.info-column1.editor-module ol,
.editor-module1 ol {
    padding-left: 24px;
    margin: 8px 0 16px;
}

.editor-module ol li,
.info-column1.editor-module ol li,
.editor-module1 ol li {
    font-size: 14px;
    line-height: 2;
    color: var(--text-light);
    padding: 2px 0;
}

.editor-module strong,
.info-column1.editor-module strong,
.editor-module1 strong {
    color: var(--primary);
    font-weight: 700;
}

.editor-module table,
.info-column1.editor-module table,
.editor-module1 table,
.editor-module .aoguan-spec-table,
.info-column1.editor-module .aoguan-spec-table,
.editor-module1 .aoguan-spec-table {
    width: 100%;
    border-collapse: collapse;
    margin: 12px 0 8px;
    font-size: 14px;
    line-height: 2;
    border-radius: var(--radius);
    overflow: hidden;
}

.editor-module table th,
.info-column1.editor-module table th,
.editor-module1 table th,
.editor-module .aoguan-spec-table th,
.info-column1.editor-module .aoguan-spec-table th,
.editor-module1 .aoguan-spec-table th {
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    padding: 12px 18px;
    text-align: left;
    font-size: 14px;
}

.editor-module table td,
.info-column1.editor-module table td,
.editor-module1 table td,
.editor-module .aoguan-spec-table td,
.info-column1.editor-module .aoguan-spec-table td,
.editor-module1 .aoguan-spec-table td {
    padding: 12px 18px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    line-height: 2;
    color: var(--text-light);
}

.editor-module table tr:last-child td,
.info-column1.editor-module table tr:last-child td,
.editor-module1 table tr:last-child td,
.editor-module .aoguan-spec-table tr:last-child td,
.info-column1.editor-module .aoguan-spec-table tr:last-child td,
.editor-module1 .aoguan-spec-table tr:last-child td {
    border-bottom: none;
}

.editor-module table tr:nth-child(even) td,
.info-column1.editor-module table tr:nth-child(even) td,
.editor-module1 table tr:nth-child(even) td,
.editor-module .aoguan-spec-table tr:nth-child(even) td,
.info-column1.editor-module .aoguan-spec-table tr:nth-child(even) td,
.editor-module1 .aoguan-spec-table tr:nth-child(even) td {
    background: var(--off-white);
}

.editor-module table td:first-child,
.info-column1.editor-module table td:first-child,
.editor-module1 table td:first-child,
.editor-module .aoguan-spec-table td:first-child,
.info-column1.editor-module .aoguan-spec-table td:first-child,
.editor-module1 .aoguan-spec-table td:first-child {
    font-weight: 600;
    color: var(--text-color);
    width: 40%;
}

.editor-module table td:last-child,
.info-column1.editor-module table td:last-child,
.editor-module1 table td:last-child,
.editor-module .aoguan-spec-table td:last-child,
.info-column1.editor-module .aoguan-spec-table td:last-child,
.editor-module1 .aoguan-spec-table td:last-child {
    width: 60%;
}

.editor-module-faq {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 44px;
    margin-bottom: 32px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
}

.editor-module-faq:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.editor-module-faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--gold));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.editor-module-faq h4 {
    font-size: 22px;
    line-height: 1.35;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 16px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-color);
    position: relative;
}

.editor-module-faq h4::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}

.editor-module-faq ul {
    list-style: none;
    padding: 0;
    margin: 0;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
}

.editor-module-faq ul li {
    font-size: 14px;
    line-height: 2;
    padding: 14px 20px;
    transition: all var(--transition);
}

.editor-module-faq ul li:first-child {
    font-weight: 600;
    color: var(--text-color);
    background: var(--off-white);
    cursor: pointer;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-right: 48px;
    user-select: none;
}

.editor-module-faq ul li:first-child::after {
    content: '+';
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 300;
    color: var(--secondary);
    transition: transform var(--transition);
}

.editor-module-faq ul li:first-child.expanded::after {
    transform: translateY(-50%) rotate(45deg);
}

.editor-module-faq ul li:first-child:hover {
    background: var(--light-gray);
}

.editor-module-faq ul li:last-child {
    background: var(--white);
    color: var(--text-light);
    max-height: 0;
    padding: 0 20px;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.4s ease, opacity 0.4s ease;
}

.editor-module-faq ul li:last-child.active {
    max-height: 600px;
    padding: 14px 20px;
    opacity: 1;
}

.editor-module-faq ul li:last-child p {
    font-size: 14px;
    line-height: 2;
    margin: 0;
    color: var(--text-light);
}

.editor-module-faq ul li:last-child strong {
    color: var(--primary);
}

.tag-hero-section {
    padding: 50px 0 40px;
    text-align: center;
    max-width: var(--content-max);
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.tag-hero-section .tag-title {
    font-size: 44px;
    line-height: 1.15;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.tag-hero-section .hero-section-p {
    font-size: 16px;
    line-height: 1.8;
    color: #88847c;
    font-weight: 400;
    margin-bottom: 24px;
    letter-spacing: 2px;
}

.editor-content-1 {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 44px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--secondary);
    position: relative;
    max-width: var(--content-max);
    margin: 0 auto;
}

.editor-content-1 p {
    font-size: 14px;
    line-height: 2;
    color: var(--text-light);
    margin-bottom: 12px;
}

.editor-content-1 strong {
    color: var(--primary);
    font-weight: 700;
}

.editor-content-1 ul {
    padding-left: 0;
    list-style: none;
    margin: 8px 0 16px;
}

.editor-content-1 ul li {
    font-size: 14px;
    line-height: 2;
    color: var(--text-light);
    padding: 4px 0 4px 28px;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.editor-content-1 ul li:last-child {
    border-bottom: none;
}

.editor-content-1 ul li::before {
    content: '◆';
    color: var(--secondary);
    font-size: 10px;
    position: absolute;
    left: 4px;
    top: 6px;
}

.editor-content-1 table,
.editor-content-1 .aoguan-spec-table {
    width: 100%;
    border-collapse: collapse;
    margin: 12px 0 8px;
    font-size: 14px;
    line-height: 2;
    border-radius: var(--radius);
    overflow: hidden;
}

.editor-content-1 table th,
.editor-content-1 .aoguan-spec-table th {
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    padding: 12px 18px;
    text-align: left;
    font-size: 14px;
}

.editor-content-1 table td,
.editor-content-1 .aoguan-spec-table td {
    padding: 12px 18px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    line-height: 2;
    color: var(--text-light);
}

.editor-content-1 table tr:last-child td,
.editor-content-1 .aoguan-spec-table tr:last-child td {
    border-bottom: none;
}

.editor-content-1 table tr:nth-child(even) td,
.editor-content-1 .aoguan-spec-table tr:nth-child(even) td {
    background: var(--off-white);
}

.editor-content-1 table td:first-child,
.editor-content-1 .aoguan-spec-table td:first-child {
    font-weight: 600;
    color: var(--text-color);
    width: 40%;
}

.editor-content-1 table td:last-child,
.editor-content-1 .aoguan-spec-table td:last-child {
    width: 60%;
}

.more-info {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 10px;
}

.more-info a {
    display: inline-block;
    background: var(--off-white);
    color: var(--primary);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 14px;
    line-height: 1.8;
    border: 1px solid var(--border-color);
    transition: all var(--transition);
    text-decoration: none;
}

.more-info a:hover {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

.table-responsive-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 8px 0;
}

.table-responsive-wrapper table {
    min-width: 480px;
}

@media (max-width: 1024px) {
    .tag-page-container {
        padding: 20px 20px 40px;
    }
    .product-page .product-1 .container {
        padding: 0 20px;
    }
    .product-page .product-1 .grid-box {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .editor-module,
    .info-column1.editor-module,
    .editor-module1,
    .editor-module-faq,
    .editor-content-1 {
        padding: 28px 30px;
    }
    .content-matrix {
        padding: 0 20px;
    }
    .tag-hero-section {
        padding-left: 20px;
        padding-right: 20px;
    }
    .tag-hero-section .tag-title {
        font-size: 36px;
    }
    .more-info {
        padding: 16px 20px;
    }
}

@media (max-width: 768px) {
    .tag-page-container {
        padding: 16px 12px 30px;
    }
    .product-page .product-1 {
        padding: 20px 0 40px;
    }
    .product-page .product-1 .container {
        padding: 0 16px;
    }
    .product-page .product-1 .grid-box {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .product-page .product-1 .grid-box .box .img img {
        height: 200px;
    }
    .product-page .product-1 .grid-box .box .tit {
        padding: 12px 16px 16px;
    }
    .product-page .product-1 .grid-box .box .tit a {
        font-size: 15px;
        line-height: 1.5;
    }
    .product-page .product-1 .grid-box .box .img .btn a p {
        font-size: 13px;
        line-height: 2;
    }
    .content-matrix {
        padding: 0 16px;
    }
    .editor-module,
    .info-column1.editor-module,
    .editor-module1,
    .editor-module-faq,
    .editor-content-1 {
        padding: 20px 18px;
        margin-bottom: 20px;
    }
    .editor-module h4,
    .info-column1.editor-module h4,
    .editor-module1 h4,
    .editor-module-faq h4 {
        font-size: 18px;
        line-height: 1.4;
    }
    .editor-module .module-body h4,
    .info-column1.editor-module .module-body h4,
    .editor-module1 .module-body h4 {
        font-size: 16px;
        line-height: 1.5;
    }
    .editor-module p,
    .info-column1.editor-module p,
    .editor-module1 p,
    .editor-module-faq p,
    .editor-content-1 p {
        font-size: 14px;
        line-height: 2;
    }
    .editor-module ul li,
    .info-column1.editor-module ul li,
    .editor-module1 ul li,
    .editor-module-faq ul li,
    .editor-content-1 ul li {
        font-size: 14px;
        line-height: 2;
        padding: 4px 0 4px 24px;
    }
    .editor-module table,
    .info-column1.editor-module table,
    .editor-module1 table,
    .editor-module .aoguan-spec-table,
    .info-column1.editor-module .aoguan-spec-table,
    .editor-module1 .aoguan-spec-table,
    .editor-content-1 table,
    .editor-content-1 .aoguan-spec-table {
        font-size: 13px;
    }
    .editor-module table th,
    .info-column1.editor-module table th,
    .editor-module1 table th,
    .editor-module .aoguan-spec-table th,
    .info-column1.editor-module .aoguan-spec-table th,
    .editor-module1 .aoguan-spec-table th,
    .editor-module table td,
    .info-column1.editor-module table td,
    .editor-module1 table td,
    .editor-module .aoguan-spec-table td,
    .info-column1.editor-module .aoguan-spec-table td,
    .editor-module1 .aoguan-spec-table td,
    .editor-content-1 table th,
    .editor-content-1 .aoguan-spec-table th,
    .editor-content-1 table td,
    .editor-content-1 .aoguan-spec-table td {
        font-size: 13px;
        padding: 8px 12px;
        line-height: 1.9;
    }
    .editor-module-faq ul li {
        padding: 12px 16px;
        font-size: 14px;
        line-height: 2;
    }
    .editor-module-faq ul li:first-child {
        padding-right: 40px;
        font-size: 14px;
        line-height: 2;
    }
    .editor-module-faq ul li:last-child.active {
        padding: 12px 16px;
    }
    .editor-module-faq ul li:last-child p {
        font-size: 14px;
        line-height: 2;
    }
    .tag-hero-section {
        padding: 30px 16px 20px;
    }
    .tag-hero-section .tag-title {
        font-size: 28px;
        line-height: 1.2;
    }
    .tag-hero-section .hero-section-p {
        font-size: 14px;
        line-height: 2;
    }
    .more-info {
        padding: 14px 16px;
        gap: 4px 8px;
    }
    .more-info a {
        font-size: 13px;
        padding: 4px 14px;
    }
}