/* ============================================
   Hund Stammbaum - Modern & Professional
   Frontend Styles
   ============================================ */

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --light-bg: #ecf0f1;
    --white: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --border-color: #bdc3c7;
    --line-color: #b0bec5;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 16px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* Status-Indikatoren (werden per Settings ueberschrieben) */
    --status-aktiv-bg: #d4edda;
    --status-aktiv-text: #155724;
    --status-aktiv-border: #c3e6cb;
    --status-inaktiv-bg: #fff3cd;
    --status-inaktiv-text: #856404;
    --status-inaktiv-border: #ffeeba;
    --status-verstorben-bg: #f8d7da;
    --status-verstorben-text: #721c24;
    --status-verstorben-border: #f5c6cb;
    /* Geschlecht (werden per Settings ueberschrieben) */
    --gender-male: #2980b9;
    --gender-female: #e74c3c;
}

/* ============================================
   STAMMBAUM WRAPPER
   ============================================ */

.entry-content {
    margin-top: 10px !important;
}

.stammbaum-wrapper {
    background: linear-gradient(135deg, #f5f7fa 0%, #d3d9cf5e 100%);
    padding: 40px 20px;
    border-radius: 12px;
    margin: 30px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
}

.stammbaum-wrapper::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #e74c3c, #27ae60);
    border-radius: 12px 12px 0 0;
}

/* ============================================
   PEDIGREE TREE - Bracket Layout
   ============================================ */

.pedigree-tree {
    display: flex;
    align-items: center;
    overflow-x: auto;
    padding: 20px 10px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Root Node (Anknuepfungspunkt des Hundes) */
.pedigree-root-node {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    margin-right: -1px;
}

.pedigree-root-node::before {
    content: '';
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.2), 0 2px 6px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

.pedigree-root-node::after {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--line-color);
    flex-shrink: 0;
}

/* ============================================
   PEDIGREE BRACKET (Klammer/Verzweigung)
   ============================================ */

.pedigree-bracket {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-left: 24px;
    flex-shrink: 0;
}

/* Vertikale Linie der Klammer */
.pedigree-bracket::before {
    content: '';
    position: absolute;
    left: 0;
    top: 25%;
    bottom: 25%;
    width: 2px;
    background: var(--line-color);
    border-radius: 1px;
}

/* ============================================
   PEDIGREE ENTRY (einzelner Ast)
   ============================================ */

.pedigree-entry {
    display: flex;
    align-items: center;
    position: relative;
    padding: 6px 0;
}

.pedigree-bracket > .pedigree-entry {
    flex: 1;
}

/* Horizontaler Strich von der vertikalen Klammer zum Eintrag */
.pedigree-bracket > .pedigree-entry::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 50%;
    width: 24px;
    height: 2px;
    background: var(--line-color);
    transform: translateY(-1px);
}

/* ============================================
   PEDIGREE CONNECTOR (Linie zwischen Karte und Kindklammer)
   ============================================ */

.pedigree-connector {
    width: 24px;
    height: 2px;
    background: var(--line-color);
    flex-shrink: 0;
    border-radius: 1px;
}

/* ============================================
   PEDIGREE CARD (Karte fuer jeden Hund)
   ============================================ */

.pedigree-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 12px 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    width: 200px;
}

.pedigree-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
    border-color: var(--secondary-color);
}

/* Gender-Akzent links */
.pedigree-card.geschlecht-ruede {
    border-left: 3px solid var(--gender-male);
}

.pedigree-card.geschlecht-huendin {
    border-left: 3px solid var(--gender-female);
}

/* Gen 1: groessere Karten */
.pedigree-gen-1 > .pedigree-card {
    width: 260px;
    padding: 16px 20px;
}

/* Gen 3: kompakte Karten */
.pedigree-gen-3 > .pedigree-card {
    width: 170px;
    padding: 8px 12px;
    gap: 8px;
}

/* Leere Karte */
.pedigree-card-empty {
    background: var(--light-bg);
    border-style: dashed;
    justify-content: center;
    opacity: 0.6;
}

.pedigree-empty-label {
    color: var(--text-light);
    font-size: 1.2em;
}

/* ============================================
   PEDIGREE CARD IMAGE (Avatar)
   ============================================ */

.pedigree-card-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--light-bg);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.pedigree-gen-1 > .pedigree-card .pedigree-card-image {
    width: 64px;
    height: 64px;
}

.pedigree-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.pedigree-card:hover .pedigree-card-image img {
    transform: scale(1.1);
}

/* ============================================
   PEDIGREE CARD INFO
   ============================================ */

.pedigree-card-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.pedigree-card-name {
    font-size: 0.95em;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: 1.3;
    word-break: break-word;
}

