:root {
    --sol-wholesale-dog-wear-primary-color: #1a1a1a;
    --sol-wholesale-dog-wear-accent-color: #f7a400;
    --sol-wholesale-dog-wear-text-light: #f5f5f5;
    --sol-wholesale-dog-wear-text-gray: #b0b0b0;
    --sol-wholesale-dog-wear-bg-light: #ffffff;
    --sol-wholesale-dog-wear-bg-gray: #f9f9f9;
    --sol-wholesale-dog-wear-transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Utility Classes */
.sol-wholesale-dog-wear .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sol-wholesale-dog-wear h1,
.sol-wholesale-dog-wear h2,
.sol-wholesale-dog-wear h3,
.sol-wholesale-dog-wear h4 {
    font-weight: 700;
    line-height: 1.2;
}

.sol-wholesale-dog-wear a {
    text-decoration: none;
    color: inherit;
}

.sol-wholesale-dog-wear ul {
    list-style: none;
}

.sol-wholesale-dog-wear .btn {
    display: inline-block;
    padding: 12px 32px;
    background: var(--sol-wholesale-dog-wear-accent-color);
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: var(--sol-wholesale-dog-wear-transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.sol-wholesale-dog-wear .btn:hover {
    background: #d68b00;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(247, 164, 0, 0.3);
}

.sol-wholesale-dog-wear .section-padding {
    padding: 80px 0;
}

/* Animation Classes */
.sol-wholesale-dog-wear .reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.sol-wholesale-dog-wear .reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Section 1: H1 Header (Hero) --- */
.sol-wholesale-dog-wear .hero-banner {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('/wp-content/uploads/2026/03/tltrglfr-768x285.webp') no-repeat center center/cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--sol-wholesale-dog-wear-text-light);
}

.sol-wholesale-dog-wear .hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.sol-wholesale-dog-wear .hero-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #ddd;
}

.sol-wholesale-dog-wear .hero-btn-wrapper {
    margin-top: 25px;
}

/* --- Intro & Trends --- */
.sol-wholesale-dog-wear .intro-section {
    text-align: center;
    background: #fff;
}

.sol-wholesale-dog-wear .intro-container {
    max-width: 900px;
    margin: 0 auto;
}

.sol-wholesale-dog-wear .intro-container h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--sol-wholesale-dog-wear-primary-color);
}

.sol-wholesale-dog-wear .intro-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.sol-wholesale-dog-wear .trend-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.sol-wholesale-dog-wear .badge {
    background: var(--sol-wholesale-dog-wear-bg-gray);
    border: 1px solid #ddd;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* --- Style Catalog & Market Alignment --- */
.sol-wholesale-dog-wear .catalog-section {
    background-color: #fcfcfc;
    border-top: 1px solid #eee;
}

.sol-wholesale-dog-wear .catalog-header {
    text-align: center;
    margin-bottom: 50px;
}

.sol-wholesale-dog-wear .table-responsive {
    overflow-x: auto;
    margin-bottom: 40px;
}

.sol-wholesale-dog-wear .comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.sol-wholesale-dog-wear .comparison-table th,
.sol-wholesale-dog-wear .comparison-table td {
    padding: 18px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.sol-wholesale-dog-wear .comparison-table th {
    background-color: var(--sol-wholesale-dog-wear-primary-color);
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.sol-wholesale-dog-wear .comparison-table tr:last-child td {
    border-bottom: none;
}

.sol-wholesale-dog-wear .trend-tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    background: #e3f2fd;
    color: #1976d2;
}

.sol-wholesale-dog-wear .high-match {
    color: #2e7d32;
    font-weight: bold;
}

/* --- Section: Customization --- */
.sol-wholesale-dog-wear .custom-section {
    background-color: var(--sol-wholesale-dog-wear-primary-color);
    color: var(--sol-wholesale-dog-wear-text-light);
    position: relative;
    overflow: hidden;
}

.sol-wholesale-dog-wear .custom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.sol-wholesale-dog-wear .custom-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.sol-wholesale-dog-wear .custom-content p.description {
    opacity: 0.9;
}

.sol-wholesale-dog-wear .custom-content h3 {
    font-size: 1.5rem;
    color: var(--sol-wholesale-dog-wear-accent-color);
    margin-top: 20px;
    margin-bottom: 10px;
}

.sol-wholesale-dog-wear .custom-features ul {
    margin-top: 20px;
}

.sol-wholesale-dog-wear .custom-features li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.sol-wholesale-dog-wear .custom-features li::before {
    content: "✔";
    color: var(--sol-wholesale-dog-wear-accent-color);
    position: absolute;
    left: 0;
}

.sol-wholesale-dog-wear .btn-custom-start {
    margin-top: 20px;
    background: #fff;
    color: var(--sol-wholesale-dog-wear-primary-color);
}

.sol-wholesale-dog-wear .custom-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    transition: var(--sol-wholesale-dog-wear-transition);
}

.sol-wholesale-dog-wear .custom-image:hover img {
    transform: scale(1.02);
}

.sol-wholesale-dog-wear .article-slider-section {
    background: var(--sol-wholesale-dog-wear-bg-gray);
}

.sol-wholesale-dog-wear .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.sol-wholesale-dog-wear .section-header h2 {
    font-size: 2rem;
}

/* New Styles for 3-Column Text Links */
.sol-wholesale-dog-wear .insights-link-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sol-wholesale-dog-wear .insight-text-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--sol-wholesale-dog-wear-transition);
    font-weight: 700;
    color: var(--sol-wholesale-dog-wear-primary-color);
    border: 1px solid transparent;
}

