.sifency-single-price {
    display: flex;
    align-items: baseline;
    gap: 15px;
}
.sifency-single-price .regular-price {
    text-decoration: line-through;
    opacity: 0.6;
}
.sifency-single-price .sale-price {
    font-weight: bold;
}
.sifency-pricing-table {
    display: grid;
    gap: 30px;
}
.sifency-pricing-tier {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
}
.sifency-pricing-tier--highlight {
    border-color: var(--sifency-addons-themecolor);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.sifency-tier-name {
    margin-top: 0;
}
.sifency-tier-price {
    margin: 20px 0;
}
.sifency-tier-cycle {
    opacity: 0.7;
}
.sifency-tier-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1;
}
.sifency-tier-features li {
    padding: 8px 0;
    border-bottom: 1px solid #f1f3f5;
}
.sifency-tier-features li:last-child {
    border-bottom: none;
}
.sifency-tier-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--sifency-addons-themecolor);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.2s ease;
}
.sifency-tier-button:hover {
    background-color: var(--sifency-addons-themecolor);
}
.sifency-faq-accordion {
    border: 1px solid #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.sifency-faq-item {
    border-bottom: 1px solid #e9ecef;
}
.sifency-faq-item:last-child {
    border-bottom: none;
}

.sifency-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.sifency-faq-question-text {
    flex-grow: 1;
}

.sifency-faq-icon {
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.sifency-faq-item--active .sifency-faq-icon {
    transform: rotate(180deg);
}

.sifency-faq-answer {
    display: none;
    padding: 20px;
    background-color: #f8f9fa;
}
.sifency-faq-answer p:first-child {
    margin-top: 0;
}
.sifency-faq-answer p:last-child {
    margin-bottom: 0;
}

.sifency-download-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #e9ecef;
    gap: 15px;
}
.sifency-downloads-list > .sifency-download-item:last-child {
    border-bottom: none;
}

.sifency-download-icon {
    font-size: 24px;
    flex-shrink: 0;
}
.sifency-download-icon i {
    color: var(--sifency-addons-themecolor);
}

.sifency-download-details {
    flex-grow: 1;
}

.sifency-download-name {
    display: block;
    font-weight: 600;
}

.sifency-download-info {
    font-size: 0.85em;
    opacity: 0.7;
    margin-top: 4px;
}
.sifency-download-info .sifency-download-file-type::after {
    content: '•';
    margin: 0 6px;
}
.sifency-download-info .sifency-download-file-type:last-child::after,
.sifency-download-info span:empty + span::before {
    display: none;
}

.sifency-download-button {
    flex-shrink: 0;
    font-size: 20px;
    color: var(--sifency-addons-themecolor);
    text-decoration: none;
    transition: color 0.2s ease;
}
.sifency-download-button:hover {
    color: var(--sifency-addons-themecolor);
}
.sifency-video-wrapper {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    line-height: 0;
}
.sifency-video-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.sifency-video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.sifency-video-play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.sifency-video-play-button i {
    color: #fff;
    background-color: rgba(0,0,0,0.5);
    border-radius: 50%;
    padding: 20px;
    font-size: 30px;
    line-height: 1;
    width: 1em;
    height: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sifency-video-wrapper .sifency-video-iframe-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}
.sifency-video-wrapper .sifency-video-iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}