.pedigree-gen-1 > .pedigree-card .pedigree-card-name {
    font-size: 1.1em;
}

.pedigree-gen-3 > .pedigree-card .pedigree-card-name {
    font-size: 0.85em;
}

.pedigree-card-titel {
    font-size: 0.8em;
    color: var(--text-light);
    font-style: italic;
    line-height: 1.3;
    padding: 4px 8px;
    background: var(--light-bg);
    border-left: 2px solid var(--secondary-color);
    border-radius: 3px;
}

.pedigree-card-health {
    font-size: 0.78em;
    color: var(--text-light);
    padding: 6px 8px;
    background: #fef5e7;
    border-left: 2px solid var(--warning-color);
    border-radius: 3px;
    line-height: 1.4;
    margin-top: 2px;
}

/* ============================================
   GENDER ICON
   ============================================ */

.gender-icon {
    font-size: 1.1em;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
}

.gender-icon.gender-ruede {
    color: var(--gender-male);
}

.gender-icon.gender-huendin {
    color: var(--gender-female);
}

/* ============================================
   DECKRUEDE BADGE
   ============================================ */

.deckruede-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(135deg, #2980b9, #3498db);
    color: #fff;
    font-size: 0.7em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(41, 128, 185, 0.4);
    z-index: 1;
}

/* ============================================
   EMPTY STATE
   ============================================ */

.stammbaum-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-light);
    font-size: 1.1em;
}

/* ============================================
   STATUS STYLING
   ============================================ */

.pedigree-card.status-verstorben {
    opacity: 0.65;
}

.pedigree-card.status-inaktiv {
    background-color: #f9f9f9;
}

.status-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.7em;
    font-weight: 600;
    line-height: 1.4;
    width: fit-content;
}

.status-badge.status-aktiv {
    background-color: var(--status-aktiv-bg);
    color: var(--status-aktiv-text);
    border: 1px solid var(--status-aktiv-border);
}

.status-badge.status-inaktiv {
    background-color: var(--status-inaktiv-bg);
    color: var(--status-inaktiv-text);
    border: 1px solid var(--status-inaktiv-border);
}

.status-badge.status-verstorben {
    background-color: var(--status-verstorben-bg);
    color: var(--status-verstorben-text);
    border: 1px solid var(--status-verstorben-border);
}

/* ============================================
   SCROLL-TRIGGERED ANIMATIONS
   ============================================ */

/* Elemente starten unsichtbar */
.pedigree-card {
    opacity: 0;
}

.pedigree-connector {
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left center;
}

.pedigree-root-node::before,
.pedigree-root-node::after {
    opacity: 0;
}

.pedigree-bracket::before {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: center center;
}

.pedigree-bracket > .pedigree-entry::before {
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left center;
}

/* --- Animationen wenn sichtbar --- */

/* Root-Node Punkt */
.pedigree-tree.is-visible .pedigree-root-node::before {
    animation: pedigreeDotIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0s both;
}

.pedigree-tree.is-visible .pedigree-root-node::after {
    animation: pedigreeLineH 0.3s ease-out 0.15s both;
}

/* Root Bracket */
.pedigree-tree.is-visible > .pedigree-bracket::before {
    animation: pedigreeLineV 0.35s ease-out 0.25s both;
}

.pedigree-tree.is-visible > .pedigree-bracket > .pedigree-entry::before {
    animation: pedigreeLineH 0.25s ease-out 0.35s both;
}

/* Gen 1 Karten */
.pedigree-tree.is-visible .pedigree-gen-1 > .pedigree-card {
    animation: pedigreeCardIn 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s both;
}

/* Gen 1 Connectoren */
.pedigree-tree.is-visible .pedigree-gen-1 > .pedigree-connector {
    animation: pedigreeLineH 0.3s ease-out 0.65s both;
}

/* Gen 2 Brackets */
.pedigree-tree.is-visible .pedigree-gen-1 > .pedigree-bracket::before {
    animation: pedigreeLineV 0.3s ease-out 0.7s both;
}

.pedigree-tree.is-visible .pedigree-gen-1 > .pedigree-bracket > .pedigree-entry::before {
    animation: pedigreeLineH 0.25s ease-out 0.75s both;
}

/* Gen 2 Karten */
.pedigree-tree.is-visible .pedigree-gen-2 > .pedigree-card {
    animation: pedigreeCardIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s both;
}

/* Gen 2 Connectoren */
.pedigree-tree.is-visible .pedigree-gen-2 > .pedigree-connector {
    animation: pedigreeLineH 0.3s ease-out 1.0s both;
}

