/* --- Global Scroll to Top Button --- */
.scroll-to-top {
    position: fixed;
    bottom: 15%;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    z-index: 1000;
    animation: pulse 2.5s infinite ease-in-out;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top .progress-ring {
    position: absolute;
    top: 0;
    left: 0;
}

.progress-ring__circle {
    transform-origin: 50% 50%;
    transform: rotate(-90deg);
    transition: stroke-dashoffset 0.1s;
}

.scroll-to-top .arrow-up {
    width: 10px;
    height: 10px;
    border-top: 3px solid #55409b;
    border-right: 3px solid #55409b;
    transform: translateY(-2px) rotate(-45deg);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* --- Global Button Styles --- */

/* Base styles for all theme buttons */
.hero-button,
.btn-light-theme {
    font-weight: bold;
    padding: 0.75rem 2.5rem 0.75rem 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
    display: inline-block;
    border: 1px solid transparent;
}

.hero-button:hover,
.btn-light-theme:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Primary Button (Purple) */
.hero-button {
    background-color: #55409b;
    border-color: #55409b;
    color: #ffffff !important;
}
.hero-button:hover {
    background-color: #44337a;
    border-color: #44337a;
}

/* Secondary Button (White) */
.btn-light-theme {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #55409b !important;
}
.btn-light-theme:hover {
    background-color: #f0f0f0;
    border-color: #f0f0f0;
}


/* --- Animated Button Icons --- */
.hero-button::after,
.btn-light-theme::after {
    content: '';
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background-size: contain;
    background-repeat: no-repeat;
    animation: button-icon-pulse 2s infinite ease-in-out;
}

/* Icon for Primary Button (White Arrow) */
.hero-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='9 18 15 12 9 6'%3e%3c/polyline%3e%3c/svg%3e");
}

/* Icon for Secondary Button (Purple Arrow) */
.btn-light-theme::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24' 24' fill='none' stroke='%2355409b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='9 18 15 12 9 6'%3e%3c/polyline%3e%3c/svg%3e");
}

@keyframes button-icon-pulse {
    0%, 100% {
        transform: translateY(-50%) translateX(0);
    }
    50% {
        transform: translateY(-50%) translateX(5px);
    }
}


/* --- Site Footer --- */
.site-footer {
    background-color: #000000;
    color: #ffffff;
    text-align: center;
}

.footer-widget .footer-logo {
    width: 200px;
    height: auto;
}

.footer-widget-title {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-links {
    padding-left: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    opacity: 0.8;
}

.payment-options-list {
    padding-left: 0;
    margin: 0;
}

.payment-options-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.payment-options-list svg {
    color: #ffffff;
    flex-shrink: 0;
    margin-right: 0.5rem;
}

.footer-bottom {
    background-color: #000;
    color: #adb5bd;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #ffffff;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

