/* Base Styles */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 12px; }
::-webkit-scrollbar-thumb { background: #2563eb; border-radius: 12px; }
::-webkit-scrollbar-thumb:hover { background: #1d4ed8; }

 .hide-scrollbar::-webkit-scrollbar {
    display: none; 
  }

* {
	user-select: none;
    -webkit-tap-highlight-color: transparent;
     -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.container {
    background: #ffffff;
    padding: 28px;
    transition: all 0.2s ease;
    border-radius: 22px;
}

.container:hover {
    border-color: #d1d5db;
    scale: 0.97;
}
.container:focus {
    outline: none;
}

/* Input Styles */
.input {
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    padding: 10px 16px;
    outline: none;
    transition: all 0.2s ease;
}

.input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Button Styles */
.button {
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 10px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.button:hover {
    background: #1d4ed8;
}

.button:disabled {
    cursor: not-allowed;
}

.button-secondary {
    background: #ffffff;
    color: #374151;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    padding: 8px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.button-secondary:hover {
    background: #f3f4f6;
}

/* Loader */
.loader {
    width: 46px;
    height: 46px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.circular {
    width: 32px;
    height: 32px;
    animation: rotate 1.5s linear infinite;
}

.path {
    stroke-dasharray: 95, 150; /* Controls arc length: ~90% to ~10% */
    stroke-dashoffset: 0;
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 150; /* ~10% arc */
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 95, 150; /* ~90% arc */
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 1, 150; /* Back to ~10% arc */
        stroke-dashoffset: -124;
    }
}

/* Animation Classes */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 0.5s ease-in forwards;
}

.animate-fade-in-delay {
    opacity: 0;
    animation: fadeIn 0.5s ease-in forwards;
    animation-delay: 0.3s;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(10px);
    animation: slideUp 0.5s ease-out forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes slideUp {
    to { opacity: 1; transform: translateY(0); }
}


/* Slick Carousel Styles */
.slick-slider {
    position: relative;
    max-width: 600px;
    margin: 0 auto;  
}

.slider img {
    border-radius: 20px;
}

.slick-dots {
	position: absolute;
    text-align: center;
    margin-top: 10px;
}
.slick-dots li {
    display: inline-block;
    margin: 0 5px;
}
.slick-dot {
    width: 10px;
    height: 10px;
    background: #d1d5db;
    border-radius: 50%;
    border: none;
    cursor: pointer;
}
.slick-dots li.slick-active .slick-dot {
     scale: 1.5;
}
.slick-prev, .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;     
    cursor: pointer;
    z-index: 10;
}
.slick-prev {
    left: 20px;
}
.slick-next {
    right: 20px;
}

.rotate-180 {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

/* Overlay and lock icon styles */
.premium-locked {
    position: relative;
    opacity: 0.7;
    cursor: pointer;
}

.premium-locked::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    border-radius: 22px;
    z-index: 1;
}

.lock-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 40px;
    height: 40px;
}

.button-disabled {
    background: #d1d5db;
    cursor: not-allowed;
    pointer-events: none;
}
.premium-locked a.container-link {
    display: block;
    text-decoration: none;
    color: inherit;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}