:root {
    --primary-color: #1a1a1a;
    --accent-color: #e6b800;
    --text-light: #666;
    --bg-gray: #f9f9f9;
    --white: #ffffff;
    --danger: #ff4d4d;
    --success: #2ecc71;
}

.pet-feeder-station .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.pet-feeder-station .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.pet-feeder-station .hero-section {
    height: 80vh;
    background: url('/wp-content/uploads/2026/03/c2ss143q.webp') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
    text-align: center;
}

.pet-feeder-station .overlay {
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    background: rgba(0,0,0,0.4);
}

.pet-feeder-station .hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

.pet-feeder-station .hero-content h2 { font-size: 4rem; margin: 0; }

.pet-feeder-station .sale-badge {
    display: inline-block;
    background: var(--accent-color);
    color: black;
    padding: 10px 20px;
    font-weight: bold;
    margin-top: 20px;
    transform: skewX(-10deg);
    transition: transform 0.3s;
}
.pet-feeder-station .sale-badge:hover { transform: skewX(-10deg) scale(1.1); }

.pet-feeder-station .grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.pet-feeder-station .grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.pet-feeder-station .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }

.pet-feeder-station .card {
    background: var(--bg-gray);
    padding: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    border-bottom: 3px solid transparent;
}
.pet-feeder-station .card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-bottom: 3px solid var(--accent-color);
}
.pet-feeder-station .card img { width: 100%; border-radius: 4px; }

/* 新增对比表格样式 */
.pet-feeder-station .comparison-table-wrapper {
    margin-top: 50px;
    overflow-x: auto;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.pet-feeder-station .comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}
