.goldika-readmore-container {
    direction: rtl;
    color: white;
    margin-top: 20px;
    text-align: right;
}

.goldika-readmore-container h2 { color: white; font-size: 1.2em; }
.goldika-readmore-container h3 { color: white; font-size: 1.04em; margin-bottom: 1em; }

.goldika-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0, 1, 0, 1);
}

.goldika-content.open {
    max-height: 5000px;
    transition: max-height 0.6s ease-in;
}

.goldika-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin: 15px auto 0;
    padding: 8px 16px;
    font-size: 0.95rem;
    color: #c69300;
    background: transparent !important;
    border: none;
    cursor: pointer;
}

.goldika-toggle svg {
    fill: #c69300;
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    transform: rotate(180deg);
}

.goldika-toggle.open svg {
    transform: rotate(0deg);
}