.sol-wholesale-dog-wear .insight-text-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    color: var(--sol-wholesale-dog-wear-accent-color);
    border-color: var(--sol-wholesale-dog-wear-accent-color);
}

/* --- Specialized Jersey & Dresses --- */
.sol-wholesale-dog-wear .special-section {
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
}

.sol-wholesale-dog-wear .two-col-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.sol-wholesale-dog-wear .showcase-item {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.sol-wholesale-dog-wear .showcase-item h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.sol-wholesale-dog-wear .showcase-item h3 {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 20px;
    font-weight: 500;
}

.sol-wholesale-dog-wear .showcase-list {
    margin-top: 15px;
    margin-bottom: 25px;
}

.sol-wholesale-dog-wear .showcase-link {
    text-decoration: underline;
    font-weight: bold;
}

.sol-wholesale-dog-wear .showcase-bg-icon {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 10rem;
    color: rgba(0,0,0,0.03);
    pointer-events: none;
}

/* --- FAQ Accordion (Shared Styles) --- */
.sol-wholesale-dog-wear .faq-accordion-section {
    background: #fff;
    border-top: 1px solid #eee;
}

.sol-wholesale-dog-wear .faq-title {
    text-align: center;
    margin-bottom: 40px;
}

.sol-wholesale-dog-wear .accordion {
    margin: 0 auto;
}

.sol-wholesale-dog-wear .accordion-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.sol-wholesale-dog-wear .accordion-header {
    width: 100%;
    padding: 20px;
    text-align: left;
    background: none;
    border: none;
    outline: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--sol-wholesale-dog-wear-primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.sol-wholesale-dog-wear .accordion-header:hover {
    background-color: #fafafa;
}

.sol-wholesale-dog-wear .accordion-header::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--sol-wholesale-dog-wear-accent-color);
    transition: transform 0.3s;
}

.sol-wholesale-dog-wear .accordion-header.active::after {
    transform: rotate(45deg);
}

.sol-wholesale-dog-wear .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
}

.sol-wholesale-dog-wear .accordion-content p {
    padding-bottom: 20px;
    color: #666;
    white-space: pre-line;
}

/* --- Personalized Value --- */
.sol-wholesale-dog-wear .value-section {
    background: #fff;
    text-align: center;
}

.sol-wholesale-dog-wear .value-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.sol-wholesale-dog-wear .value-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.sol-wholesale-dog-wear .value-intro {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 40px;
}

.sol-wholesale-dog-wear .value-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.sol-wholesale-dog-wear .value-box {
    padding: 40px;
    border: 1px solid #eee;
    border-radius: 12px;
    transition: var(--sol-wholesale-dog-wear-transition);
    background: #fff;
    text-align: left;
}

.sol-wholesale-dog-wear .value-box:hover {
    border-color: var(--sol-wholesale-dog-wear-accent-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.sol-wholesale-dog-wear .value-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--sol-wholesale-dog-wear-accent-color);
}

.sol-wholesale-dog-wear .experience-insight {
    margin-top: 60px;
    padding: 40px;
    background: var(--sol-wholesale-dog-wear-bg-gray);
    border-left: 5px solid var(--sol-wholesale-dog-wear-accent-color);
    border-radius: 0 12px 12px 0;
    text-align: left;
}