.pet-feeder-station .comparison-table th, .comparison-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}
.pet-feeder-station .comparison-table th {
    background-color: var(--primary-color);
    color: var(--accent-color);
    text-transform: uppercase;
    font-size: 0.9rem;
}
.pet-feeder-station .comparison-table tr:hover { background-color: #fcfcfc; }
.pet-feeder-station .rating-stars { color: var(--accent-color); font-weight: bold; }
.pet-feeder-station .feat-tag {
    display: inline-block;
    padding: 4px 8px;
    background: #eee;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-right: 5px;
}

.pet-feeder-station .dark-feature {
    background: var(--primary-color);
    color: white;
    overflow: hidden;
}
.pet-feeder-station .flex-row { display: flex; align-items: center; gap: 50px; }
.pet-feeder-station .text-block { flex: 1; }
.pet-feeder-station .image-block { flex: 1; }
.pet-feeder-station .image-block img { width: 100%; border-radius: 8px; }

.pet-feeder-station .btn-primary {
    background: var(--accent-color);
    border: none;
    padding: 15px 30px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
    transition: 0.3s;
    display: inline-block;
    color: black;
}
.pet-feeder-station .btn-primary:hover { opacity: 0.9; transform: scale(1.05); }

.pet-feeder-station .animate-float {
    animation: floating 3s ease-in-out infinite;
}
@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.pet-feeder-station .article-strip { background: #eee; }
.pet-feeder-station .article-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px 0;
}
.pet-feeder-station .article-card-horizontal {
    display: flex;
    background: white;
    min-width: 45%;
    align-items: center;
    padding: 15px;
    border-left: 5px solid var(--accent-color);
    transition: 0.3s;
}
.pet-feeder-station .article-card-horizontal:hover { background: #fffdf5; transform: translateX(10px); }
.pet-feeder-station .article-card-horizontal img {
    margin-right: 20px;
    border-radius: 4px;
    max-width: 50px;
    max-height: 50px;
}

.pet-feeder-station .visual-article { position: relative; overflow: hidden; border-radius: 8px; }
.pet-feeder-station .img-zoom img { width: 100%; transition: transform 0.8s; vertical-align: middle; object-fit: cover;}
.pet-feeder-station .visual-article:hover img { transform: scale(1.15); }
.pet-feeder-station .visual-article p {
    position: absolute; bottom: 20px; left: 20px; color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    z-index: 2;
    font-weight: bold;
    font-size: 20px;
}
.pet-feeder-station .visual-article::after {
    content: ''; position: absolute; bottom:0; left:0; width:100%; height:50%;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
}

.pet-feeder-station .accordion details {
    background: var(--bg-gray);
    margin-bottom: 10px;
    padding: 15px;
    transition: 0.3s;
}
.pet-feeder-station .accordion summary { font-weight: bold; cursor: pointer; outline: none; }

.pet-feeder-station .faq-bottom { background: #111; color: #ccc; }
.pet-feeder-station .faq-bottom .faq-list { margin: 0 auto; }
.pet-feeder-station .faq-bottom details {
    background: #1a1a1a;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 4px;
    border-left: 3px solid var(--accent-color);
}
.pet-feeder-station .faq-bottom summary {
    color: var(--white);
    font-weight: bold;
    cursor: pointer;
    outline: none;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.5rem;
}
.pet-feeder-station .faq-bottom summary::-webkit-details-marker { display: none; }
.pet-feeder-station .faq-bottom summary::after { content: '+'; font-size: 1.5rem; color: var(--accent-color); }
.pet-feeder-station .faq-bottom details[open] summary::after { content: '-'; }
.pet-feeder-station .faq-bottom p { margin-top: 15px; line-height: 1.6; color: #aaa; font-size: 1.2rem; }

.pet-feeder-station .tech-item { text-align: center; padding: 20px; transition: 0.3s; }
.pet-feeder-station .tech-item:hover .icon { transform: rotateY(360deg); }
.pet-feeder-station .tech-item .icon { font-size: 3rem; display: block; margin-bottom: 10px; transition: 0.6s; }

.pet-feeder-station .animal-box {
    flex: 1;
    padding: 30px;
    background: var(--bg-gray);
    border-radius: 12px;
    transition: 0.3s;
}
.pet-feeder-station .animal-box:hover { background: #f0f0f0; }

/* --- New logic-driven styles --- */
.pet-feeder-station .logic-container {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.pet-feeder-station .canvas-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    margin: 30px 0;
    background: #fdfdfd;
    border: 1px dashed #ddd;
    border-radius: 8px;
}
.pet-feeder-station .logic-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}
.pet-feeder-station .point-box {
    padding: 15px;
    border-left: 4px solid #ddd;
}
.pet-feeder-station .point-box.danger { border-color: var(--danger); background: #fff5f5; }
.pet-feeder-station .point-box.success { border-color: var(--success); background: #f5fff9; }
.pet-feeder-station .point-box h5 { margin: 0 0 5px 0; font-size: 1.1rem; }
.pet-feeder-station .point-box p { margin: 0; font-size: 0.9rem; color: #555; }

/* Additional Internal Table Styling */
.pet-feeder-station .spec-comparison-mini {
    width: 100%;
    font-size: 0.85rem;
    margin-top: 15px;
    border: 1px solid #eee;
    border-spacing: 0;
}
.pet-feeder-station .spec-comparison-mini td { padding: 8px; border: 1px solid #eee; text-align: center; }
.pet-feeder-station .spec-comparison-mini .check { color: var(--success); font-weight: bold; }
.pet-feeder-station .spec-comparison-mini .cross { color: var(--danger); }
.pet-feeder-station details p{
    white-space: pre-line;
}

/* Extracted Inline Styles */
.pet-feeder-station .comparison-table-wrapper h3 {
    margin-bottom: 20px;
    border-left: 4px solid var(--accent-color);
    padding-left: 15px;
}

.pet-feeder-station .smart-tech .comparison-table-wrapper {
    margin-top: 40px;
    background: #fafafa;
    border: 1px solid #eee;
}

.pet-feeder-station .smart-tech .comparison-table-wrapper h3 {
    margin-bottom: 20px;
    text-align: center;
    color: var(--primary-color);
}

.pet-feeder-station .pain-point-solutions .card div {
    font-size: 3rem;
    margin-bottom: 15px;
}

.pet-feeder-station .logic-container h3 {
    text-align: center;
    margin-bottom: 10px;
}

.pet-feeder-station .logic-container > p {
    text-align: center;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.pet-feeder-station .logic-container .grid-3 {
    margin-top: 40px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.pet-feeder-station .logic-container .grid-3 div {
    text-align: center;
}

.pet-feeder-station .logic-container .grid-3 strong {
    color: var(--accent-color);
}

.pet-feeder-station .logic-container .grid-3 p {
    font-size: 0.85rem;
    color: #777;
}

.pet-feeder-station .breed-specific-solutions .animal-box {
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 4px solid var(--accent-color);
}

.pet-feeder-station .breed-specific-solutions .animal-box div:first-child {
    font-size: 3.5rem;
}

.pet-feeder-station .spec-comparison-mini tr:first-child {
    background: #f4f4f4;
    font-weight: bold;
}

.pet-feeder-station .extra-animals .animal-box div {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

@media (max-width: 900px) {
    .pet-feeder-station .article-row{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 800px) {
    .pet-feeder-station .grid-2{
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .pet-feeder-station .flex-row, .grid-2 { flex-direction: column; grid-template-columns: 1fr; }
    .pet-feeder-station .hero-content h2 { font-size: 2.5rem; }
    .pet-feeder-station .article-card-horizontal { min-width: 85%; }
    .pet-feeder-station .dark-feature .container>div:first-child{
        order:2;
    }
}
@media (max-width: 700px) {
    .pet-feeder-station .article-row{
        grid-template-columns: 1fr;
    }
}
@media (max-width: 600px) {
    .pet-feeder-station .logic-points{
        grid-template-columns:1fr;
    }
}
@media (max-width: 400px) {
    .pet-feeder-station .grid-3{
        grid-template-columns:unset;
    }
}