/* Gen 3 Brackets */
.pedigree-tree.is-visible .pedigree-gen-2 > .pedigree-bracket::before {
    animation: pedigreeLineV 0.3s ease-out 1.05s both;
}

.pedigree-tree.is-visible .pedigree-gen-2 > .pedigree-bracket > .pedigree-entry::before {
    animation: pedigreeLineH 0.25s ease-out 1.1s both;
}

/* Gen 3 Karten */
.pedigree-tree.is-visible .pedigree-gen-3 > .pedigree-card {
    animation: pedigreeCardIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.15s both;
}

/* --- Keyframes --- */

@keyframes pedigreeDotIn {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pedigreeCardIn {
    from {
        opacity: 0;
        transform: translateX(-12px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes pedigreeLineH {
    from {
        opacity: 0;
        transform: scaleX(0);
    }
    to {
        opacity: 1;
        transform: scaleX(1);
    }
}

@keyframes pedigreeLineV {
    from {
        opacity: 0;
        transform: scaleY(0);
    }
    to {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* Hover: Karte hebt Verbindungslinie hervor */
.pedigree-entry:hover > .pedigree-connector {
    background: var(--secondary-color);
    transition: background 0.2s ease;
}

/* ============================================
   RESPONSIVE - PEDIGREE TREE
   ============================================ */

@media (max-width: 1200px) {
    .pedigree-gen-1 > .pedigree-card {
        width: 220px;
        padding: 12px 16px;
    }

    .pedigree-card {
        width: 180px;
        padding: 10px 14px;
    }

    .pedigree-gen-3 > .pedigree-card {
        width: 150px;
        padding: 7px 10px;
    }

    .pedigree-connector {
        width: 18px;
    }

    .pedigree-bracket {
        padding-left: 18px;
    }

    .pedigree-bracket > .pedigree-entry::before {
        left: -18px;
        width: 18px;
    }
}

@media (max-width: 768px) {
    .stammbaum-wrapper {
        padding: 30px 10px;
        margin: 20px 0;
    }

    .pedigree-tree {
        padding: 15px 5px;
    }

    .pedigree-gen-1 > .pedigree-card {
        width: 180px;
        padding: 10px 12px;
    }

    .pedigree-gen-1 > .pedigree-card .pedigree-card-image {
        width: 48px;
        height: 48px;
    }

    .pedigree-card {
        width: 150px;
        padding: 8px 10px;
        gap: 8px;
    }

    .pedigree-card-image {
        width: 40px;
        height: 40px;
    }

    .pedigree-gen-3 > .pedigree-card {
        width: 120px;
        padding: 6px 8px;
    }

    .pedigree-card-name {
        font-size: 0.82em;
    }

    .pedigree-gen-1 > .pedigree-card .pedigree-card-name {
        font-size: 0.92em;
    }

    .pedigree-connector {
        width: 14px;
    }

    .pedigree-bracket {
        padding-left: 14px;
    }

    .pedigree-bracket > .pedigree-entry::before {
        left: -14px;
        width: 14px;
    }

    .pedigree-card-titel,
    .pedigree-card-health {
        display: none;
    }

    .pedigree-root-node::after {
        width: 16px;
    }
}

@media (max-width: 480px) {
    .stammbaum-wrapper {
        padding: 20px 6px;
    }

    .pedigree-gen-1 > .pedigree-card {
        width: 140px;
    }

    .pedigree-card {
        width: 120px;
    }

    .pedigree-gen-3 > .pedigree-card {
        width: 100px;
    }

    .pedigree-card-image {
        width: 32px;
        height: 32px;
    }

    .pedigree-gen-1 > .pedigree-card .pedigree-card-image {
        width: 38px;
        height: 38px;
    }

    .pedigree-card-name {
        font-size: 0.75em;
    }

    .pedigree-entry {
        padding: 3px 0;
    }

    .pedigree-connector {
        width: 10px;
    }

    .pedigree-bracket {
        padding-left: 10px;
    }

    .pedigree-bracket > .pedigree-entry::before {
        left: -10px;
        width: 10px;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .stammbaum-wrapper {
        box-shadow: none;
        border: 1px solid var(--border-color);
        background: #fff;
    }

    .pedigree-card {
        opacity: 1 !important;
        box-shadow: none;
        border: 1px solid #ccc;
    }

    .pedigree-card:hover {
        box-shadow: none;
        transform: none;
    }

    .pedigree-connector,
    .pedigree-bracket::before,
    .pedigree-bracket > .pedigree-entry::before,
    .pedigree-root-node::before,
    .pedigree-root-node::after {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ============================================
   WP THEME POST HEADER AUSBLENDEN
   (auf Stammbaum-Einzelseiten)
   ============================================ */

.single-stammbaum .post-header,
.single-stammbaum .entry-header {
    display: none;
}

/* ============================================
   SINGLE STAMMBAUM VIEW
   ============================================ */

.stammbaum-single {
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Hero Section */
.stammbaum-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a252f 100%);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(44, 62, 80, 0.3);
    display: flex;
    align-items: stretch;
    min-height: 280px;
}

.stammbaum-hero-media {
    flex: 0 0 40%;
    max-width: 40%;
    overflow: hidden;
    position: relative;
}

.stammbaum-hero-media::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 80px;
    background: linear-gradient(to right, transparent, var(--primary-color));
}

.stammbaum-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.stammbaum-hero-content {
    flex: 1;
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
}

.stammbaum-hero-label {
    display: inline-block;
    font-size: 0.75em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-color);
    background: rgba(52, 152, 219, 0.15);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
    width: fit-content;
}

.stammbaum-hero-title {
    font-size: 2.4em;
    font-weight: 800;
    color: var(--white);
    margin: 0 0 24px 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

/* Hero Details (Geschlecht, Wurfdatum) */
.stammbaum-hero-details {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.stammbaum-hero-detail {
    font-size: 0.95em;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 6px;
}

.stammbaum-hero-detail .gender-icon {
    font-size: 1.3em;
}

.stammbaum-hero.is-deckruede .stammbaum-hero-label {
    background: rgba(52, 152, 219, 0.3);
}

.stammbaum-hero .deckruede-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 0.85em;
    padding: 6px 14px;
}

/* Stats */
.stammbaum-stats {
    display: flex;
    gap: 30px;
    margin-top: 8px;
}

.stammbaum-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 16px 24px;
    min-width: 100px;
    backdrop-filter: blur(4px);
}

.stammbaum-stat-number {
    font-size: 2em;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
}

.stammbaum-stat-label {
    font-size: 0.8em;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
}

/* Single View Responsive */
@media (max-width: 768px) {
    .stammbaum-hero {
        flex-direction: column;
        min-height: auto;
    }

    .stammbaum-hero-media {
        flex: none;
        max-width: 100%;
        height: 220px;
    }

    .stammbaum-hero-media::after {
        width: 100%;
        height: 60px;
        top: auto;
        bottom: 0;
        right: 0;
        background: linear-gradient(to top, var(--primary-color), transparent);
    }

    .stammbaum-hero-content {
        padding: 24px 20px 30px;
    }

    .stammbaum-hero-title {
        font-size: 1.6em;
    }

    .stammbaum-stats {
        gap: 16px;
    }

    .stammbaum-stat {
        padding: 12px 16px;
        min-width: 80px;
    }

    .stammbaum-stat-number {
        font-size: 1.5em;
    }
}

@media (max-width: 480px) {
    .stammbaum-hero-content {
        padding: 20px 16px 24px;
    }

    .stammbaum-hero-title {
        font-size: 1.3em;
    }
}

/* Hero Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stammbaum-hero {
    animation: fadeInUp 0.5s ease-out;
}

@media print {
    .stammbaum-hero {
        box-shadow: none;
        border: 1px solid var(--border-color);
    }

    .stammbaum-hero-media::after {
        display: none;
    }
}

/* ============================================
   STECKBRIEF WIDGET / KARUSSELL
   ============================================ */

.widget-stammbaum-steckbrief {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.stammbaum-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.stammbaum-carousel-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.stammbaum-steckbrief-card {
    flex: 0 0 100%;
    min-width: 100%;
}

/* Card Image */
.steckbrief-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.steckbrief-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.steckbrief-image .deckruede-badge {
    position: absolute;
    top: 10px;
    right: 10px;
}

/* Card Content */
.steckbrief-content {
    padding: 16px 20px 20px;
}

.steckbrief-name {
    font-size: 1.15em;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.steckbrief-detail {
    font-size: 0.9em;
    color: var(--text-light);
    margin: 4px 0;
    line-height: 1.4;
}

.steckbrief-label {
    font-weight: 600;
    color: var(--text-dark);
}

.steckbrief-link {
    display: inline-block;
    margin-top: 12px;
    font-size: 0.85em;
    font-weight: 600;
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.steckbrief-link:hover {
    color: var(--primary-color);
}

/* Carousel Navigation */
.stammbaum-carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 16px 16px;
}

.carousel-prev,
.carousel-next {
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    color: var(--primary-color);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 1.2em;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.carousel-prev:hover,
.carousel-next:hover {
    background: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

.carousel-dots {
    display: flex;
    gap: 6px;
    align-items: center;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-color);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: var(--transition);
}

.carousel-dot.active {
    background: var(--secondary-color);
    width: 20px;
    border-radius: 4px;
}