.sol-wholesale-dog-wear .experience-insight h3 {
    margin-bottom: 15px;
    font-size: 1.6rem;
}

.sol-wholesale-dog-wear .insight-list {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.sol-wholesale-dog-wear .insight-item strong {
    display: block;
    color: var(--sol-wholesale-dog-wear-primary-color);
    margin-bottom: 5px;
}

/* --- Article List Layout --- */
.sol-wholesale-dog-wear .article-list-section {
    background: #fff;
    padding-top: 40px;
    padding-bottom: 40px;
}

.sol-wholesale-dog-wear .article-list-title {
    margin-bottom: 30px;
}

.sol-wholesale-dog-wear .article-list-item {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 30px;
}

.sol-wholesale-dog-wear .article-list-img {
    width: 200px;
    height: 120px;
    border-radius: 4px;
    object-fit: cover;
    flex-shrink: 0;
}

.sol-wholesale-dog-wear .article-list-content h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.sol-wholesale-dog-wear .article-list-content p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.sol-wholesale-dog-wear .read-more-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--sol-wholesale-dog-wear-primary-color);
    border-bottom: 2px solid var(--sol-wholesale-dog-wear-accent-color);
}

/* --- Size Inclusivity (REVISED) --- */
.sol-wholesale-dog-wear .size-inclusion-section {
    background: var(--sol-wholesale-dog-wear-primary-color);
    color: #fff;
    text-align: center;
}

.sol-wholesale-dog-wear .size-grid-revised {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-top: 40px;
    text-align: left;
}

.sol-wholesale-dog-wear .size-inclusion-section h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.sol-wholesale-dog-wear .nlp-tag {
    color: var(--sol-wholesale-dog-wear-accent-color);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: block;
}

.sol-wholesale-dog-wear .spec-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    overflow: hidden;
}

.sol-wholesale-dog-wear .spec-table th,
.sol-wholesale-dog-wear .spec-table td {
    padding: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

.sol-wholesale-dog-wear .spec-table th {
    background: rgba(255,255,255,0.1);
    color: var(--sol-wholesale-dog-wear-accent-color);
}

/* --- Maintenance Section (NEW) --- */
.sol-wholesale-dog-wear .maintenance-section {
    background: #fff;
    border-top: 1px solid #eee;
}

.sol-wholesale-dog-wear .maintenance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.sol-wholesale-dog-wear .maintenance-card {
    padding: 30px;
    border-radius: 8px;
    background: var(--sol-wholesale-dog-wear-bg-gray);
    transition: var(--sol-wholesale-dog-wear-transition);
}

.sol-wholesale-dog-wear .maintenance-card h3 {
    color: var(--sol-wholesale-dog-wear-primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.sol-wholesale-dog-wear .maintenance-card p {
    font-size: 0.95rem;
    color: #555;
}

.sol-wholesale-dog-wear .caution-box {
    margin-top: 40px;
    padding: 25px;
    background: #fff4e5;
    border-left: 5px solid #ffa000;
    border-radius: 4px;
}

.sol-wholesale-dog-wear .caution-box h4 {
    color: #e65100;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* --- FAQ Grid (Legacy classes kept but structure modified to accordion) --- */
.sol-wholesale-dog-wear .faq-grid-section {
    background: #f4f4f4;
}

.sol-wholesale-dog-wear .faq-grid-title {
    text-align: center;
    margin-bottom: 20px;
}

/* Specific override for the second FAQ section to center the accordion */
.sol-wholesale-dog-wear .faq-grid-section .accordion {
    margin: 0 auto;
    margin-top: 40px;
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

/* Responsive */
@media (max-width: 992px) {
    .sol-wholesale-dog-wear .custom-grid,
    .sol-wholesale-dog-wear .two-col-showcase,
    .sol-wholesale-dog-wear .size-grid-revised,
    .sol-wholesale-dog-wear .value-boxes,
    .sol-wholesale-dog-wear .insight-list,
    .sol-wholesale-dog-wear .maintenance-grid,
    .sol-wholesale-dog-wear .insights-link-grid {
        grid-template-columns: 1fr;
    }
    .sol-wholesale-dog-wear .hero-content h2 {
        font-size: 2.5rem;
    }
    .sol-wholesale-dog-wear .article-list-item {
        flex-direction: column;
    }
    .sol-wholesale-dog-wear .article-list-img {
        width: 100%;
        height: 200px;
    }
}